snm.xml 388 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20250229" 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="60SEVO"
  122. name="60S EVO"
  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/60SEVO-v1.2.1-build1.img"
  198. size="5183988"
  199. />
  200. <package
  201. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-fr-FR.img"
  202. size="5183988"
  203. />
  204. <package
  205. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-es-ES.img"
  206. size="5183988"
  207. />
  208. <package
  209. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-it-IT.img"
  210. size="5183988"
  211. />
  212. <package
  213. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-de-DE.img"
  214. size="5183988"
  215. />
  216. <package
  217. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-nl-NL.img"
  218. size="5183988"
  219. />
  220. <package
  221. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-ru-RU.img"
  222. size="5183988"
  223. />
  224. <package
  225. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-cmn-CN.img"
  226. size="5183988"
  227. />
  228. <package
  229. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-ko-KR.img"
  230. size="5183988"
  231. />
  232. <package
  233. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-ja-JP.img"
  234. size="5183988"
  235. />
  236. <package
  237. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-fi-FI.img"
  238. size="5183988"
  239. />
  240. <package
  241. url="https://api.sena.com/support/OTA/60S/60SEVO-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="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.0_en_250808.pdf"
  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="1"
  303. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  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="6A15"
  316. />
  317. <productGroupable type="0"
  318. />
  319. </product>
  320. <product id="60S"
  321. name="60S"
  322. series="60"
  323. latestVersion="1.2.2"
  324. latestVersionMesh="1.2"
  325. latestVersionVoicePrompt="1.2"
  326. show = "1" >
  327. <productMenu id="protocol"
  328. type="2" >
  329. </productMenu>
  330. <productMenu id="ota"
  331. type="2" >
  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/60S_REV2-v1.2.2-build1.img"
  397. size="5183988"
  398. />
  399. <package
  400. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-build1-fr-FR.img"
  401. size="5183988"
  402. />
  403. <package
  404. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-build1-es-ES.img"
  405. size="5183988"
  406. />
  407. <package
  408. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-build1-it-IT.img"
  409. size="5183988"
  410. />
  411. <package
  412. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-build1-de-DE.img"
  413. size="5183988"
  414. />
  415. <package
  416. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-build1-nl-NL.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-build1-ru-RU.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-build1-cmn-CN.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-build1-ko-KR.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-build1-ja-JP.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-build1-fi-FI.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-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_02.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="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.0_en_250808.pdf"
  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="1"
  502. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  503. size="1.12MB" >
  504. </productMenu>
  505. <productMenu id="volume"
  506. type="16" >
  507. </productMenu>
  508. <productMenu id="soundMode"
  509. type="0" >
  510. </productMenu>
  511. <productMenu id="battery"
  512. type="1" >
  513. </productMenu>
  514. <productID id="6A0D"
  515. />
  516. <productGroupable type="0"
  517. />
  518. </product>
  519. <product id="60S"
  520. name="60S"
  521. series="60"
  522. latestVersion="1.2.2"
  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-v1.2.2-build1.img"
  596. size="5183988"
  597. />
  598. <package
  599. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-fr-FR.img"
  600. size="5183988"
  601. />
  602. <package
  603. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-es-ES.img"
  604. size="5183988"
  605. />
  606. <package
  607. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-it-IT.img"
  608. size="5183988"
  609. />
  610. <package
  611. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-de-DE.img"
  612. size="5183988"
  613. />
  614. <package
  615. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-nl-NL.img"
  616. size="5183988"
  617. />
  618. <package
  619. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-ru-RU.img"
  620. size="5183988"
  621. />
  622. <package
  623. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-cmn-CN.img"
  624. size="5183988"
  625. />
  626. <package
  627. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-ko-KR.img"
  628. size="5183988"
  629. />
  630. <package
  631. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-ja-JP.img"
  632. size="5183988"
  633. />
  634. <package
  635. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-fi-FI.img"
  636. size="5183988"
  637. />
  638. <package
  639. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-pl-PL.img"
  640. size="5183988"
  641. />
  642. </otaPackages>
  643. </productMenu>
  644. <productMenu id="wa"
  645. type="0" >
  646. </productMenu>
  647. <productMenu id="sip"
  648. type="1" >
  649. </productMenu>
  650. <productMenu id="led"
  651. type="0" >
  652. </productMenu>
  653. <productMenu id="illusion"
  654. type="1" >
  655. </productMenu>
  656. <productMenu id="meshIntercom"
  657. type="30" >
  658. </productMenu>
  659. <productMenu id="meshIntercom+"
  660. type="3"
  661. url="2" >
  662. <productMenuURL version="1.0.2"
  663. url="10"
  664. />
  665. </productMenu>
  666. <productMenu id="waveIntercom"
  667. type="1" >
  668. <productMenuType version="1.0.9"
  669. type="0"
  670. />
  671. </productMenu>
  672. <productMenu id="bluetoothIntercom"
  673. type="1"
  674. url="2" >
  675. </productMenu>
  676. <productMenu id="bluetoothIntercomGrouping"
  677. type="0" >
  678. </productMenu>
  679. <productMenu id="fmradio"
  680. type="1"
  681. url="1" >
  682. </productMenu>
  683. <productMenu id="phone"
  684. type="1" >
  685. </productMenu>
  686. <productMenu id="music"
  687. type="1" >
  688. </productMenu>
  689. <productMenu id="musicSharing"
  690. type="0" >
  691. </productMenu>
  692. <productMenu id="deviceSetting"
  693. type="1"
  694. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  695. <productMenuURL version="1.0.2"
  696. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  697. />
  698. <productMenuURL version="1.0"
  699. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  700. />
  701. <productMenuURL version="0.9.11"
  702. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  703. />
  704. </productMenu>
  705. <productMenu id="quickGuide"
  706. type="0"
  707. url=""
  708. size="1.12MB" >
  709. </productMenu>
  710. <productMenu id="userGuide"
  711. type="1"
  712. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.0_en_250808.pdf"
  713. size="2.0MB" >
  714. </productMenu>
  715. <productMenu id="videoGuide"
  716. type="0"
  717. url=""
  718. size="3.41MB" >
  719. </productMenu>
  720. <productMenu id="connectGuide"
  721. type="1"
  722. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  723. size="1.12MB" >
  724. </productMenu>
  725. <productMenu id="volume"
  726. type="16" >
  727. <productMenuType version="0.9.11"
  728. type="13"
  729. />
  730. </productMenu>
  731. <productMenu id="soundMode"
  732. type="0" >
  733. <productMenuType version="0.9.11"
  734. type="0"
  735. />
  736. </productMenu>
  737. <productMenu id="battery"
  738. type="1" >
  739. </productMenu>
  740. <productID id="6A02"
  741. />
  742. <productGroupable type="0"
  743. />
  744. </product>
  745. <product id="60X"
  746. name="60X"
  747. series="60"
  748. latestVersion="0.2"
  749. latestVersionMesh="1.2"
  750. latestVersionVoicePrompt="1.2"
  751. show = "-1" >
  752. <productMenu id="protocol"
  753. type="2" >
  754. </productMenu>
  755. <productMenu id="ota"
  756. type="0" >
  757. <otaLanguages>
  758. <otaLanguage
  759. id="0"
  760. name="English"
  761. package="0"
  762. />
  763. <otaLanguage
  764. id="0"
  765. name="Korean"
  766. package="1"
  767. />
  768. </otaLanguages>
  769. <otaPackages>
  770. <package
  771. url="https://api.sena.com/support/test/60R-v0.7-build0_en_US.img"
  772. size="5183988"
  773. />
  774. <package
  775. url="https://api.sena.com/support/test/60R-v0.6.4-build0_kr_KR.img"
  776. size="5183988"
  777. />
  778. </otaPackages>
  779. </productMenu>
  780. <productMenu id="wa"
  781. type="0" >
  782. </productMenu>
  783. <productMenu id="sip"
  784. type="1" >
  785. </productMenu>
  786. <productMenu id="led"
  787. type="1" >
  788. </productMenu>
  789. <productMenu id="illusion"
  790. type="1" >
  791. </productMenu>
  792. <productMenu id="meshIntercom"
  793. type="30" >
  794. </productMenu>
  795. <productMenu id="bluetoothIntercom"
  796. type="1" >
  797. </productMenu>
  798. <productMenu id="fmradio"
  799. type="1"
  800. url="1" >
  801. </productMenu>
  802. <productMenu id="phone"
  803. type="1" >
  804. </productMenu>
  805. <productMenu id="music"
  806. type="1" >
  807. </productMenu>
  808. <productMenu id="musicSharing"
  809. type="0" >
  810. </productMenu>
  811. <productMenu id="deviceSetting"
  812. type="1"
  813. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  814. </productMenu>
  815. <productMenu id="quickGuide"
  816. type="0"
  817. url=""
  818. size="1.12MB" >
  819. </productMenu>
  820. <productMenu id="userGuide"
  821. type="0"
  822. url=""
  823. size="2.0MB" >
  824. </productMenu>
  825. <productMenu id="videoGuide"
  826. type="0"
  827. url=""
  828. size="3.41MB" >
  829. </productMenu>
  830. <productMenu id="volume"
  831. type="13" >
  832. </productMenu>
  833. <productMenu id="battery"
  834. type="1" >
  835. </productMenu>
  836. <productID id="6A03"
  837. />
  838. <productGroupable type="0"
  839. />
  840. </product>
  841. <product id="R35"
  842. name="R35"
  843. series="R"
  844. latestVersion="0.9"
  845. latestVersionVoicePrompt="1.2"
  846. show = "-1" >
  847. <productMenu id="protocol"
  848. type="2" >
  849. </productMenu>
  850. <productMenu id="ota"
  851. type="0" >
  852. <otaLanguages>
  853. <otaLanguage
  854. id="0"
  855. name="English"
  856. package="0"
  857. />
  858. <otaLanguage
  859. id="0"
  860. name="French"
  861. package="1"
  862. />
  863. <otaLanguage
  864. id="0"
  865. name="Spanish"
  866. package="2"
  867. />
  868. <otaLanguage
  869. id="0"
  870. name="Italian"
  871. package="3"
  872. />
  873. <otaLanguage
  874. id="0"
  875. name="German"
  876. package="4"
  877. />
  878. <otaLanguage
  879. id="0"
  880. name="Dutch"
  881. package="5"
  882. />
  883. <otaLanguage
  884. id="0"
  885. name="Russian"
  886. package="6"
  887. />
  888. <otaLanguage
  889. id="0"
  890. name="Chinese"
  891. package="7"
  892. />
  893. <otaLanguage
  894. id="0"
  895. name="Korean"
  896. package="8"
  897. />
  898. <otaLanguage
  899. id="0"
  900. name="Japanese"
  901. package="9"
  902. />
  903. <otaLanguage
  904. id="0"
  905. name="Finnish"
  906. package="10"
  907. />
  908. <otaLanguage
  909. id="0"
  910. name="Polish"
  911. package="11"
  912. />
  913. </otaLanguages>
  914. <otaPackages>
  915. <package
  916. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1.img"
  917. size="5183988"
  918. />
  919. <package
  920. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-fr-FR.img"
  921. size="5183988"
  922. />
  923. <package
  924. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-es-ES.img"
  925. size="5183988"
  926. />
  927. <package
  928. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-it-IT.img"
  929. size="5183988"
  930. />
  931. <package
  932. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-de-DE.img"
  933. size="5183988"
  934. />
  935. <package
  936. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-nl-NL.img"
  937. size="5183988"
  938. />
  939. <package
  940. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-ru-RU.img"
  941. size="5183988"
  942. />
  943. <package
  944. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-cmn-CN.img"
  945. size="5183988"
  946. />
  947. <package
  948. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-ko-KR.img"
  949. size="5183988"
  950. />
  951. <package
  952. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-ja-JP.img"
  953. size="5183988"
  954. />
  955. <package
  956. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-fi-FI.img"
  957. size="5183988"
  958. />
  959. <package
  960. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-pl-PL.img"
  961. size="5183988"
  962. />
  963. </otaPackages>
  964. </productMenu>
  965. <productMenu id="sip"
  966. type="1" >
  967. </productMenu>
  968. <productMenu id="illusion"
  969. type="1" >
  970. </productMenu>
  971. <productMenu id="meshIntercom"
  972. type="30" >
  973. </productMenu>
  974. <productMenu id="meshIntercom+"
  975. type="3"
  976. url="2" >
  977. </productMenu>
  978. <productMenu id="waveIntercom"
  979. type="1" >
  980. </productMenu>
  981. <productMenu id="phone"
  982. type="1" >
  983. </productMenu>
  984. <productMenu id="music"
  985. type="1" >
  986. </productMenu>
  987. <productMenu id="musicSharing"
  988. type="0" >
  989. </productMenu>
  990. <productMenu id="deviceSetting"
  991. type="1"
  992. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  993. </productMenu>
  994. <productMenu id="quickGuide"
  995. type="0"
  996. url=""
  997. size="1.12MB" >
  998. </productMenu>
  999. <productMenu id="userGuide"
  1000. type="1"
  1001. url=""
  1002. size="2.0MB" >
  1003. </productMenu>
  1004. <productMenu id="videoGuide"
  1005. type="0"
  1006. url=""
  1007. size="3.41MB" >
  1008. </productMenu>
  1009. <productMenu id="connectGuide"
  1010. type="0"
  1011. url=""
  1012. size="1.12MB" >
  1013. </productMenu>
  1014. <productMenu id="volume"
  1015. type="16" >
  1016. </productMenu>
  1017. <productMenu id="soundMode"
  1018. type="0" >
  1019. </productMenu>
  1020. <productMenu id="battery"
  1021. type="1" >
  1022. </productMenu>
  1023. <productID id="6A06"
  1024. />
  1025. <productGroupable type="0"
  1026. />
  1027. </product>
  1028. <product id="COMP1"
  1029. name="BMW COM P1"
  1030. series="60"
  1031. latestVersion="1.0.6"
  1032. latestVersionMesh="0.19"
  1033. latestVersionVoicePrompt="1.0"
  1034. show = "-1" >
  1035. <productMenu id="protocol"
  1036. type="2" >
  1037. </productMenu>
  1038. <productMenu id="ota"
  1039. type="2" >
  1040. <otaLanguages>
  1041. <otaLanguage
  1042. id="0"
  1043. name="English"
  1044. package="0"
  1045. />
  1046. <otaLanguage
  1047. id="0"
  1048. name="French"
  1049. package="1"
  1050. />
  1051. <otaLanguage
  1052. id="0"
  1053. name="Spanish"
  1054. package="2"
  1055. />
  1056. <otaLanguage
  1057. id="0"
  1058. name="Italian"
  1059. package="3"
  1060. />
  1061. <otaLanguage
  1062. id="0"
  1063. name="German"
  1064. package="4"
  1065. />
  1066. <otaLanguage
  1067. id="0"
  1068. name="Dutch"
  1069. package="5"
  1070. />
  1071. <otaLanguage
  1072. id="0"
  1073. name="Russian"
  1074. package="6"
  1075. />
  1076. <otaLanguage
  1077. id="0"
  1078. name="Chinese"
  1079. package="7"
  1080. />
  1081. <otaLanguage
  1082. id="0"
  1083. name="Korean"
  1084. package="8"
  1085. />
  1086. <otaLanguage
  1087. id="0"
  1088. name="Japanese"
  1089. package="9"
  1090. />
  1091. <otaLanguage
  1092. id="0"
  1093. name="Finnish"
  1094. package="10"
  1095. />
  1096. </otaLanguages>
  1097. <otaPackages>
  1098. <package
  1099. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0.img"
  1100. size="5183988"
  1101. />
  1102. <package
  1103. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fr-FR.img"
  1104. size="5183988"
  1105. />
  1106. <package
  1107. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-es-ES.img"
  1108. size="5183988"
  1109. />
  1110. <package
  1111. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-it-IT.img"
  1112. size="5183988"
  1113. />
  1114. <package
  1115. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-de-DE.img"
  1116. size="5183988"
  1117. />
  1118. <package
  1119. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-nl-NL.img"
  1120. size="5183988"
  1121. />
  1122. <package
  1123. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ru-RU.img"
  1124. size="5183988"
  1125. />
  1126. <package
  1127. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-cmn-CN.img"
  1128. size="5183988"
  1129. />
  1130. <package
  1131. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ko-KR.img"
  1132. size="5183988"
  1133. />
  1134. <package
  1135. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ja-JP.img"
  1136. size="5183988"
  1137. />
  1138. <package
  1139. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fi-FI.img"
  1140. size="5183988"
  1141. />
  1142. </otaPackages>
  1143. </productMenu>
  1144. <productMenu id="wa"
  1145. type="0" >
  1146. </productMenu>
  1147. <productMenu id="sip"
  1148. type="1" >
  1149. </productMenu>
  1150. <productMenu id="led"
  1151. type="0" >
  1152. </productMenu>
  1153. <productMenu id="illusion"
  1154. type="0" >
  1155. </productMenu>
  1156. <productMenu id="meshIntercom"
  1157. type="30" >
  1158. </productMenu>
  1159. <productMenu id="bluetoothIntercom"
  1160. type="1" >
  1161. </productMenu>
  1162. <productMenu id="bluetoothIntercomGrouping"
  1163. type="0" >
  1164. </productMenu>
  1165. <productMenu id="fmradio"
  1166. type="0" >
  1167. </productMenu>
  1168. <productMenu id="phone"
  1169. type="1" >
  1170. </productMenu>
  1171. <productMenu id="music"
  1172. type="1" >
  1173. </productMenu>
  1174. <productMenu id="musicSharing"
  1175. type="0" >
  1176. </productMenu>
  1177. <productMenu id="deviceSetting"
  1178. type="1"
  1179. url="https://api.sena.com/support/test/xml/NS_COMP1_Test_13.xml" >
  1180. </productMenu>
  1181. <productMenu id="quickGuide"
  1182. type="0"
  1183. url=""
  1184. size="1.12MB" >
  1185. </productMenu>
  1186. <productMenu id="userGuide"
  1187. type="0"
  1188. url=""
  1189. size="2.0MB" >
  1190. </productMenu>
  1191. <productMenu id="videoGuide"
  1192. type="0"
  1193. url=""
  1194. size="3.41MB" >
  1195. </productMenu>
  1196. <productMenu id="volume"
  1197. type="16" >
  1198. </productMenu>
  1199. <productMenu id="battery"
  1200. type="1" >
  1201. </productMenu>
  1202. <productID id="6A80"
  1203. />
  1204. <productGroupable type="0"
  1205. />
  1206. </product>
  1207. <product id="50S"
  1208. name="50S"
  1209. series="50"
  1210. latestVersion="2.7.1"
  1211. show = "1" >
  1212. <productMenu id="protocol"
  1213. type="2" >
  1214. </productMenu>
  1215. <productMenu id="alexa"
  1216. type="0" >
  1217. </productMenu>
  1218. <productMenu id="ota"
  1219. type="0"
  1220. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1221. size="1150234" >
  1222. </productMenu>
  1223. <productMenu id="wa"
  1224. type="1" >
  1225. </productMenu>
  1226. <productMenu id="sip"
  1227. type="1" >
  1228. </productMenu>
  1229. <productMenu id="meshIntercom"
  1230. type="30" >
  1231. <productMenuType version="2.1.1"
  1232. type="20"
  1233. />
  1234. </productMenu>
  1235. <productMenu id="meshIntercom+"
  1236. type="3"
  1237. url="2" >
  1238. <productMenuType version="2.5.9"
  1239. type="2"
  1240. />
  1241. <productMenuURL version="2.1.1"
  1242. url="0"
  1243. />
  1244. </productMenu>
  1245. <productMenu id="waveIntercom"
  1246. type="1" >
  1247. <productMenuType version="2.6"
  1248. type="0"
  1249. />
  1250. </productMenu>
  1251. <productMenu id="bluetoothIntercom"
  1252. type="1" >
  1253. </productMenu>
  1254. <productMenu id="phone"
  1255. type="1" >
  1256. </productMenu>
  1257. <productMenu id="music"
  1258. type="1" >
  1259. </productMenu>
  1260. <productMenu id="fmradio"
  1261. type="1" >
  1262. </productMenu>
  1263. <productMenu id="deviceSetting"
  1264. type="1"
  1265. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1266. <productMenuURL version="2.5.9"
  1267. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1268. />
  1269. <productMenuURL version="2.1.1"
  1270. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1271. />
  1272. <productMenuURL version="2.0.3"
  1273. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1274. />
  1275. </productMenu>
  1276. <productMenu id="quickGuide"
  1277. type="0"
  1278. url=""
  1279. size="934KB" >
  1280. </productMenu>
  1281. <productMenu id="userGuide"
  1282. type="1"
  1283. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1284. size="1.14MB" >
  1285. </productMenu>
  1286. <productMenu id="videoGuide"
  1287. type="1"
  1288. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1289. size="3.41MB" >
  1290. </productMenu>
  1291. <productMenu id="connectGuide"
  1292. type="1"
  1293. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1294. size="1.12MB" >
  1295. </productMenu>
  1296. <productMenu id="volume"
  1297. type="11" >
  1298. </productMenu>
  1299. <productMenu id="battery"
  1300. type="1" >
  1301. </productMenu>
  1302. <productID id="3210"
  1303. />
  1304. <productGroupable type="0"
  1305. />
  1306. </product>
  1307. <product id="50S"
  1308. name="50S"
  1309. series="50"
  1310. latestVersion="1.5"
  1311. show = "-1" >
  1312. <productMenu id="protocol"
  1313. type="2" >
  1314. </productMenu>
  1315. <productMenu id="alexa"
  1316. type="0" >
  1317. </productMenu>
  1318. <productMenu id="wa"
  1319. type="1" >
  1320. </productMenu>
  1321. <productMenu id="sip"
  1322. type="1" >
  1323. </productMenu>
  1324. <productMenu id="meshIntercom"
  1325. type="30" >
  1326. <productMenuType version="1.2.2"
  1327. type="20"
  1328. />
  1329. </productMenu>
  1330. <productMenu id="meshIntercom+"
  1331. type="3"
  1332. url="2" >
  1333. <productMenuType version="1.4.9"
  1334. type="2"
  1335. />
  1336. <productMenuURL version="1.2.2"
  1337. url="0"
  1338. />
  1339. </productMenu>
  1340. <productMenu id="waveIntercom"
  1341. type="1" >
  1342. <productMenuType version="1.3.9"
  1343. type="0"
  1344. />
  1345. </productMenu>
  1346. <productMenu id="bluetoothIntercom"
  1347. type="1" >
  1348. </productMenu>
  1349. <productMenu id="phone"
  1350. type="1" >
  1351. </productMenu>
  1352. <productMenu id="music"
  1353. type="1" >
  1354. </productMenu>
  1355. <productMenu id="fmradio"
  1356. type="1" >
  1357. </productMenu>
  1358. <productMenu id="deviceSetting"
  1359. type="1"
  1360. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1361. <productMenuURL version="1.4.9"
  1362. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1363. />
  1364. <productMenuURL version="1.3.9"
  1365. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1366. />
  1367. <productMenuURL version="1.2.2"
  1368. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1369. />
  1370. <productMenuURL version="1.1.1"
  1371. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1372. />
  1373. </productMenu>
  1374. <productMenu id="quickGuide"
  1375. type="0"
  1376. url=""
  1377. size="934KB" >
  1378. </productMenu>
  1379. <productMenu id="userGuide"
  1380. type="1"
  1381. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  1382. size="1.14MB" >
  1383. </productMenu>
  1384. <productMenu id="videoGuide"
  1385. type="1"
  1386. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1387. size="3.41MB" >
  1388. </productMenu>
  1389. <productMenu id="volume"
  1390. type="11" >
  1391. </productMenu>
  1392. <productMenu id="battery"
  1393. type="1" >
  1394. </productMenu>
  1395. <productID id="3132"
  1396. />
  1397. <productGroupable type="0"
  1398. />
  1399. </product>
  1400. <product id="50R"
  1401. name="50R"
  1402. series="50"
  1403. latestVersion="2.7"
  1404. show = "1" >
  1405. <productMenu id="protocol"
  1406. type="2" >
  1407. </productMenu>
  1408. <productMenu id="alexa"
  1409. type="0" >
  1410. </productMenu>
  1411. <productMenu id="ota"
  1412. type="0"
  1413. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1414. size="1150234" >
  1415. </productMenu>
  1416. <productMenu id="wa"
  1417. type="1" >
  1418. </productMenu>
  1419. <productMenu id="sip"
  1420. type="1" >
  1421. </productMenu>
  1422. <productMenu id="meshIntercom"
  1423. type="30" >
  1424. <productMenuType version="2.1.1"
  1425. type="20"
  1426. />
  1427. </productMenu>
  1428. <productMenu id="meshIntercom+"
  1429. type="3"
  1430. url="2" >
  1431. <productMenuType version="2.5.9"
  1432. type="2"
  1433. />
  1434. <productMenuURL version="2.1.1"
  1435. url="0"
  1436. />
  1437. </productMenu>
  1438. <productMenu id="bluetoothIntercom"
  1439. type="1" >
  1440. </productMenu>
  1441. <productMenu id="phone"
  1442. type="1" >
  1443. </productMenu>
  1444. <productMenu id="music"
  1445. type="1" >
  1446. </productMenu>
  1447. <productMenu id="fmradio"
  1448. type="1" >
  1449. </productMenu>
  1450. <productMenu id="deviceSetting"
  1451. type="1"
  1452. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1453. <productMenuURL version="2.5.9"
  1454. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1455. />
  1456. <productMenuURL version="2.1.1"
  1457. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1458. />
  1459. <productMenuURL version="2.0"
  1460. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1461. />
  1462. </productMenu>
  1463. <productMenu id="quickGuide"
  1464. type="0"
  1465. url=""
  1466. size="344KB" >
  1467. </productMenu>
  1468. <productMenu id="userGuide"
  1469. type="1"
  1470. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  1471. size="3.41MB" >
  1472. </productMenu>
  1473. <productMenu id="videoGuide"
  1474. type="1"
  1475. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1476. size="3.41MB" >
  1477. </productMenu>
  1478. <productMenu id="connectGuide"
  1479. type="1"
  1480. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  1481. size="1.12MB" >
  1482. </productMenu>
  1483. <productMenu id="volume"
  1484. type="11" >
  1485. </productMenu>
  1486. <productMenu id="battery"
  1487. type="1" >
  1488. </productMenu>
  1489. <productID id="3218"
  1490. />
  1491. <productGroupable type="0"
  1492. />
  1493. </product>
  1494. <product id="50R"
  1495. name="50R"
  1496. series="50"
  1497. latestVersion="1.5"
  1498. show = "-1" >
  1499. <productMenu id="protocol"
  1500. type="2" >
  1501. </productMenu>
  1502. <productMenu id="alexa"
  1503. type="0" >
  1504. </productMenu>
  1505. <productMenu id="wa"
  1506. type="1" >
  1507. </productMenu>
  1508. <productMenu id="sip"
  1509. type="1" >
  1510. </productMenu>
  1511. <productMenu id="meshIntercom"
  1512. type="30" >
  1513. <productMenuType version="1.2.2"
  1514. type="20"
  1515. />
  1516. </productMenu>
  1517. <productMenu id="meshIntercom+"
  1518. type="3"
  1519. url="2" >
  1520. <productMenuType version="1.4.9"
  1521. type="2"
  1522. />
  1523. <productMenuURL version="1.2.2"
  1524. url="0"
  1525. />
  1526. </productMenu>
  1527. <productMenu id="waveIntercom"
  1528. type="1" >
  1529. <productMenuType version="1.3.9"
  1530. type="0"
  1531. />
  1532. </productMenu>
  1533. <productMenu id="bluetoothIntercom"
  1534. type="1" >
  1535. </productMenu>
  1536. <productMenu id="phone"
  1537. type="1" >
  1538. </productMenu>
  1539. <productMenu id="music"
  1540. type="1" >
  1541. </productMenu>
  1542. <productMenu id="fmradio"
  1543. type="1" >
  1544. </productMenu>
  1545. <productMenu id="deviceSetting"
  1546. type="1"
  1547. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1548. <productMenuURL version="1.4.9"
  1549. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1550. />
  1551. <productMenuURL version="1.3.9"
  1552. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1553. />
  1554. <productMenuURL version="1.2.2"
  1555. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1556. />
  1557. <productMenuURL version="1.1.1"
  1558. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1559. />
  1560. </productMenu>
  1561. <productMenu id="quickGuide"
  1562. type="0"
  1563. url=""
  1564. size="344KB" >
  1565. </productMenu>
  1566. <productMenu id="userGuide"
  1567. type="1"
  1568. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  1569. size="3.41MB" >
  1570. </productMenu>
  1571. <productMenu id="videoGuide"
  1572. type="1"
  1573. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1574. size="3.41MB" >
  1575. </productMenu>
  1576. <productMenu id="volume"
  1577. type="11" >
  1578. </productMenu>
  1579. <productMenu id="battery"
  1580. type="1" >
  1581. </productMenu>
  1582. <productID id="3134"
  1583. />
  1584. <productGroupable type="0"
  1585. />
  1586. </product>
  1587. <product id="50C"
  1588. name="50C"
  1589. series="50"
  1590. latestVersion="1.4.2"
  1591. show = "1" >
  1592. <productMenu id="protocol"
  1593. type="2" >
  1594. </productMenu>
  1595. <productMenu id="ota"
  1596. type="0" >
  1597. </productMenu>
  1598. <productMenu id="wa"
  1599. type="1" >
  1600. </productMenu>
  1601. <productMenu id="sip"
  1602. type="1" >
  1603. </productMenu>
  1604. <productMenu id="meshIntercom"
  1605. type="30" >
  1606. <productMenuType version="1.1.1"
  1607. type="20"
  1608. />
  1609. </productMenu>
  1610. <productMenu id="meshIntercom+"
  1611. type="3"
  1612. url="2" >
  1613. <productMenuType version="1.3.9"
  1614. type="2"
  1615. />
  1616. <productMenuURL version="1.1.1"
  1617. url="0"
  1618. />
  1619. </productMenu>
  1620. <productMenu id="waveIntercom"
  1621. type="1" >
  1622. <productMenuType version="1.2.9"
  1623. type="0"
  1624. />
  1625. </productMenu>
  1626. <productMenu id="bluetoothIntercom"
  1627. type="1" >
  1628. </productMenu>
  1629. <productMenu id="phone"
  1630. type="1" >
  1631. </productMenu>
  1632. <productMenu id="music"
  1633. type="1" >
  1634. </productMenu>
  1635. <productMenu id="fmradio"
  1636. type="1" >
  1637. </productMenu>
  1638. <productMenu id="deviceSetting"
  1639. type="1"
  1640. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  1641. <productMenuURL version="1.3.9"
  1642. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  1643. />
  1644. <productMenuURL version="1.1.1"
  1645. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1646. />
  1647. <productMenuURL version="1.0.1"
  1648. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1649. />
  1650. </productMenu>
  1651. <productMenu id="quickGuide"
  1652. type="0"
  1653. url=""
  1654. size="344KB" >
  1655. </productMenu>
  1656. <productMenu id="userGuide"
  1657. type="1"
  1658. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  1659. size="3.41MB" >
  1660. </productMenu>
  1661. <productMenu id="connectGuide"
  1662. type="1"
  1663. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  1664. size="1.12MB" >
  1665. </productMenu>
  1666. <productMenu id="volume"
  1667. type="11" >
  1668. </productMenu>
  1669. <productMenu id="battery"
  1670. type="1" >
  1671. </productMenu>
  1672. <productID id="3232"
  1673. />
  1674. <productGroupable type="0"
  1675. />
  1676. </product>
  1677. <product id="PHANTOMXB"
  1678. name="PHANTOM XB"
  1679. series="Helmet"
  1680. latestVersion="1.2.2"
  1681. latestVersionVoicePrompt="1.2"
  1682. show = "-1" >
  1683. <productMenu id="protocol"
  1684. type="2" >
  1685. </productMenu>
  1686. <productMenu id="ota"
  1687. type="2" >
  1688. <otaLanguages>
  1689. <otaLanguage
  1690. id="0"
  1691. name="English"
  1692. package="0"
  1693. />
  1694. <otaLanguage
  1695. id="0"
  1696. name="French"
  1697. package="1"
  1698. />
  1699. <otaLanguage
  1700. id="0"
  1701. name="Spanish"
  1702. package="2"
  1703. />
  1704. <otaLanguage
  1705. id="0"
  1706. name="Italian"
  1707. package="3"
  1708. />
  1709. <otaLanguage
  1710. id="0"
  1711. name="German"
  1712. package="4"
  1713. />
  1714. <otaLanguage
  1715. id="0"
  1716. name="Dutch"
  1717. package="5"
  1718. />
  1719. <otaLanguage
  1720. id="0"
  1721. name="Russian"
  1722. package="6"
  1723. />
  1724. <otaLanguage
  1725. id="0"
  1726. name="Chinese"
  1727. package="7"
  1728. />
  1729. <otaLanguage
  1730. id="0"
  1731. name="Korean"
  1732. package="8"
  1733. />
  1734. <otaLanguage
  1735. id="0"
  1736. name="Japanese"
  1737. package="9"
  1738. />
  1739. <otaLanguage
  1740. id="0"
  1741. name="Finnish"
  1742. package="10"
  1743. />
  1744. <otaLanguage
  1745. id="0"
  1746. name="Polish"
  1747. package="11"
  1748. />
  1749. </otaLanguages>
  1750. <otaPackages>
  1751. <package
  1752. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1.img"
  1753. size="5183988"
  1754. />
  1755. <package
  1756. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-fr-FR.img"
  1757. size="5183988"
  1758. />
  1759. <package
  1760. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-es-ES.img"
  1761. size="5183988"
  1762. />
  1763. <package
  1764. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-it-IT.img"
  1765. size="5183988"
  1766. />
  1767. <package
  1768. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-de-DE.img"
  1769. size="5183988"
  1770. />
  1771. <package
  1772. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-nl-NL.img"
  1773. size="5183988"
  1774. />
  1775. <package
  1776. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-ru-RU.img"
  1777. size="5183988"
  1778. />
  1779. <package
  1780. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-cmn-CN.img"
  1781. size="5183988"
  1782. />
  1783. <package
  1784. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-ko-KR.img"
  1785. size="5183988"
  1786. />
  1787. <package
  1788. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-ja-JP.img"
  1789. size="5183988"
  1790. />
  1791. <package
  1792. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-fi-FI.img"
  1793. size="5183988"
  1794. />
  1795. <package
  1796. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-pl-PL.img"
  1797. size="5183988"
  1798. />
  1799. </otaPackages>
  1800. </productMenu>
  1801. <productMenu id="wa"
  1802. type="0" >
  1803. </productMenu>
  1804. <productMenu id="led"
  1805. type="5" >
  1806. </productMenu>
  1807. <productMenu id="led+"
  1808. type="2"
  1809. url="1" >
  1810. </productMenu>
  1811. <productMenu id="meshIntercom"
  1812. type="30" >
  1813. </productMenu>
  1814. <productMenu id="meshIntercom+"
  1815. type="3"
  1816. url="2" >
  1817. </productMenu>
  1818. <productMenu id="waveIntercom"
  1819. type="1" >
  1820. </productMenu>
  1821. <productMenu id="fmradio"
  1822. type="0" >
  1823. </productMenu>
  1824. <productMenu id="phone"
  1825. type="1" >
  1826. </productMenu>
  1827. <productMenu id="music"
  1828. type="1" >
  1829. </productMenu>
  1830. <productMenu id="musicSharing"
  1831. type="0" >
  1832. </productMenu>
  1833. <productMenu id="deviceSetting"
  1834. type="1"
  1835. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  1836. </productMenu>
  1837. <productMenu id="quickGuide"
  1838. type="0"
  1839. url=""
  1840. size="1.12MB" >
  1841. </productMenu>
  1842. <productMenu id="userGuide"
  1843. type="1"
  1844. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  1845. size="2.0MB" >
  1846. </productMenu>
  1847. <productMenu id="videoGuide"
  1848. type="0"
  1849. url=""
  1850. size="3.41MB" >
  1851. </productMenu>
  1852. <productMenu id="volume"
  1853. type="16" >
  1854. </productMenu>
  1855. <productMenu id="battery"
  1856. type="1" >
  1857. </productMenu>
  1858. <productID id="6A0F"
  1859. />
  1860. <productGroupable type="0"
  1861. />
  1862. </product>
  1863. <product id="PHANTOMXB"
  1864. name="PHANTOM XB"
  1865. series="Helmet"
  1866. latestVersion="1.2.2"
  1867. latestVersionVoicePrompt="1.2"
  1868. show = "-1" >
  1869. <productMenu id="protocol"
  1870. type="2" >
  1871. </productMenu>
  1872. <productMenu id="ota"
  1873. type="2" >
  1874. <otaLanguages>
  1875. <otaLanguage
  1876. id="0"
  1877. name="English"
  1878. package="0"
  1879. />
  1880. <otaLanguage
  1881. id="0"
  1882. name="French"
  1883. package="1"
  1884. />
  1885. <otaLanguage
  1886. id="0"
  1887. name="Spanish"
  1888. package="2"
  1889. />
  1890. <otaLanguage
  1891. id="0"
  1892. name="Italian"
  1893. package="3"
  1894. />
  1895. <otaLanguage
  1896. id="0"
  1897. name="German"
  1898. package="4"
  1899. />
  1900. <otaLanguage
  1901. id="0"
  1902. name="Dutch"
  1903. package="5"
  1904. />
  1905. <otaLanguage
  1906. id="0"
  1907. name="Russian"
  1908. package="6"
  1909. />
  1910. <otaLanguage
  1911. id="0"
  1912. name="Chinese"
  1913. package="7"
  1914. />
  1915. <otaLanguage
  1916. id="0"
  1917. name="Korean"
  1918. package="8"
  1919. />
  1920. <otaLanguage
  1921. id="0"
  1922. name="Japanese"
  1923. package="9"
  1924. />
  1925. <otaLanguage
  1926. id="0"
  1927. name="Finnish"
  1928. package="10"
  1929. />
  1930. <otaLanguage
  1931. id="0"
  1932. name="Polish"
  1933. package="11"
  1934. />
  1935. </otaLanguages>
  1936. <otaPackages>
  1937. <package
  1938. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1.img"
  1939. size="5183988"
  1940. />
  1941. <package
  1942. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-fr-FR.img"
  1943. size="5183988"
  1944. />
  1945. <package
  1946. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-es-ES.img"
  1947. size="5183988"
  1948. />
  1949. <package
  1950. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-it-IT.img"
  1951. size="5183988"
  1952. />
  1953. <package
  1954. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-de-DE.img"
  1955. size="5183988"
  1956. />
  1957. <package
  1958. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-nl-NL.img"
  1959. size="5183988"
  1960. />
  1961. <package
  1962. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-ru-RU.img"
  1963. size="5183988"
  1964. />
  1965. <package
  1966. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-cmn-CN.img"
  1967. size="5183988"
  1968. />
  1969. <package
  1970. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-ko-KR.img"
  1971. size="5183988"
  1972. />
  1973. <package
  1974. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-ja-JP.img"
  1975. size="5183988"
  1976. />
  1977. <package
  1978. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-fi-FI.img"
  1979. size="5183988"
  1980. />
  1981. <package
  1982. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-pl-PL.img"
  1983. size="5183988"
  1984. />
  1985. </otaPackages>
  1986. </productMenu>
  1987. <productMenu id="wa"
  1988. type="0" >
  1989. </productMenu>
  1990. <productMenu id="led"
  1991. type="5" >
  1992. </productMenu>
  1993. <productMenu id="led+"
  1994. type="2"
  1995. url="1" >
  1996. </productMenu>
  1997. <productMenu id="meshIntercom"
  1998. type="30" >
  1999. </productMenu>
  2000. <productMenu id="meshIntercom+"
  2001. type="3"
  2002. url="2" >
  2003. </productMenu>
  2004. <productMenu id="waveIntercom"
  2005. type="1" >
  2006. </productMenu>
  2007. <productMenu id="fmradio"
  2008. type="0" >
  2009. </productMenu>
  2010. <productMenu id="phone"
  2011. type="1" >
  2012. </productMenu>
  2013. <productMenu id="music"
  2014. type="1" >
  2015. </productMenu>
  2016. <productMenu id="musicSharing"
  2017. type="0" >
  2018. </productMenu>
  2019. <productMenu id="deviceSetting"
  2020. type="1"
  2021. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2022. <productMenuURL version="1.2.1"
  2023. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2024. />
  2025. </productMenu>
  2026. <productMenu id="quickGuide"
  2027. type="0"
  2028. url=""
  2029. size="1.12MB" >
  2030. </productMenu>
  2031. <productMenu id="userGuide"
  2032. type="1"
  2033. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2034. size="2.0MB" >
  2035. </productMenu>
  2036. <productMenu id="videoGuide"
  2037. type="0"
  2038. url=""
  2039. size="3.41MB" >
  2040. </productMenu>
  2041. <productMenu id="volume"
  2042. type="16" >
  2043. </productMenu>
  2044. <productMenu id="battery"
  2045. type="1" >
  2046. </productMenu>
  2047. <productID id="6A0C"
  2048. />
  2049. <productGroupable type="0"
  2050. />
  2051. </product>
  2052. <product id="PHANTOMKV"
  2053. name="PHANTOM KV"
  2054. series="Helmet"
  2055. latestVersion="1.2.2"
  2056. latestVersionVoicePrompt="1.0"
  2057. show = "-1" >
  2058. <productMenu id="protocol"
  2059. type="2" >
  2060. </productMenu>
  2061. <productMenu id="ota"
  2062. type="0" >
  2063. <otaLanguages>
  2064. <otaLanguage
  2065. id="0"
  2066. name="English"
  2067. package="0"
  2068. />
  2069. <otaLanguage
  2070. id="0"
  2071. name="French"
  2072. package="1"
  2073. />
  2074. <otaLanguage
  2075. id="0"
  2076. name="Spanish"
  2077. package="2"
  2078. />
  2079. <otaLanguage
  2080. id="0"
  2081. name="Italian"
  2082. package="3"
  2083. />
  2084. <otaLanguage
  2085. id="0"
  2086. name="German"
  2087. package="4"
  2088. />
  2089. <otaLanguage
  2090. id="0"
  2091. name="Dutch"
  2092. package="5"
  2093. />
  2094. <otaLanguage
  2095. id="0"
  2096. name="Russian"
  2097. package="6"
  2098. />
  2099. <otaLanguage
  2100. id="0"
  2101. name="Chinese"
  2102. package="7"
  2103. />
  2104. <otaLanguage
  2105. id="0"
  2106. name="Korean"
  2107. package="8"
  2108. />
  2109. <otaLanguage
  2110. id="0"
  2111. name="Japanese"
  2112. package="9"
  2113. />
  2114. <otaLanguage
  2115. id="0"
  2116. name="Finnish"
  2117. package="10"
  2118. />
  2119. <otaLanguage
  2120. id="0"
  2121. name="Polish"
  2122. package="11"
  2123. />
  2124. </otaLanguages>
  2125. <otaPackages>
  2126. <package
  2127. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0.img"
  2128. size="5183988"
  2129. />
  2130. <package
  2131. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fr-FR.img"
  2132. size="5183988"
  2133. />
  2134. <package
  2135. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-es-ES.img"
  2136. size="5183988"
  2137. />
  2138. <package
  2139. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-it-IT.img"
  2140. size="5183988"
  2141. />
  2142. <package
  2143. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-de-DE.img"
  2144. size="5183988"
  2145. />
  2146. <package
  2147. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-nl-NL.img"
  2148. size="5183988"
  2149. />
  2150. <package
  2151. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ru-RU.img"
  2152. size="5183988"
  2153. />
  2154. <package
  2155. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-cmn-CN.img"
  2156. size="5183988"
  2157. />
  2158. <package
  2159. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ko-KR.img"
  2160. size="5183988"
  2161. />
  2162. <package
  2163. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ja-JP.img"
  2164. size="5183988"
  2165. />
  2166. <package
  2167. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fi-FI.img"
  2168. size="5183988"
  2169. />
  2170. <package
  2171. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-pl-PL.img"
  2172. size="5183988"
  2173. />
  2174. </otaPackages>
  2175. </productMenu>
  2176. <productMenu id="wa"
  2177. type="0" >
  2178. </productMenu>
  2179. <productMenu id="led"
  2180. type="5" >
  2181. </productMenu>
  2182. <productMenu id="led+"
  2183. type="2"
  2184. url="1" >
  2185. </productMenu>
  2186. <productMenu id="meshIntercom"
  2187. type="30" >
  2188. </productMenu>
  2189. <productMenu id="meshIntercom+"
  2190. type="3"
  2191. url="2" >
  2192. </productMenu>
  2193. <productMenu id="waveIntercom"
  2194. type="1" >
  2195. </productMenu>
  2196. <productMenu id="fmradio"
  2197. type="0" >
  2198. </productMenu>
  2199. <productMenu id="phone"
  2200. type="1" >
  2201. </productMenu>
  2202. <productMenu id="music"
  2203. type="1" >
  2204. </productMenu>
  2205. <productMenu id="musicSharing"
  2206. type="0" >
  2207. </productMenu>
  2208. <productMenu id="deviceSetting"
  2209. type="1"
  2210. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2211. </productMenu>
  2212. <productMenu id="quickGuide"
  2213. type="0"
  2214. url=""
  2215. size="1.12MB" >
  2216. </productMenu>
  2217. <productMenu id="userGuide"
  2218. type="1"
  2219. url=""
  2220. size="2.0MB" >
  2221. </productMenu>
  2222. <productMenu id="videoGuide"
  2223. type="0"
  2224. url=""
  2225. size="3.41MB" >
  2226. </productMenu>
  2227. <productMenu id="volume"
  2228. type="16" >
  2229. </productMenu>
  2230. <productMenu id="battery"
  2231. type="1" >
  2232. </productMenu>
  2233. <productID id="6A14"
  2234. />
  2235. <productGroupable type="0"
  2236. />
  2237. </product>
  2238. <product id="PHANTOMKV"
  2239. name="PHANTOM KV"
  2240. series="Helmet"
  2241. latestVersion="1.2.2"
  2242. latestVersionVoicePrompt="1.0"
  2243. show = "-1" >
  2244. <productMenu id="protocol"
  2245. type="2" >
  2246. </productMenu>
  2247. <productMenu id="ota"
  2248. type="0" >
  2249. <otaLanguages>
  2250. <otaLanguage
  2251. id="0"
  2252. name="English"
  2253. package="0"
  2254. />
  2255. <otaLanguage
  2256. id="0"
  2257. name="French"
  2258. package="1"
  2259. />
  2260. <otaLanguage
  2261. id="0"
  2262. name="Spanish"
  2263. package="2"
  2264. />
  2265. <otaLanguage
  2266. id="0"
  2267. name="Italian"
  2268. package="3"
  2269. />
  2270. <otaLanguage
  2271. id="0"
  2272. name="German"
  2273. package="4"
  2274. />
  2275. <otaLanguage
  2276. id="0"
  2277. name="Dutch"
  2278. package="5"
  2279. />
  2280. <otaLanguage
  2281. id="0"
  2282. name="Russian"
  2283. package="6"
  2284. />
  2285. <otaLanguage
  2286. id="0"
  2287. name="Chinese"
  2288. package="7"
  2289. />
  2290. <otaLanguage
  2291. id="0"
  2292. name="Korean"
  2293. package="8"
  2294. />
  2295. <otaLanguage
  2296. id="0"
  2297. name="Japanese"
  2298. package="9"
  2299. />
  2300. <otaLanguage
  2301. id="0"
  2302. name="Finnish"
  2303. package="10"
  2304. />
  2305. <otaLanguage
  2306. id="0"
  2307. name="Polish"
  2308. package="11"
  2309. />
  2310. </otaLanguages>
  2311. <otaPackages>
  2312. <package
  2313. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0.img"
  2314. size="5183988"
  2315. />
  2316. <package
  2317. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fr-FR.img"
  2318. size="5183988"
  2319. />
  2320. <package
  2321. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-es-ES.img"
  2322. size="5183988"
  2323. />
  2324. <package
  2325. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-it-IT.img"
  2326. size="5183988"
  2327. />
  2328. <package
  2329. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-de-DE.img"
  2330. size="5183988"
  2331. />
  2332. <package
  2333. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-nl-NL.img"
  2334. size="5183988"
  2335. />
  2336. <package
  2337. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ru-RU.img"
  2338. size="5183988"
  2339. />
  2340. <package
  2341. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-cmn-CN.img"
  2342. size="5183988"
  2343. />
  2344. <package
  2345. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ko-KR.img"
  2346. size="5183988"
  2347. />
  2348. <package
  2349. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ja-JP.img"
  2350. size="5183988"
  2351. />
  2352. <package
  2353. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fi-FI.img"
  2354. size="5183988"
  2355. />
  2356. <package
  2357. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-pl-PL.img"
  2358. size="5183988"
  2359. />
  2360. </otaPackages>
  2361. </productMenu>
  2362. <productMenu id="wa"
  2363. type="0" >
  2364. </productMenu>
  2365. <productMenu id="led"
  2366. type="5" >
  2367. </productMenu>
  2368. <productMenu id="led+"
  2369. type="2"
  2370. url="1" >
  2371. </productMenu>
  2372. <productMenu id="meshIntercom"
  2373. type="30" >
  2374. </productMenu>
  2375. <productMenu id="meshIntercom+"
  2376. type="3"
  2377. url="2" >
  2378. </productMenu>
  2379. <productMenu id="waveIntercom"
  2380. type="1" >
  2381. </productMenu>
  2382. <productMenu id="fmradio"
  2383. type="0" >
  2384. </productMenu>
  2385. <productMenu id="phone"
  2386. type="1" >
  2387. </productMenu>
  2388. <productMenu id="music"
  2389. type="1" >
  2390. </productMenu>
  2391. <productMenu id="musicSharing"
  2392. type="0" >
  2393. </productMenu>
  2394. <productMenu id="deviceSetting"
  2395. type="1"
  2396. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2397. </productMenu>
  2398. <productMenu id="quickGuide"
  2399. type="0"
  2400. url=""
  2401. size="1.12MB" >
  2402. </productMenu>
  2403. <productMenu id="userGuide"
  2404. type="1"
  2405. url=""
  2406. size="2.0MB" >
  2407. </productMenu>
  2408. <productMenu id="videoGuide"
  2409. type="0"
  2410. url=""
  2411. size="3.41MB" >
  2412. </productMenu>
  2413. <productMenu id="volume"
  2414. type="16" >
  2415. </productMenu>
  2416. <productMenu id="battery"
  2417. type="1" >
  2418. </productMenu>
  2419. <productID id="6A13"
  2420. />
  2421. <productGroupable type="0"
  2422. />
  2423. </product>
  2424. <product id="PHANTOMCamera"
  2425. name="PHANTOM Camera"
  2426. series="Helmet"
  2427. latestVersion="0.9"
  2428. latestVersionVoicePrompt="0.3"
  2429. show = "-1" >
  2430. <productMenu id="protocol"
  2431. type="2" >
  2432. </productMenu>
  2433. <productMenu id="ota"
  2434. type="0" >
  2435. <otaLanguages>
  2436. <otaLanguage
  2437. id="0"
  2438. name="English"
  2439. package="0"
  2440. />
  2441. <otaLanguage
  2442. id="0"
  2443. name="French"
  2444. package="1"
  2445. />
  2446. <otaLanguage
  2447. id="0"
  2448. name="Spanish"
  2449. package="2"
  2450. />
  2451. <otaLanguage
  2452. id="0"
  2453. name="Italian"
  2454. package="3"
  2455. />
  2456. <otaLanguage
  2457. id="0"
  2458. name="German"
  2459. package="4"
  2460. />
  2461. <otaLanguage
  2462. id="0"
  2463. name="Dutch"
  2464. package="5"
  2465. />
  2466. <otaLanguage
  2467. id="0"
  2468. name="Russian"
  2469. package="6"
  2470. />
  2471. <otaLanguage
  2472. id="0"
  2473. name="Chinese"
  2474. package="7"
  2475. />
  2476. <otaLanguage
  2477. id="0"
  2478. name="Korean"
  2479. package="8"
  2480. />
  2481. <otaLanguage
  2482. id="0"
  2483. name="Japanese"
  2484. package="9"
  2485. />
  2486. <otaLanguage
  2487. id="0"
  2488. name="Finnish"
  2489. package="10"
  2490. />
  2491. <otaLanguage
  2492. id="0"
  2493. name="Polish"
  2494. package="11"
  2495. />
  2496. </otaLanguages>
  2497. <otaPackages>
  2498. <package
  2499. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2500. size="5183988"
  2501. />
  2502. <package
  2503. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  2504. size="5183988"
  2505. />
  2506. <package
  2507. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  2508. size="5183988"
  2509. />
  2510. <package
  2511. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  2512. size="5183988"
  2513. />
  2514. <package
  2515. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  2516. size="5183988"
  2517. />
  2518. <package
  2519. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  2520. size="5183988"
  2521. />
  2522. <package
  2523. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  2524. size="5183988"
  2525. />
  2526. <package
  2527. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  2528. size="5183988"
  2529. />
  2530. <package
  2531. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  2532. size="5183988"
  2533. />
  2534. <package
  2535. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  2536. size="5183988"
  2537. />
  2538. <package
  2539. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  2540. size="5183988"
  2541. />
  2542. <package
  2543. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  2544. size="5183988"
  2545. />
  2546. </otaPackages>
  2547. </productMenu>
  2548. <productMenu id="wa"
  2549. type="0" >
  2550. </productMenu>
  2551. <productMenu id="led"
  2552. type="5" >
  2553. </productMenu>
  2554. <productMenu id="led+"
  2555. type="2"
  2556. url="1" >
  2557. </productMenu>
  2558. <productMenu id="meshIntercom"
  2559. type="30" >
  2560. </productMenu>
  2561. <productMenu id="meshIntercom+"
  2562. type="3"
  2563. url="2" >
  2564. </productMenu>
  2565. <productMenu id="waveIntercom"
  2566. type="1" >
  2567. </productMenu>
  2568. <productMenu id="fmradio"
  2569. type="0" >
  2570. </productMenu>
  2571. <productMenu id="phone"
  2572. type="1" >
  2573. </productMenu>
  2574. <productMenu id="music"
  2575. type="1" >
  2576. </productMenu>
  2577. <productMenu id="musicSharing"
  2578. type="0" >
  2579. </productMenu>
  2580. <productMenu id="deviceSetting"
  2581. type="1"
  2582. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2583. </productMenu>
  2584. <productMenu id="quickGuide"
  2585. type="0"
  2586. url=""
  2587. size="1.12MB" >
  2588. </productMenu>
  2589. <productMenu id="userGuide"
  2590. type="1"
  2591. url=""
  2592. size="2.0MB" >
  2593. </productMenu>
  2594. <productMenu id="videoGuide"
  2595. type="0"
  2596. url=""
  2597. size="3.41MB" >
  2598. </productMenu>
  2599. <productMenu id="volume"
  2600. type="16" >
  2601. </productMenu>
  2602. <productMenu id="battery"
  2603. type="1" >
  2604. </productMenu>
  2605. <productID id="6A10"
  2606. />
  2607. <productGroupable type="0"
  2608. />
  2609. </product>
  2610. <product id="PHANTOMCamera"
  2611. name="PHANTOM Camera"
  2612. series="Helmet"
  2613. latestVersion="0.9"
  2614. latestVersionVoicePrompt="0.3"
  2615. show = "-1" >
  2616. <productMenu id="protocol"
  2617. type="2" >
  2618. </productMenu>
  2619. <productMenu id="ota"
  2620. type="0" >
  2621. <otaLanguages>
  2622. <otaLanguage
  2623. id="0"
  2624. name="English"
  2625. package="0"
  2626. />
  2627. <otaLanguage
  2628. id="0"
  2629. name="French"
  2630. package="1"
  2631. />
  2632. <otaLanguage
  2633. id="0"
  2634. name="Spanish"
  2635. package="2"
  2636. />
  2637. <otaLanguage
  2638. id="0"
  2639. name="Italian"
  2640. package="3"
  2641. />
  2642. <otaLanguage
  2643. id="0"
  2644. name="German"
  2645. package="4"
  2646. />
  2647. <otaLanguage
  2648. id="0"
  2649. name="Dutch"
  2650. package="5"
  2651. />
  2652. <otaLanguage
  2653. id="0"
  2654. name="Russian"
  2655. package="6"
  2656. />
  2657. <otaLanguage
  2658. id="0"
  2659. name="Chinese"
  2660. package="7"
  2661. />
  2662. <otaLanguage
  2663. id="0"
  2664. name="Korean"
  2665. package="8"
  2666. />
  2667. <otaLanguage
  2668. id="0"
  2669. name="Japanese"
  2670. package="9"
  2671. />
  2672. <otaLanguage
  2673. id="0"
  2674. name="Finnish"
  2675. package="10"
  2676. />
  2677. <otaLanguage
  2678. id="0"
  2679. name="Polish"
  2680. package="11"
  2681. />
  2682. </otaLanguages>
  2683. <otaPackages>
  2684. <package
  2685. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  2686. size="5183988"
  2687. />
  2688. <package
  2689. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  2690. size="5183988"
  2691. />
  2692. <package
  2693. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  2694. size="5183988"
  2695. />
  2696. <package
  2697. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  2698. size="5183988"
  2699. />
  2700. <package
  2701. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  2702. size="5183988"
  2703. />
  2704. <package
  2705. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  2706. size="5183988"
  2707. />
  2708. <package
  2709. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  2710. size="5183988"
  2711. />
  2712. <package
  2713. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  2714. size="5183988"
  2715. />
  2716. <package
  2717. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  2718. size="5183988"
  2719. />
  2720. <package
  2721. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  2722. size="5183988"
  2723. />
  2724. <package
  2725. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  2726. size="5183988"
  2727. />
  2728. <package
  2729. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  2730. size="5183988"
  2731. />
  2732. </otaPackages>
  2733. </productMenu>
  2734. <productMenu id="wa"
  2735. type="0" >
  2736. </productMenu>
  2737. <productMenu id="led"
  2738. type="5" >
  2739. </productMenu>
  2740. <productMenu id="led+"
  2741. type="2"
  2742. url="1" >
  2743. </productMenu>
  2744. <productMenu id="meshIntercom"
  2745. type="30" >
  2746. </productMenu>
  2747. <productMenu id="meshIntercom+"
  2748. type="3"
  2749. url="2" >
  2750. </productMenu>
  2751. <productMenu id="waveIntercom"
  2752. type="1" >
  2753. </productMenu>
  2754. <productMenu id="fmradio"
  2755. type="0" >
  2756. </productMenu>
  2757. <productMenu id="phone"
  2758. type="1" >
  2759. </productMenu>
  2760. <productMenu id="music"
  2761. type="1" >
  2762. </productMenu>
  2763. <productMenu id="musicSharing"
  2764. type="0" >
  2765. </productMenu>
  2766. <productMenu id="deviceSetting"
  2767. type="1"
  2768. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2769. </productMenu>
  2770. <productMenu id="quickGuide"
  2771. type="0"
  2772. url=""
  2773. size="1.12MB" >
  2774. </productMenu>
  2775. <productMenu id="userGuide"
  2776. type="1"
  2777. url=""
  2778. size="2.0MB" >
  2779. </productMenu>
  2780. <productMenu id="videoGuide"
  2781. type="0"
  2782. url=""
  2783. size="3.41MB" >
  2784. </productMenu>
  2785. <productMenu id="volume"
  2786. type="16" >
  2787. </productMenu>
  2788. <productMenu id="battery"
  2789. type="1" >
  2790. </productMenu>
  2791. <productID id="6A09"
  2792. />
  2793. <productGroupable type="0"
  2794. />
  2795. </product>
  2796. <product id="PHANTOM"
  2797. name="PHANTOM ANC"
  2798. series="Helmet"
  2799. latestVersion="1.2.2"
  2800. latestVersionVoicePrompt="1.2"
  2801. show = "1" >
  2802. <productMenu id="protocol"
  2803. type="2" >
  2804. </productMenu>
  2805. <productMenu id="ota"
  2806. type="2" >
  2807. <productMenuType version="0.6.9"
  2808. type="0"
  2809. />
  2810. <otaLanguages>
  2811. <otaLanguage
  2812. id="0"
  2813. name="English"
  2814. package="0"
  2815. />
  2816. <otaLanguage
  2817. id="0"
  2818. name="French"
  2819. package="1"
  2820. />
  2821. <otaLanguage
  2822. id="0"
  2823. name="Spanish"
  2824. package="2"
  2825. />
  2826. <otaLanguage
  2827. id="0"
  2828. name="Italian"
  2829. package="3"
  2830. />
  2831. <otaLanguage
  2832. id="0"
  2833. name="German"
  2834. package="4"
  2835. />
  2836. <otaLanguage
  2837. id="0"
  2838. name="Dutch"
  2839. package="5"
  2840. />
  2841. <otaLanguage
  2842. id="0"
  2843. name="Russian"
  2844. package="6"
  2845. />
  2846. <otaLanguage
  2847. id="0"
  2848. name="Chinese"
  2849. package="7"
  2850. />
  2851. <otaLanguage
  2852. id="0"
  2853. name="Korean"
  2854. package="8"
  2855. />
  2856. <otaLanguage
  2857. id="0"
  2858. name="Japanese"
  2859. package="9"
  2860. />
  2861. <otaLanguage
  2862. id="0"
  2863. name="Finnish"
  2864. package="10"
  2865. />
  2866. <otaLanguage
  2867. id="0"
  2868. name="Polish"
  2869. package="11"
  2870. />
  2871. </otaLanguages>
  2872. <otaPackages>
  2873. <package
  2874. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1.img"
  2875. size="5183988"
  2876. />
  2877. <package
  2878. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-fr-FR.img"
  2879. size="5183988"
  2880. />
  2881. <package
  2882. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-es-ES.img"
  2883. size="5183988"
  2884. />
  2885. <package
  2886. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-it-IT.img"
  2887. size="5183988"
  2888. />
  2889. <package
  2890. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-de-DE.img"
  2891. size="5183988"
  2892. />
  2893. <package
  2894. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-nl-NL.img"
  2895. size="5183988"
  2896. />
  2897. <package
  2898. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-ru-RU.img"
  2899. size="5183988"
  2900. />
  2901. <package
  2902. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-cmn-CN.img"
  2903. size="5183988"
  2904. />
  2905. <package
  2906. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-ko-KR.img"
  2907. size="5183988"
  2908. />
  2909. <package
  2910. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-ja-JP.img"
  2911. size="5183988"
  2912. />
  2913. <package
  2914. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-fi-FI.img"
  2915. size="5183988"
  2916. />
  2917. <package
  2918. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-pl-PL.img"
  2919. size="5183988"
  2920. />
  2921. </otaPackages>
  2922. </productMenu>
  2923. <productMenu id="wa"
  2924. type="0" >
  2925. </productMenu>
  2926. <productMenu id="led"
  2927. type="5" >
  2928. </productMenu>
  2929. <productMenu id="led+"
  2930. type="2"
  2931. url="1" >
  2932. </productMenu>
  2933. <productMenu id="meshIntercom"
  2934. type="30" >
  2935. </productMenu>
  2936. <productMenu id="meshIntercom+"
  2937. type="3"
  2938. url="2" >
  2939. <productMenuURL version="1.0.4"
  2940. url="10"
  2941. />
  2942. </productMenu>
  2943. <productMenu id="waveIntercom"
  2944. type="1" >
  2945. <productMenuType version="1.0.9"
  2946. type="0"
  2947. />
  2948. </productMenu>
  2949. <productMenu id="fmradio"
  2950. type="0" >
  2951. </productMenu>
  2952. <productMenu id="phone"
  2953. type="1" >
  2954. </productMenu>
  2955. <productMenu id="music"
  2956. type="1" >
  2957. </productMenu>
  2958. <productMenu id="musicSharing"
  2959. type="0" >
  2960. </productMenu>
  2961. <productMenu id="deviceSetting"
  2962. type="1"
  2963. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2964. <productMenuURL version="1.2.1"
  2965. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2966. />
  2967. <productMenuURL version="1.1.2"
  2968. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  2969. />
  2970. <productMenuURL version="1.0.4"
  2971. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  2972. />
  2973. </productMenu>
  2974. <productMenu id="quickGuide"
  2975. type="0"
  2976. url=""
  2977. size="1.12MB" >
  2978. </productMenu>
  2979. <productMenu id="userGuide"
  2980. type="1"
  2981. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2982. size="2.0MB" >
  2983. </productMenu>
  2984. <productMenu id="videoGuide"
  2985. type="0"
  2986. url=""
  2987. size="3.41MB" >
  2988. </productMenu>
  2989. <productMenu id="volume"
  2990. type="16" >
  2991. </productMenu>
  2992. <productMenu id="soundMode"
  2993. type="1" >
  2994. <productMenuType version="0.9.11"
  2995. type="0"
  2996. />
  2997. </productMenu>
  2998. <productMenu id="battery"
  2999. type="1" >
  3000. </productMenu>
  3001. <productID id="6A01"
  3002. />
  3003. <productGroupable type="0"
  3004. />
  3005. </product>
  3006. <product id="PHANTOM"
  3007. name="PHANTOM"
  3008. series="Helmet"
  3009. latestVersion="1.2.2"
  3010. latestVersionVoicePrompt="1.2"
  3011. show = "-1" >
  3012. <productMenu id="protocol"
  3013. type="2" >
  3014. </productMenu>
  3015. <productMenu id="ota"
  3016. type="2" >
  3017. <otaLanguages>
  3018. <otaLanguage
  3019. id="0"
  3020. name="English"
  3021. package="0"
  3022. />
  3023. <otaLanguage
  3024. id="0"
  3025. name="French"
  3026. package="1"
  3027. />
  3028. <otaLanguage
  3029. id="0"
  3030. name="Spanish"
  3031. package="2"
  3032. />
  3033. <otaLanguage
  3034. id="0"
  3035. name="Italian"
  3036. package="3"
  3037. />
  3038. <otaLanguage
  3039. id="0"
  3040. name="German"
  3041. package="4"
  3042. />
  3043. <otaLanguage
  3044. id="0"
  3045. name="Dutch"
  3046. package="5"
  3047. />
  3048. <otaLanguage
  3049. id="0"
  3050. name="Russian"
  3051. package="6"
  3052. />
  3053. <otaLanguage
  3054. id="0"
  3055. name="Chinese"
  3056. package="7"
  3057. />
  3058. <otaLanguage
  3059. id="0"
  3060. name="Korean"
  3061. package="8"
  3062. />
  3063. <otaLanguage
  3064. id="0"
  3065. name="Japanese"
  3066. package="9"
  3067. />
  3068. <otaLanguage
  3069. id="0"
  3070. name="Finnish"
  3071. package="10"
  3072. />
  3073. <otaLanguage
  3074. id="0"
  3075. name="Polish"
  3076. package="11"
  3077. />
  3078. </otaLanguages>
  3079. <otaPackages>
  3080. <package
  3081. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1.img"
  3082. size="5183988"
  3083. />
  3084. <package
  3085. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-fr-FR.img"
  3086. size="5183988"
  3087. />
  3088. <package
  3089. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-es-ES.img"
  3090. size="5183988"
  3091. />
  3092. <package
  3093. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-it-IT.img"
  3094. size="5183988"
  3095. />
  3096. <package
  3097. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-de-DE.img"
  3098. size="5183988"
  3099. />
  3100. <package
  3101. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-nl-NL.img"
  3102. size="5183988"
  3103. />
  3104. <package
  3105. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-ru-RU.img"
  3106. size="5183988"
  3107. />
  3108. <package
  3109. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-cmn-CN.img"
  3110. size="5183988"
  3111. />
  3112. <package
  3113. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-ko-KR.img"
  3114. size="5183988"
  3115. />
  3116. <package
  3117. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-ja-JP.img"
  3118. size="5183988"
  3119. />
  3120. <package
  3121. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-fi-FI.img"
  3122. size="5183988"
  3123. />
  3124. <package
  3125. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-pl-PL.img"
  3126. size="5183988"
  3127. />
  3128. </otaPackages>
  3129. </productMenu>
  3130. <productMenu id="wa"
  3131. type="0" >
  3132. </productMenu>
  3133. <productMenu id="led"
  3134. type="5" >
  3135. </productMenu>
  3136. <productMenu id="led+"
  3137. type="2"
  3138. url="1" >
  3139. </productMenu>
  3140. <productMenu id="meshIntercom"
  3141. type="30" >
  3142. </productMenu>
  3143. <productMenu id="meshIntercom+"
  3144. type="3"
  3145. url="2" >
  3146. </productMenu>
  3147. <productMenu id="waveIntercom"
  3148. type="1" >
  3149. </productMenu>
  3150. <productMenu id="fmradio"
  3151. type="0" >
  3152. </productMenu>
  3153. <productMenu id="phone"
  3154. type="1" >
  3155. </productMenu>
  3156. <productMenu id="music"
  3157. type="1" >
  3158. </productMenu>
  3159. <productMenu id="musicSharing"
  3160. type="0" >
  3161. </productMenu>
  3162. <productMenu id="deviceSetting"
  3163. type="1"
  3164. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  3165. </productMenu>
  3166. <productMenu id="quickGuide"
  3167. type="0"
  3168. url=""
  3169. size="1.52MB" >
  3170. </productMenu>
  3171. <productMenu id="userGuide"
  3172. type="1"
  3173. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3174. size="2.01MB" >
  3175. </productMenu>
  3176. <productMenu id="videoGuide"
  3177. type="0"
  3178. url=""
  3179. size="3.46MB" >
  3180. </productMenu>
  3181. <productMenu id="connectGuide"
  3182. type="1"
  3183. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3184. size="1.1MB" >
  3185. </productMenu>
  3186. <productMenu id="volume"
  3187. type="16" >
  3188. </productMenu>
  3189. <productMenu id="battery"
  3190. type="1" >
  3191. </productMenu>
  3192. <productID id="6A0E"
  3193. />
  3194. <productGroupable type="0"
  3195. />
  3196. </product>
  3197. <product id="PHANTOM"
  3198. name="PHANTOM"
  3199. series="Helmet"
  3200. latestVersion="1.2.2"
  3201. latestVersionVoicePrompt="1.2"
  3202. show = "1" >
  3203. <productMenu id="protocol"
  3204. type="2" >
  3205. </productMenu>
  3206. <productMenu id="ota"
  3207. type="2" >
  3208. <otaLanguages>
  3209. <otaLanguage
  3210. id="0"
  3211. name="English"
  3212. package="0"
  3213. />
  3214. <otaLanguage
  3215. id="0"
  3216. name="French"
  3217. package="1"
  3218. />
  3219. <otaLanguage
  3220. id="0"
  3221. name="Spanish"
  3222. package="2"
  3223. />
  3224. <otaLanguage
  3225. id="0"
  3226. name="Italian"
  3227. package="3"
  3228. />
  3229. <otaLanguage
  3230. id="0"
  3231. name="German"
  3232. package="4"
  3233. />
  3234. <otaLanguage
  3235. id="0"
  3236. name="Dutch"
  3237. package="5"
  3238. />
  3239. <otaLanguage
  3240. id="0"
  3241. name="Russian"
  3242. package="6"
  3243. />
  3244. <otaLanguage
  3245. id="0"
  3246. name="Chinese"
  3247. package="7"
  3248. />
  3249. <otaLanguage
  3250. id="0"
  3251. name="Korean"
  3252. package="8"
  3253. />
  3254. <otaLanguage
  3255. id="0"
  3256. name="Japanese"
  3257. package="9"
  3258. />
  3259. <otaLanguage
  3260. id="0"
  3261. name="Finnish"
  3262. package="10"
  3263. />
  3264. <otaLanguage
  3265. id="0"
  3266. name="Polish"
  3267. package="11"
  3268. />
  3269. </otaLanguages>
  3270. <otaPackages>
  3271. <package
  3272. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1.img"
  3273. size="5183988"
  3274. />
  3275. <package
  3276. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-fr-FR.img"
  3277. size="5183988"
  3278. />
  3279. <package
  3280. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-es-ES.img"
  3281. size="5183988"
  3282. />
  3283. <package
  3284. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-it-IT.img"
  3285. size="5183988"
  3286. />
  3287. <package
  3288. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-de-DE.img"
  3289. size="5183988"
  3290. />
  3291. <package
  3292. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-nl-NL.img"
  3293. size="5183988"
  3294. />
  3295. <package
  3296. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-ru-RU.img"
  3297. size="5183988"
  3298. />
  3299. <package
  3300. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-cmn-CN.img"
  3301. size="5183988"
  3302. />
  3303. <package
  3304. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-ko-KR.img"
  3305. size="5183988"
  3306. />
  3307. <package
  3308. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-ja-JP.img"
  3309. size="5183988"
  3310. />
  3311. <package
  3312. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-fi-FI.img"
  3313. size="5183988"
  3314. />
  3315. <package
  3316. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-pl-PL.img"
  3317. size="5183988"
  3318. />
  3319. </otaPackages>
  3320. </productMenu>
  3321. <productMenu id="wa"
  3322. type="0" >
  3323. </productMenu>
  3324. <productMenu id="led"
  3325. type="5" >
  3326. <productMenuType version="1.0.1"
  3327. type="4"
  3328. />
  3329. </productMenu>
  3330. <productMenu id="led+"
  3331. type="2"
  3332. url="1" >
  3333. <productMenuType version="1.0.1"
  3334. type="-1"
  3335. />
  3336. </productMenu>
  3337. <productMenu id="meshIntercom"
  3338. type="30" >
  3339. </productMenu>
  3340. <productMenu id="meshIntercom+"
  3341. type="3"
  3342. url="2" >
  3343. <productMenuURL version="1.0.4"
  3344. url="10"
  3345. />
  3346. </productMenu>
  3347. <productMenu id="waveIntercom"
  3348. type="1" >
  3349. <productMenuType version="1.0.9"
  3350. type="0"
  3351. />
  3352. </productMenu>
  3353. <productMenu id="fmradio"
  3354. type="0" >
  3355. </productMenu>
  3356. <productMenu id="phone"
  3357. type="1" >
  3358. </productMenu>
  3359. <productMenu id="music"
  3360. type="1" >
  3361. </productMenu>
  3362. <productMenu id="musicSharing"
  3363. type="0" >
  3364. </productMenu>
  3365. <productMenu id="deviceSetting"
  3366. type="1"
  3367. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  3368. <productMenuURL version="1.2.1"
  3369. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3370. />
  3371. <productMenuURL version="1.0.4"
  3372. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  3373. />
  3374. <productMenuURL version="1.0.1"
  3375. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  3376. />
  3377. </productMenu>
  3378. <productMenu id="quickGuide"
  3379. type="0"
  3380. url=""
  3381. size="1.12MB" >
  3382. </productMenu>
  3383. <productMenu id="userGuide"
  3384. type="1"
  3385. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3386. size="2.0MB" >
  3387. </productMenu>
  3388. <productMenu id="videoGuide"
  3389. type="0"
  3390. url=""
  3391. size="3.41MB" >
  3392. </productMenu>
  3393. <productMenu id="connectGuide"
  3394. type="1"
  3395. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3396. size="1.12MB" >
  3397. </productMenu>
  3398. <productMenu id="volume"
  3399. type="16" >
  3400. <productMenuType version="1.0"
  3401. type="13"
  3402. />
  3403. </productMenu>
  3404. <productMenu id="battery"
  3405. type="1" >
  3406. </productMenu>
  3407. <productID id="6A04"
  3408. />
  3409. <productGroupable type="0"
  3410. />
  3411. </product>
  3412. <product id="PHANTOMEasyLink"
  3413. name="PHANTOM EasyLink"
  3414. series="Helmet"
  3415. latestVersion="0.1"
  3416. latestVersionVoicePrompt="1.2"
  3417. show = "-1" >
  3418. <productMenu id="protocol"
  3419. type="2" >
  3420. </productMenu>
  3421. <productMenu id="ota"
  3422. type="0" >
  3423. <otaLanguages>
  3424. <otaLanguage
  3425. id="0"
  3426. name="English"
  3427. package="0"
  3428. />
  3429. <otaLanguage
  3430. id="0"
  3431. name="French"
  3432. package="1"
  3433. />
  3434. <otaLanguage
  3435. id="0"
  3436. name="Spanish"
  3437. package="2"
  3438. />
  3439. <otaLanguage
  3440. id="0"
  3441. name="Italian"
  3442. package="3"
  3443. />
  3444. <otaLanguage
  3445. id="0"
  3446. name="German"
  3447. package="4"
  3448. />
  3449. <otaLanguage
  3450. id="0"
  3451. name="Dutch"
  3452. package="5"
  3453. />
  3454. <otaLanguage
  3455. id="0"
  3456. name="Russian"
  3457. package="6"
  3458. />
  3459. <otaLanguage
  3460. id="0"
  3461. name="Chinese"
  3462. package="7"
  3463. />
  3464. <otaLanguage
  3465. id="0"
  3466. name="Korean"
  3467. package="8"
  3468. />
  3469. <otaLanguage
  3470. id="0"
  3471. name="Japanese"
  3472. package="9"
  3473. />
  3474. <otaLanguage
  3475. id="0"
  3476. name="Finnish"
  3477. package="10"
  3478. />
  3479. <otaLanguage
  3480. id="0"
  3481. name="Polish"
  3482. package="11"
  3483. />
  3484. </otaLanguages>
  3485. <otaPackages>
  3486. <package
  3487. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  3488. size="5183988"
  3489. />
  3490. <package
  3491. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  3492. size="5183988"
  3493. />
  3494. <package
  3495. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  3496. size="5183988"
  3497. />
  3498. <package
  3499. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  3500. size="5183988"
  3501. />
  3502. <package
  3503. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  3504. size="5183988"
  3505. />
  3506. <package
  3507. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  3508. size="5183988"
  3509. />
  3510. <package
  3511. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  3512. size="5183988"
  3513. />
  3514. <package
  3515. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  3516. size="5183988"
  3517. />
  3518. <package
  3519. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  3520. size="5183988"
  3521. />
  3522. <package
  3523. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  3524. size="5183988"
  3525. />
  3526. <package
  3527. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  3528. size="5183988"
  3529. />
  3530. <package
  3531. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  3532. size="5183988"
  3533. />
  3534. </otaPackages>
  3535. </productMenu>
  3536. <productMenu id="meshIntercom"
  3537. type="30" >
  3538. </productMenu>
  3539. <productMenu id="meshIntercom+"
  3540. type="3"
  3541. url="2" >
  3542. </productMenu>
  3543. <productMenu id="waveIntercom"
  3544. type="1" >
  3545. </productMenu>
  3546. <productMenu id="fmradio"
  3547. type="0" >
  3548. </productMenu>
  3549. <productMenu id="phone"
  3550. type="1" >
  3551. </productMenu>
  3552. <productMenu id="music"
  3553. type="1" >
  3554. </productMenu>
  3555. <productMenu id="musicSharing"
  3556. type="0" >
  3557. </productMenu>
  3558. <productMenu id="deviceSetting"
  3559. type="1"
  3560. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  3561. </productMenu>
  3562. <productMenu id="quickGuide"
  3563. type="0"
  3564. url=""
  3565. size="1.12MB" >
  3566. </productMenu>
  3567. <productMenu id="userGuide"
  3568. type="1"
  3569. url=""
  3570. size="2.0MB" >
  3571. </productMenu>
  3572. <productMenu id="videoGuide"
  3573. type="0"
  3574. url=""
  3575. size="3.41MB" >
  3576. </productMenu>
  3577. <productMenu id="connectGuide"
  3578. type="0"
  3579. url=""
  3580. size="1.12MB" >
  3581. </productMenu>
  3582. <productMenu id="volume"
  3583. type="16" >
  3584. </productMenu>
  3585. <productMenu id="battery"
  3586. type="1" >
  3587. </productMenu>
  3588. <productID id="6A18"
  3589. />
  3590. <productGroupable type="0"
  3591. />
  3592. </product>
  3593. <product id="SPIDERXSlim"
  3594. name="SPIDER X Slim"
  3595. series="SPIDER"
  3596. latestVersion="0.1.11"
  3597. latestVersionVoicePrompt="1.1"
  3598. show = "-1" >
  3599. <productMenu id="protocol"
  3600. type="2" >
  3601. </productMenu>
  3602. <productMenu id="ota"
  3603. type="0" >
  3604. <otaLanguages>
  3605. <otaLanguage
  3606. id="0"
  3607. name="English"
  3608. package="0"
  3609. />
  3610. <otaLanguage
  3611. id="0"
  3612. name="French"
  3613. package="1"
  3614. />
  3615. <otaLanguage
  3616. id="0"
  3617. name="Spanish"
  3618. package="2"
  3619. />
  3620. <otaLanguage
  3621. id="0"
  3622. name="Italian"
  3623. package="3"
  3624. />
  3625. <otaLanguage
  3626. id="0"
  3627. name="German"
  3628. package="4"
  3629. />
  3630. <otaLanguage
  3631. id="0"
  3632. name="Dutch"
  3633. package="5"
  3634. />
  3635. <otaLanguage
  3636. id="0"
  3637. name="Russian"
  3638. package="6"
  3639. />
  3640. <otaLanguage
  3641. id="0"
  3642. name="Chinese"
  3643. package="7"
  3644. />
  3645. <otaLanguage
  3646. id="0"
  3647. name="Korean"
  3648. package="8"
  3649. />
  3650. <otaLanguage
  3651. id="0"
  3652. name="Japanese"
  3653. package="9"
  3654. />
  3655. <otaLanguage
  3656. id="0"
  3657. name="Finnish"
  3658. package="10"
  3659. />
  3660. <otaLanguage
  3661. id="0"
  3662. name="Polish"
  3663. package="11"
  3664. />
  3665. </otaLanguages>
  3666. <otaPackages>
  3667. <package
  3668. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0.img"
  3669. size="5183988"
  3670. />
  3671. <package
  3672. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-fr-FR.img"
  3673. size="5183988"
  3674. />
  3675. <package
  3676. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-es-ES.img"
  3677. size="5183988"
  3678. />
  3679. <package
  3680. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-it-IT.img"
  3681. size="5183988"
  3682. />
  3683. <package
  3684. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-de-DE.img"
  3685. size="5183988"
  3686. />
  3687. <package
  3688. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-nl-NL.img"
  3689. size="5183988"
  3690. />
  3691. <package
  3692. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-ru-RU.img"
  3693. size="5183988"
  3694. />
  3695. <package
  3696. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-cmn-CN.img"
  3697. size="5183988"
  3698. />
  3699. <package
  3700. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-ko-KR.img"
  3701. size="5183988"
  3702. />
  3703. <package
  3704. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-ja-JP.img"
  3705. size="5183988"
  3706. />
  3707. <package
  3708. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-fi-FI.img"
  3709. size="5183988"
  3710. />
  3711. <package
  3712. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-pl-PL.img"
  3713. size="5183988"
  3714. />
  3715. </otaPackages>
  3716. </productMenu>
  3717. <productMenu id="wa"
  3718. type="0" >
  3719. </productMenu>
  3720. <productMenu id="led"
  3721. type="5" >
  3722. </productMenu>
  3723. <productMenu id="led+"
  3724. type="2"
  3725. url="1" >
  3726. </productMenu>
  3727. <productMenu id="meshIntercom"
  3728. type="30" >
  3729. </productMenu>
  3730. <productMenu id="meshIntercom+"
  3731. type="3"
  3732. url="2" >
  3733. </productMenu>
  3734. <productMenu id="waveIntercom"
  3735. type="1" >
  3736. </productMenu>
  3737. <productMenu id="fmradio"
  3738. type="0" >
  3739. </productMenu>
  3740. <productMenu id="phone"
  3741. type="1" >
  3742. </productMenu>
  3743. <productMenu id="music"
  3744. type="1" >
  3745. </productMenu>
  3746. <productMenu id="musicSharing"
  3747. type="0" >
  3748. </productMenu>
  3749. <productMenu id="deviceSetting"
  3750. type="1"
  3751. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  3752. </productMenu>
  3753. <productMenu id="quickGuide"
  3754. type="0"
  3755. url=""
  3756. size="1.12MB" >
  3757. </productMenu>
  3758. <productMenu id="userGuide"
  3759. type="1"
  3760. url=""
  3761. size="2.0MB" >
  3762. </productMenu>
  3763. <productMenu id="videoGuide"
  3764. type="0"
  3765. url=""
  3766. size="3.41MB" >
  3767. </productMenu>
  3768. <productMenu id="volume"
  3769. type="16" >
  3770. </productMenu>
  3771. <productMenu id="battery"
  3772. type="1" >
  3773. </productMenu>
  3774. <productID id="6A07"
  3775. />
  3776. <productGroupable type="0"
  3777. />
  3778. </product>
  3779. <product id="VORTEXMESH"
  3780. name="VORTEX MESH"
  3781. series="Helmet"
  3782. latestVersion="0.1.11"
  3783. latestVersionVoicePrompt="1.1"
  3784. show = "-1" >
  3785. <productMenu id="protocol"
  3786. type="2" >
  3787. </productMenu>
  3788. <productMenu id="ota"
  3789. type="0" >
  3790. <otaLanguages>
  3791. <otaLanguage
  3792. id="0"
  3793. name="English"
  3794. package="0"
  3795. />
  3796. <otaLanguage
  3797. id="0"
  3798. name="French"
  3799. package="1"
  3800. />
  3801. <otaLanguage
  3802. id="0"
  3803. name="Spanish"
  3804. package="2"
  3805. />
  3806. <otaLanguage
  3807. id="0"
  3808. name="Italian"
  3809. package="3"
  3810. />
  3811. <otaLanguage
  3812. id="0"
  3813. name="German"
  3814. package="4"
  3815. />
  3816. <otaLanguage
  3817. id="0"
  3818. name="Dutch"
  3819. package="5"
  3820. />
  3821. <otaLanguage
  3822. id="0"
  3823. name="Russian"
  3824. package="6"
  3825. />
  3826. <otaLanguage
  3827. id="0"
  3828. name="Chinese"
  3829. package="7"
  3830. />
  3831. <otaLanguage
  3832. id="0"
  3833. name="Korean"
  3834. package="8"
  3835. />
  3836. <otaLanguage
  3837. id="0"
  3838. name="Japanese"
  3839. package="9"
  3840. />
  3841. <otaLanguage
  3842. id="0"
  3843. name="Finnish"
  3844. package="10"
  3845. />
  3846. <otaLanguage
  3847. id="0"
  3848. name="Polish"
  3849. package="11"
  3850. />
  3851. </otaLanguages>
  3852. <otaPackages>
  3853. <package
  3854. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  3855. size="5183988"
  3856. />
  3857. <package
  3858. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  3859. size="5183988"
  3860. />
  3861. <package
  3862. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  3863. size="5183988"
  3864. />
  3865. <package
  3866. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  3867. size="5183988"
  3868. />
  3869. <package
  3870. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  3871. size="5183988"
  3872. />
  3873. <package
  3874. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  3875. size="5183988"
  3876. />
  3877. <package
  3878. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  3879. size="5183988"
  3880. />
  3881. <package
  3882. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  3883. size="5183988"
  3884. />
  3885. <package
  3886. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  3887. size="5183988"
  3888. />
  3889. <package
  3890. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  3891. size="5183988"
  3892. />
  3893. <package
  3894. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  3895. size="5183988"
  3896. />
  3897. <package
  3898. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  3899. size="5183988"
  3900. />
  3901. </otaPackages>
  3902. </productMenu>
  3903. <productMenu id="wa"
  3904. type="0" >
  3905. </productMenu>
  3906. <productMenu id="led"
  3907. type="5" >
  3908. </productMenu>
  3909. <productMenu id="led+"
  3910. type="2"
  3911. url="1" >
  3912. </productMenu>
  3913. <productMenu id="meshIntercom"
  3914. type="30" >
  3915. </productMenu>
  3916. <productMenu id="meshIntercom+"
  3917. type="3"
  3918. url="2" >
  3919. </productMenu>
  3920. <productMenu id="waveIntercom"
  3921. type="1" >
  3922. </productMenu>
  3923. <productMenu id="fmradio"
  3924. type="0" >
  3925. </productMenu>
  3926. <productMenu id="phone"
  3927. type="1" >
  3928. </productMenu>
  3929. <productMenu id="music"
  3930. type="1" >
  3931. </productMenu>
  3932. <productMenu id="musicSharing"
  3933. type="0" >
  3934. </productMenu>
  3935. <productMenu id="deviceSetting"
  3936. type="1"
  3937. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  3938. </productMenu>
  3939. <productMenu id="quickGuide"
  3940. type="0"
  3941. url=""
  3942. size="1.12MB" >
  3943. </productMenu>
  3944. <productMenu id="userGuide"
  3945. type="1"
  3946. url=""
  3947. size="2.0MB" >
  3948. </productMenu>
  3949. <productMenu id="videoGuide"
  3950. type="0"
  3951. url=""
  3952. size="3.41MB" >
  3953. </productMenu>
  3954. <productMenu id="volume"
  3955. type="16" >
  3956. </productMenu>
  3957. <productMenu id="battery"
  3958. type="1" >
  3959. </productMenu>
  3960. <productID id="6A12"
  3961. />
  3962. <productGroupable type="0"
  3963. />
  3964. </product>
  3965. <product id="Impulse"
  3966. name="Impulse"
  3967. series="Helmet"
  3968. latestVersion="1.4"
  3969. show = "1" >
  3970. <productMenu id="protocol"
  3971. type="2" >
  3972. </productMenu>
  3973. <productMenu id="alexa"
  3974. type="0" >
  3975. </productMenu>
  3976. <productMenu id="ota"
  3977. type="0" >
  3978. </productMenu>
  3979. <productMenu id="wa"
  3980. type="24" >
  3981. </productMenu>
  3982. <productMenu id="manager"
  3983. type="0" >
  3984. </productMenu>
  3985. <productMenu id="sip"
  3986. type="1" >
  3987. </productMenu>
  3988. <productMenu id="led"
  3989. type="1" >
  3990. <productMenuType version="1.0.1"
  3991. type="2"
  3992. />
  3993. <productMenuType version="1.0"
  3994. type="1"
  3995. />
  3996. </productMenu>
  3997. <productMenu id="meshIntercom"
  3998. type="30" >
  3999. <productMenuType version="1.1.1"
  4000. type="20"
  4001. />
  4002. </productMenu>
  4003. <productMenu id="meshIntercom+"
  4004. type="3"
  4005. url="2" >
  4006. <productMenuType version="1.3.9"
  4007. type="2"
  4008. />
  4009. <productMenuURL version="1.1.1"
  4010. url="0"
  4011. />
  4012. </productMenu>
  4013. <productMenu id="waveIntercom"
  4014. type="1" >
  4015. <productMenuType version="1.3.9"
  4016. type="0"
  4017. />
  4018. </productMenu>
  4019. <productMenu id="bluetoothIntercom"
  4020. type="1" >
  4021. </productMenu>
  4022. <productMenu id="phone"
  4023. type="1" >
  4024. </productMenu>
  4025. <productMenu id="music"
  4026. type="1" >
  4027. </productMenu>
  4028. <productMenu id="fmradio"
  4029. type="1" >
  4030. </productMenu>
  4031. <productMenu id="deviceSetting"
  4032. type="1"
  4033. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4034. <productMenuURL version="1.3.9"
  4035. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4036. />
  4037. <productMenuURL version="1.1.1"
  4038. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4039. />
  4040. <productMenuURL version="1.0.4"
  4041. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4042. />
  4043. </productMenu>
  4044. <productMenu id="quickGuide"
  4045. type="0"
  4046. url=""
  4047. size="344KB" >
  4048. </productMenu>
  4049. <productMenu id="userGuide"
  4050. type="1"
  4051. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  4052. size="3.41MB" >
  4053. </productMenu>
  4054. <productMenu id="connectGuide"
  4055. type="1"
  4056. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4057. size="1.12MB" >
  4058. </productMenu>
  4059. <productMenu id="volume"
  4060. type="11" >
  4061. </productMenu>
  4062. <productMenu id="battery"
  4063. type="1" >
  4064. </productMenu>
  4065. <productID id="3148"
  4066. />
  4067. <productGroupable type="0"
  4068. />
  4069. </product>
  4070. <product id="Impulse"
  4071. name="Impulse"
  4072. series="Helmet"
  4073. latestVersion="2.0"
  4074. show = "-1" >
  4075. <productMenu id="protocol"
  4076. type="2" >
  4077. </productMenu>
  4078. <productMenu id="alexa"
  4079. type="0" >
  4080. </productMenu>
  4081. <productMenu id="ota"
  4082. type="0" >
  4083. </productMenu>
  4084. <productMenu id="wa"
  4085. type="8" >
  4086. </productMenu>
  4087. <productMenu id="manager"
  4088. type="0" >
  4089. </productMenu>
  4090. <productMenu id="sip"
  4091. type="1" >
  4092. </productMenu>
  4093. <productMenu id="led"
  4094. type="3" >
  4095. </productMenu>
  4096. <productMenu id="meshIntercom"
  4097. type="20" >
  4098. </productMenu>
  4099. <productMenu id="bluetoothIntercom"
  4100. type="1" >
  4101. </productMenu>
  4102. <productMenu id="phone"
  4103. type="1" >
  4104. </productMenu>
  4105. <productMenu id="music"
  4106. type="1" >
  4107. </productMenu>
  4108. <productMenu id="fmradio"
  4109. type="1" >
  4110. </productMenu>
  4111. <productMenu id="deviceSetting"
  4112. type="1"
  4113. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  4114. </productMenu>
  4115. <productMenu id="quickGuide"
  4116. type="1"
  4117. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  4118. size="344KB" >
  4119. </productMenu>
  4120. <productMenu id="userGuide"
  4121. type="1"
  4122. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  4123. size="3.41MB" >
  4124. </productMenu>
  4125. <productMenu id="volume"
  4126. type="11" >
  4127. </productMenu>
  4128. <productMenu id="battery"
  4129. type="1" >
  4130. </productMenu>
  4131. <productID id="3221"
  4132. />
  4133. <productGroupable type="0"
  4134. />
  4135. </product>
  4136. <product id="Stryker"
  4137. name="Stryker"
  4138. series="Helmet"
  4139. latestVersion="1.4"
  4140. show = "1" >
  4141. <productMenu id="protocol"
  4142. type="2" >
  4143. </productMenu>
  4144. <productMenu id="alexa"
  4145. type="0" >
  4146. </productMenu>
  4147. <productMenu id="ota"
  4148. type="0" >
  4149. </productMenu>
  4150. <productMenu id="wa"
  4151. type="40" >
  4152. </productMenu>
  4153. <productMenu id="manager"
  4154. type="0" >
  4155. </productMenu>
  4156. <productMenu id="sip"
  4157. type="1" >
  4158. </productMenu>
  4159. <productMenu id="led"
  4160. type="1" >
  4161. <productMenuType version="1.0.1"
  4162. type="2"
  4163. />
  4164. <productMenuType version="1.0"
  4165. type="1"
  4166. />
  4167. </productMenu>
  4168. <productMenu id="meshIntercom"
  4169. type="30" >
  4170. <productMenuType version="1.1.1"
  4171. type="20"
  4172. />
  4173. </productMenu>
  4174. <productMenu id="meshIntercom+"
  4175. type="3"
  4176. url="2" >
  4177. <productMenuType version="1.3.9"
  4178. type="2"
  4179. />
  4180. <productMenuURL version="1.1.1"
  4181. url="0"
  4182. />
  4183. </productMenu>
  4184. <productMenu id="waveIntercom"
  4185. type="1" >
  4186. <productMenuType version="1.2.9"
  4187. type="0"
  4188. />
  4189. </productMenu>
  4190. <productMenu id="bluetoothIntercom"
  4191. type="1" >
  4192. </productMenu>
  4193. <productMenu id="phone"
  4194. type="1" >
  4195. </productMenu>
  4196. <productMenu id="music"
  4197. type="1" >
  4198. </productMenu>
  4199. <productMenu id="fmradio"
  4200. type="1" >
  4201. </productMenu>
  4202. <productMenu id="deviceSetting"
  4203. type="1"
  4204. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4205. <productMenuURL version="1.3.9"
  4206. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4207. />
  4208. <productMenuURL version="1.1.1"
  4209. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4210. />
  4211. <productMenuURL version="1.0.4"
  4212. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4213. />
  4214. </productMenu>
  4215. <productMenu id="quickGuide"
  4216. type="0"
  4217. url=""
  4218. size="344KB" >
  4219. </productMenu>
  4220. <productMenu id="userGuide"
  4221. type="1"
  4222. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  4223. size="3.41MB" >
  4224. </productMenu>
  4225. <productMenu id="connectGuide"
  4226. type="1"
  4227. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4228. size="1.12MB" >
  4229. </productMenu>
  4230. <productMenu id="volume"
  4231. type="11" >
  4232. </productMenu>
  4233. <productMenu id="battery"
  4234. type="1" >
  4235. </productMenu>
  4236. <productID id="3154"
  4237. />
  4238. <productGroupable type="0"
  4239. />
  4240. </product>
  4241. <product id="SRL3"
  4242. name="SRL3"
  4243. series="SRL"
  4244. latestVersion="1.5"
  4245. show = "1" >
  4246. <productMenu id="protocol"
  4247. type="2" >
  4248. </productMenu>
  4249. <productMenu id="alexa"
  4250. type="0" >
  4251. </productMenu>
  4252. <productMenu id="ota"
  4253. type="0" >
  4254. </productMenu>
  4255. <productMenu id="wa"
  4256. type="1" >
  4257. </productMenu>
  4258. <productMenu id="sip"
  4259. type="1" >
  4260. </productMenu>
  4261. <productMenu id="meshIntercom"
  4262. type="30" >
  4263. </productMenu>
  4264. <productMenu id="meshIntercom+"
  4265. type="3"
  4266. url="2" >
  4267. <productMenuType version="1.3.9"
  4268. type="2"
  4269. />
  4270. </productMenu>
  4271. <productMenu id="waveIntercom"
  4272. type="1" >
  4273. <productMenuType version="1.4.9"
  4274. type="0"
  4275. />
  4276. </productMenu>
  4277. <productMenu id="bluetoothIntercom"
  4278. type="1" >
  4279. </productMenu>
  4280. <productMenu id="phone"
  4281. type="1" >
  4282. </productMenu>
  4283. <productMenu id="music"
  4284. type="1" >
  4285. </productMenu>
  4286. <productMenu id="fmradio"
  4287. type="1" >
  4288. </productMenu>
  4289. <productMenu id="deviceSetting"
  4290. type="1"
  4291. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  4292. <productMenuURL version="1.3"
  4293. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  4294. />
  4295. </productMenu>
  4296. <productMenu id="quickGuide"
  4297. type="0"
  4298. url=""
  4299. size="344KB" >
  4300. </productMenu>
  4301. <productMenu id="userGuide"
  4302. type="1"
  4303. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  4304. size="3.41MB" >
  4305. </productMenu>
  4306. <productMenu id="connectGuide"
  4307. type="1"
  4308. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4309. size="1.12MB" >
  4310. </productMenu>
  4311. <productMenu id="volume"
  4312. type="11" >
  4313. </productMenu>
  4314. <productMenu id="battery"
  4315. type="1" >
  4316. </productMenu>
  4317. <productID id="3219"
  4318. />
  4319. <productGroupable type="0"
  4320. />
  4321. </product>
  4322. <product id="SRL_Mesh"
  4323. name="SRL-Mesh"
  4324. series="SRL"
  4325. latestVersion="1.7"
  4326. show = "1" >
  4327. <productMenu id="protocol"
  4328. type="2" >
  4329. </productMenu>
  4330. <productMenu id="alexa"
  4331. type="0" >
  4332. </productMenu>
  4333. <productMenu id="ota"
  4334. type="0" >
  4335. </productMenu>
  4336. <productMenu id="wa"
  4337. type="1" >
  4338. </productMenu>
  4339. <productMenu id="sip"
  4340. type="1" >
  4341. </productMenu>
  4342. <productMenu id="meshIntercom"
  4343. type="30" >
  4344. <productMenuType version="1.1.1"
  4345. type="20"
  4346. />
  4347. </productMenu>
  4348. <productMenu id="meshIntercom+"
  4349. type="3"
  4350. url="2" >
  4351. <productMenuType version="1.5.9"
  4352. type="2"
  4353. />
  4354. <productMenuURL version="1.1.1"
  4355. url="0"
  4356. />
  4357. </productMenu>
  4358. <productMenu id="waveIntercom"
  4359. type="1" >
  4360. <productMenuType version="1.6.9"
  4361. type="0"
  4362. />
  4363. </productMenu>
  4364. <productMenu id="bluetoothIntercom"
  4365. type="1" >
  4366. </productMenu>
  4367. <productMenu id="phone"
  4368. type="1" >
  4369. </productMenu>
  4370. <productMenu id="music"
  4371. type="1" >
  4372. </productMenu>
  4373. <productMenu id="fmradio"
  4374. type="1" >
  4375. </productMenu>
  4376. <productMenu id="deviceSetting"
  4377. type="1"
  4378. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  4379. <productMenuURL version="1.5"
  4380. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  4381. />
  4382. <productMenuURL version="1.1.1"
  4383. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  4384. />
  4385. <productMenuURL version="1.0.3"
  4386. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  4387. />
  4388. </productMenu>
  4389. <productMenu id="quickGuide"
  4390. type="0"
  4391. url=""
  4392. size="344KB" >
  4393. </productMenu>
  4394. <productMenu id="userGuide"
  4395. type="1"
  4396. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  4397. size="3.41MB" >
  4398. </productMenu>
  4399. <productMenu id="connectGuide"
  4400. type="1"
  4401. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4402. size="1.12MB" >
  4403. </productMenu>
  4404. <productMenu id="volume"
  4405. type="11" >
  4406. </productMenu>
  4407. <productMenu id="battery"
  4408. type="1" >
  4409. </productMenu>
  4410. <productID id="3216"
  4411. />
  4412. <productGroupable type="0"
  4413. />
  4414. </product>
  4415. <product id="SRL_EXT"
  4416. name="SRL-EXT"
  4417. series="SRL"
  4418. latestVersion="1.7"
  4419. show = "1" >
  4420. <productMenu id="protocol"
  4421. type="2" >
  4422. </productMenu>
  4423. <productMenu id="alexa"
  4424. type="0" >
  4425. </productMenu>
  4426. <productMenu id="ota"
  4427. type="0" >
  4428. </productMenu>
  4429. <productMenu id="wa"
  4430. type="0" >
  4431. </productMenu>
  4432. <productMenu id="sip"
  4433. type="1" >
  4434. </productMenu>
  4435. <productMenu id="meshIntercom"
  4436. type="30" >
  4437. <productMenuType version="1.1.1"
  4438. type="20"
  4439. />
  4440. </productMenu>
  4441. <productMenu id="meshIntercom+"
  4442. type="3"
  4443. url="2" >
  4444. <productMenuType version="1.5.9"
  4445. type="2"
  4446. />
  4447. <productMenuURL version="1.1.1"
  4448. url="0"
  4449. />
  4450. </productMenu>
  4451. <productMenu id="waveIntercom"
  4452. type="1" >
  4453. <productMenuType version="1.6.9"
  4454. type="0"
  4455. />
  4456. </productMenu>
  4457. <productMenu id="bluetoothIntercom"
  4458. type="1" >
  4459. </productMenu>
  4460. <productMenu id="phone"
  4461. type="1" >
  4462. </productMenu>
  4463. <productMenu id="music"
  4464. type="1" >
  4465. </productMenu>
  4466. <productMenu id="fmradio"
  4467. type="1" >
  4468. </productMenu>
  4469. <productMenu id="deviceSetting"
  4470. type="1"
  4471. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  4472. <productMenuURL version="1.5"
  4473. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  4474. />
  4475. <productMenuURL version="1.1.1"
  4476. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  4477. />
  4478. <productMenuURL version="1.0.3"
  4479. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  4480. />
  4481. </productMenu>
  4482. <productMenu id="quickGuide"
  4483. type="0"
  4484. url=""
  4485. size="344KB" >
  4486. </productMenu>
  4487. <productMenu id="userGuide"
  4488. type="1"
  4489. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  4490. size="3.41MB" >
  4491. </productMenu>
  4492. <productMenu id="connectGuide"
  4493. type="1"
  4494. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4495. size="1.12MB" >
  4496. </productMenu>
  4497. <productMenu id="volume"
  4498. type="11" >
  4499. </productMenu>
  4500. <productMenu id="battery"
  4501. type="1" >
  4502. </productMenu>
  4503. <productID id="3212"
  4504. />
  4505. <productGroupable type="0"
  4506. />
  4507. </product>
  4508. <product id="SRL2"
  4509. name="SRL2"
  4510. series="SRL"
  4511. latestVersion="1.0.9"
  4512. show = "1" >
  4513. <productMenu id="protocol"
  4514. type="0">
  4515. </productMenu>
  4516. <productMenu id="sip"
  4517. type="1" >
  4518. </productMenu>
  4519. <productMenu id="bluetoothIntercom"
  4520. type="1" >
  4521. </productMenu>
  4522. <productMenu id="intercomSetting"
  4523. type="1" >
  4524. </productMenu>
  4525. <productMenu id="phone"
  4526. type="2" >
  4527. </productMenu>
  4528. <productMenu id="fmradio"
  4529. type="3" >
  4530. </productMenu>
  4531. <productMenu id="deviceSetting"
  4532. type="1"
  4533. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  4534. </productMenu>
  4535. <productMenu id="quickGuide"
  4536. type="1"
  4537. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  4538. size="846KB" >
  4539. </productMenu>
  4540. <productMenu id="userGuide"
  4541. type="1"
  4542. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  4543. size="1.18MB" >
  4544. </productMenu>
  4545. <productMenu id="connectGuide"
  4546. type="1"
  4547. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  4548. size="1.12MB" >
  4549. </productMenu>
  4550. <productID id="4530"
  4551. />
  4552. <productGroupable type="1"
  4553. />
  4554. </product>
  4555. <product id="Neotec2"
  4556. name="SRL Neotec2"
  4557. series="SRL"
  4558. latestVersion="1.1.5"
  4559. show = "1" >
  4560. <productMenu id="protocol"
  4561. type="0">
  4562. </productMenu>
  4563. <productMenu id="sip"
  4564. type="1" >
  4565. </productMenu>
  4566. <productMenu id="bluetoothIntercom"
  4567. type="1" >
  4568. </productMenu>
  4569. <productMenu id="intercomSetting"
  4570. type="1" >
  4571. </productMenu>
  4572. <productMenu id="phone"
  4573. type="2" >
  4574. </productMenu>
  4575. <productMenu id="fmradio"
  4576. type="3" >
  4577. </productMenu>
  4578. <productMenu id="deviceSetting"
  4579. type="1"
  4580. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  4581. </productMenu>
  4582. <productMenu id="quickGuide"
  4583. type="0"
  4584. url=""
  4585. size="796KB" >
  4586. </productMenu>
  4587. <productMenu id="userGuide"
  4588. type="1"
  4589. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  4590. size="1.90MB" >
  4591. </productMenu>
  4592. <productMenu id="connectGuide"
  4593. type="1"
  4594. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  4595. size="1.12MB" >
  4596. </productMenu>
  4597. <productID id="4510"
  4598. />
  4599. <productGroupable type="1"
  4600. />
  4601. </product>
  4602. <product id="SPIDERST2ANC"
  4603. name="SPIDER ST2 ANC"
  4604. series="SPIDER"
  4605. latestVersion="0.5.1"
  4606. latestVersionVoicePrompt="0.2"
  4607. latestVersionMesh="0.8"
  4608. show = "-1" >
  4609. <productMenu id="protocol"
  4610. type="2" >
  4611. </productMenu>
  4612. <productMenu id="ota"
  4613. type="0" >
  4614. <otaPackages>
  4615. <package
  4616. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  4617. size="2945812"
  4618. />
  4619. </otaPackages>
  4620. </productMenu>
  4621. <productMenu id="wa"
  4622. type="0" >
  4623. </productMenu>
  4624. <productMenu id="led"
  4625. type="1" >
  4626. </productMenu>
  4627. <productMenu id="meshIntercom"
  4628. type="30" >
  4629. </productMenu>
  4630. <productMenu id="fmradio"
  4631. type="1" >
  4632. </productMenu>
  4633. <productMenu id="phone"
  4634. type="1" >
  4635. </productMenu>
  4636. <productMenu id="music"
  4637. type="1" >
  4638. </productMenu>
  4639. <productMenu id="musicSharing"
  4640. type="0" >
  4641. </productMenu>
  4642. <productMenu id="deviceSetting"
  4643. type="1"
  4644. url="https://api.sena.com/support/test/xml/NS_60R_OTATest_02.xml" >
  4645. </productMenu>
  4646. <productMenu id="quickGuide"
  4647. type="1"
  4648. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  4649. size="1.12MB" >
  4650. </productMenu>
  4651. <productMenu id="userGuide"
  4652. type="1"
  4653. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  4654. size="2.0MB" >
  4655. </productMenu>
  4656. <productMenu id="videoGuide"
  4657. type="1"
  4658. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  4659. size="3.41MB" >
  4660. </productMenu>
  4661. <productMenu id="volume"
  4662. type="12" >
  4663. </productMenu>
  4664. <productMenu id="battery"
  4665. type="1" >
  4666. </productMenu>
  4667. <productID id="6A00"
  4668. />
  4669. <productGroupable type="0"
  4670. />
  4671. </product>
  4672. <product id="SPIDER_ST1"
  4673. name="SPIDER ST1"
  4674. series="SPIDER"
  4675. latestVersion="2.5"
  4676. latestVersionVoicePrompt="1.1"
  4677. show = "1" >
  4678. <productMenu id="protocol"
  4679. type="2" >
  4680. </productMenu>
  4681. <productMenu id="alexa"
  4682. type="0" >
  4683. </productMenu>
  4684. <productMenu id="ota"
  4685. type="2" >
  4686. <productMenuType version="2.1.9"
  4687. type="0"
  4688. />
  4689. <otaPackages>
  4690. <package
  4691. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_ST1-v2.5-build1.img"
  4692. size="2945812"
  4693. />
  4694. </otaPackages>
  4695. </productMenu>
  4696. <productMenu id="wa"
  4697. type="0" >
  4698. </productMenu>
  4699. <productMenu id="meshIntercom"
  4700. type="30" >
  4701. <productMenuType version="2.1.1"
  4702. type="20"
  4703. />
  4704. </productMenu>
  4705. <productMenu id="meshIntercom+"
  4706. type="3"
  4707. url="2" >
  4708. <productMenuType version="2.2.9"
  4709. type="2"
  4710. />
  4711. <productMenuURL version="2.1.1"
  4712. url="0"
  4713. />
  4714. </productMenu>
  4715. <productMenu id="waveIntercom"
  4716. type="1" >
  4717. <productMenuType version="2.3.9"
  4718. type="0"
  4719. />
  4720. </productMenu>
  4721. <productMenu id="phone"
  4722. type="1" >
  4723. </productMenu>
  4724. <productMenu id="music"
  4725. type="1" >
  4726. </productMenu>
  4727. <productMenu id="musicSharing"
  4728. type="0" >
  4729. </productMenu>
  4730. <productMenu id="deviceSetting"
  4731. type="1"
  4732. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  4733. <productMenuURL version="2.4.9"
  4734. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  4735. />
  4736. <productMenuURL version="2.2.2"
  4737. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  4738. />
  4739. <productMenuURL version="2.1.1"
  4740. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  4741. />
  4742. </productMenu>
  4743. <productMenu id="quickGuide"
  4744. type="0"
  4745. url=""
  4746. size="1.12MB" >
  4747. </productMenu>
  4748. <productMenu id="userGuide"
  4749. type="1"
  4750. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  4751. size="2.0MB" >
  4752. </productMenu>
  4753. <productMenu id="videoGuide"
  4754. type="1"
  4755. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  4756. size="3.41MB" >
  4757. </productMenu>
  4758. <productMenu id="connectGuide"
  4759. type="1"
  4760. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  4761. size="1.12MB" >
  4762. </productMenu>
  4763. <productMenu id="volume"
  4764. type="12" >
  4765. </productMenu>
  4766. <productMenu id="battery"
  4767. type="1" >
  4768. </productMenu>
  4769. <productID id="6800"
  4770. />
  4771. <productGroupable type="0"
  4772. />
  4773. </product>
  4774. <product id="SPIDER_ST1"
  4775. name="SPIDER ST1"
  4776. series="SPIDER"
  4777. latestVersion="1.2.2"
  4778. show = "-1" >
  4779. <productMenu id="protocol"
  4780. type="2" >
  4781. </productMenu>
  4782. <productMenu id="alexa"
  4783. type="0" >
  4784. </productMenu>
  4785. <productMenu id="ota"
  4786. type="0" >
  4787. </productMenu>
  4788. <productMenu id="wa"
  4789. type="0" >
  4790. </productMenu>
  4791. <productMenu id="meshIntercom"
  4792. type="20" >
  4793. </productMenu>
  4794. <productMenu id="phone"
  4795. type="1" >
  4796. </productMenu>
  4797. <productMenu id="music"
  4798. type="1" >
  4799. </productMenu>
  4800. <productMenu id="deviceSetting"
  4801. type="1"
  4802. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  4803. </productMenu>
  4804. <productMenu id="quickGuide"
  4805. type="0"
  4806. url=""
  4807. size="1.12MB" >
  4808. </productMenu>
  4809. <productMenu id="userGuide"
  4810. type="1"
  4811. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  4812. size="2.0MB" >
  4813. </productMenu>
  4814. <productMenu id="videoGuide"
  4815. type="1"
  4816. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  4817. size="3.41MB" >
  4818. </productMenu>
  4819. <productMenu id="volume"
  4820. type="13" >
  4821. <productMenuType version="1.1.6"
  4822. type="14"/>
  4823. </productMenu>
  4824. <productMenu id="battery"
  4825. type="1" >
  4826. </productMenu>
  4827. <productID id="6510"
  4828. />
  4829. <productGroupable type="0"
  4830. />
  4831. </product>
  4832. <product id="SPIDER_RT1"
  4833. name="SPIDER RT1"
  4834. series="SPIDER"
  4835. latestVersion="2.5"
  4836. latestVersionVoicePrompt="1.1"
  4837. show = "1" >
  4838. <productMenu id="protocol"
  4839. type="2" >
  4840. </productMenu>
  4841. <productMenu id="alexa"
  4842. type="0" >
  4843. </productMenu>
  4844. <productMenu id="ota"
  4845. type="2" >
  4846. <productMenuType version="2.1.9"
  4847. type="0"
  4848. />
  4849. <otaPackages>
  4850. <package
  4851. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_RT1-v2.5-build1.img"
  4852. size="2945812"
  4853. />
  4854. </otaPackages>
  4855. </productMenu>
  4856. <productMenu id="wa"
  4857. type="0" >
  4858. </productMenu>
  4859. <productMenu id="meshIntercom"
  4860. type="30" >
  4861. <productMenuType version="2.1.1"
  4862. type="20"
  4863. />
  4864. </productMenu>
  4865. <productMenu id="meshIntercom+"
  4866. type="3"
  4867. url="2" >
  4868. <productMenuType version="2.2.9"
  4869. type="2"
  4870. />
  4871. <productMenuURL version="2.1.1"
  4872. url="0"
  4873. />
  4874. </productMenu>
  4875. <productMenu id="waveIntercom"
  4876. type="1" >
  4877. <productMenuType version="2.3.9"
  4878. type="0"
  4879. />
  4880. </productMenu>
  4881. <productMenu id="phone"
  4882. type="1" >
  4883. </productMenu>
  4884. <productMenu id="music"
  4885. type="1" >
  4886. </productMenu>
  4887. <productMenu id="musicSharing"
  4888. type="0" >
  4889. </productMenu>
  4890. <productMenu id="deviceSetting"
  4891. type="1"
  4892. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  4893. <productMenuURL version="2.4.9"
  4894. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  4895. />
  4896. <productMenuURL version="2.2.2"
  4897. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  4898. />
  4899. <productMenuURL version="2.1.1"
  4900. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  4901. />
  4902. </productMenu>
  4903. <productMenu id="quickGuide"
  4904. type="0"
  4905. url=""
  4906. size="1.12MB" >
  4907. </productMenu>
  4908. <productMenu id="userGuide"
  4909. type="1"
  4910. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  4911. size="2.0MB" >
  4912. </productMenu>
  4913. <productMenu id="videoGuide"
  4914. type="1"
  4915. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  4916. size="3.41MB" >
  4917. </productMenu>
  4918. <productMenu id="connectGuide"
  4919. type="1"
  4920. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  4921. size="1.12MB" >
  4922. </productMenu>
  4923. <productMenu id="volume"
  4924. type="12" >
  4925. </productMenu>
  4926. <productMenu id="battery"
  4927. type="1" >
  4928. </productMenu>
  4929. <productID id="6810"
  4930. />
  4931. <productGroupable type="0"
  4932. />
  4933. </product>
  4934. <product id="SPIDER_RT1"
  4935. name="SPIDER RT1"
  4936. series="SPIDER"
  4937. latestVersion="1.2.2"
  4938. show = "-1" >
  4939. <productMenu id="protocol"
  4940. type="2" >
  4941. </productMenu>
  4942. <productMenu id="alexa"
  4943. type="0" >
  4944. </productMenu>
  4945. <productMenu id="ota"
  4946. type="0" >
  4947. </productMenu>
  4948. <productMenu id="wa"
  4949. type="0" >
  4950. </productMenu>
  4951. <productMenu id="meshIntercom"
  4952. type="20" >
  4953. </productMenu>
  4954. <productMenu id="phone"
  4955. type="1" >
  4956. </productMenu>
  4957. <productMenu id="music"
  4958. type="1" >
  4959. </productMenu>
  4960. <productMenu id="deviceSetting"
  4961. type="1"
  4962. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  4963. </productMenu>
  4964. <productMenu id="quickGuide"
  4965. type="0"
  4966. url=""
  4967. size="1.32MB" >
  4968. </productMenu>
  4969. <productMenu id="userGuide"
  4970. type="1"
  4971. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  4972. size="1.79MB" >
  4973. </productMenu>
  4974. <productMenu id="videoGuide"
  4975. type="1"
  4976. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  4977. size="3.41MB" >
  4978. </productMenu>
  4979. <productMenu id="volume"
  4980. type="13" >
  4981. <productMenuType version="1.1.6"
  4982. type="14"/>
  4983. </productMenu>
  4984. <productMenu id="battery"
  4985. type="1" >
  4986. </productMenu>
  4987. <productID id="6500"
  4988. />
  4989. <productGroupable type="0"
  4990. />
  4991. </product>
  4992. <product id="30K"
  4993. name="30K"
  4994. series="30"
  4995. latestVersion="4.5"
  4996. show = "1" >
  4997. <productMenu id="protocol"
  4998. type="2" >
  4999. </productMenu>
  5000. <productMenu id="alexa"
  5001. type="0" >
  5002. </productMenu>
  5003. <productMenu id="wa"
  5004. type="1" >
  5005. </productMenu>
  5006. <productMenu id="sip"
  5007. type="1" >
  5008. </productMenu>
  5009. <productMenu id="meshIntercom"
  5010. type="30" >
  5011. <productMenuType version="4.0.4"
  5012. type="20"
  5013. />
  5014. </productMenu>
  5015. <productMenu id="meshIntercom+"
  5016. type="3"
  5017. url="2" >
  5018. <productMenuType version="4.3.9"
  5019. type="2"
  5020. />
  5021. <productMenuURL version="4.0.4"
  5022. url="0"
  5023. />
  5024. </productMenu>
  5025. <productMenu id="waveIntercom"
  5026. type="1" >
  5027. <productMenuType version="4.4.9"
  5028. type="0"
  5029. />
  5030. </productMenu>
  5031. <productMenu id="bluetoothIntercom"
  5032. type="1" >
  5033. </productMenu>
  5034. <productMenu id="phone"
  5035. type="1" >
  5036. </productMenu>
  5037. <productMenu id="music"
  5038. type="1" >
  5039. </productMenu>
  5040. <productMenu id="fmradio"
  5041. type="1" >
  5042. </productMenu>
  5043. <productMenu id="deviceSetting"
  5044. type="1"
  5045. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  5046. <productMenuURL version="4.3"
  5047. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  5048. />
  5049. <productMenuURL version="4.2"
  5050. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  5051. />
  5052. <productMenuURL version="4.0.4"
  5053. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  5054. />
  5055. </productMenu>
  5056. <productMenu id="quickGuide"
  5057. type="0"
  5058. url=""
  5059. size="934KB" >
  5060. </productMenu>
  5061. <productMenu id="userGuide"
  5062. type="1"
  5063. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  5064. size="1.14MB" >
  5065. </productMenu>
  5066. <productMenu id="connectGuide"
  5067. type="1"
  5068. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5069. size="1.12MB" >
  5070. </productMenu>
  5071. <productMenu id="volume"
  5072. type="11" >
  5073. </productMenu>
  5074. <productMenu id="battery"
  5075. type="1" >
  5076. </productMenu>
  5077. <productID id="3211"
  5078. />
  5079. <productGroupable type="0"
  5080. />
  5081. </product>
  5082. <product id="30K"
  5083. name="30K"
  5084. series="30"
  5085. latestVersion="3.5"
  5086. show = "-1" >
  5087. <productMenu id="protocol"
  5088. type="1"
  5089. url="0">
  5090. </productMenu>
  5091. <productMenu id="wa"
  5092. type="7" >
  5093. </productMenu>
  5094. <productMenu id="sip"
  5095. type="1" >
  5096. </productMenu>
  5097. <productMenu id="meshIntercom"
  5098. type="20" >
  5099. <productMenuType version="2.9.9"
  5100. type="10"
  5101. />
  5102. </productMenu>
  5103. <productMenu id="meshIntercom+"
  5104. type="3"
  5105. url="2" >
  5106. <productMenuType version="3.4.9"
  5107. type="2"
  5108. />
  5109. <productMenuType version="2.9.9"
  5110. type="1"
  5111. />
  5112. <productMenuURL version="3.3.1"
  5113. url="0"
  5114. />
  5115. </productMenu>
  5116. <productMenu id="bluetoothIntercom"
  5117. type="1" >
  5118. </productMenu>
  5119. <productMenu id="phone"
  5120. type="1" >
  5121. </productMenu>
  5122. <productMenu id="music"
  5123. type="1" >
  5124. </productMenu>
  5125. <productMenu id="fmradio"
  5126. type="1" >
  5127. </productMenu>
  5128. <productMenu id="deviceSetting"
  5129. type="1"
  5130. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  5131. <productMenuURL version="3.4.9"
  5132. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  5133. />
  5134. <productMenuURL version="3.3.1"
  5135. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  5136. />
  5137. <productMenuURL version="3.0.1"
  5138. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  5139. />
  5140. <productMenuURL version="2.3.1"
  5141. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  5142. />
  5143. <productMenuURL version="2.0"
  5144. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  5145. />
  5146. <productMenuURL version="1.0.3"
  5147. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  5148. />
  5149. </productMenu>
  5150. <productMenu id="quickGuide"
  5151. type="0"
  5152. url=""
  5153. size="1.06MB" >
  5154. </productMenu>
  5155. <productMenu id="userGuide"
  5156. type="1"
  5157. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  5158. size="3.15MB" >
  5159. </productMenu>
  5160. <productMenu id="volume"
  5161. type="1" >
  5162. </productMenu>
  5163. <productID id="3110"
  5164. />
  5165. <productGroupable type="0"
  5166. />
  5167. </product>
  5168. <product id="FURY"
  5169. name="FURY"
  5170. series="Helmet"
  5171. latestVersion="1.0"
  5172. show = "-1" >
  5173. <productMenu id="protocol"
  5174. type="2" >
  5175. </productMenu>
  5176. <productMenu id="alexa"
  5177. type="0" >
  5178. </productMenu>
  5179. <productMenu id="ota"
  5180. type="0" >
  5181. </productMenu>
  5182. <productMenu id="wa"
  5183. type="0" >
  5184. </productMenu>
  5185. <productMenu id="meshIntercom"
  5186. type="20" >
  5187. </productMenu>
  5188. <productMenu id="phone"
  5189. type="1" >
  5190. </productMenu>
  5191. <productMenu id="music"
  5192. type="1" >
  5193. </productMenu>
  5194. <productMenu id="fmradio"
  5195. type="1" >
  5196. </productMenu>
  5197. <productMenu id="deviceSetting"
  5198. type="1"
  5199. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  5200. </productMenu>
  5201. <productMenu id="quickGuide"
  5202. type="1"
  5203. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  5204. size="1.12MB" >
  5205. </productMenu>
  5206. <productMenu id="userGuide"
  5207. type="1"
  5208. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  5209. size="2.0MB" >
  5210. </productMenu>
  5211. <productMenu id="volume"
  5212. type="13" >
  5213. </productMenu>
  5214. <productMenu id="battery"
  5215. type="1" >
  5216. </productMenu>
  5217. <productID id="5552"
  5218. />
  5219. <productGroupable type="0"
  5220. />
  5221. </product>
  5222. <product id="MomentumM"
  5223. name="Momentum EVO"
  5224. series="Helmet"
  5225. latestVersion="2.1.2"
  5226. show = "1" >
  5227. <productMenu id="protocol"
  5228. type="1"
  5229. url="0">
  5230. </productMenu>
  5231. <productMenu id="wa"
  5232. type="3" >
  5233. </productMenu>
  5234. <productMenu id="sip"
  5235. type="1" >
  5236. </productMenu>
  5237. <productMenu id="meshIntercom"
  5238. type="20" >
  5239. <productMenuType version="1.9.9"
  5240. type="10"
  5241. />
  5242. </productMenu>
  5243. <productMenu id="bluetoothIntercom"
  5244. type="1" >
  5245. </productMenu>
  5246. <productMenu id="phone"
  5247. type="1" >
  5248. </productMenu>
  5249. <productMenu id="music"
  5250. type="1" >
  5251. </productMenu>
  5252. <productMenu id="fmradio"
  5253. type="1" >
  5254. </productMenu>
  5255. <productMenu id="deviceSetting"
  5256. type="1"
  5257. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  5258. <productMenuURL version="1.0.1"
  5259. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  5260. />
  5261. </productMenu>
  5262. <productMenu id="quickGuide"
  5263. type="1"
  5264. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  5265. size="1.06MB" >
  5266. </productMenu>
  5267. <productMenu id="userGuide"
  5268. type="1"
  5269. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  5270. size="3.15MB" >
  5271. </productMenu>
  5272. <productMenu id="connectGuide"
  5273. type="1"
  5274. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  5275. size="1.12MB" >
  5276. </productMenu>
  5277. <productMenu id="volume"
  5278. type="2" >
  5279. </productMenu>
  5280. <productID id="3116"
  5281. />
  5282. <productGroupable type="0"
  5283. />
  5284. </product>
  5285. <product id="Momentum"
  5286. name="Momentum"
  5287. series="Helmet"
  5288. latestVersion="1.0.9"
  5289. show = "1" >
  5290. <productMenu id="protocol"
  5291. type="0">
  5292. </productMenu>
  5293. <productMenu id="sip"
  5294. type="1" >
  5295. </productMenu>
  5296. <productMenu id="bluetoothIntercom"
  5297. type="1" >
  5298. </productMenu>
  5299. <productMenu id="intercomSetting"
  5300. type="1" >
  5301. </productMenu>
  5302. <productMenu id="phone"
  5303. type="2" >
  5304. </productMenu>
  5305. <productMenu id="fmradio"
  5306. type="3" >
  5307. </productMenu>
  5308. <productMenu id="deviceSetting"
  5309. type="1"
  5310. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5311. </productMenu>
  5312. <productMenu id="quickGuide"
  5313. type="1"
  5314. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  5315. size="796KB" >
  5316. </productMenu>
  5317. <productMenu id="userGuide"
  5318. type="1"
  5319. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  5320. size="1.90MB" >
  5321. </productMenu>
  5322. <productMenu id="connectGuide"
  5323. type="1"
  5324. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5325. size="1.12MB" >
  5326. </productMenu>
  5327. <productID id="4310"
  5328. />
  5329. <productGroupable type="1"
  5330. />
  5331. </product>
  5332. <product id="Momentum_Pro"
  5333. name="Momentum Pro"
  5334. series="Helmet"
  5335. latestVersion="1.0.6"
  5336. show = "1" >
  5337. <productMenu id="protocol"
  5338. type="0">
  5339. </productMenu>
  5340. <productMenu id="sip"
  5341. type="1" >
  5342. </productMenu>
  5343. <productMenu id="bluetoothIntercom"
  5344. type="1" >
  5345. </productMenu>
  5346. <productMenu id="intercomSetting"
  5347. type="1" >
  5348. </productMenu>
  5349. <productMenu id="phone"
  5350. type="2" >
  5351. </productMenu>
  5352. <productMenu id="fmradio"
  5353. type="3" >
  5354. </productMenu>
  5355. <productMenu id="deviceSetting"
  5356. type="1"
  5357. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5358. </productMenu>
  5359. <productMenu id="quickGuide"
  5360. type="1"
  5361. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  5362. size="796KB" >
  5363. </productMenu>
  5364. <productMenu id="userGuide"
  5365. type="1"
  5366. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  5367. size="1.90MB" >
  5368. </productMenu>
  5369. <productMenu id="connectGuide"
  5370. type="1"
  5371. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5372. size="1.12MB" >
  5373. </productMenu>
  5374. <productID id="4330"
  5375. />
  5376. <productGroupable type="1"
  5377. />
  5378. </product>
  5379. <product id="Momentum_INC"
  5380. name="Momentum INC"
  5381. series="Helmet"
  5382. latestVersion="1.0.7"
  5383. show = "1" >
  5384. <productMenu id="protocol"
  5385. type="0">
  5386. </productMenu>
  5387. <productMenu id="sip"
  5388. type="1" >
  5389. </productMenu>
  5390. <productMenu id="bluetoothIntercom"
  5391. type="1" >
  5392. </productMenu>
  5393. <productMenu id="intercomSetting"
  5394. type="1" >
  5395. </productMenu>
  5396. <productMenu id="phone"
  5397. type="2" >
  5398. </productMenu>
  5399. <productMenu id="fmradio"
  5400. type="3" >
  5401. </productMenu>
  5402. <productMenu id="deviceSetting"
  5403. type="1"
  5404. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  5405. </productMenu>
  5406. <productMenu id="quickGuide"
  5407. type="1"
  5408. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  5409. size="794KB" >
  5410. </productMenu>
  5411. <productMenu id="userGuide"
  5412. type="1"
  5413. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  5414. size="1.53MB" >
  5415. </productMenu>
  5416. <productMenu id="connectGuide"
  5417. type="1"
  5418. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5419. size="1.12MB" >
  5420. </productMenu>
  5421. <productID id="4410"
  5422. />
  5423. <productGroupable type="1"
  5424. />
  5425. </product>
  5426. <product id="Momentum_INCP"
  5427. name="Momentum INC Pro"
  5428. series="Helmet"
  5429. latestVersion="1.0.4"
  5430. show = "1" >
  5431. <productMenu id="protocol"
  5432. type="0">
  5433. </productMenu>
  5434. <productMenu id="sip"
  5435. type="1" >
  5436. </productMenu>
  5437. <productMenu id="bluetoothIntercom"
  5438. type="1" >
  5439. </productMenu>
  5440. <productMenu id="intercomSetting"
  5441. type="1" >
  5442. </productMenu>
  5443. <productMenu id="phone"
  5444. type="2" >
  5445. </productMenu>
  5446. <productMenu id="fmradio"
  5447. type="3" >
  5448. </productMenu>
  5449. <productMenu id="deviceSetting"
  5450. type="1"
  5451. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  5452. </productMenu>
  5453. <productMenu id="quickGuide"
  5454. type="1"
  5455. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  5456. size="794KB" >
  5457. </productMenu>
  5458. <productMenu id="userGuide"
  5459. type="1"
  5460. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  5461. size="1.53MB" >
  5462. </productMenu>
  5463. <productMenu id="connectGuide"
  5464. type="1"
  5465. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5466. size="1.12MB" >
  5467. </productMenu>
  5468. <productID id="4430"
  5469. />
  5470. <productGroupable type="1"
  5471. />
  5472. </product>
  5473. <product id="Momentum_Lite"
  5474. name="Momentum Lite"
  5475. series="Helmet"
  5476. latestVersion="2.0.3"
  5477. show = "1" >
  5478. <productMenu id="protocol"
  5479. type="0">
  5480. </productMenu>
  5481. <productMenu id="sip"
  5482. type="1" >
  5483. </productMenu>
  5484. <productMenu id="bluetoothIntercom"
  5485. type="1" >
  5486. </productMenu>
  5487. <productMenu id="phone"
  5488. type="2" >
  5489. </productMenu>
  5490. <productMenu id="fmradio"
  5491. type="3" >
  5492. </productMenu>
  5493. <productMenu id="deviceSetting"
  5494. type="1"
  5495. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  5496. <productMenuURL version="1.1"
  5497. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  5498. />
  5499. </productMenu>
  5500. <productMenu id="quickGuide"
  5501. type="1"
  5502. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  5503. size="790KB" >
  5504. </productMenu>
  5505. <productMenu id="userGuide"
  5506. type="1"
  5507. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  5508. size="1.42MB" >
  5509. </productMenu>
  5510. <productMenu id="connectGuide"
  5511. type="1"
  5512. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  5513. size="1.12MB" >
  5514. </productMenu>
  5515. <productID id="5526"
  5516. />
  5517. <productGroupable type="0"
  5518. />
  5519. </product>
  5520. <product id="OUTRUSHM"
  5521. name="OUTRUSH M"
  5522. series="Helmet"
  5523. latestVersion="1.0"
  5524. show = "-1" >
  5525. <productMenu id="protocol"
  5526. type="2" >
  5527. </productMenu>
  5528. <productMenu id="alexa"
  5529. type="0" >
  5530. </productMenu>
  5531. <productMenu id="ota"
  5532. type="0" >
  5533. </productMenu>
  5534. <productMenu id="wa"
  5535. type="0" >
  5536. </productMenu>
  5537. <productMenu id="meshIntercom"
  5538. type="30" >
  5539. </productMenu>
  5540. <productMenu id="phone"
  5541. type="1" >
  5542. </productMenu>
  5543. <productMenu id="music"
  5544. type="1" >
  5545. </productMenu>
  5546. <productMenu id="fmradio"
  5547. type="1" >
  5548. </productMenu>
  5549. <productMenu id="deviceSetting"
  5550. type="1"
  5551. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  5552. </productMenu>
  5553. <productMenu id="quickGuide"
  5554. type="1"
  5555. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  5556. size="1.12MB" >
  5557. </productMenu>
  5558. <productMenu id="userGuide"
  5559. type="1"
  5560. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  5561. size="2.0MB" >
  5562. </productMenu>
  5563. <productMenu id="volume"
  5564. type="13" >
  5565. </productMenu>
  5566. <productMenu id="battery"
  5567. type="1" >
  5568. </productMenu>
  5569. <productID id="5600"
  5570. />
  5571. <productGroupable type="0"
  5572. />
  5573. </product>
  5574. <product id="ProRideEVO"
  5575. name="ProRide EVO"
  5576. series="Helmet"
  5577. latestVersion="1.1.2"
  5578. show = "1" >
  5579. <productMenu id="protocol"
  5580. type="0">
  5581. </productMenu>
  5582. <productMenu id="sip"
  5583. type="1" >
  5584. </productMenu>
  5585. <productMenu id="bluetoothIntercom"
  5586. type="1" >
  5587. </productMenu>
  5588. <productMenu id="phone"
  5589. type="2" >
  5590. </productMenu>
  5591. <productMenu id="fmradio"
  5592. type="3" >
  5593. </productMenu>
  5594. <productMenu id="deviceSetting"
  5595. type="1"
  5596. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  5597. </productMenu>
  5598. <productMenu id="userGuide"
  5599. type="1"
  5600. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  5601. size="778KB" >
  5602. </productMenu>
  5603. <productMenu id="connectGuide"
  5604. type="1"
  5605. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  5606. size="1.12MB" >
  5607. </productMenu>
  5608. <productID id="5426"
  5609. />
  5610. <productGroupable type="0"
  5611. />
  5612. </product>
  5613. <product id="OUTRUSHR"
  5614. name="OUTRUSH R"
  5615. series="Helmet"
  5616. latestVersion="2.1"
  5617. show = "1" >
  5618. <productMenu id="protocol"
  5619. type="3" >
  5620. </productMenu>
  5621. <productMenu id="sip"
  5622. type="1" >
  5623. </productMenu>
  5624. <productMenu id="bluetoothIntercom"
  5625. type="1" >
  5626. </productMenu>
  5627. <productMenu id="phone"
  5628. type="1" >
  5629. </productMenu>
  5630. <productMenu id="fmradio"
  5631. type="0" >
  5632. </productMenu>
  5633. <productMenu id="deviceSetting"
  5634. type="1"
  5635. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  5636. </productMenu>
  5637. <productMenu id="userGuide"
  5638. type="1"
  5639. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  5640. size="1.14MB" >
  5641. </productMenu>
  5642. <productMenu id="connectGuide"
  5643. type="1"
  5644. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  5645. size="1.12MB" >
  5646. </productMenu>
  5647. <productID id="5440"
  5648. />
  5649. <productGroupable type="0"
  5650. />
  5651. </product>
  5652. <product id="OUTRUSHR"
  5653. name="OUTRUSH R"
  5654. series="Helmet"
  5655. latestVersion="1.1.4"
  5656. show = "-1" >
  5657. <productMenu id="protocol"
  5658. type="0">
  5659. </productMenu>
  5660. <productMenu id="sip"
  5661. type="1" >
  5662. </productMenu>
  5663. <productMenu id="bluetoothIntercom"
  5664. type="1" >
  5665. </productMenu>
  5666. <productMenu id="phone"
  5667. type="2" >
  5668. </productMenu>
  5669. <productMenu id="fmradio"
  5670. type="3" >
  5671. </productMenu>
  5672. <productMenu id="deviceSetting"
  5673. type="1"
  5674. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  5675. </productMenu>
  5676. <productMenu id="userGuide"
  5677. type="1"
  5678. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  5679. size="660KB" >
  5680. </productMenu>
  5681. <productMenu id="connectGuide"
  5682. type="1"
  5683. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  5684. size="1.12MB" >
  5685. </productMenu>
  5686. <productID id="5424"
  5687. />
  5688. <productGroupable type="0"
  5689. />
  5690. </product>
  5691. <product id="OUTSTARS"
  5692. name="OUTSTAR S"
  5693. series="Helmet"
  5694. latestVersion="2.0.1"
  5695. show = "-1" >
  5696. <productMenu id="protocol"
  5697. type="3" >
  5698. </productMenu>
  5699. <productMenu id="sip"
  5700. type="1" >
  5701. </productMenu>
  5702. <productMenu id="bluetoothIntercom"
  5703. type="1" >
  5704. </productMenu>
  5705. <productMenu id="phone"
  5706. type="1" >
  5707. </productMenu>
  5708. <productMenu id="fmradio"
  5709. type="0" >
  5710. </productMenu>
  5711. <productMenu id="deviceSetting"
  5712. type="1"
  5713. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  5714. </productMenu>
  5715. <productMenu id="userGuide"
  5716. type="0"
  5717. url=""
  5718. size="1.14MB" >
  5719. </productMenu>
  5720. <productID id="5443"
  5721. />
  5722. <productGroupable type="0"
  5723. />
  5724. </product>
  5725. <product id="OUTSTARS"
  5726. name="OUTSTAR S"
  5727. series="Helmet"
  5728. latestVersion="1.1.4"
  5729. show = "1" >
  5730. <productMenu id="protocol"
  5731. type="0">
  5732. </productMenu>
  5733. <productMenu id="sip"
  5734. type="1" >
  5735. </productMenu>
  5736. <productMenu id="bluetoothIntercom"
  5737. type="1" >
  5738. </productMenu>
  5739. <productMenu id="phone"
  5740. type="2" >
  5741. </productMenu>
  5742. <productMenu id="fmradio"
  5743. type="3" >
  5744. </productMenu>
  5745. <productMenu id="deviceSetting"
  5746. type="1"
  5747. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  5748. </productMenu>
  5749. <productMenu id="quickGuide"
  5750. type="1"
  5751. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  5752. size="643KB" >
  5753. </productMenu>
  5754. <productMenu id="userGuide"
  5755. type="1"
  5756. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  5757. size="1.15MB" >
  5758. </productMenu>
  5759. <productMenu id="connectGuide"
  5760. type="1"
  5761. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  5762. size="1.12MB" >
  5763. </productMenu>
  5764. <productID id="5428"
  5765. />
  5766. <productGroupable type="0"
  5767. />
  5768. </product>
  5769. <product id="OUTRIDE"
  5770. name="OUTRIDE"
  5771. series="Helmet"
  5772. latestVersion="1.0.1"
  5773. show = "1" >
  5774. <productMenu id="protocol"
  5775. type="0">
  5776. </productMenu>
  5777. <productMenu id="sip"
  5778. type="1" >
  5779. </productMenu>
  5780. <productMenu id="bluetoothIntercom"
  5781. type="1" >
  5782. </productMenu>
  5783. <productMenu id="phone"
  5784. type="2" >
  5785. </productMenu>
  5786. <productMenu id="fmradio"
  5787. type="3" >
  5788. </productMenu>
  5789. <productMenu id="deviceSetting"
  5790. type="1"
  5791. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  5792. </productMenu>
  5793. <productMenu id="quickGuide"
  5794. type="1"
  5795. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  5796. size="643KB" >
  5797. </productMenu>
  5798. <productMenu id="userGuide"
  5799. type="1"
  5800. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  5801. size="660KB" >
  5802. </productMenu>
  5803. <productMenu id="connectGuide"
  5804. type="1"
  5805. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  5806. size="1.12MB" >
  5807. </productMenu>
  5808. <productID id="5432"
  5809. />
  5810. <productGroupable type="0"
  5811. />
  5812. </product>
  5813. <product id="OUTFORCE"
  5814. name="OUTFORCE"
  5815. series="Helmet"
  5816. latestVersion="1.0.1"
  5817. show = "1" >
  5818. <productMenu id="protocol"
  5819. type="0">
  5820. </productMenu>
  5821. <productMenu id="sip"
  5822. type="1" >
  5823. </productMenu>
  5824. <productMenu id="bluetoothIntercom"
  5825. type="1" >
  5826. </productMenu>
  5827. <productMenu id="phone"
  5828. type="2" >
  5829. </productMenu>
  5830. <productMenu id="fmradio"
  5831. type="3" >
  5832. </productMenu>
  5833. <productMenu id="deviceSetting"
  5834. type="1"
  5835. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  5836. </productMenu>
  5837. <productMenu id="quickGuide"
  5838. type="1"
  5839. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  5840. size="643KB" >
  5841. </productMenu>
  5842. <productMenu id="userGuide"
  5843. type="1"
  5844. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  5845. size="660KB" >
  5846. </productMenu>
  5847. <productMenu id="connectGuide"
  5848. type="1"
  5849. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  5850. size="1.12MB" >
  5851. </productMenu>
  5852. <productID id="5430"
  5853. />
  5854. <productGroupable type="0"
  5855. />
  5856. </product>
  5857. <product id="Rumba"
  5858. name="Rumba"
  5859. series="30"
  5860. latestVersion="2.0"
  5861. show = "-1" >
  5862. <productMenu id="protocol"
  5863. type="3" >
  5864. </productMenu>
  5865. <productMenu id="sip"
  5866. type="1" >
  5867. </productMenu>
  5868. <productMenu id="bluetoothIntercom"
  5869. type="1" >
  5870. </productMenu>
  5871. <productMenu id="deviceSetting"
  5872. type="1"
  5873. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  5874. </productMenu>
  5875. <productMenu id="quickGuide"
  5876. type="1"
  5877. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  5878. size="344KB" >
  5879. </productMenu>
  5880. <productMenu id="userGuide"
  5881. type="1"
  5882. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  5883. size="1.14MB" >
  5884. </productMenu>
  5885. <productID id="6322"
  5886. />
  5887. <productGroupable type="0"
  5888. />
  5889. </product>
  5890. <product id="Savage"
  5891. name="Savage"
  5892. series="Helmet"
  5893. latestVersion="1.2.2"
  5894. show = "1" >
  5895. <productMenu id="protocol"
  5896. type="0">
  5897. </productMenu>
  5898. <productMenu id="sip"
  5899. type="1" >
  5900. </productMenu>
  5901. <productMenu id="bluetoothIntercom"
  5902. type="1" >
  5903. </productMenu>
  5904. <productMenu id="phone"
  5905. type="2" >
  5906. </productMenu>
  5907. <productMenu id="fmradio"
  5908. type="3" >
  5909. </productMenu>
  5910. <productMenu id="deviceSetting"
  5911. type="1"
  5912. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  5913. <productMenuURL version="1.9"
  5914. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  5915. />
  5916. <productMenuURL version="1.1"
  5917. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  5918. />
  5919. </productMenu>
  5920. <productMenu id="quickGuide"
  5921. type="1"
  5922. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  5923. size="796KB" >
  5924. </productMenu>
  5925. <productMenu id="userGuide"
  5926. type="1"
  5927. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  5928. size="910KB" >
  5929. </productMenu>
  5930. <productMenu id="connectGuide"
  5931. type="1"
  5932. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  5933. size="1.12MB" >
  5934. </productMenu>
  5935. <productID id="5550"
  5936. />
  5937. <productGroupable type="0"
  5938. />
  5939. </product>
  5940. <product id="SPECTER"
  5941. name="SPECTER"
  5942. series="Helmet"
  5943. latestVersion="1.0.1"
  5944. latestVersionVoicePrompt="1.2"
  5945. show = "-1" >
  5946. <productMenu id="protocol"
  5947. type="2" >
  5948. </productMenu>
  5949. <productMenu id="ota"
  5950. type="2" >
  5951. <otaLanguages>
  5952. <otaLanguage
  5953. id="0"
  5954. name="English"
  5955. package="0"
  5956. />
  5957. <otaLanguage
  5958. id="0"
  5959. name="French"
  5960. package="1"
  5961. />
  5962. <otaLanguage
  5963. id="0"
  5964. name="Spanish"
  5965. package="2"
  5966. />
  5967. <otaLanguage
  5968. id="0"
  5969. name="Italian"
  5970. package="3"
  5971. />
  5972. <otaLanguage
  5973. id="0"
  5974. name="German"
  5975. package="4"
  5976. />
  5977. <otaLanguage
  5978. id="0"
  5979. name="Dutch"
  5980. package="5"
  5981. />
  5982. <otaLanguage
  5983. id="0"
  5984. name="Russian"
  5985. package="6"
  5986. />
  5987. <otaLanguage
  5988. id="0"
  5989. name="Chinese"
  5990. package="7"
  5991. />
  5992. <otaLanguage
  5993. id="0"
  5994. name="Korean"
  5995. package="8"
  5996. />
  5997. <otaLanguage
  5998. id="0"
  5999. name="Japanese"
  6000. package="9"
  6001. />
  6002. <otaLanguage
  6003. id="0"
  6004. name="Finnish"
  6005. package="10"
  6006. />
  6007. <otaLanguage
  6008. id="0"
  6009. name="Polish"
  6010. package="11"
  6011. />
  6012. </otaLanguages>
  6013. <otaPackages>
  6014. <package
  6015. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1.img"
  6016. size="5183988"
  6017. />
  6018. <package
  6019. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-fr-FR.img"
  6020. size="5183988"
  6021. />
  6022. <package
  6023. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-es-ES.img"
  6024. size="5183988"
  6025. />
  6026. <package
  6027. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-it-IT.img"
  6028. size="5183988"
  6029. />
  6030. <package
  6031. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-de-DE.img"
  6032. size="5183988"
  6033. />
  6034. <package
  6035. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-nl-NL.img"
  6036. size="5183988"
  6037. />
  6038. <package
  6039. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-ru-RU.img"
  6040. size="5183988"
  6041. />
  6042. <package
  6043. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-cmn-CN.img"
  6044. size="5183988"
  6045. />
  6046. <package
  6047. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-ko-KR.img"
  6048. size="5183988"
  6049. />
  6050. <package
  6051. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-ja-JP.img"
  6052. size="5183988"
  6053. />
  6054. <package
  6055. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-fi-FI.img"
  6056. size="5183988"
  6057. />
  6058. <package
  6059. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-pl-PL.img"
  6060. size="5183988"
  6061. />
  6062. </otaPackages>
  6063. </productMenu>
  6064. <productMenu id="wa"
  6065. type="0" >
  6066. </productMenu>
  6067. <productMenu id="led"
  6068. type="5" >
  6069. </productMenu>
  6070. <productMenu id="led+"
  6071. type="2"
  6072. url="1" >
  6073. </productMenu>
  6074. <productMenu id="meshIntercom+"
  6075. type="3"
  6076. url="2" >
  6077. </productMenu>
  6078. <productMenu id="waveIntercom"
  6079. type="1" >
  6080. </productMenu>
  6081. <productMenu id="fmradio"
  6082. type="0" >
  6083. </productMenu>
  6084. <productMenu id="phone"
  6085. type="1" >
  6086. </productMenu>
  6087. <productMenu id="music"
  6088. type="1" >
  6089. </productMenu>
  6090. <productMenu id="musicSharing"
  6091. type="0" >
  6092. </productMenu>
  6093. <productMenu id="deviceSetting"
  6094. type="1"
  6095. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  6096. </productMenu>
  6097. <productMenu id="quickGuide"
  6098. type="0"
  6099. url=""
  6100. size="1.12MB" >
  6101. </productMenu>
  6102. <productMenu id="userGuide"
  6103. type="0"
  6104. url=""
  6105. size="2.0MB" >
  6106. </productMenu>
  6107. <productMenu id="videoGuide"
  6108. type="0"
  6109. url=""
  6110. size="3.41MB" >
  6111. </productMenu>
  6112. <productMenu id="volume"
  6113. type="16" >
  6114. </productMenu>
  6115. <productMenu id="battery"
  6116. type="1" >
  6117. </productMenu>
  6118. <productID id="6A11"
  6119. />
  6120. <productGroupable type="0"
  6121. />
  6122. </product>
  6123. <product id="SPECTER"
  6124. name="SPECTER"
  6125. series="Helmet"
  6126. latestVersion="1.0.1"
  6127. latestVersionVoicePrompt="1.2"
  6128. show = "-1" >
  6129. <productMenu id="protocol"
  6130. type="2" >
  6131. </productMenu>
  6132. <productMenu id="ota"
  6133. type="2" >
  6134. <otaLanguages>
  6135. <otaLanguage
  6136. id="0"
  6137. name="English"
  6138. package="0"
  6139. />
  6140. <otaLanguage
  6141. id="0"
  6142. name="French"
  6143. package="1"
  6144. />
  6145. <otaLanguage
  6146. id="0"
  6147. name="Spanish"
  6148. package="2"
  6149. />
  6150. <otaLanguage
  6151. id="0"
  6152. name="Italian"
  6153. package="3"
  6154. />
  6155. <otaLanguage
  6156. id="0"
  6157. name="German"
  6158. package="4"
  6159. />
  6160. <otaLanguage
  6161. id="0"
  6162. name="Dutch"
  6163. package="5"
  6164. />
  6165. <otaLanguage
  6166. id="0"
  6167. name="Russian"
  6168. package="6"
  6169. />
  6170. <otaLanguage
  6171. id="0"
  6172. name="Chinese"
  6173. package="7"
  6174. />
  6175. <otaLanguage
  6176. id="0"
  6177. name="Korean"
  6178. package="8"
  6179. />
  6180. <otaLanguage
  6181. id="0"
  6182. name="Japanese"
  6183. package="9"
  6184. />
  6185. <otaLanguage
  6186. id="0"
  6187. name="Finnish"
  6188. package="10"
  6189. />
  6190. <otaLanguage
  6191. id="0"
  6192. name="Polish"
  6193. package="11"
  6194. />
  6195. </otaLanguages>
  6196. <otaPackages>
  6197. <package
  6198. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1.img"
  6199. size="5183988"
  6200. />
  6201. <package
  6202. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-fr-FR.img"
  6203. size="5183988"
  6204. />
  6205. <package
  6206. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-es-ES.img"
  6207. size="5183988"
  6208. />
  6209. <package
  6210. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-it-IT.img"
  6211. size="5183988"
  6212. />
  6213. <package
  6214. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-de-DE.img"
  6215. size="5183988"
  6216. />
  6217. <package
  6218. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-nl-NL.img"
  6219. size="5183988"
  6220. />
  6221. <package
  6222. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-ru-RU.img"
  6223. size="5183988"
  6224. />
  6225. <package
  6226. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-cmn-CN.img"
  6227. size="5183988"
  6228. />
  6229. <package
  6230. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-ko-KR.img"
  6231. size="5183988"
  6232. />
  6233. <package
  6234. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-ja-JP.img"
  6235. size="5183988"
  6236. />
  6237. <package
  6238. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-fi-FI.img"
  6239. size="5183988"
  6240. />
  6241. <package
  6242. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-pl-PL.img"
  6243. size="5183988"
  6244. />
  6245. </otaPackages>
  6246. </productMenu>
  6247. <productMenu id="wa"
  6248. type="0" >
  6249. </productMenu>
  6250. <productMenu id="led"
  6251. type="5" >
  6252. </productMenu>
  6253. <productMenu id="led+"
  6254. type="2"
  6255. url="1" >
  6256. </productMenu>
  6257. <productMenu id="meshIntercom+"
  6258. type="3"
  6259. url="2" >
  6260. </productMenu>
  6261. <productMenu id="waveIntercom"
  6262. type="1" >
  6263. </productMenu>
  6264. <productMenu id="fmradio"
  6265. type="0" >
  6266. </productMenu>
  6267. <productMenu id="phone"
  6268. type="1" >
  6269. </productMenu>
  6270. <productMenu id="music"
  6271. type="1" >
  6272. </productMenu>
  6273. <productMenu id="musicSharing"
  6274. type="0" >
  6275. </productMenu>
  6276. <productMenu id="deviceSetting"
  6277. type="1"
  6278. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  6279. <productMenuURL version="1.0"
  6280. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  6281. />
  6282. </productMenu>
  6283. <productMenu id="quickGuide"
  6284. type="0"
  6285. url=""
  6286. size="1.12MB" >
  6287. </productMenu>
  6288. <productMenu id="userGuide"
  6289. type="0"
  6290. url=""
  6291. size="2.0MB" >
  6292. </productMenu>
  6293. <productMenu id="videoGuide"
  6294. type="0"
  6295. url=""
  6296. size="3.41MB" >
  6297. </productMenu>
  6298. <productMenu id="volume"
  6299. type="16" >
  6300. </productMenu>
  6301. <productMenu id="battery"
  6302. type="1" >
  6303. </productMenu>
  6304. <productID id="6A0A"
  6305. />
  6306. <productGroupable type="0"
  6307. />
  6308. </product>
  6309. <product id="OUTLANDER"
  6310. name="OUTLANDER"
  6311. series="Helmet"
  6312. latestVersion="1.0.2"
  6313. latestVersionVoicePrompt="1.2"
  6314. show = "-1" >
  6315. <productMenu id="protocol"
  6316. type="2" >
  6317. </productMenu>
  6318. <productMenu id="ota"
  6319. type="2" >
  6320. <otaLanguages>
  6321. <otaLanguage
  6322. id="0"
  6323. name="English"
  6324. package="0"
  6325. />
  6326. <otaLanguage
  6327. id="0"
  6328. name="French"
  6329. package="1"
  6330. />
  6331. <otaLanguage
  6332. id="0"
  6333. name="Spanish"
  6334. package="2"
  6335. />
  6336. <otaLanguage
  6337. id="0"
  6338. name="Italian"
  6339. package="3"
  6340. />
  6341. <otaLanguage
  6342. id="0"
  6343. name="German"
  6344. package="4"
  6345. />
  6346. <otaLanguage
  6347. id="0"
  6348. name="Dutch"
  6349. package="5"
  6350. />
  6351. <otaLanguage
  6352. id="0"
  6353. name="Russian"
  6354. package="6"
  6355. />
  6356. <otaLanguage
  6357. id="0"
  6358. name="Chinese"
  6359. package="7"
  6360. />
  6361. <otaLanguage
  6362. id="0"
  6363. name="Korean"
  6364. package="8"
  6365. />
  6366. <otaLanguage
  6367. id="0"
  6368. name="Japanese"
  6369. package="9"
  6370. />
  6371. <otaLanguage
  6372. id="0"
  6373. name="Finnish"
  6374. package="10"
  6375. />
  6376. <otaLanguage
  6377. id="0"
  6378. name="Polish"
  6379. package="11"
  6380. />
  6381. </otaLanguages>
  6382. <otaPackages>
  6383. <package
  6384. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1.img"
  6385. size="5183988"
  6386. />
  6387. <package
  6388. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-fr-FR.img"
  6389. size="5183988"
  6390. />
  6391. <package
  6392. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-es-ES.img"
  6393. size="5183988"
  6394. />
  6395. <package
  6396. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-it-IT.img"
  6397. size="5183988"
  6398. />
  6399. <package
  6400. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-de-DE.img"
  6401. size="5183988"
  6402. />
  6403. <package
  6404. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-nl-NL.img"
  6405. size="5183988"
  6406. />
  6407. <package
  6408. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-ru-RU.img"
  6409. size="5183988"
  6410. />
  6411. <package
  6412. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-cmn-CN.img"
  6413. size="5183988"
  6414. />
  6415. <package
  6416. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-ko-KR.img"
  6417. size="5183988"
  6418. />
  6419. <package
  6420. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-ja-JP.img"
  6421. size="5183988"
  6422. />
  6423. <package
  6424. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-fi-FI.img"
  6425. size="5183988"
  6426. />
  6427. <package
  6428. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-pl-PL.img"
  6429. size="5183988"
  6430. />
  6431. </otaPackages>
  6432. </productMenu>
  6433. <productMenu id="wa"
  6434. type="0" >
  6435. </productMenu>
  6436. <productMenu id="led"
  6437. type="5" >
  6438. </productMenu>
  6439. <productMenu id="led+"
  6440. type="2"
  6441. url="1" >
  6442. </productMenu>
  6443. <productMenu id="meshIntercom+"
  6444. type="3"
  6445. url="2" >
  6446. </productMenu>
  6447. <productMenu id="waveIntercom"
  6448. type="1" >
  6449. </productMenu>
  6450. <productMenu id="fmradio"
  6451. type="0" >
  6452. </productMenu>
  6453. <productMenu id="phone"
  6454. type="1" >
  6455. </productMenu>
  6456. <productMenu id="music"
  6457. type="1" >
  6458. </productMenu>
  6459. <productMenu id="musicSharing"
  6460. type="0" >
  6461. </productMenu>
  6462. <productMenu id="deviceSetting"
  6463. type="1"
  6464. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  6465. </productMenu>
  6466. <productMenu id="quickGuide"
  6467. type="0"
  6468. url=""
  6469. size="1.12MB" >
  6470. </productMenu>
  6471. <productMenu id="userGuide"
  6472. type="0"
  6473. url=""
  6474. size="2.0MB" >
  6475. </productMenu>
  6476. <productMenu id="videoGuide"
  6477. type="0"
  6478. url=""
  6479. size="3.41MB" >
  6480. </productMenu>
  6481. <productMenu id="volume"
  6482. type="16" >
  6483. </productMenu>
  6484. <productMenu id="battery"
  6485. type="1" >
  6486. </productMenu>
  6487. <productID id="6A05"
  6488. />
  6489. <productGroupable type="0"
  6490. />
  6491. </product>
  6492. <product id="OUTRUSH2"
  6493. name="OUTRUSH 2"
  6494. series="Helmet"
  6495. latestVersion="1.0.2"
  6496. latestVersionVoicePrompt="1.1"
  6497. show = "-1" >
  6498. <productMenu id="protocol"
  6499. type="2" >
  6500. </productMenu>
  6501. <productMenu id="alexa"
  6502. type="0" >
  6503. </productMenu>
  6504. <productMenu id="ota"
  6505. type="2" >
  6506. <otaPackages>
  6507. <package
  6508. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  6509. size="2945812"
  6510. />
  6511. </otaPackages>
  6512. </productMenu>
  6513. <productMenu id="meshIntercom+"
  6514. type="3"
  6515. url="2" >
  6516. </productMenu>
  6517. <productMenu id="waveIntercom"
  6518. type="1" >
  6519. </productMenu>
  6520. <productMenu id="phone"
  6521. type="1" >
  6522. </productMenu>
  6523. <productMenu id="music"
  6524. type="1" >
  6525. </productMenu>
  6526. <productMenu id="musicSharing"
  6527. type="0" >
  6528. </productMenu>
  6529. <productMenu id="deviceSetting"
  6530. type="1"
  6531. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  6532. <productMenuURL version="1.0"
  6533. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  6534. />
  6535. </productMenu>
  6536. <productMenu id="quickGuide"
  6537. type="0"
  6538. url=""
  6539. size="1.12MB" >
  6540. </productMenu>
  6541. <productMenu id="userGuide"
  6542. type="1"
  6543. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.0_en_250730.pdf"
  6544. size="2.0MB" >
  6545. </productMenu>
  6546. <productMenu id="volume"
  6547. type="12" >
  6548. </productMenu>
  6549. <productMenu id="battery"
  6550. type="1" >
  6551. </productMenu>
  6552. <productID id="684A"
  6553. />
  6554. <productGroupable type="0"
  6555. />
  6556. </product>
  6557. <product id="OUTSTAR2"
  6558. name="OUTSTAR 2"
  6559. series="Helmet"
  6560. latestVersion="1.0.1"
  6561. latestVersionVoicePrompt="1.1"
  6562. show = "-1" >
  6563. <productMenu id="protocol"
  6564. type="2" >
  6565. </productMenu>
  6566. <productMenu id="alexa"
  6567. type="0" >
  6568. </productMenu>
  6569. <productMenu id="ota"
  6570. type="2" >
  6571. <otaPackages>
  6572. <package
  6573. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.1-build0.img"
  6574. size="2945812"
  6575. />
  6576. </otaPackages>
  6577. </productMenu>
  6578. <productMenu id="meshIntercom+"
  6579. type="3"
  6580. url="2" >
  6581. </productMenu>
  6582. <productMenu id="waveIntercom"
  6583. type="1" >
  6584. </productMenu>
  6585. <productMenu id="phone"
  6586. type="1" >
  6587. </productMenu>
  6588. <productMenu id="music"
  6589. type="1" >
  6590. </productMenu>
  6591. <productMenu id="musicSharing"
  6592. type="0" >
  6593. </productMenu>
  6594. <productMenu id="deviceSetting"
  6595. type="1"
  6596. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  6597. </productMenu>
  6598. <productMenu id="quickGuide"
  6599. type="0"
  6600. url=""
  6601. size="1.12MB" >
  6602. </productMenu>
  6603. <productMenu id="userGuide"
  6604. type="1"
  6605. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.0_en_250903.pdf"
  6606. size="2.0MB" >
  6607. </productMenu>
  6608. <productMenu id="volume"
  6609. type="12" >
  6610. </productMenu>
  6611. <productMenu id="battery"
  6612. type="1" >
  6613. </productMenu>
  6614. <productID id="684B"
  6615. />
  6616. <productGroupable type="0"
  6617. />
  6618. </product>
  6619. <product id="SURGE"
  6620. name="SURGE"
  6621. series="Helmet"
  6622. latestVersion="1.2"
  6623. latestVersionVoicePrompt="1.3"
  6624. show = "1" >
  6625. <productMenu id="protocol"
  6626. type="2" >
  6627. </productMenu>
  6628. <productMenu id="alexa"
  6629. type="0" >
  6630. </productMenu>
  6631. <productMenu id="ota"
  6632. type="2" >
  6633. <otaPackages>
  6634. <package
  6635. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  6636. size="2945812"
  6637. />
  6638. </otaPackages>
  6639. </productMenu>
  6640. <productMenu id="meshIntercom"
  6641. type="30" >
  6642. </productMenu>
  6643. <productMenu id="meshIntercom+"
  6644. type="3"
  6645. url="2" >
  6646. <productMenuType version="1.0.1"
  6647. type="2"
  6648. />
  6649. </productMenu>
  6650. <productMenu id="waveIntercom"
  6651. type="1" >
  6652. <productMenuType version="1.0.9"
  6653. type="0"
  6654. />
  6655. </productMenu>
  6656. <productMenu id="phone"
  6657. type="1" >
  6658. </productMenu>
  6659. <productMenu id="music"
  6660. type="1" >
  6661. </productMenu>
  6662. <productMenu id="musicSharing"
  6663. type="0" >
  6664. </productMenu>
  6665. <productMenu id="deviceSetting"
  6666. type="1"
  6667. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  6668. <productMenuURL version="1.1.9"
  6669. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  6670. />
  6671. <productMenuURL version="1.0.1"
  6672. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6673. />
  6674. </productMenu>
  6675. <productMenu id="quickGuide"
  6676. type="0"
  6677. url=""
  6678. size="1.12MB" >
  6679. </productMenu>
  6680. <productMenu id="userGuide"
  6681. type="1"
  6682. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  6683. size="2.0MB" >
  6684. </productMenu>
  6685. <productMenu id="volume"
  6686. type="12" >
  6687. </productMenu>
  6688. <productMenu id="battery"
  6689. type="1" >
  6690. </productMenu>
  6691. <productID id="6840"
  6692. />
  6693. <productGroupable type="0"
  6694. />
  6695. </product>
  6696. <product id="Cavalry2"
  6697. name="Cavalry 2"
  6698. series="Helmet"
  6699. latestVersion="1.2"
  6700. latestVersionVoicePrompt="1.3"
  6701. show = "1" >
  6702. <productMenu id="protocol"
  6703. type="2" >
  6704. </productMenu>
  6705. <productMenu id="alexa"
  6706. type="0" >
  6707. </productMenu>
  6708. <productMenu id="ota"
  6709. type="2" >
  6710. <otaPackages>
  6711. <package
  6712. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  6713. size="3144148"
  6714. />
  6715. </otaPackages>
  6716. </productMenu>
  6717. <productMenu id="wa"
  6718. type="0" >
  6719. </productMenu>
  6720. <productMenu id="meshIntercom"
  6721. type="30" >
  6722. </productMenu>
  6723. <productMenu id="meshIntercom+"
  6724. type="3"
  6725. url="2" >
  6726. <productMenuType version="1.0"
  6727. type="2"
  6728. />
  6729. </productMenu>
  6730. <productMenu id="waveIntercom"
  6731. type="1" >
  6732. <productMenuType version="1.0.9"
  6733. type="0"
  6734. />
  6735. </productMenu>
  6736. <productMenu id="phone"
  6737. type="1" >
  6738. </productMenu>
  6739. <productMenu id="music"
  6740. type="1" >
  6741. </productMenu>
  6742. <productMenu id="musicSharing"
  6743. type="0" >
  6744. </productMenu>
  6745. <productMenu id="deviceSetting"
  6746. type="1"
  6747. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  6748. <productMenuURL version="1.1.9"
  6749. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  6750. />
  6751. <productMenuURL version="1.0"
  6752. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  6753. />
  6754. </productMenu>
  6755. <productMenu id="quickGuide"
  6756. type="0"
  6757. url=""
  6758. size="1.12MB" >
  6759. </productMenu>
  6760. <productMenu id="userGuide"
  6761. type="1"
  6762. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  6763. size="2.0MB" >
  6764. </productMenu>
  6765. <productMenu id="connectGuide"
  6766. type="1"
  6767. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6768. size="1.12MB" >
  6769. </productMenu>
  6770. <productMenu id="volume"
  6771. type="12" >
  6772. </productMenu>
  6773. <productMenu id="battery"
  6774. type="1" >
  6775. </productMenu>
  6776. <productID id="6839"
  6777. />
  6778. <productGroupable type="0"
  6779. />
  6780. </product>
  6781. <product id="Cavalry"
  6782. name="Cavalry"
  6783. series="Helmet"
  6784. latestVersion="1.2.2"
  6785. show = "1" >
  6786. <productMenu id="protocol"
  6787. type="0">
  6788. </productMenu>
  6789. <productMenu id="sip"
  6790. type="1" >
  6791. </productMenu>
  6792. <productMenu id="bluetoothIntercom"
  6793. type="1" >
  6794. </productMenu>
  6795. <productMenu id="phone"
  6796. type="2" >
  6797. </productMenu>
  6798. <productMenu id="fmradio"
  6799. type="3" >
  6800. </productMenu>
  6801. <productMenu id="deviceSetting"
  6802. type="1"
  6803. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  6804. <productMenuURL version="1.9"
  6805. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  6806. />
  6807. <productMenuURL version="1.0.1"
  6808. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  6809. />
  6810. </productMenu>
  6811. <productMenu id="quickGuide"
  6812. type="1"
  6813. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  6814. size="795KB" >
  6815. </productMenu>
  6816. <productMenu id="userGuide"
  6817. type="1"
  6818. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  6819. size="1.87MB" >
  6820. </productMenu>
  6821. <productMenu id="connectGuide"
  6822. type="1"
  6823. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6824. size="1.12MB" >
  6825. </productMenu>
  6826. <productID id="5524"
  6827. />
  6828. <productGroupable type="0"
  6829. />
  6830. </product>
  6831. <product id="Cavalry_Lite"
  6832. name="Cavalry Lite"
  6833. series="Helmet"
  6834. latestVersion="1.0.2"
  6835. show = "1" >
  6836. <productMenu id="protocol"
  6837. type="0">
  6838. </productMenu>
  6839. <productMenu id="sip"
  6840. type="1" >
  6841. </productMenu>
  6842. <productMenu id="bluetoothIntercom"
  6843. type="1" >
  6844. </productMenu>
  6845. <productMenu id="phone"
  6846. type="2" >
  6847. </productMenu>
  6848. <productMenu id="fmradio"
  6849. type="3" >
  6850. </productMenu>
  6851. <productMenu id="deviceSetting"
  6852. type="1"
  6853. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  6854. </productMenu>
  6855. <productMenu id="userGuide"
  6856. type="1"
  6857. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  6858. size="1.74MB" >
  6859. </productMenu>
  6860. <productMenu id="connectGuide"
  6861. type="1"
  6862. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6863. size="1.12MB" >
  6864. </productMenu>
  6865. <productID id="5536"
  6866. />
  6867. <productGroupable type="0"
  6868. />
  6869. </product>
  6870. <product id="SF4"
  6871. name="SF4"
  6872. series="SF"
  6873. latestVersion="1.1.5"
  6874. show = "-1" >
  6875. <productMenu id="protocol"
  6876. type="1"
  6877. url="3">
  6878. </productMenu>
  6879. <productMenu id="sip"
  6880. type="1" >
  6881. </productMenu>
  6882. <productMenu id="bluetoothIntercom"
  6883. type="1" >
  6884. </productMenu>
  6885. <productMenu id="phone"
  6886. type="1" >
  6887. </productMenu>
  6888. <productMenu id="music"
  6889. type="1" >
  6890. </productMenu>
  6891. <productMenu id="fmradio"
  6892. type="1" >
  6893. </productMenu>
  6894. <productMenu id="deviceSetting"
  6895. type="1"
  6896. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  6897. <productMenuURL version="1.0.1"
  6898. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  6899. />
  6900. </productMenu>
  6901. <productMenu id="quickGuide"
  6902. type="1"
  6903. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  6904. size="607KB" >
  6905. </productMenu>
  6906. <productMenu id="userGuide"
  6907. type="1"
  6908. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  6909. size="1.91MB" >
  6910. </productMenu>
  6911. <productMenu id="volume"
  6912. type="4" >
  6913. </productMenu>
  6914. <productID id="5414"
  6915. />
  6916. <productGroupable type="0"
  6917. />
  6918. </product>
  6919. <product id="SF4"
  6920. name="SF4"
  6921. series="SF"
  6922. latestVersion="3.4.2"
  6923. show = "1" >
  6924. <productMenu id="protocol"
  6925. type="2" >
  6926. </productMenu>
  6927. <productMenu id="sip"
  6928. type="1" >
  6929. </productMenu>
  6930. <productMenu id="bluetoothIntercom"
  6931. type="1" >
  6932. </productMenu>
  6933. <productMenu id="phone"
  6934. type="1" >
  6935. </productMenu>
  6936. <productMenu id="music"
  6937. type="1" >
  6938. </productMenu>
  6939. <productMenu id="fmradio"
  6940. type="1" >
  6941. </productMenu>
  6942. <productMenu id="deviceSetting"
  6943. type="1"
  6944. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  6945. <productMenuURL version="3.0"
  6946. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  6947. />
  6948. </productMenu>
  6949. <productMenu id="quickGuide"
  6950. type="0"
  6951. url=""
  6952. size="934KB" >
  6953. </productMenu>
  6954. <productMenu id="userGuide"
  6955. type="1"
  6956. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  6957. size="1.14MB" >
  6958. </productMenu>
  6959. <productMenu id="connectGuide"
  6960. type="1"
  6961. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  6962. size="1.12MB" >
  6963. </productMenu>
  6964. <productMenu id="volume"
  6965. type="15" >
  6966. </productMenu>
  6967. <productID id="3370"
  6968. />
  6969. <productGroupable type="0"
  6970. />
  6971. </product>
  6972. <product id="SF2"
  6973. name="SF2"
  6974. series="SF"
  6975. latestVersion="1.2.1"
  6976. show = "-1" >
  6977. <productMenu id="protocol"
  6978. type="1"
  6979. url="2">
  6980. </productMenu>
  6981. <productMenu id="sip"
  6982. type="1" >
  6983. </productMenu>
  6984. <productMenu id="bluetoothIntercom"
  6985. type="1" >
  6986. </productMenu>
  6987. <productMenu id="phone"
  6988. type="1" >
  6989. </productMenu>
  6990. <productMenu id="music"
  6991. type="1" >
  6992. </productMenu>
  6993. <productMenu id="fmradio"
  6994. type="1" >
  6995. </productMenu>
  6996. <productMenu id="deviceSetting"
  6997. type="1"
  6998. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  6999. <productMenuURL version="1.0.1"
  7000. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  7001. />
  7002. </productMenu>
  7003. <productMenu id="quickGuide"
  7004. type="1"
  7005. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  7006. size="607KB" >
  7007. </productMenu>
  7008. <productMenu id="userGuide"
  7009. type="1"
  7010. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  7011. size="1.91MB" >
  7012. </productMenu>
  7013. <productMenu id="volume"
  7014. type="4" >
  7015. </productMenu>
  7016. <productID id="5412"
  7017. />
  7018. <productGroupable type="0"
  7019. />
  7020. </product>
  7021. <product id="SF2"
  7022. name="SF2"
  7023. series="SF"
  7024. latestVersion="3.3.3"
  7025. show = "1" >
  7026. <productMenu id="protocol"
  7027. type="2" >
  7028. </productMenu>
  7029. <productMenu id="sip"
  7030. type="1" >
  7031. </productMenu>
  7032. <productMenu id="bluetoothIntercom"
  7033. type="1" >
  7034. </productMenu>
  7035. <productMenu id="phone"
  7036. type="1" >
  7037. </productMenu>
  7038. <productMenu id="music"
  7039. type="1" >
  7040. </productMenu>
  7041. <productMenu id="fmradio"
  7042. type="0" >
  7043. </productMenu>
  7044. <productMenu id="deviceSetting"
  7045. type="1"
  7046. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  7047. <productMenuURL version="3.0"
  7048. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  7049. />
  7050. </productMenu>
  7051. <productMenu id="quickGuide"
  7052. type="0"
  7053. url=""
  7054. size="934KB" >
  7055. </productMenu>
  7056. <productMenu id="userGuide"
  7057. type="1"
  7058. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  7059. size="1.14MB" >
  7060. </productMenu>
  7061. <productMenu id="connectGuide"
  7062. type="1"
  7063. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  7064. size="1.12MB" >
  7065. </productMenu>
  7066. <productMenu id="volume"
  7067. type="15" >
  7068. </productMenu>
  7069. <productID id="3360"
  7070. />
  7071. <productGroupable type="0"
  7072. />
  7073. </product>
  7074. <product id="SF1"
  7075. name="SF1"
  7076. series="SF"
  7077. latestVersion="2.0.5"
  7078. show = "-1" >
  7079. <productMenu id="protocol"
  7080. type="1"
  7081. url="1">
  7082. </productMenu>
  7083. <productMenu id="sip"
  7084. type="1" >
  7085. </productMenu>
  7086. <productMenu id="bluetoothIntercom"
  7087. type="1" >
  7088. <productMenuType version="1.1"
  7089. type="0"
  7090. />
  7091. </productMenu>
  7092. <productMenu id="phone"
  7093. type="1" >
  7094. </productMenu>
  7095. <productMenu id="music"
  7096. type="1" >
  7097. </productMenu>
  7098. <productMenu id="deviceSetting"
  7099. type="1"
  7100. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  7101. <productMenuURL version="1.1"
  7102. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  7103. />
  7104. <productMenuURL version="1.0"
  7105. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  7106. />
  7107. </productMenu>
  7108. <productMenu id="quickGuide"
  7109. type="1"
  7110. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  7111. size="401KB" >
  7112. </productMenu>
  7113. <productMenu id="userGuide"
  7114. type="1"
  7115. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  7116. size="1.91MB" >
  7117. </productMenu>
  7118. <productMenu id="volume"
  7119. type="3" >
  7120. </productMenu>
  7121. <productID id="5410"
  7122. />
  7123. <productGroupable type="0"
  7124. />
  7125. </product>
  7126. <product id="SF1"
  7127. name="SF1"
  7128. series="SF"
  7129. latestVersion="3.3.3"
  7130. show = "1" >
  7131. <productMenu id="protocol"
  7132. type="2" >
  7133. </productMenu>
  7134. <productMenu id="sip"
  7135. type="1" >
  7136. </productMenu>
  7137. <productMenu id="bluetoothIntercom"
  7138. type="1" >
  7139. </productMenu>
  7140. <productMenu id="phone"
  7141. type="1" >
  7142. </productMenu>
  7143. <productMenu id="music"
  7144. type="1" >
  7145. </productMenu>
  7146. <productMenu id="fmradio"
  7147. type="0" >
  7148. </productMenu>
  7149. <productMenu id="deviceSetting"
  7150. type="1"
  7151. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  7152. <productMenuURL version="3.0"
  7153. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  7154. />
  7155. </productMenu>
  7156. <productMenu id="quickGuide"
  7157. type="0"
  7158. url=""
  7159. size="934KB" >
  7160. </productMenu>
  7161. <productMenu id="userGuide"
  7162. type="1"
  7163. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  7164. size="1.14MB" >
  7165. </productMenu>
  7166. <productMenu id="connectGuide"
  7167. type="1"
  7168. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  7169. size="1.12MB" >
  7170. </productMenu>
  7171. <productMenu id="volume"
  7172. type="15" >
  7173. </productMenu>
  7174. <productID id="3350"
  7175. />
  7176. <productGroupable type="0"
  7177. />
  7178. </product>
  7179. <product id="SFR"
  7180. name="SFR"
  7181. series="SF"
  7182. latestVersion="1.1.1"
  7183. show = "1" >
  7184. <productMenu id="protocol"
  7185. type="1"
  7186. url="3">
  7187. </productMenu>
  7188. <productMenu id="sip"
  7189. type="1" >
  7190. </productMenu>
  7191. <productMenu id="bluetoothIntercom"
  7192. type="1" >
  7193. </productMenu>
  7194. <productMenu id="phone"
  7195. type="1" >
  7196. </productMenu>
  7197. <productMenu id="music"
  7198. type="1" >
  7199. </productMenu>
  7200. <productMenu id="fmradio"
  7201. type="1" >
  7202. </productMenu>
  7203. <productMenu id="deviceSetting"
  7204. type="1"
  7205. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  7206. </productMenu>
  7207. <productMenu id="quickGuide"
  7208. type="1"
  7209. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  7210. size="607KB" >
  7211. </productMenu>
  7212. <productMenu id="userGuide"
  7213. type="1"
  7214. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  7215. size="1.91MB" >
  7216. </productMenu>
  7217. <productMenu id="volume"
  7218. type="4" >
  7219. </productMenu>
  7220. <productID id="5418"
  7221. />
  7222. <productGroupable type="0"
  7223. />
  7224. </product>
  7225. <product id="20S"
  7226. name="20S"
  7227. series="20"
  7228. latestVersion="2.2.3"
  7229. show = "1" >
  7230. <productMenu id="protocol"
  7231. type="0">
  7232. </productMenu>
  7233. <productMenu id="wa"
  7234. type="5" >
  7235. </productMenu>
  7236. <productMenu id="sip"
  7237. type="1" >
  7238. <productMenuType version="1.0"
  7239. type="0"
  7240. />
  7241. </productMenu>
  7242. <productMenu id="bluetoothIntercom"
  7243. type="1" >
  7244. <productMenuType version="1.0"
  7245. type="0"
  7246. />
  7247. </productMenu>
  7248. <productMenu id="intercomSetting"
  7249. type="1" >
  7250. </productMenu>
  7251. <productMenu id="phone"
  7252. type="2" >
  7253. </productMenu>
  7254. <productMenu id="fmradio"
  7255. type="3" >
  7256. </productMenu>
  7257. <productMenu id="deviceSetting"
  7258. type="1"
  7259. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  7260. <productMenuURL version="2.0.2"
  7261. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  7262. />
  7263. <productMenuURL version="1.5"
  7264. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  7265. />
  7266. <productMenuURL version="1.4.1"
  7267. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  7268. />
  7269. <productMenuURL version="1.1"
  7270. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  7271. />
  7272. <productMenuURL version="1.0"
  7273. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  7274. />
  7275. </productMenu>
  7276. <productMenu id="quickGuide"
  7277. type="0"
  7278. url=""
  7279. size="264KB" >
  7280. </productMenu>
  7281. <productMenu id="userGuide"
  7282. type="1"
  7283. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  7284. size="3.09MB" >
  7285. </productMenu>
  7286. <productMenu id="connectGuide"
  7287. type="1"
  7288. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7289. size="1.12MB" >
  7290. </productMenu>
  7291. <productID id="4210"
  7292. />
  7293. <productGroupable type="1"
  7294. />
  7295. </product>
  7296. <product id="20S_EVO"
  7297. name="20S EVO"
  7298. series="20"
  7299. latestVersion="2.2.3"
  7300. show = "1" >
  7301. <productMenu id="protocol"
  7302. type="0">
  7303. </productMenu>
  7304. <productMenu id="wa"
  7305. type="5" >
  7306. </productMenu>
  7307. <productMenu id="sip"
  7308. type="1" >
  7309. <productMenuType version="1.0"
  7310. type="0"
  7311. />
  7312. </productMenu>
  7313. <productMenu id="bluetoothIntercom"
  7314. type="1" >
  7315. <productMenuType version="1.0"
  7316. type="0"
  7317. />
  7318. </productMenu>
  7319. <productMenu id="intercomSetting"
  7320. type="1" >
  7321. </productMenu>
  7322. <productMenu id="phone"
  7323. type="2" >
  7324. </productMenu>
  7325. <productMenu id="fmradio"
  7326. type="3" >
  7327. </productMenu>
  7328. <productMenu id="deviceSetting"
  7329. type="1"
  7330. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  7331. <productMenuURL version="2.0.2"
  7332. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  7333. />
  7334. <productMenuURL version="1.5"
  7335. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  7336. />
  7337. <productMenuURL version="1.4.1"
  7338. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  7339. />
  7340. <productMenuURL version="1.1"
  7341. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  7342. />
  7343. <productMenuURL version="1.0"
  7344. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  7345. />
  7346. </productMenu>
  7347. <productMenu id="quickGuide"
  7348. type="0"
  7349. url=""
  7350. size="264KB" >
  7351. </productMenu>
  7352. <productMenu id="userGuide"
  7353. type="1"
  7354. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  7355. size="3.09MB" >
  7356. </productMenu>
  7357. <productMenu id="connectGuide"
  7358. type="1"
  7359. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7360. size="1.12MB" >
  7361. </productMenu>
  7362. <productID id="4210"
  7363. />
  7364. <productProductKey key="16"
  7365. />
  7366. <productGroupable type="1"
  7367. />
  7368. </product>
  7369. <product id="10S"
  7370. name="10S"
  7371. series="10"
  7372. latestVersion="3.0.1"
  7373. show = "1" >
  7374. <productMenu id="protocol"
  7375. type="3" >
  7376. </productMenu>
  7377. <productMenu id="sip"
  7378. type="1" >
  7379. </productMenu>
  7380. <productMenu id="bluetoothIntercom"
  7381. type="1" >
  7382. </productMenu>
  7383. <productMenu id="phone"
  7384. type="1" >
  7385. </productMenu>
  7386. <productMenu id="deviceSetting"
  7387. type="1"
  7388. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  7389. </productMenu>
  7390. <productMenu id="quickGuide"
  7391. type="1"
  7392. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  7393. size="934KB" >
  7394. </productMenu>
  7395. <productMenu id="userGuide"
  7396. type="1"
  7397. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  7398. size="1.14MB" >
  7399. </productMenu>
  7400. <productMenu id="connectGuide"
  7401. type="1"
  7402. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  7403. size="1.12MB" >
  7404. </productMenu>
  7405. <productID id="3380"
  7406. />
  7407. <productGroupable type="0"
  7408. />
  7409. </product>
  7410. <product id="10S"
  7411. name="10S"
  7412. series="10"
  7413. latestVersion="2.1.1"
  7414. show = "-1" >
  7415. <productMenu id="protocol"
  7416. type="0">
  7417. </productMenu>
  7418. <productMenu id="sip"
  7419. type="1" >
  7420. </productMenu>
  7421. <productMenu id="bluetoothIntercom"
  7422. type="1" >
  7423. </productMenu>
  7424. <productMenu id="phone"
  7425. type="2" >
  7426. </productMenu>
  7427. <productMenu id="fmradio"
  7428. type="3" >
  7429. </productMenu>
  7430. <productMenu id="deviceSetting"
  7431. type="1"
  7432. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  7433. <productMenuURL version="1.5"
  7434. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  7435. />
  7436. <productMenuURL version="1.3.1"
  7437. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  7438. />
  7439. </productMenu>
  7440. <productMenu id="quickGuide"
  7441. type="1"
  7442. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  7443. size="310KB" >
  7444. </productMenu>
  7445. <productMenu id="userGuide"
  7446. type="1"
  7447. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  7448. size="1.57MB" >
  7449. </productMenu>
  7450. <productID id="5530"
  7451. />
  7452. <productGroupable type="0"
  7453. />
  7454. </product>
  7455. <product id="10R"
  7456. name="10R"
  7457. series="10"
  7458. latestVersion="2.1.1"
  7459. show = "1" >
  7460. <productMenu id="protocol"
  7461. type="0">
  7462. </productMenu>
  7463. <productMenu id="sip"
  7464. type="1" >
  7465. <productMenuType version="1.0.2"
  7466. type="0"
  7467. />
  7468. </productMenu>
  7469. <productMenu id="bluetoothIntercom"
  7470. type="1" >
  7471. <productMenuType version="1.0.2"
  7472. type="0"
  7473. />
  7474. </productMenu>
  7475. <productMenu id="phone"
  7476. type="2" >
  7477. </productMenu>
  7478. <productMenu id="fmradio"
  7479. type="3" >
  7480. </productMenu>
  7481. <productMenu id="deviceSetting"
  7482. type="1"
  7483. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  7484. <productMenuURL version="1.4"
  7485. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  7486. />
  7487. <productMenuURL version="1.2.1"
  7488. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  7489. />
  7490. <productMenuURL version="1.0.2"
  7491. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  7492. />
  7493. <productMenuURL version="1.0"
  7494. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  7495. />
  7496. </productMenu>
  7497. <productMenu id="quickGuide"
  7498. type="1"
  7499. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  7500. size="400KB" >
  7501. </productMenu>
  7502. <productMenu id="userGuide"
  7503. type="1"
  7504. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  7505. size="2.75MB" >
  7506. </productMenu>
  7507. <productMenu id="connectGuide"
  7508. type="1"
  7509. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7510. size="1.12MB" >
  7511. </productMenu>
  7512. <productID id="5520"
  7513. />
  7514. <productGroupable type="0"
  7515. />
  7516. </product>
  7517. <product id="10C_EVO"
  7518. name="10C EVO"
  7519. series="10"
  7520. latestVersion="1.7"
  7521. show = "1" >
  7522. <productMenu id="protocol"
  7523. type="0">
  7524. </productMenu>
  7525. <productMenu id="sip"
  7526. type="1" >
  7527. </productMenu>
  7528. <productMenu id="bluetoothIntercom"
  7529. type="1" >
  7530. </productMenu>
  7531. <productMenu id="phone"
  7532. type="2" >
  7533. </productMenu>
  7534. <productMenu id="fmradio"
  7535. type="3" >
  7536. </productMenu>
  7537. <productMenu id="deviceSetting"
  7538. type="1"
  7539. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  7540. <productMenuURL version="1.3.1"
  7541. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  7542. />
  7543. </productMenu>
  7544. <productMenu id="quickGuide"
  7545. type="1"
  7546. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  7547. size="1.32MB" >
  7548. </productMenu>
  7549. <productMenu id="userGuide"
  7550. type="1"
  7551. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  7552. size="1.68MB" >
  7553. </productMenu>
  7554. <productMenu id="connectGuide"
  7555. type="1"
  7556. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7557. size="1.12MB" >
  7558. </productMenu>
  7559. <productID id="5570"
  7560. />
  7561. <productGroupable type="0"
  7562. />
  7563. </product>
  7564. <product id="10C_Pro"
  7565. name="10C Pro"
  7566. series="10"
  7567. latestVersion="2.7.1"
  7568. show = "1" >
  7569. <productMenu id="protocol"
  7570. type="0">
  7571. </productMenu>
  7572. <productMenu id="sip"
  7573. type="1" >
  7574. </productMenu>
  7575. <productMenu id="bluetoothIntercom"
  7576. type="1" >
  7577. </productMenu>
  7578. <productMenu id="phone"
  7579. type="2" >
  7580. </productMenu>
  7581. <productMenu id="fmradio"
  7582. type="3" >
  7583. </productMenu>
  7584. <productMenu id="deviceSetting"
  7585. type="1"
  7586. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  7587. <productMenuURL version="2.5.1"
  7588. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  7589. />
  7590. <productMenuURL version="1.0"
  7591. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  7592. />
  7593. </productMenu>
  7594. <productMenu id="quickGuide"
  7595. type="1"
  7596. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  7597. size="651KB" >
  7598. </productMenu>
  7599. <productMenu id="userGuide"
  7600. type="1"
  7601. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  7602. size="2.34MB" >
  7603. </productMenu>
  7604. <productMenu id="connectGuide"
  7605. type="1"
  7606. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7607. size="1.12MB" >
  7608. </productMenu>
  7609. <productID id="5580"
  7610. />
  7611. <productGroupable type="0"
  7612. />
  7613. </product>
  7614. <product id="10C"
  7615. name="10C"
  7616. series="10"
  7617. latestVersion="3.0.4"
  7618. show = "1" >
  7619. <productMenu id="protocol"
  7620. type="0">
  7621. </productMenu>
  7622. <productMenu id="sip"
  7623. type="1" >
  7624. <productMenuType version="1.0.4"
  7625. type="0"
  7626. />
  7627. </productMenu>
  7628. <productMenu id="bluetoothIntercom"
  7629. type="1" >
  7630. <productMenuType version="1.0.4"
  7631. type="0"
  7632. />
  7633. </productMenu>
  7634. <productMenu id="phone"
  7635. type="2" >
  7636. </productMenu>
  7637. <productMenu id="fmradio"
  7638. type="3" >
  7639. </productMenu>
  7640. <productMenu id="deviceSetting"
  7641. type="1"
  7642. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  7643. <productMenuURL version="2.3"
  7644. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  7645. />
  7646. <productMenuURL version="2.1.1"
  7647. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  7648. />
  7649. <productMenuURL version="1.0.4"
  7650. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  7651. />
  7652. <productMenuURL version="1.0.2"
  7653. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  7654. />
  7655. </productMenu>
  7656. <productMenu id="quickGuide"
  7657. type="1"
  7658. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  7659. size="935KB" >
  7660. </productMenu>
  7661. <productMenu id="userGuide"
  7662. type="1"
  7663. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  7664. size="2.82MB" >
  7665. </productMenu>
  7666. <productMenu id="connectGuide"
  7667. type="1"
  7668. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7669. size="1.12MB" >
  7670. </productMenu>
  7671. <productID id="5510"
  7672. />
  7673. <productGroupable type="0"
  7674. />
  7675. </product>
  7676. <product id="10U_GT_AIR"
  7677. name="10U GT-Air"
  7678. series="10"
  7679. latestVersion="2.0.4"
  7680. show = "1" >
  7681. <productMenu id="protocol"
  7682. type="0">
  7683. </productMenu>
  7684. <productMenu id="sip"
  7685. type="1" >
  7686. <productMenuType version="1.0.2"
  7687. type="0"
  7688. />
  7689. </productMenu>
  7690. <productMenu id="bluetoothIntercom"
  7691. type="1" >
  7692. <productMenuType version="1.0.2"
  7693. type="0"
  7694. />
  7695. </productMenu>
  7696. <productMenu id="phone"
  7697. type="2" >
  7698. </productMenu>
  7699. <productMenu id="fmradio"
  7700. type="3" >
  7701. </productMenu>
  7702. <productMenu id="deviceSetting"
  7703. type="1"
  7704. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  7705. <productMenuURL version="1.3.2"
  7706. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  7707. />
  7708. <productMenuURL version="1.0.2"
  7709. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  7710. />
  7711. </productMenu>
  7712. <productMenu id="quickGuide"
  7713. type="1"
  7714. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  7715. size="685KB" >
  7716. </productMenu>
  7717. <productMenu id="userGuide"
  7718. type="1"
  7719. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  7720. size="684KB" >
  7721. </productMenu>
  7722. <productMenu id="connectGuide"
  7723. type="1"
  7724. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  7725. size="1.12MB" >
  7726. </productMenu>
  7727. <productID id="5610"
  7728. />
  7729. <productGroupable type="0"
  7730. />
  7731. </product>
  7732. <product id="10U_NEOTEC"
  7733. name="10U Neotec"
  7734. series="10"
  7735. latestVersion="2.0.4"
  7736. show = "1" >
  7737. <productMenu id="protocol"
  7738. type="0">
  7739. </productMenu>
  7740. <productMenu id="sip"
  7741. type="1" >
  7742. <productMenuType version="1.0.2"
  7743. type="0"
  7744. />
  7745. </productMenu>
  7746. <productMenu id="bluetoothIntercom"
  7747. type="1" >
  7748. <productMenuType version="1.0.2"
  7749. type="0"
  7750. />
  7751. </productMenu>
  7752. <productMenu id="phone"
  7753. type="2" >
  7754. </productMenu>
  7755. <productMenu id="fmradio"
  7756. type="3" >
  7757. </productMenu>
  7758. <productMenu id="deviceSetting"
  7759. type="1"
  7760. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  7761. <productMenuURL version="1.3.2"
  7762. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  7763. />
  7764. <productMenuURL version="1.0.2"
  7765. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  7766. />
  7767. </productMenu>
  7768. <productMenu id="quickGuide"
  7769. type="1"
  7770. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  7771. size="689KB" >
  7772. </productMenu>
  7773. <productMenu id="userGuide"
  7774. type="1"
  7775. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  7776. size="684KB" >
  7777. </productMenu>
  7778. <productMenu id="connectGuide"
  7779. type="1"
  7780. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  7781. size="1.12MB" >
  7782. </productMenu>
  7783. <productID id="5611"
  7784. />
  7785. <productGroupable type="0"
  7786. />
  7787. </product>
  7788. <product id="10U_J_CRUISE"
  7789. name="10U J-Cruise"
  7790. series="10"
  7791. latestVersion="2.0.4"
  7792. show = "1" >
  7793. <productMenu id="protocol"
  7794. type="0">
  7795. </productMenu>
  7796. <productMenu id="sip"
  7797. type="1" >
  7798. <productMenuType version="1.0.2"
  7799. type="0"
  7800. />
  7801. </productMenu>
  7802. <productMenu id="bluetoothIntercom"
  7803. type="1" >
  7804. <productMenuType version="1.0.2"
  7805. type="0"
  7806. />
  7807. </productMenu>
  7808. <productMenu id="phone"
  7809. type="2" >
  7810. </productMenu>
  7811. <productMenu id="fmradio"
  7812. type="3" >
  7813. </productMenu>
  7814. <productMenu id="deviceSetting"
  7815. type="1"
  7816. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  7817. <productMenuURL version="1.3.2"
  7818. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  7819. />
  7820. <productMenuURL version="1.0.2"
  7821. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  7822. />
  7823. </productMenu>
  7824. <productMenu id="quickGuide"
  7825. type="1"
  7826. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  7827. size="686KB" >
  7828. </productMenu>
  7829. <productMenu id="userGuide"
  7830. type="1"
  7831. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  7832. size="684KB" >
  7833. </productMenu>
  7834. <productMenu id="connectGuide"
  7835. type="1"
  7836. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  7837. size="1.12MB" >
  7838. </productMenu>
  7839. <productID id="5612"
  7840. />
  7841. <productGroupable type="0"
  7842. />
  7843. </product>
  7844. <product id="10U_C3"
  7845. name="10U C3/C3Pro"
  7846. series="10"
  7847. latestVersion="2.0.4"
  7848. show = "1" >
  7849. <productMenu id="protocol"
  7850. type="0">
  7851. </productMenu>
  7852. <productMenu id="sip"
  7853. type="1" >
  7854. <productMenuType version="1.0.2"
  7855. type="0"
  7856. />
  7857. </productMenu>
  7858. <productMenu id="bluetoothIntercom"
  7859. type="1" >
  7860. <productMenuType version="1.0.2"
  7861. type="0"
  7862. />
  7863. </productMenu>
  7864. <productMenu id="phone"
  7865. type="2" >
  7866. </productMenu>
  7867. <productMenu id="fmradio"
  7868. type="3" >
  7869. </productMenu>
  7870. <productMenu id="deviceSetting"
  7871. type="1"
  7872. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  7873. <productMenuURL version="1.3.2"
  7874. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  7875. />
  7876. <productMenuURL version="1.0.2"
  7877. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  7878. />
  7879. </productMenu>
  7880. <productMenu id="quickGuide"
  7881. type="1"
  7882. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  7883. size="199KB" >
  7884. </productMenu>
  7885. <productMenu id="userGuide"
  7886. type="1"
  7887. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  7888. size="684KB" >
  7889. </productMenu>
  7890. <productMenu id="connectGuide"
  7891. type="1"
  7892. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  7893. size="1.12MB" >
  7894. </productMenu>
  7895. <productID id="5620"
  7896. />
  7897. <productGroupable type="0"
  7898. />
  7899. </product>
  7900. <product id="10U_ARAI"
  7901. name="10U Arai"
  7902. series="10"
  7903. latestVersion="2.0.4"
  7904. show = "1" >
  7905. <productMenu id="protocol"
  7906. type="0">
  7907. </productMenu>
  7908. <productMenu id="sip"
  7909. type="1" >
  7910. <productMenuType version="1.0.2"
  7911. type="0"
  7912. />
  7913. </productMenu>
  7914. <productMenu id="bluetoothIntercom"
  7915. type="1" >
  7916. <productMenuType version="1.0.2"
  7917. type="0"
  7918. />
  7919. </productMenu>
  7920. <productMenu id="phone"
  7921. type="2" >
  7922. </productMenu>
  7923. <productMenu id="fmradio"
  7924. type="3" >
  7925. </productMenu>
  7926. <productMenu id="deviceSetting"
  7927. type="1"
  7928. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  7929. <productMenuURL version="1.3.2"
  7930. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  7931. />
  7932. <productMenuURL version="1.0.2"
  7933. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  7934. />
  7935. </productMenu>
  7936. <productMenu id="quickGuide"
  7937. type="1"
  7938. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  7939. size="689KB" >
  7940. </productMenu>
  7941. <productMenu id="userGuide"
  7942. type="1"
  7943. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  7944. size="684KB" >
  7945. </productMenu>
  7946. <productMenu id="connectGuide"
  7947. type="1"
  7948. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  7949. size="1.12MB" >
  7950. </productMenu>
  7951. <productID id="5621"
  7952. />
  7953. <productGroupable type="0"
  7954. />
  7955. </product>
  7956. <product id="10Upad"
  7957. name="10Upad"
  7958. series="10"
  7959. latestVersion="2.0.3"
  7960. show = "1" >
  7961. <productMenu id="protocol"
  7962. type="0">
  7963. </productMenu>
  7964. <productMenu id="sip"
  7965. type="1" >
  7966. </productMenu>
  7967. <productMenu id="bluetoothIntercom"
  7968. type="1" >
  7969. </productMenu>
  7970. <productMenu id="phone"
  7971. type="2" >
  7972. </productMenu>
  7973. <productMenu id="fmradio"
  7974. type="3" >
  7975. </productMenu>
  7976. <productMenu id="deviceSetting"
  7977. type="1"
  7978. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  7979. <productMenuURL version="1.0.3"
  7980. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  7981. />
  7982. </productMenu>
  7983. <productMenu id="quickGuide"
  7984. type="1"
  7985. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  7986. size="615KB" >
  7987. </productMenu>
  7988. <productMenu id="userGuide"
  7989. type="1"
  7990. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  7991. size="0.99MB" >
  7992. </productMenu>
  7993. <productMenu id="connectGuide"
  7994. type="1"
  7995. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7996. size="1.12MB" >
  7997. </productMenu>
  7998. <productID id="6210"
  7999. />
  8000. <productGroupable type="0"
  8001. />
  8002. </product>
  8003. <product id="5S"
  8004. name="5S"
  8005. series="5"
  8006. latestVersion="2.2.1"
  8007. show = "1" >
  8008. <productMenu id="protocol"
  8009. type="3" >
  8010. </productMenu>
  8011. <productMenu id="sip"
  8012. type="1" >
  8013. </productMenu>
  8014. <productMenu id="bluetoothIntercom"
  8015. type="1" >
  8016. </productMenu>
  8017. <productMenu id="phone"
  8018. type="1" >
  8019. </productMenu>
  8020. <productMenu id="fmradio"
  8021. type="0" >
  8022. </productMenu>
  8023. <productMenu id="deviceSetting"
  8024. type="1"
  8025. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  8026. </productMenu>
  8027. <productMenu id="quickGuide"
  8028. type="0"
  8029. url=""
  8030. size="934KB" >
  8031. </productMenu>
  8032. <productMenu id="userGuide"
  8033. type="1"
  8034. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  8035. size="1.14MB" >
  8036. </productMenu>
  8037. <productMenu id="connectGuide"
  8038. type="1"
  8039. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  8040. size="1.12MB" >
  8041. </productMenu>
  8042. <productID id="5590"
  8043. />
  8044. <productGroupable type="0"
  8045. />
  8046. </product>
  8047. <product id="5S"
  8048. name="5S"
  8049. series="5"
  8050. latestVersion="1.2"
  8051. show = "-1" >
  8052. <productMenu id="protocol"
  8053. type="0">
  8054. </productMenu>
  8055. <productMenu id="sip"
  8056. type="1" >
  8057. </productMenu>
  8058. <productMenu id="bluetoothIntercom"
  8059. type="1" >
  8060. </productMenu>
  8061. <productMenu id="phone"
  8062. type="2" >
  8063. </productMenu>
  8064. <productMenu id="fmradio"
  8065. type="0" >
  8066. </productMenu>
  8067. <productMenu id="deviceSetting"
  8068. type="1"
  8069. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  8070. </productMenu>
  8071. <productMenu id="quickGuide"
  8072. type="0"
  8073. url=""
  8074. size="970KB" >
  8075. </productMenu>
  8076. <productMenu id="userGuide"
  8077. type="1"
  8078. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  8079. size="1.26MB" >
  8080. </productMenu>
  8081. <productID id="5534"
  8082. />
  8083. <productGroupable type="0"
  8084. />
  8085. </product>
  8086. <product id="5S"
  8087. name="5S"
  8088. series="5"
  8089. latestVersion="3.0.1"
  8090. show = "-1" >
  8091. <productMenu id="protocol"
  8092. type="0">
  8093. </productMenu>
  8094. <productMenu id="sip"
  8095. type="1" >
  8096. </productMenu>
  8097. <productMenu id="bluetoothIntercom"
  8098. type="1" >
  8099. </productMenu>
  8100. <productMenu id="phone"
  8101. type="2" >
  8102. </productMenu>
  8103. <productMenu id="fmradio"
  8104. type="0" >
  8105. </productMenu>
  8106. <productMenu id="deviceSetting"
  8107. type="1"
  8108. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  8109. </productMenu>
  8110. <productMenu id="quickGuide"
  8111. type="0"
  8112. url=""
  8113. size="970KB" >
  8114. </productMenu>
  8115. <productMenu id="userGuide"
  8116. type="1"
  8117. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  8118. size="1.26MB" >
  8119. </productMenu>
  8120. <productID id="5538"
  8121. />
  8122. <productGroupable type="0"
  8123. />
  8124. </product>
  8125. <product id="3SPLUS"
  8126. name="3S PLUS"
  8127. series="3"
  8128. latestVersion="2.2"
  8129. show = "1" >
  8130. <productMenu id="protocol"
  8131. type="3" >
  8132. </productMenu>
  8133. <productMenu id="sip"
  8134. type="1" >
  8135. </productMenu>
  8136. <productMenu id="bluetoothIntercom"
  8137. type="1" >
  8138. </productMenu>
  8139. <productMenu id="deviceSetting"
  8140. type="1"
  8141. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  8142. <productMenuURL version="2.2.1"
  8143. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  8144. />
  8145. </productMenu>
  8146. <productMenu id="quickGuide"
  8147. type="1"
  8148. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  8149. size="344KB" >
  8150. </productMenu>
  8151. <productMenu id="userGuide"
  8152. type="1"
  8153. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  8154. size="1.14MB" >
  8155. </productMenu>
  8156. <productMenu id="connectGuide"
  8157. type="1"
  8158. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  8159. size="1.12MB" >
  8160. </productMenu>
  8161. <productID id="4023"
  8162. />
  8163. <productGroupable type="0"
  8164. />
  8165. </product>
  8166. <product id="3SPLUS"
  8167. name="3S PLUS"
  8168. series="3"
  8169. latestVersion="1.1"
  8170. show = "-1" >
  8171. <productMenu id="protocol"
  8172. type="0">
  8173. </productMenu>
  8174. <productMenu id="sip"
  8175. type="1" >
  8176. </productMenu>
  8177. <productMenu id="bluetoothIntercom"
  8178. type="1" >
  8179. </productMenu>
  8180. <productMenu id="deviceSetting"
  8181. type="1"
  8182. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  8183. </productMenu>
  8184. <productMenu id="quickGuide"
  8185. type="1"
  8186. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  8187. size="842KB" >
  8188. </productMenu>
  8189. <productMenu id="userGuide"
  8190. type="1"
  8191. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  8192. size="1.02MB" >
  8193. </productMenu>
  8194. <productID id="6320"
  8195. />
  8196. <productGroupable type="0"
  8197. />
  8198. </product>
  8199. <product id="iCon"
  8200. name="iCon"
  8201. series="50"
  8202. latestVersion="1.2"
  8203. show = "0" >
  8204. <productMenu id="protocol"
  8205. type="2" >
  8206. </productMenu>
  8207. <productMenu id="alexa"
  8208. type="0" >
  8209. </productMenu>
  8210. <productMenu id="wa"
  8211. type="0" >
  8212. </productMenu>
  8213. <productMenu id="sip"
  8214. type="1" >
  8215. </productMenu>
  8216. <productMenu id="led"
  8217. type="3" >
  8218. </productMenu>
  8219. <productMenu id="meshIntercom"
  8220. type="20" >
  8221. </productMenu>
  8222. <productMenu id="meshIntercom+"
  8223. type="3"
  8224. url="0" >
  8225. <productMenuType version="1.0.9"
  8226. type="2"
  8227. />
  8228. </productMenu>
  8229. <productMenu id="bluetoothIntercom"
  8230. type="1" >
  8231. </productMenu>
  8232. <productMenu id="phone"
  8233. type="1" >
  8234. </productMenu>
  8235. <productMenu id="music"
  8236. type="1" >
  8237. </productMenu>
  8238. <productMenu id="fmradio"
  8239. type="1" >
  8240. </productMenu>
  8241. <productMenu id="deviceSetting"
  8242. type="1"
  8243. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  8244. <productMenuURL version="1.0.9"
  8245. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  8246. />
  8247. </productMenu>
  8248. <productMenu id="quickGuide"
  8249. type="1"
  8250. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  8251. size="344KB" >
  8252. </productMenu>
  8253. <productMenu id="userGuide"
  8254. type="1"
  8255. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  8256. size="3.41MB" >
  8257. </productMenu>
  8258. <productMenu id="volume"
  8259. type="11" >
  8260. </productMenu>
  8261. <productMenu id="battery"
  8262. type="1" >
  8263. </productMenu>
  8264. <productID id="3900"
  8265. />
  8266. <productGroupable type="0"
  8267. />
  8268. </product>
  8269. <product id="HD50S"
  8270. name="H-D Audio 50S"
  8271. series="50"
  8272. latestVersion="1.0.1"
  8273. show = "-1" >
  8274. <productMenu id="protocol"
  8275. type="2" >
  8276. </productMenu>
  8277. <productMenu id="alexa"
  8278. type="0" >
  8279. </productMenu>
  8280. <productMenu id="ota"
  8281. type="0"
  8282. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  8283. size="1150234" >
  8284. </productMenu>
  8285. <productMenu id="wa"
  8286. type="1" >
  8287. </productMenu>
  8288. <productMenu id="sip"
  8289. type="1" >
  8290. </productMenu>
  8291. <productMenu id="meshIntercom"
  8292. type="20" >
  8293. </productMenu>
  8294. <productMenu id="bluetoothIntercom"
  8295. type="1" >
  8296. </productMenu>
  8297. <productMenu id="phone"
  8298. type="1" >
  8299. </productMenu>
  8300. <productMenu id="music"
  8301. type="1" >
  8302. </productMenu>
  8303. <productMenu id="fmradio"
  8304. type="1" >
  8305. </productMenu>
  8306. <productMenu id="deviceSetting"
  8307. type="1"
  8308. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  8309. </productMenu>
  8310. <productMenu id="quickGuide"
  8311. type="1"
  8312. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  8313. size="934KB" >
  8314. </productMenu>
  8315. <productMenu id="userGuide"
  8316. type="1"
  8317. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  8318. size="1.14MB" >
  8319. </productMenu>
  8320. <productMenu id="volume"
  8321. type="11" >
  8322. </productMenu>
  8323. <productMenu id="battery"
  8324. type="1" >
  8325. </productMenu>
  8326. <productID id="3156"
  8327. />
  8328. <productGroupable type="0"
  8329. />
  8330. </product>
  8331. <product id="HD50S"
  8332. name="H-D Audio 50S"
  8333. series="50"
  8334. latestVersion="2.0.2"
  8335. show = "0" >
  8336. <productMenu id="protocol"
  8337. type="2" >
  8338. </productMenu>
  8339. <productMenu id="alexa"
  8340. type="0" >
  8341. </productMenu>
  8342. <productMenu id="ota"
  8343. type="0"
  8344. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  8345. size="1150234" >
  8346. </productMenu>
  8347. <productMenu id="wa"
  8348. type="1" >
  8349. </productMenu>
  8350. <productMenu id="sip"
  8351. type="1" >
  8352. </productMenu>
  8353. <productMenu id="meshIntercom"
  8354. type="20" >
  8355. </productMenu>
  8356. <productMenu id="bluetoothIntercom"
  8357. type="1" >
  8358. </productMenu>
  8359. <productMenu id="phone"
  8360. type="1" >
  8361. </productMenu>
  8362. <productMenu id="music"
  8363. type="1" >
  8364. </productMenu>
  8365. <productMenu id="fmradio"
  8366. type="1" >
  8367. </productMenu>
  8368. <productMenu id="deviceSetting"
  8369. type="1"
  8370. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  8371. </productMenu>
  8372. <productMenu id="quickGuide"
  8373. type="1"
  8374. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  8375. size="934KB" >
  8376. </productMenu>
  8377. <productMenu id="userGuide"
  8378. type="1"
  8379. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  8380. size="1.14MB" >
  8381. </productMenu>
  8382. <productMenu id="volume"
  8383. type="11" >
  8384. </productMenu>
  8385. <productMenu id="battery"
  8386. type="1" >
  8387. </productMenu>
  8388. <productID id="3213"
  8389. />
  8390. <productGroupable type="0"
  8391. />
  8392. </product>
  8393. <product id="HD50C"
  8394. name="H-D Audio 50C"
  8395. series="50"
  8396. latestVersion="1.0.1"
  8397. show = "0" >
  8398. <productMenu id="protocol"
  8399. type="2" >
  8400. </productMenu>
  8401. <productMenu id="ota"
  8402. type="0" >
  8403. </productMenu>
  8404. <productMenu id="wa"
  8405. type="1" >
  8406. </productMenu>
  8407. <productMenu id="sip"
  8408. type="1" >
  8409. </productMenu>
  8410. <productMenu id="meshIntercom"
  8411. type="20" >
  8412. </productMenu>
  8413. <productMenu id="bluetoothIntercom"
  8414. type="1" >
  8415. </productMenu>
  8416. <productMenu id="phone"
  8417. type="1" >
  8418. </productMenu>
  8419. <productMenu id="music"
  8420. type="1" >
  8421. </productMenu>
  8422. <productMenu id="fmradio"
  8423. type="1" >
  8424. </productMenu>
  8425. <productMenu id="deviceSetting"
  8426. type="1"
  8427. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  8428. </productMenu>
  8429. <productMenu id="quickGuide"
  8430. type="1"
  8431. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  8432. size="344KB" >
  8433. </productMenu>
  8434. <productMenu id="userGuide"
  8435. type="1"
  8436. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  8437. size="3.41MB" >
  8438. </productMenu>
  8439. <productMenu id="volume"
  8440. type="11" >
  8441. </productMenu>
  8442. <productMenu id="battery"
  8443. type="1" >
  8444. </productMenu>
  8445. <productID id="3240"
  8446. />
  8447. <productGroupable type="0"
  8448. />
  8449. </product>
  8450. <product id="HD50S"
  8451. name="FURY N04"
  8452. series="Helmet"
  8453. latestVersion="1.0"
  8454. show = "0" >
  8455. <productMenu id="protocol"
  8456. type="2" >
  8457. </productMenu>
  8458. <productMenu id="alexa"
  8459. type="0" >
  8460. </productMenu>
  8461. <productMenu id="ota"
  8462. type="0" >
  8463. </productMenu>
  8464. <productMenu id="wa"
  8465. type="0" >
  8466. </productMenu>
  8467. <productMenu id="meshIntercom"
  8468. type="20" >
  8469. </productMenu>
  8470. <productMenu id="meshIntercom+"
  8471. type="3"
  8472. url="0" >
  8473. <productMenuType version="1.0.9"
  8474. type="2"
  8475. />
  8476. </productMenu>
  8477. <productMenu id="phone"
  8478. type="1" >
  8479. </productMenu>
  8480. <productMenu id="music"
  8481. type="1" >
  8482. </productMenu>
  8483. <productMenu id="fmradio"
  8484. type="1" >
  8485. </productMenu>
  8486. <productMenu id="deviceSetting"
  8487. type="1"
  8488. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  8489. <productMenuURL version="1.0.9"
  8490. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  8491. />
  8492. </productMenu>
  8493. <productMenu id="quickGuide"
  8494. type="1"
  8495. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  8496. size="1.12MB" >
  8497. </productMenu>
  8498. <productMenu id="userGuide"
  8499. type="1"
  8500. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  8501. size="2.0MB" >
  8502. </productMenu>
  8503. <productMenu id="volume"
  8504. type="13" >
  8505. </productMenu>
  8506. <productMenu id="battery"
  8507. type="1" >
  8508. </productMenu>
  8509. <productID id="5553"
  8510. />
  8511. <productGroupable type="0"
  8512. />
  8513. </product>
  8514. <product id="XCOM3Pro"
  8515. name="X-COM3 Pro"
  8516. series="50"
  8517. latestVersion="1.1"
  8518. show = "0" >
  8519. <productMenu id="protocol"
  8520. type="2" >
  8521. </productMenu>
  8522. <productMenu id="alexa"
  8523. type="0" >
  8524. </productMenu>
  8525. <productMenu id="ota"
  8526. type="0" >
  8527. </productMenu>
  8528. <productMenu id="wa"
  8529. type="0" >
  8530. </productMenu>
  8531. <productMenu id="sip"
  8532. type="1" >
  8533. </productMenu>
  8534. <productMenu id="meshIntercom"
  8535. type="30" >
  8536. </productMenu>
  8537. <productMenu id="meshIntercom+"
  8538. type="3"
  8539. url="2" >
  8540. <productMenuType version="1.1"
  8541. type="2"
  8542. />
  8543. </productMenu>
  8544. <productMenu id="waveIntercom"
  8545. type="1" >
  8546. <productMenuType version="1.1"
  8547. type="0"
  8548. />
  8549. </productMenu>
  8550. <productMenu id="bluetoothIntercom"
  8551. type="1" >
  8552. </productMenu>
  8553. <productMenu id="phone"
  8554. type="1" >
  8555. </productMenu>
  8556. <productMenu id="music"
  8557. type="1" >
  8558. </productMenu>
  8559. <productMenu id="fmradio"
  8560. type="1" >
  8561. </productMenu>
  8562. <productMenu id="deviceSetting"
  8563. type="1"
  8564. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  8565. <productMenuURL version="1.1"
  8566. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  8567. />
  8568. </productMenu>
  8569. <productMenu id="quickGuide"
  8570. type="0"
  8571. url=""
  8572. size="344KB" >
  8573. </productMenu>
  8574. <productMenu id="userGuide"
  8575. type="1"
  8576. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  8577. size="3.41MB" >
  8578. </productMenu>
  8579. <productMenu id="volume"
  8580. type="11" >
  8581. </productMenu>
  8582. <productMenu id="battery"
  8583. type="1" >
  8584. </productMenu>
  8585. <productID id="321A"
  8586. />
  8587. <productGroupable type="0"
  8588. />
  8589. </product>
  8590. <product id="XCOM3"
  8591. name="X-COM3"
  8592. series="20"
  8593. latestVersion="1.0"
  8594. show = "0" >
  8595. <productMenu id="protocol"
  8596. type="2" >
  8597. </productMenu>
  8598. <productMenu id="sip"
  8599. type="1" >
  8600. </productMenu>
  8601. <productMenu id="bluetoothIntercom"
  8602. type="1" >
  8603. </productMenu>
  8604. <productMenu id="phone"
  8605. type="1" >
  8606. </productMenu>
  8607. <productMenu id="music"
  8608. type="1" >
  8609. </productMenu>
  8610. <productMenu id="fmradio"
  8611. type="1" >
  8612. </productMenu>
  8613. <productMenu id="deviceSetting"
  8614. type="1"
  8615. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  8616. </productMenu>
  8617. <productMenu id="quickGuide"
  8618. type="0"
  8619. url=""
  8620. size="934KB" >
  8621. </productMenu>
  8622. <productMenu id="userGuide"
  8623. type="1"
  8624. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  8625. size="1.14MB" >
  8626. </productMenu>
  8627. <productMenu id="volume"
  8628. type="15" >
  8629. </productMenu>
  8630. <productID id="3410"
  8631. />
  8632. <productGroupable type="0"
  8633. />
  8634. </product>
  8635. <product id="X-COM2"
  8636. name="X-COM2"
  8637. series="20"
  8638. latestVersion="1.0.5"
  8639. show = "0" >
  8640. <productMenu id="protocol"
  8641. type="0">
  8642. </productMenu>
  8643. <productMenu id="sip"
  8644. type="1" >
  8645. </productMenu>
  8646. <productMenu id="bluetoothIntercom"
  8647. type="1" >
  8648. </productMenu>
  8649. <productMenu id="intercomSetting"
  8650. type="1" >
  8651. </productMenu>
  8652. <productMenu id="phone"
  8653. type="2" >
  8654. </productMenu>
  8655. <productMenu id="fmradio"
  8656. type="3" >
  8657. </productMenu>
  8658. <productMenu id="deviceSetting"
  8659. type="1"
  8660. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  8661. </productMenu>
  8662. <productMenu id="quickGuide"
  8663. type="1"
  8664. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  8665. size="796KB" >
  8666. </productMenu>
  8667. <productMenu id="userGuide"
  8668. type="1"
  8669. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  8670. size="1.90MB" >
  8671. </productMenu>
  8672. <productID id="2030"
  8673. />
  8674. <productGroupable type="1"
  8675. />
  8676. </product>
  8677. <product id="AVAABC"
  8678. name="AVA ABC"
  8679. series="SPIDER"
  8680. latestVersion="1.0"
  8681. show = "0" >
  8682. <productMenu id="protocol"
  8683. type="2" >
  8684. </productMenu>
  8685. <productMenu id="alexa"
  8686. type="0" >
  8687. </productMenu>
  8688. <productMenu id="ota"
  8689. type="0" >
  8690. </productMenu>
  8691. <productMenu id="wa"
  8692. type="0" >
  8693. </productMenu>
  8694. <productMenu id="meshIntercom"
  8695. type="20" >
  8696. </productMenu>
  8697. <productMenu id="phone"
  8698. type="1" >
  8699. </productMenu>
  8700. <productMenu id="music"
  8701. type="1" >
  8702. </productMenu>
  8703. <productMenu id="musicSharing"
  8704. type="0" >
  8705. </productMenu>
  8706. <productMenu id="deviceSetting"
  8707. type="1"
  8708. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml" >
  8709. </productMenu>
  8710. <productMenu id="quickGuide"
  8711. type="1"
  8712. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  8713. size="1.12MB" >
  8714. </productMenu>
  8715. <productMenu id="userGuide"
  8716. type="1"
  8717. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  8718. size="2.0MB" >
  8719. </productMenu>
  8720. <productMenu id="volume"
  8721. type="12" >
  8722. </productMenu>
  8723. <productMenu id="battery"
  8724. type="1" >
  8725. </productMenu>
  8726. <productID id="6808"
  8727. />
  8728. <productGroupable type="0"
  8729. />
  8730. </product>
  8731. <product id="ADVANCEPROCOMMP"
  8732. name="ADVANCE PROCOM MP"
  8733. series="Helmet"
  8734. latestVersion="0.3"
  8735. latestVersionVoicePrompt="0.2"
  8736. show = "-1" >
  8737. <productMenu id="protocol"
  8738. type="2" >
  8739. </productMenu>
  8740. <productMenu id="ota"
  8741. type="2" >
  8742. <otaLanguages>
  8743. <otaLanguage
  8744. id="0"
  8745. name="English"
  8746. package="0"
  8747. />
  8748. <otaLanguage
  8749. id="0"
  8750. name="French"
  8751. package="1"
  8752. />
  8753. <otaLanguage
  8754. id="0"
  8755. name="Spanish"
  8756. package="2"
  8757. />
  8758. <otaLanguage
  8759. id="0"
  8760. name="Italian"
  8761. package="3"
  8762. />
  8763. <otaLanguage
  8764. id="0"
  8765. name="German"
  8766. package="4"
  8767. />
  8768. <otaLanguage
  8769. id="0"
  8770. name="Dutch"
  8771. package="5"
  8772. />
  8773. <otaLanguage
  8774. id="0"
  8775. name="Russian"
  8776. package="6"
  8777. />
  8778. <otaLanguage
  8779. id="0"
  8780. name="Chinese"
  8781. package="7"
  8782. />
  8783. <otaLanguage
  8784. id="0"
  8785. name="Korean"
  8786. package="8"
  8787. />
  8788. <otaLanguage
  8789. id="0"
  8790. name="Japanese"
  8791. package="9"
  8792. />
  8793. <otaLanguage
  8794. id="0"
  8795. name="Finnish"
  8796. package="10"
  8797. />
  8798. <otaLanguage
  8799. id="0"
  8800. name="Polish"
  8801. package="11"
  8802. />
  8803. </otaLanguages>
  8804. <otaPackages>
  8805. <package
  8806. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0.img"
  8807. size="5183988"
  8808. />
  8809. <package
  8810. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-fr-FR.img"
  8811. size="5183988"
  8812. />
  8813. <package
  8814. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-es-ES.img"
  8815. size="5183988"
  8816. />
  8817. <package
  8818. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-it-IT.img"
  8819. size="5183988"
  8820. />
  8821. <package
  8822. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-de-DE.img"
  8823. size="5183988"
  8824. />
  8825. <package
  8826. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-nl-NL.img"
  8827. size="5183988"
  8828. />
  8829. <package
  8830. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-ru-RU.img"
  8831. size="5183988"
  8832. />
  8833. <package
  8834. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-cmn-CN.img"
  8835. size="5183988"
  8836. />
  8837. <package
  8838. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-ko-KR.img"
  8839. size="5183988"
  8840. />
  8841. <package
  8842. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-ja-JP.img"
  8843. size="5183988"
  8844. />
  8845. <package
  8846. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-fi-FI.img"
  8847. size="5183988"
  8848. />
  8849. <package
  8850. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-pl-PL.img"
  8851. size="5183988"
  8852. />
  8853. </otaPackages>
  8854. </productMenu>
  8855. <productMenu id="wa"
  8856. type="0" >
  8857. </productMenu>
  8858. <productMenu id="meshIntercom"
  8859. type="30" >
  8860. </productMenu>
  8861. <productMenu id="meshIntercom+"
  8862. type="3"
  8863. url="2" >
  8864. </productMenu>
  8865. <productMenu id="waveIntercom"
  8866. type="1" >
  8867. </productMenu>
  8868. <productMenu id="fmradio"
  8869. type="1" >
  8870. </productMenu>
  8871. <productMenu id="phone"
  8872. type="0" >
  8873. </productMenu>
  8874. <productMenu id="music"
  8875. type="1" >
  8876. </productMenu>
  8877. <productMenu id="musicSharing"
  8878. type="0" >
  8879. </productMenu>
  8880. <productMenu id="deviceSetting"
  8881. type="1"
  8882. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  8883. </productMenu>
  8884. <productMenu id="quickGuide"
  8885. type="0"
  8886. url=""
  8887. size="1.12MB" >
  8888. </productMenu>
  8889. <productMenu id="userGuide"
  8890. type="1"
  8891. url=""
  8892. size="2.0MB" >
  8893. </productMenu>
  8894. <productMenu id="videoGuide"
  8895. type="0"
  8896. url=""
  8897. size="3.41MB" >
  8898. </productMenu>
  8899. <productMenu id="connectGuide"
  8900. type="1"
  8901. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  8902. size="1.12MB" >
  8903. </productMenu>
  8904. <productMenu id="volume"
  8905. type="16" >
  8906. </productMenu>
  8907. <productMenu id="battery"
  8908. type="1" >
  8909. </productMenu>
  8910. <productID id="6A85"
  8911. />
  8912. <productGroupable type="0"
  8913. />
  8914. </product>
  8915. <product id="Triumph_50S"
  8916. name="Triumph 50S"
  8917. series="50"
  8918. latestVersion="1.5"
  8919. show = "0" >
  8920. <productMenu id="protocol"
  8921. type="2" >
  8922. </productMenu>
  8923. <productMenu id="alexa"
  8924. type="0" >
  8925. </productMenu>
  8926. <productMenu id="ota"
  8927. type="0"
  8928. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  8929. size="1150234" >
  8930. </productMenu>
  8931. <productMenu id="wa"
  8932. type="1" >
  8933. </productMenu>
  8934. <productMenu id="sip"
  8935. type="1" >
  8936. </productMenu>
  8937. <productMenu id="meshIntercom"
  8938. type="20" >
  8939. </productMenu>
  8940. <productMenu id="bluetoothIntercom"
  8941. type="1" >
  8942. </productMenu>
  8943. <productMenu id="meshIntercom+"
  8944. type="3"
  8945. url="2" >
  8946. <productMenuType version="1.2.9"
  8947. type="2"
  8948. />
  8949. <productMenuURL version="1.2.9"
  8950. url="0"
  8951. />
  8952. </productMenu>
  8953. <productMenu id="waveIntercom"
  8954. type="1" >
  8955. <productMenuType version="1.2.9"
  8956. type="0"
  8957. />
  8958. </productMenu>
  8959. <productMenu id="phone"
  8960. type="1" >
  8961. </productMenu>
  8962. <productMenu id="music"
  8963. type="1" >
  8964. </productMenu>
  8965. <productMenu id="fmradio"
  8966. type="1" >
  8967. </productMenu>
  8968. <productMenu id="deviceSetting"
  8969. type="1"
  8970. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  8971. <productMenuURL version="1.2.9"
  8972. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  8973. />
  8974. <productMenuURL version="1.0"
  8975. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  8976. />
  8977. </productMenu>
  8978. <productMenu id="quickGuide"
  8979. type="1"
  8980. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  8981. size="934KB" >
  8982. </productMenu>
  8983. <productMenu id="userGuide"
  8984. type="1"
  8985. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  8986. size="1.14MB" >
  8987. </productMenu>
  8988. <productMenu id="volume"
  8989. type="11" >
  8990. </productMenu>
  8991. <productMenu id="battery"
  8992. type="1" >
  8993. </productMenu>
  8994. <productID id="3264"
  8995. />
  8996. <productGroupable type="0"
  8997. />
  8998. </product>
  8999. <product id="RE50S"
  9000. name="RE 50S"
  9001. series="50"
  9002. latestVersion="2.7"
  9003. show = "0" >
  9004. <productMenu id="protocol"
  9005. type="2" >
  9006. </productMenu>
  9007. <productMenu id="alexa"
  9008. type="0" >
  9009. </productMenu>
  9010. <productMenu id="ota"
  9011. type="0"
  9012. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  9013. size="1150234" >
  9014. </productMenu>
  9015. <productMenu id="wa"
  9016. type="1" >
  9017. </productMenu>
  9018. <productMenu id="sip"
  9019. type="1" >
  9020. </productMenu>
  9021. <productMenu id="meshIntercom"
  9022. type="30" >
  9023. </productMenu>
  9024. <productMenu id="meshIntercom+"
  9025. type="3"
  9026. url="2" >
  9027. <productMenuType version="2.5"
  9028. type="2"
  9029. />
  9030. </productMenu>
  9031. <productMenu id="waveIntercom"
  9032. type="1" >
  9033. <productMenuType version="2.5"
  9034. type="0"
  9035. />
  9036. </productMenu>
  9037. <productMenu id="bluetoothIntercom"
  9038. type="1" >
  9039. </productMenu>
  9040. <productMenu id="phone"
  9041. type="1" >
  9042. </productMenu>
  9043. <productMenu id="music"
  9044. type="1" >
  9045. </productMenu>
  9046. <productMenu id="fmradio"
  9047. type="1" >
  9048. </productMenu>
  9049. <productMenu id="deviceSetting"
  9050. type="1"
  9051. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  9052. <productMenuURL version="2.5.9"
  9053. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  9054. />
  9055. </productMenu>
  9056. <productMenu id="quickGuide"
  9057. type="1"
  9058. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  9059. size="934KB" >
  9060. </productMenu>
  9061. <productMenu id="userGuide"
  9062. type="1"
  9063. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  9064. size="1.14MB" >
  9065. </productMenu>
  9066. <productMenu id="videoGuide"
  9067. type="0"
  9068. url=""
  9069. size="3.41MB" >
  9070. </productMenu>
  9071. <productMenu id="volume"
  9072. type="11" >
  9073. </productMenu>
  9074. <productMenu id="battery"
  9075. type="1" >
  9076. </productMenu>
  9077. <productID id="321C"
  9078. />
  9079. <productGroupable type="0"
  9080. />
  9081. </product>
  9082. <product id="BMW_HELMET_II_U1"
  9083. name="BMW HELMET II U1"
  9084. series="50"
  9085. latestVersion="1.0"
  9086. show = "0" >
  9087. <productMenu id="protocol"
  9088. type="2" >
  9089. </productMenu>
  9090. <productMenu id="alexa"
  9091. type="0" >
  9092. </productMenu>
  9093. <productMenu id="sip"
  9094. type="1" >
  9095. </productMenu>
  9096. <productMenu id="meshIntercom"
  9097. type="20" >
  9098. </productMenu>
  9099. <productMenu id="bluetoothIntercom"
  9100. type="1" >
  9101. </productMenu>
  9102. <productMenu id="bluetoothIntercom2"
  9103. type="1" >
  9104. </productMenu>
  9105. <productMenu id="phone"
  9106. type="1" >
  9107. </productMenu>
  9108. <productMenu id="music"
  9109. type="1" >
  9110. </productMenu>
  9111. <productMenu id="fmradio"
  9112. type="1" >
  9113. </productMenu>
  9114. <productMenu id="deviceSetting"
  9115. type="1"
  9116. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  9117. </productMenu>
  9118. <productMenu id="quickGuide"
  9119. type="1"
  9120. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  9121. size="934KB" >
  9122. </productMenu>
  9123. <productMenu id="userGuide"
  9124. type="1"
  9125. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  9126. size="1.14MB" >
  9127. </productMenu>
  9128. <productMenu id="volume"
  9129. type="11" >
  9130. </productMenu>
  9131. <productMenu id="battery"
  9132. type="1" >
  9133. </productMenu>
  9134. <productID id="3260"
  9135. />
  9136. <productGroupable type="0"
  9137. />
  9138. </product>
  9139. <product id="OUTRUSHR"
  9140. name="CX935"
  9141. series="Helmet"
  9142. latestVersion="1.1.3"
  9143. show = "-1" >
  9144. <productMenu id="protocol"
  9145. type="0">
  9146. </productMenu>
  9147. <productMenu id="sip"
  9148. type="1" >
  9149. </productMenu>
  9150. <productMenu id="bluetoothIntercom"
  9151. type="1" >
  9152. </productMenu>
  9153. <productMenu id="phone"
  9154. type="2" >
  9155. </productMenu>
  9156. <productMenu id="fmradio"
  9157. type="3" >
  9158. </productMenu>
  9159. <productMenu id="deviceSetting"
  9160. type="1"
  9161. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  9162. </productMenu>
  9163. <productMenu id="userGuide"
  9164. type="1"
  9165. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  9166. size="660KB" >
  9167. </productMenu>
  9168. <productID id="5436"
  9169. />
  9170. <productGroupable type="0"
  9171. />
  9172. </product>
  9173. <product id="LSE_01"
  9174. name="LSE-01"
  9175. series="SF"
  9176. latestVersion="1.2.3"
  9177. show = "0" >
  9178. <productMenu id="protocol"
  9179. type="1"
  9180. url="3">
  9181. </productMenu>
  9182. <productMenu id="sip"
  9183. type="1" >
  9184. </productMenu>
  9185. <productMenu id="bluetoothIntercom"
  9186. type="1" >
  9187. </productMenu>
  9188. <productMenu id="phone"
  9189. type="1" >
  9190. </productMenu>
  9191. <productMenu id="music"
  9192. type="1" >
  9193. </productMenu>
  9194. <productMenu id="fmradio"
  9195. type="1" >
  9196. </productMenu>
  9197. <productMenu id="deviceSetting"
  9198. type="1"
  9199. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  9200. <productMenuURL version="1.1"
  9201. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  9202. />
  9203. <productMenuURL version="1.0"
  9204. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  9205. />
  9206. </productMenu>
  9207. <productMenu id="quickGuide"
  9208. type="1"
  9209. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  9210. size="607KB" >
  9211. </productMenu>
  9212. <productMenu id="userGuide"
  9213. type="1"
  9214. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  9215. size="1.91MB" >
  9216. </productMenu>
  9217. <productMenu id="volume"
  9218. type="4" >
  9219. </productMenu>
  9220. <productID id="5416"
  9221. />
  9222. <productGroupable type="0"
  9223. />
  9224. </product>
  9225. <product id="AGV_ARK"
  9226. name="AGV ARK"
  9227. series="SF"
  9228. latestVersion="1.0.3"
  9229. show = "0" >
  9230. <productMenu id="protocol"
  9231. type="1"
  9232. url="3">
  9233. </productMenu>
  9234. <productMenu id="sip"
  9235. type="1" >
  9236. </productMenu>
  9237. <productMenu id="bluetoothIntercom"
  9238. type="1" >
  9239. </productMenu>
  9240. <productMenu id="phone"
  9241. type="1" >
  9242. </productMenu>
  9243. <productMenu id="music"
  9244. type="1" >
  9245. </productMenu>
  9246. <productMenu id="fmradio"
  9247. type="1" >
  9248. </productMenu>
  9249. <productMenu id="deviceSetting"
  9250. type="1"
  9251. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  9252. </productMenu>
  9253. <productMenu id="quickGuide"
  9254. type="1"
  9255. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  9256. size="607KB" >
  9257. </productMenu>
  9258. <productMenu id="userGuide"
  9259. type="1"
  9260. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  9261. size="1.91MB" >
  9262. </productMenu>
  9263. <productMenu id="volume"
  9264. type="4" >
  9265. </productMenu>
  9266. <productID id="5420"
  9267. />
  9268. <productGroupable type="0"
  9269. />
  9270. </product>
  9271. <product id="KLIM_KRIOS"
  9272. name="KLIM Krios"
  9273. series="10"
  9274. latestVersion="1.1.2"
  9275. show = "0" >
  9276. <productMenu id="protocol"
  9277. type="0">
  9278. </productMenu>
  9279. <productMenu id="sip"
  9280. type="1" >
  9281. </productMenu>
  9282. <productMenu id="bluetoothIntercom"
  9283. type="1" >
  9284. </productMenu>
  9285. <productMenu id="phone"
  9286. type="2" >
  9287. </productMenu>
  9288. <productMenu id="fmradio"
  9289. type="3" >
  9290. </productMenu>
  9291. <productMenu id="deviceSetting"
  9292. type="1"
  9293. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  9294. <productMenuURL version="1.0"
  9295. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  9296. />
  9297. </productMenu>
  9298. <productMenu id="quickGuide"
  9299. type="1"
  9300. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  9301. size="649KB" >
  9302. </productMenu>
  9303. <productMenu id="userGuide"
  9304. type="1"
  9305. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  9306. size="1.43MB" >
  9307. </productMenu>
  9308. <productID id="5910"
  9309. />
  9310. <productGroupable type="0"
  9311. />
  9312. </product>
  9313. <product id="POLARIS_SLINGSHOT"
  9314. name="Polaris Slingshot"
  9315. series="10"
  9316. latestVersion="1.1.2"
  9317. show = "0" >
  9318. <productMenu id="protocol"
  9319. type="0">
  9320. </productMenu>
  9321. <productMenu id="sip"
  9322. type="1" >
  9323. </productMenu>
  9324. <productMenu id="bluetoothIntercom"
  9325. type="1" >
  9326. </productMenu>
  9327. <productMenu id="phone"
  9328. type="2" >
  9329. </productMenu>
  9330. <productMenu id="fmradio"
  9331. type="3" >
  9332. </productMenu>
  9333. <productMenu id="deviceSetting"
  9334. type="1"
  9335. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  9336. <productMenuURL version="1.0"
  9337. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  9338. />
  9339. </productMenu>
  9340. <productMenu id="quickGuide"
  9341. type="1"
  9342. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  9343. size="689KB" >
  9344. </productMenu>
  9345. <productMenu id="userGuide"
  9346. type="1"
  9347. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  9348. size="1.43MB" >
  9349. </productMenu>
  9350. <productID id="5920"
  9351. />
  9352. <productGroupable type="0"
  9353. />
  9354. </product>
  9355. <product id="DWO6"
  9356. name="SEDICI DWO6-PRO"
  9357. series="10"
  9358. latestVersion="1.0.2"
  9359. show = "0" >
  9360. <productMenu id="protocol"
  9361. type="0">
  9362. </productMenu>
  9363. <productMenu id="sip"
  9364. type="1" >
  9365. </productMenu>
  9366. <productMenu id="bluetoothIntercom"
  9367. type="1" >
  9368. </productMenu>
  9369. <productMenu id="phone"
  9370. type="2" >
  9371. </productMenu>
  9372. <productMenu id="fmradio"
  9373. type="3" >
  9374. </productMenu>
  9375. <productMenu id="deviceSetting"
  9376. type="1"
  9377. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9378. </productMenu>
  9379. <productMenu id="quickGuide"
  9380. type="1"
  9381. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  9382. size="529KB" >
  9383. </productMenu>
  9384. <productMenu id="userGuide"
  9385. type="1"
  9386. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  9387. size="4.09MB" >
  9388. </productMenu>
  9389. <productID id="6112"
  9390. />
  9391. <productGroupable type="0"
  9392. />
  9393. </product>
  9394. <product id="DWO6A"
  9395. name="SEDICI DWO-6"
  9396. series="10"
  9397. latestVersion="1.0.2"
  9398. show = "0" >
  9399. <productMenu id="protocol"
  9400. type="0">
  9401. </productMenu>
  9402. <productMenu id="sip"
  9403. type="1" >
  9404. </productMenu>
  9405. <productMenu id="bluetoothIntercom"
  9406. type="1" >
  9407. </productMenu>
  9408. <productMenu id="phone"
  9409. type="2" >
  9410. </productMenu>
  9411. <productMenu id="fmradio"
  9412. type="3" >
  9413. </productMenu>
  9414. <productMenu id="deviceSetting"
  9415. type="1"
  9416. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  9417. </productMenu>
  9418. <productMenu id="quickGuide"
  9419. type="1"
  9420. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  9421. size="522KB" >
  9422. </productMenu>
  9423. <productMenu id="userGuide"
  9424. type="1"
  9425. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  9426. size="2.71MB" >
  9427. </productMenu>
  9428. <productID id="6114"
  9429. />
  9430. <productGroupable type="0"
  9431. />
  9432. </product>
  9433. <product id="3SPLUS"
  9434. name="ZILL"
  9435. series="3"
  9436. latestVersion="1.0.4"
  9437. show = "0" >
  9438. <productMenu id="protocol"
  9439. type="0">
  9440. </productMenu>
  9441. <productMenu id="sip"
  9442. type="1" >
  9443. </productMenu>
  9444. <productMenu id="bluetoothIntercom"
  9445. type="1" >
  9446. </productMenu>
  9447. <productMenu id="deviceSetting"
  9448. type="1"
  9449. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  9450. </productMenu>
  9451. <productMenu id="quickGuide"
  9452. type="1"
  9453. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9454. size="842KB" >
  9455. </productMenu>
  9456. <productMenu id="userGuide"
  9457. type="1"
  9458. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  9459. size="1.02MB" >
  9460. </productMenu>
  9461. <productID id="6335"
  9462. />
  9463. <productGroupable type="0"
  9464. />
  9465. </product>
  9466. <product id="HD50S"
  9467. name="Boom! Audio 30K"
  9468. series="30"
  9469. latestVersion="3.4"
  9470. show = "0" >
  9471. <productMenu id="protocol"
  9472. type="1"
  9473. url="0">
  9474. </productMenu>
  9475. <productMenu id="wa"
  9476. type="0" >
  9477. </productMenu>
  9478. <productMenu id="sip"
  9479. type="1" >
  9480. </productMenu>
  9481. <productMenu id="meshIntercom"
  9482. type="20" >
  9483. <productMenuType version="2.9.9"
  9484. type="10"
  9485. />
  9486. </productMenu>
  9487. <productMenu id="bluetoothIntercom"
  9488. type="1" >
  9489. </productMenu>
  9490. <productMenu id="phone"
  9491. type="1" >
  9492. </productMenu>
  9493. <productMenu id="music"
  9494. type="1" >
  9495. </productMenu>
  9496. <productMenu id="fmradio"
  9497. type="1" >
  9498. </productMenu>
  9499. <productMenu id="deviceSetting"
  9500. type="1"
  9501. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  9502. <productMenuURL version="3.2"
  9503. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  9504. />
  9505. <productMenuURL version="3.0"
  9506. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  9507. />
  9508. <productMenuURL version="2.2"
  9509. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  9510. />
  9511. </productMenu>
  9512. <productMenu id="quickGuide"
  9513. type="1"
  9514. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  9515. size="1.06MB" >
  9516. </productMenu>
  9517. <productMenu id="userGuide"
  9518. type="1"
  9519. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  9520. size="3.15MB" >
  9521. </productMenu>
  9522. <productMenu id="volume"
  9523. type="1" >
  9524. </productMenu>
  9525. <productID id="3112"
  9526. />
  9527. <productGroupable type="0"
  9528. />
  9529. </product>
  9530. <product id="HD50S"
  9531. name="Boom! Audio N02"
  9532. series="30"
  9533. latestVersion="3.1"
  9534. show = "0" >
  9535. <productMenu id="protocol"
  9536. type="1"
  9537. url="0">
  9538. </productMenu>
  9539. <productMenu id="wa"
  9540. type="2" >
  9541. </productMenu>
  9542. <productMenu id="sip"
  9543. type="1" >
  9544. </productMenu>
  9545. <productMenu id="meshIntercom"
  9546. type="20" >
  9547. <productMenuType version="2.9.9"
  9548. type="10"
  9549. />
  9550. </productMenu>
  9551. <productMenu id="bluetoothIntercom"
  9552. type="1" >
  9553. </productMenu>
  9554. <productMenu id="phone"
  9555. type="1" >
  9556. </productMenu>
  9557. <productMenu id="music"
  9558. type="1" >
  9559. </productMenu>
  9560. <productMenu id="fmradio"
  9561. type="1" >
  9562. </productMenu>
  9563. <productMenu id="deviceSetting"
  9564. type="1"
  9565. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  9566. <productMenuURL version="2.2"
  9567. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  9568. />
  9569. </productMenu>
  9570. <productMenu id="quickGuide"
  9571. type="1"
  9572. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  9573. size="1.06MB" >
  9574. </productMenu>
  9575. <productMenu id="userGuide"
  9576. type="1"
  9577. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  9578. size="3.15MB" >
  9579. </productMenu>
  9580. <productMenu id="volume"
  9581. type="2" >
  9582. </productMenu>
  9583. <productID id="3114"
  9584. />
  9585. <productGroupable type="0"
  9586. />
  9587. </product>
  9588. <product id="HD50S"
  9589. name="Boom Audio 20S"
  9590. series="50"
  9591. latestVersion="2.5.2"
  9592. show = "0" >
  9593. <productMenu id="protocol"
  9594. type="0">
  9595. </productMenu>
  9596. <productMenu id="sip"
  9597. type="1" >
  9598. <productMenuType version="1.0"
  9599. type="0"
  9600. />
  9601. </productMenu>
  9602. <productMenu id="bluetoothIntercom"
  9603. type="1" >
  9604. <productMenuType version="1.0"
  9605. type="0"
  9606. />
  9607. </productMenu>
  9608. <productMenu id="intercomSetting"
  9609. type="1" >
  9610. </productMenu>
  9611. <productMenu id="phone"
  9612. type="2" >
  9613. </productMenu>
  9614. <productMenu id="fmradio"
  9615. type="3" >
  9616. </productMenu>
  9617. <productMenu id="deviceSetting"
  9618. type="1"
  9619. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  9620. <productMenuURL version="2.4"
  9621. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9622. />
  9623. <productMenuURL version="1.5"
  9624. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9625. />
  9626. <productMenuURL version="1.4.1"
  9627. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9628. />
  9629. <productMenuURL version="1.1"
  9630. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9631. />
  9632. <productMenuURL version="1.0"
  9633. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9634. />
  9635. </productMenu>
  9636. <productMenu id="quickGuide"
  9637. type="1"
  9638. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  9639. size="264KB" >
  9640. </productMenu>
  9641. <productMenu id="userGuide"
  9642. type="1"
  9643. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  9644. size="3.09MB" >
  9645. </productMenu>
  9646. <productMenu id="connectGuide"
  9647. type="1"
  9648. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9649. size="1.12MB" >
  9650. </productMenu>
  9651. <productID id="4210"
  9652. />
  9653. <productProductKey key="11"
  9654. />
  9655. <productID id="4230"
  9656. />
  9657. <productProductKey key="11"
  9658. />
  9659. <productGroupable type="1"
  9660. />
  9661. </product>
  9662. <product id="HD50S"
  9663. name="Boom Audio 20S EVO"
  9664. series="50"
  9665. latestVersion="2.5.2"
  9666. show = "0" >
  9667. <productMenu id="protocol"
  9668. type="0">
  9669. </productMenu>
  9670. <productMenu id="sip"
  9671. type="1" >
  9672. <productMenuType version="1.0"
  9673. type="0"
  9674. />
  9675. </productMenu>
  9676. <productMenu id="bluetoothIntercom"
  9677. type="1" >
  9678. <productMenuType version="1.0"
  9679. type="0"
  9680. />
  9681. </productMenu>
  9682. <productMenu id="intercomSetting"
  9683. type="1" >
  9684. </productMenu>
  9685. <productMenu id="phone"
  9686. type="2" >
  9687. </productMenu>
  9688. <productMenu id="fmradio"
  9689. type="3" >
  9690. </productMenu>
  9691. <productMenu id="deviceSetting"
  9692. type="1"
  9693. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  9694. <productMenuURL version="2.4"
  9695. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9696. />
  9697. <productMenuURL version="1.5"
  9698. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9699. />
  9700. <productMenuURL version="1.4.1"
  9701. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9702. />
  9703. <productMenuURL version="1.1"
  9704. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9705. />
  9706. <productMenuURL version="1.0"
  9707. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9708. />
  9709. </productMenu>
  9710. <productMenu id="quickGuide"
  9711. type="1"
  9712. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  9713. size="321KB" >
  9714. </productMenu>
  9715. <productMenu id="userGuide"
  9716. type="1"
  9717. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  9718. size="2.46MB" >
  9719. </productMenu>
  9720. <productID id="4230"
  9721. />
  9722. <productProductKey key="27"
  9723. />
  9724. <productGroupable type="1"
  9725. />
  9726. </product>
  9727. <product id="HD50S"
  9728. name="Boom! Audio 10S"
  9729. series="50"
  9730. latestVersion="1.1.3"
  9731. show = "0" >
  9732. <productMenu id="protocol"
  9733. type="0">
  9734. </productMenu>
  9735. <productMenu id="sip"
  9736. type="1" >
  9737. </productMenu>
  9738. <productMenu id="bluetoothIntercom"
  9739. type="1" >
  9740. </productMenu>
  9741. <productMenu id="phone"
  9742. type="2" >
  9743. </productMenu>
  9744. <productMenu id="fmradio"
  9745. type="3" >
  9746. </productMenu>
  9747. <productMenu id="deviceSetting"
  9748. type="1"
  9749. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  9750. </productMenu>
  9751. <productMenu id="quickGuide"
  9752. type="1"
  9753. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  9754. size="538KB" >
  9755. </productMenu>
  9756. <productMenu id="userGuide"
  9757. type="1"
  9758. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  9759. size="1.55MB" >
  9760. </productMenu>
  9761. <productID id="5532"
  9762. />
  9763. <productGroupable type="0"
  9764. />
  9765. </product>
  9766. <product id="HD50S"
  9767. name="Boom! Audio N01 10R"
  9768. series="50"
  9769. latestVersion="1.1.3"
  9770. show = "0" >
  9771. <productMenu id="protocol"
  9772. type="0">
  9773. </productMenu>
  9774. <productMenu id="sip"
  9775. type="1" >
  9776. </productMenu>
  9777. <productMenu id="bluetoothIntercom"
  9778. type="1" >
  9779. </productMenu>
  9780. <productMenu id="phone"
  9781. type="2" >
  9782. </productMenu>
  9783. <productMenu id="fmradio"
  9784. type="3" >
  9785. </productMenu>
  9786. <productMenu id="deviceSetting"
  9787. type="1"
  9788. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  9789. </productMenu>
  9790. <productMenu id="quickGuide"
  9791. type="1"
  9792. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  9793. size="766KB" >
  9794. </productMenu>
  9795. <productMenu id="userGuide"
  9796. type="1"
  9797. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  9798. size="1.45MB" >
  9799. </productMenu>
  9800. <productID id="5522"
  9801. />
  9802. <productGroupable type="0"
  9803. />
  9804. </product>
  9805. <product id="HD50S"
  9806. name="OUTRUSH-R N03"
  9807. series="50"
  9808. latestVersion="1.2.1"
  9809. show = "-1" >
  9810. <productMenu id="protocol"
  9811. type="0">
  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="2" >
  9821. </productMenu>
  9822. <productMenu id="fmradio"
  9823. type="3" >
  9824. </productMenu>
  9825. <productMenu id="deviceSetting"
  9826. type="1"
  9827. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  9828. </productMenu>
  9829. <productMenu id="userGuide"
  9830. type="1"
  9831. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  9832. size="660KB" >
  9833. </productMenu>
  9834. <productID id="5434"
  9835. />
  9836. <productGroupable type="0"
  9837. />
  9838. </product>
  9839. <product id="HD50S"
  9840. name="OUTRUSH-R N03"
  9841. series="50"
  9842. latestVersion="2.0"
  9843. show = "0" >
  9844. <productMenu id="protocol"
  9845. type="3" >
  9846. </productMenu>
  9847. <productMenu id="sip"
  9848. type="1" >
  9849. </productMenu>
  9850. <productMenu id="bluetoothIntercom"
  9851. type="1" >
  9852. </productMenu>
  9853. <productMenu id="phone"
  9854. type="1" >
  9855. </productMenu>
  9856. <productMenu id="fmradio"
  9857. type="1" >
  9858. </productMenu>
  9859. <productMenu id="deviceSetting"
  9860. type="1"
  9861. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  9862. </productMenu>
  9863. <productMenu id="userGuide"
  9864. type="1"
  9865. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  9866. size="1.14MB" >
  9867. </productMenu>
  9868. <productID id="5441"
  9869. />
  9870. <productGroupable type="0"
  9871. />
  9872. </product>
  9873. <product id="5R"
  9874. name="5R"
  9875. series="5"
  9876. latestVersion="1.0.1"
  9877. show = "1" >
  9878. <productMenu id="protocol"
  9879. type="3" >
  9880. </productMenu>
  9881. <productMenu id="sip"
  9882. type="1" >
  9883. </productMenu>
  9884. <productMenu id="bluetoothIntercom"
  9885. type="1" >
  9886. </productMenu>
  9887. <productMenu id="phone"
  9888. type="1" >
  9889. </productMenu>
  9890. <productMenu id="fmradio"
  9891. type="1" >
  9892. </productMenu>
  9893. <productMenu id="deviceSetting"
  9894. type="1"
  9895. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9896. </productMenu>
  9897. <productMenu id="quickGuide"
  9898. type="0"
  9899. url=""
  9900. size="934KB" >
  9901. </productMenu>
  9902. <productMenu id="userGuide"
  9903. type="1"
  9904. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  9905. size="1.14MB" >
  9906. </productMenu>
  9907. <productMenu id="connectGuide"
  9908. type="1"
  9909. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  9910. size="1.12MB" >
  9911. </productMenu>
  9912. <productID id="5591"
  9913. />
  9914. <productGroupable type="0"
  9915. />
  9916. </product>
  9917. <product id="5R"
  9918. name="5R LITE"
  9919. series="5"
  9920. latestVersion="1.0.1"
  9921. show = "1" >
  9922. <productMenu id="protocol"
  9923. type="3" >
  9924. </productMenu>
  9925. <productMenu id="sip"
  9926. type="1" >
  9927. </productMenu>
  9928. <productMenu id="bluetoothIntercom"
  9929. type="1" >
  9930. </productMenu>
  9931. <productMenu id="phone"
  9932. type="1" >
  9933. </productMenu>
  9934. <productMenu id="fmradio"
  9935. type="1" >
  9936. </productMenu>
  9937. <productMenu id="deviceSetting"
  9938. type="1"
  9939. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  9940. </productMenu>
  9941. <productMenu id="quickGuide"
  9942. type="0"
  9943. url=""
  9944. size="934KB" >
  9945. </productMenu>
  9946. <productMenu id="userGuide"
  9947. type="1"
  9948. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  9949. size="1.14MB" >
  9950. </productMenu>
  9951. <productMenu id="connectGuide"
  9952. type="1"
  9953. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  9954. size="1.12MB" >
  9955. </productMenu>
  9956. <productID id="5592"
  9957. />
  9958. <productGroupable type="0"
  9959. />
  9960. </product>
  9961. <product id="50RLE"
  9962. name="50R LE"
  9963. series="50"
  9964. latestVersion="1.1"
  9965. show = "0" >
  9966. <productMenu id="protocol"
  9967. type="2" >
  9968. </productMenu>
  9969. <productMenu id="alexa"
  9970. type="0" >
  9971. </productMenu>
  9972. <productMenu id="sip"
  9973. type="1" >
  9974. </productMenu>
  9975. <productMenu id="meshIntercom"
  9976. type="30" >
  9977. </productMenu>
  9978. <productMenu id="meshIntercom+"
  9979. type="3"
  9980. url="2" >
  9981. <productMenuType version="1.0.9"
  9982. type="2"
  9983. />
  9984. </productMenu>
  9985. <productMenu id="waveIntercom"
  9986. type="1" >
  9987. <productMenuType version="1.0.9"
  9988. type="0"
  9989. />
  9990. </productMenu>
  9991. <productMenu id="bluetoothIntercom"
  9992. type="1" >
  9993. </productMenu>
  9994. <productMenu id="phone"
  9995. type="1" >
  9996. </productMenu>
  9997. <productMenu id="music"
  9998. type="1" >
  9999. </productMenu>
  10000. <productMenu id="fmradio"
  10001. type="0" >
  10002. </productMenu>
  10003. <productMenu id="deviceSetting"
  10004. type="1"
  10005. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  10006. <productMenuURL version="1.0.9"
  10007. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  10008. />
  10009. </productMenu>
  10010. <productMenu id="quickGuide"
  10011. type="0"
  10012. url=""
  10013. size="344KB" >
  10014. </productMenu>
  10015. <productMenu id="userGuide"
  10016. type="0"
  10017. url=""
  10018. size="3.41MB" >
  10019. </productMenu>
  10020. <productMenu id="volume"
  10021. type="11" >
  10022. </productMenu>
  10023. <productMenu id="battery"
  10024. type="1" >
  10025. </productMenu>
  10026. <productID id="3223"
  10027. />
  10028. <productGroupable type="0"
  10029. />
  10030. </product>
  10031. <product id="5RLOUIS"
  10032. name="5R LOUIS EDITION"
  10033. series="5"
  10034. latestVersion="1.0"
  10035. show = "-1" >
  10036. <productMenu id="protocol"
  10037. type="3" >
  10038. </productMenu>
  10039. <productMenu id="sip"
  10040. type="1" >
  10041. </productMenu>
  10042. <productMenu id="bluetoothIntercom"
  10043. type="1" >
  10044. </productMenu>
  10045. <productMenu id="phone"
  10046. type="1" >
  10047. </productMenu>
  10048. <productMenu id="fmradio"
  10049. type="1" >
  10050. </productMenu>
  10051. <productMenu id="deviceSetting"
  10052. type="1"
  10053. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10054. </productMenu>
  10055. <productMenu id="quickGuide"
  10056. type="0"
  10057. url=""
  10058. size="934KB" >
  10059. </productMenu>
  10060. <productMenu id="userGuide"
  10061. type="0"
  10062. url=""
  10063. size="1.14MB" >
  10064. </productMenu>
  10065. <productID id="5597"
  10066. />
  10067. <productGroupable type="0"
  10068. />
  10069. </product>
  10070. <product id="5S"
  10071. name="Ridekont 5S"
  10072. series="5"
  10073. latestVersion="2.3"
  10074. show = "-1" >
  10075. <productMenu id="protocol"
  10076. type="3" >
  10077. </productMenu>
  10078. <productMenu id="sip"
  10079. type="1" >
  10080. </productMenu>
  10081. <productMenu id="bluetoothIntercom"
  10082. type="1" >
  10083. </productMenu>
  10084. <productMenu id="phone"
  10085. type="1" >
  10086. </productMenu>
  10087. <productMenu id="fmradio"
  10088. type="0" >
  10089. </productMenu>
  10090. <productMenu id="deviceSetting"
  10091. type="1"
  10092. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10093. </productMenu>
  10094. <productMenu id="quickGuide"
  10095. type="0"
  10096. url=""
  10097. size="934KB" >
  10098. </productMenu>
  10099. <productMenu id="userGuide"
  10100. type="1"
  10101. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  10102. size="1.14MB" >
  10103. </productMenu>
  10104. <productID id="5589"
  10105. />
  10106. <productGroupable type="0"
  10107. />
  10108. </product>
  10109. <product id="5R"
  10110. name="Ridekont 5R"
  10111. series="5"
  10112. latestVersion="1.0"
  10113. show = "0" >
  10114. <productMenu id="protocol"
  10115. type="3" >
  10116. </productMenu>
  10117. <productMenu id="sip"
  10118. type="1" >
  10119. </productMenu>
  10120. <productMenu id="bluetoothIntercom"
  10121. type="1" >
  10122. </productMenu>
  10123. <productMenu id="phone"
  10124. type="1" >
  10125. </productMenu>
  10126. <productMenu id="fmradio"
  10127. type="1" >
  10128. </productMenu>
  10129. <productMenu id="deviceSetting"
  10130. type="1"
  10131. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10132. </productMenu>
  10133. <productMenu id="quickGuide"
  10134. type="1"
  10135. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  10136. size="934KB" >
  10137. </productMenu>
  10138. <productMenu id="userGuide"
  10139. type="1"
  10140. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  10141. size="1.14MB" >
  10142. </productMenu>
  10143. <productID id="5593"
  10144. />
  10145. <productGroupable type="0"
  10146. />
  10147. </product>
  10148. <product id="5R"
  10149. name="Ridekont 5R LITE"
  10150. series="5"
  10151. latestVersion="1.0"
  10152. show = "0" >
  10153. <productMenu id="protocol"
  10154. type="3" >
  10155. </productMenu>
  10156. <productMenu id="sip"
  10157. type="1" >
  10158. </productMenu>
  10159. <productMenu id="bluetoothIntercom"
  10160. type="1" >
  10161. </productMenu>
  10162. <productMenu id="phone"
  10163. type="1" >
  10164. </productMenu>
  10165. <productMenu id="fmradio"
  10166. type="1" >
  10167. </productMenu>
  10168. <productMenu id="deviceSetting"
  10169. type="1"
  10170. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  10171. </productMenu>
  10172. <productMenu id="quickGuide"
  10173. type="0"
  10174. url=""
  10175. size="934KB" >
  10176. </productMenu>
  10177. <productMenu id="userGuide"
  10178. type="1"
  10179. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  10180. size="1.14MB" >
  10181. </productMenu>
  10182. <productID id="5594"
  10183. />
  10184. <productGroupable type="0"
  10185. />
  10186. </product>
  10187. <product id="SA30"
  10188. name="SA30"
  10189. series="SA"
  10190. latestVersion="1.0"
  10191. latestVersionVoicePrompt="0.14"
  10192. show = "-1" >
  10193. <productMenu id="protocol"
  10194. type="2" >
  10195. </productMenu>
  10196. <productMenu id="ota"
  10197. type="0" >
  10198. <otaPackages>
  10199. <package
  10200. url="https://api.sena.com/support/OTA/C30/SENA_SA30-v1.1.4-build0.img"
  10201. size="3144148"
  10202. />
  10203. </otaPackages>
  10204. </productMenu>
  10205. <productMenu id="meshIntercom"
  10206. type="30" >
  10207. </productMenu>
  10208. <productMenu id="meshIntercom+"
  10209. type="3"
  10210. url="2" >
  10211. </productMenu>
  10212. <productMenu id="phone"
  10213. type="1" >
  10214. </productMenu>
  10215. <productMenu id="music"
  10216. type="1" >
  10217. </productMenu>
  10218. <productMenu id="musicSharing"
  10219. type="0" >
  10220. </productMenu>
  10221. <productMenu id="deviceSetting"
  10222. type="1"
  10223. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  10224. </productMenu>
  10225. <productMenu id="quickGuide"
  10226. type="0"
  10227. url=""
  10228. size="1.12MB" >
  10229. </productMenu>
  10230. <productMenu id="userGuide"
  10231. type="1"
  10232. url=""
  10233. size="2.0MB" >
  10234. </productMenu>
  10235. <productMenu id="videoGuide"
  10236. type="0"
  10237. url=""
  10238. size="3.41MB" >
  10239. </productMenu>
  10240. <productMenu id="volume"
  10241. type="12" >
  10242. </productMenu>
  10243. <productMenu id="battery"
  10244. type="1" >
  10245. </productMenu>
  10246. <productID id="6852"
  10247. />
  10248. <productGroupable type="0"
  10249. />
  10250. </product>
  10251. <product id="I30"
  10252. name="I30"
  10253. series="I"
  10254. latestVersion="1.0"
  10255. latestVersionVoicePrompt="0.14"
  10256. show = "-1" >
  10257. <productMenu id="protocol"
  10258. type="2" >
  10259. </productMenu>
  10260. <productMenu id="ota"
  10261. type="0" >
  10262. <otaPackages>
  10263. <package
  10264. url="https://api.sena.com/support/OTA/C30/SENA_I30-v1.1.4-build0.img"
  10265. size="3144148"
  10266. />
  10267. </otaPackages>
  10268. </productMenu>
  10269. <productMenu id="meshIntercom"
  10270. type="30" >
  10271. </productMenu>
  10272. <productMenu id="meshIntercom+"
  10273. type="3"
  10274. url="2" >
  10275. </productMenu>
  10276. <productMenu id="phone"
  10277. type="1" >
  10278. </productMenu>
  10279. <productMenu id="music"
  10280. type="1" >
  10281. </productMenu>
  10282. <productMenu id="musicSharing"
  10283. type="0" >
  10284. </productMenu>
  10285. <productMenu id="deviceSetting"
  10286. type="1"
  10287. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  10288. </productMenu>
  10289. <productMenu id="quickGuide"
  10290. type="0"
  10291. url=""
  10292. size="1.12MB" >
  10293. </productMenu>
  10294. <productMenu id="userGuide"
  10295. type="1"
  10296. url=""
  10297. size="2.10MB" >
  10298. </productMenu>
  10299. <productMenu id="videoGuide"
  10300. type="0"
  10301. url=""
  10302. size="3.11MB" >
  10303. </productMenu>
  10304. <productMenu id="volume"
  10305. type="12" >
  10306. </productMenu>
  10307. <productMenu id="battery"
  10308. type="1" >
  10309. </productMenu>
  10310. <productID id="6853"
  10311. />
  10312. <productGroupable type="0"
  10313. />
  10314. </product>
  10315. <product id="C30"
  10316. name="SENA C30"
  10317. series="C"
  10318. latestVersion="1.1.4"
  10319. latestVersionVoicePrompt="0.11"
  10320. show = "1" >
  10321. <productMenu id="protocol"
  10322. type="2" >
  10323. </productMenu>
  10324. <productMenu id="alexa"
  10325. type="0" >
  10326. </productMenu>
  10327. <productMenu id="ota"
  10328. type="2" >
  10329. <otaPackages>
  10330. <package
  10331. url="https://api.sena.com/support/OTA/C30/SENA_C30-v1.1.4-build0.img"
  10332. size="3144148"
  10333. />
  10334. </otaPackages>
  10335. </productMenu>
  10336. <productMenu id="wa"
  10337. type="0" >
  10338. </productMenu>
  10339. <productMenu id="meshIntercom"
  10340. type="30" >
  10341. </productMenu>
  10342. <productMenu id="meshIntercom+"
  10343. type="3"
  10344. url="2" >
  10345. <productMenuType version="1.0.9"
  10346. type="2"
  10347. />
  10348. </productMenu>
  10349. <productMenu id="phone"
  10350. type="1" >
  10351. </productMenu>
  10352. <productMenu id="music"
  10353. type="1" >
  10354. </productMenu>
  10355. <productMenu id="musicSharing"
  10356. type="0" >
  10357. </productMenu>
  10358. <productMenu id="deviceSetting"
  10359. type="1"
  10360. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_06_zh_rCN.xml" >
  10361. <productMenuURL version="1.0.9"
  10362. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  10363. />
  10364. </productMenu>
  10365. <productMenu id="quickGuide"
  10366. type="1"
  10367. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  10368. size="1.12MB" >
  10369. </productMenu>
  10370. <productMenu id="userGuide"
  10371. type="0"
  10372. url=""
  10373. size="2.0MB" >
  10374. </productMenu>
  10375. <productMenu id="videoGuide"
  10376. type="0"
  10377. url=""
  10378. size="3.41MB" >
  10379. </productMenu>
  10380. <productMenu id="volume"
  10381. type="12" >
  10382. </productMenu>
  10383. <productMenu id="battery"
  10384. type="1" >
  10385. </productMenu>
  10386. <productID id="683A"
  10387. />
  10388. <productGroupable type="0"
  10389. />
  10390. </product>
  10391. <product id="C20"
  10392. name="C20"
  10393. series="5"
  10394. latestVersion="1.0"
  10395. show = "0" >
  10396. <productMenu id="protocol"
  10397. type="3" >
  10398. </productMenu>
  10399. <productMenu id="sip"
  10400. type="1" >
  10401. </productMenu>
  10402. <productMenu id="bluetoothIntercom"
  10403. type="1" >
  10404. </productMenu>
  10405. <productMenu id="phone"
  10406. type="1" >
  10407. </productMenu>
  10408. <productMenu id="deviceSetting"
  10409. type="1"
  10410. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  10411. </productMenu>
  10412. <productMenu id="quickGuide"
  10413. type="1"
  10414. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  10415. size="934KB" >
  10416. </productMenu>
  10417. <productMenu id="userGuide"
  10418. type="1"
  10419. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  10420. size="1.14MB" >
  10421. </productMenu>
  10422. <productID id="3701"
  10423. />
  10424. <productGroupable type="0"
  10425. />
  10426. </product>
  10427. <product id="C10"
  10428. name="C10"
  10429. series="5"
  10430. latestVersion="1.4.3"
  10431. show = "0" >
  10432. <productMenu id="protocol"
  10433. type="3" >
  10434. </productMenu>
  10435. <productMenu id="sip"
  10436. type="1" >
  10437. </productMenu>
  10438. <productMenu id="bluetoothIntercom"
  10439. type="1" >
  10440. </productMenu>
  10441. <productMenu id="phone"
  10442. type="1" >
  10443. </productMenu>
  10444. <productMenu id="fmradio"
  10445. type="0" >
  10446. </productMenu>
  10447. <productMenu id="deviceSetting"
  10448. type="1"
  10449. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  10450. </productMenu>
  10451. <productMenu id="userGuide"
  10452. type="1"
  10453. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  10454. size="1.14MB" >
  10455. </productMenu>
  10456. <productID id="5595"
  10457. />
  10458. <productGroupable type="0"
  10459. />
  10460. </product>
  10461. <product id="J30"
  10462. name="J30"
  10463. series="J"
  10464. latestVersion="1.2.1"
  10465. latestVersionVoicePrompt="0.13"
  10466. show = "0" >
  10467. <productMenu id="protocol"
  10468. type="2" >
  10469. </productMenu>
  10470. <productMenu id="alexa"
  10471. type="0" >
  10472. </productMenu>
  10473. <productMenu id="ota"
  10474. type="2" >
  10475. <otaPackages>
  10476. <package
  10477. url="https://api.sena.com/support/OTA/J30/SENA_J30-v1.2.1-build0.img"
  10478. size="3144148"
  10479. />
  10480. </otaPackages>
  10481. </productMenu>
  10482. <productMenu id="wa"
  10483. type="0" >
  10484. </productMenu>
  10485. <productMenu id="meshIntercom"
  10486. type="30" >
  10487. </productMenu>
  10488. <productMenu id="meshIntercom+"
  10489. type="3"
  10490. url="2" >
  10491. <productMenuType version="1.0.9"
  10492. type="2"
  10493. />
  10494. </productMenu>
  10495. <productMenu id="waveIntercom"
  10496. type="1" >
  10497. <productMenuType version="1.1.9"
  10498. type="0"
  10499. />
  10500. </productMenu>
  10501. <productMenu id="phone"
  10502. type="1" >
  10503. </productMenu>
  10504. <productMenu id="music"
  10505. type="1" >
  10506. </productMenu>
  10507. <productMenu id="musicSharing"
  10508. type="0" >
  10509. </productMenu>
  10510. <productMenu id="deviceSetting"
  10511. type="1"
  10512. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  10513. <productMenuURL version="1.0.9"
  10514. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  10515. />
  10516. </productMenu>
  10517. <productMenu id="quickGuide"
  10518. type="0"
  10519. url=""
  10520. size="1.12MB" >
  10521. </productMenu>
  10522. <productMenu id="userGuide"
  10523. type="1"
  10524. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  10525. size="2.0MB" >
  10526. </productMenu>
  10527. <productMenu id="videoGuide"
  10528. type="0"
  10529. url=""
  10530. size="3.41MB" >
  10531. </productMenu>
  10532. <productMenu id="volume"
  10533. type="12" >
  10534. </productMenu>
  10535. <productMenu id="battery"
  10536. type="1" >
  10537. </productMenu>
  10538. <productID id="6848"
  10539. />
  10540. <productGroupable type="0"
  10541. />
  10542. </product>
  10543. <product id="J10"
  10544. name="J10"
  10545. series="5"
  10546. latestVersion="1.1.3"
  10547. show = "0" >
  10548. <productMenu id="protocol"
  10549. type="3" >
  10550. </productMenu>
  10551. <productMenu id="sip"
  10552. type="1" >
  10553. </productMenu>
  10554. <productMenu id="bluetoothIntercom"
  10555. type="1" >
  10556. </productMenu>
  10557. <productMenu id="phone"
  10558. type="1" >
  10559. </productMenu>
  10560. <productMenu id="fmradio"
  10561. type="0" >
  10562. </productMenu>
  10563. <productMenu id="deviceSetting"
  10564. type="1"
  10565. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  10566. </productMenu>
  10567. <productMenu id="userGuide"
  10568. type="1"
  10569. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  10570. size="1.14MB" >
  10571. </productMenu>
  10572. <productID id="5598"
  10573. />
  10574. <productGroupable type="0"
  10575. />
  10576. </product>
  10577. <product id="B20"
  10578. name="B20"
  10579. series="B"
  10580. latestVersion="1.1.1"
  10581. latestVersionVoicePrompt="0.13"
  10582. show = "0" >
  10583. <productMenu id="protocol"
  10584. type="2" >
  10585. </productMenu>
  10586. <productMenu id="alexa"
  10587. type="0" >
  10588. </productMenu>
  10589. <productMenu id="ota"
  10590. type="2" >
  10591. <otaPackages>
  10592. <package
  10593. url="https://api.sena.com/support/OTA/B20/SENA_B20-v1.1.1-build0.img"
  10594. size="3144148"
  10595. />
  10596. </otaPackages>
  10597. </productMenu>
  10598. <productMenu id="wa"
  10599. type="0" >
  10600. </productMenu>
  10601. <productMenu id="meshIntercom"
  10602. type="30" >
  10603. </productMenu>
  10604. <productMenu id="phone"
  10605. type="1" >
  10606. </productMenu>
  10607. <productMenu id="music"
  10608. type="1" >
  10609. </productMenu>
  10610. <productMenu id="musicSharing"
  10611. type="0" >
  10612. </productMenu>
  10613. <productMenu id="deviceSetting"
  10614. type="1"
  10615. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  10616. <productMenuURL version="1.0.9"
  10617. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  10618. />
  10619. </productMenu>
  10620. <productMenu id="quickGuide"
  10621. type="0"
  10622. url=""
  10623. size="1.12MB" >
  10624. </productMenu>
  10625. <productMenu id="userGuide"
  10626. type="1"
  10627. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  10628. size="2.0MB" >
  10629. </productMenu>
  10630. <productMenu id="videoGuide"
  10631. type="0"
  10632. url=""
  10633. size="3.41MB" >
  10634. </productMenu>
  10635. <productMenu id="volume"
  10636. type="12" >
  10637. </productMenu>
  10638. <productMenu id="battery"
  10639. type="1" >
  10640. </productMenu>
  10641. <productID id="6847"
  10642. />
  10643. <productGroupable type="0"
  10644. />
  10645. </product>
  10646. <product id="B10"
  10647. name="B10"
  10648. series="5"
  10649. latestVersion="1.2.3"
  10650. show = "0" >
  10651. <productMenu id="protocol"
  10652. type="3" >
  10653. </productMenu>
  10654. <productMenu id="sip"
  10655. type="1" >
  10656. </productMenu>
  10657. <productMenu id="bluetoothIntercom"
  10658. type="1" >
  10659. </productMenu>
  10660. <productMenu id="phone"
  10661. type="1" >
  10662. </productMenu>
  10663. <productMenu id="fmradio"
  10664. type="0" >
  10665. </productMenu>
  10666. <productMenu id="deviceSetting"
  10667. type="1"
  10668. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  10669. </productMenu>
  10670. <productMenu id="userGuide"
  10671. type="1"
  10672. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  10673. size="1.14MB" >
  10674. </productMenu>
  10675. <productID id="5596"
  10676. />
  10677. <productGroupable type="0"
  10678. />
  10679. </product>
  10680. <product id="E30"
  10681. name="E30"
  10682. series="E"
  10683. latestVersion="1.1.1"
  10684. latestVersionVoicePrompt="0.13"
  10685. show = "0" >
  10686. <productMenu id="protocol"
  10687. type="2" >
  10688. </productMenu>
  10689. <productMenu id="alexa"
  10690. type="0" >
  10691. </productMenu>
  10692. <productMenu id="ota"
  10693. type="2" >
  10694. <otaPackages>
  10695. <package
  10696. url="https://api.sena.com/support/OTA/E30/SENA_E30-v1.1.1-build0.img"
  10697. size="3144148"
  10698. />
  10699. </otaPackages>
  10700. </productMenu>
  10701. <productMenu id="wa"
  10702. type="0" >
  10703. </productMenu>
  10704. <productMenu id="meshIntercom"
  10705. type="30" >
  10706. </productMenu>
  10707. <productMenu id="meshIntercom+"
  10708. type="3"
  10709. url="2" >
  10710. </productMenu>
  10711. <productMenu id="waveIntercom"
  10712. type="1" >
  10713. <productMenuType version="1.0.9"
  10714. type="0"
  10715. />
  10716. </productMenu>
  10717. <productMenu id="phone"
  10718. type="1" >
  10719. </productMenu>
  10720. <productMenu id="music"
  10721. type="1" >
  10722. </productMenu>
  10723. <productMenu id="musicSharing"
  10724. type="0" >
  10725. </productMenu>
  10726. <productMenu id="deviceSetting"
  10727. type="1"
  10728. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  10729. </productMenu>
  10730. <productMenu id="quickGuide"
  10731. type="0"
  10732. url=""
  10733. size="1.12MB" >
  10734. </productMenu>
  10735. <productMenu id="userGuide"
  10736. type="1"
  10737. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  10738. size="2.0MB" >
  10739. </productMenu>
  10740. <productMenu id="videoGuide"
  10741. type="0"
  10742. url=""
  10743. size="3.41MB" >
  10744. </productMenu>
  10745. <productMenu id="volume"
  10746. type="12" >
  10747. </productMenu>
  10748. <productMenu id="battery"
  10749. type="1" >
  10750. </productMenu>
  10751. <productID id="6846"
  10752. />
  10753. <productGroupable type="0"
  10754. />
  10755. </product>
  10756. <product id="ACSRAM"
  10757. name="ACS-RAM"
  10758. series="ACS"
  10759. latestVersion="1.0.5"
  10760. show = "1" >
  10761. <productMenu id="protocol"
  10762. type="3" >
  10763. </productMenu>
  10764. <productMenu id="sip"
  10765. type="1" >
  10766. </productMenu>
  10767. <productMenu id="bluetoothIntercom"
  10768. type="1" >
  10769. </productMenu>
  10770. <productMenu id="deviceSetting"
  10771. type="1"
  10772. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  10773. </productMenu>
  10774. <productMenu id="quickGuide"
  10775. type="1"
  10776. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  10777. size="344KB" >
  10778. </productMenu>
  10779. <productMenu id="userGuide"
  10780. type="1"
  10781. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  10782. size="1.14MB" >
  10783. </productMenu>
  10784. <productMenu id="connectGuide"
  10785. type="1"
  10786. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  10787. size="1.12MB" >
  10788. </productMenu>
  10789. <productID id="3400"
  10790. />
  10791. <productGroupable type="0"
  10792. />
  10793. </product>
  10794. <product id="ACS10"
  10795. name="ACS10"
  10796. series="ACS"
  10797. latestVersion="1.0.2"
  10798. show = "1" >
  10799. <productMenu id="protocol"
  10800. type="0">
  10801. </productMenu>
  10802. <productMenu id="sip"
  10803. type="1" >
  10804. </productMenu>
  10805. <productMenu id="bluetoothIntercom"
  10806. type="1" >
  10807. </productMenu>
  10808. <productMenu id="phone"
  10809. type="2" >
  10810. </productMenu>
  10811. <productMenu id="deviceSetting"
  10812. type="1"
  10813. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  10814. </productMenu>
  10815. <productMenu id="quickGuide"
  10816. type="1"
  10817. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  10818. size="970KB" >
  10819. </productMenu>
  10820. <productMenu id="userGuide"
  10821. type="1"
  10822. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  10823. size="1.26MB" >
  10824. </productMenu>
  10825. <productMenu id="connectGuide"
  10826. type="1"
  10827. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  10828. size="1.12MB" >
  10829. </productMenu>
  10830. <productID id="3300"
  10831. />
  10832. <productGroupable type="0"
  10833. />
  10834. </product>
  10835. <product id="DWO7ProMesh"
  10836. name="DWO 7 Pro Mesh"
  10837. series="50"
  10838. latestVersion="1.1"
  10839. latestVersionVoicePrompt="0.9"
  10840. show = "0" >
  10841. <productMenu id="protocol"
  10842. type="2" >
  10843. </productMenu>
  10844. <productMenu id="alexa"
  10845. type="0" >
  10846. </productMenu>
  10847. <productMenu id="ota"
  10848. type="2" >
  10849. <otaPackages>
  10850. <package
  10851. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  10852. size="2945812"
  10853. />
  10854. </otaPackages>
  10855. </productMenu>
  10856. <productMenu id="wa"
  10857. type="0" >
  10858. </productMenu>
  10859. <productMenu id="meshIntercom"
  10860. type="20" >
  10861. </productMenu>
  10862. <productMenu id="meshIntercom+"
  10863. type="3"
  10864. url="2" >
  10865. <productMenuType version="1.0.9"
  10866. type="2"
  10867. />
  10868. <productMenuURL version="2.1.1"
  10869. url="0"
  10870. />
  10871. </productMenu>
  10872. <productMenu id="waveIntercom"
  10873. type="1" >
  10874. <productMenuType version="1.0.9"
  10875. type="0"
  10876. />
  10877. </productMenu>
  10878. <productMenu id="phone"
  10879. type="1" >
  10880. </productMenu>
  10881. <productMenu id="music"
  10882. type="1" >
  10883. </productMenu>
  10884. <productMenu id="fmradio"
  10885. type="1" >
  10886. </productMenu>
  10887. <productMenu id="musicSharing"
  10888. type="0" >
  10889. </productMenu>
  10890. <productMenu id="deviceSetting"
  10891. type="1"
  10892. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  10893. <productMenuURL version="1.0.9"
  10894. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  10895. />
  10896. </productMenu>
  10897. <productMenu id="quickGuide"
  10898. type="1"
  10899. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  10900. size="1.12MB" >
  10901. </productMenu>
  10902. <productMenu id="userGuide"
  10903. type="1"
  10904. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  10905. size="2.0MB" >
  10906. </productMenu>
  10907. <productMenu id="volume"
  10908. type="12" >
  10909. </productMenu>
  10910. <productMenu id="battery"
  10911. type="1" >
  10912. </productMenu>
  10913. <productID id="6806"
  10914. />
  10915. <productGroupable type="0"
  10916. />
  10917. </product>
  10918. <product id="ERA1X"
  10919. name="ERA 1 X"
  10920. series="UCOM"
  10921. latestVersion="0.1.14"
  10922. latestVersionMesh="0.19"
  10923. latestVersionVoicePrompt="1.2"
  10924. show = "-1" >
  10925. <productMenu id="protocol"
  10926. type="2" >
  10927. </productMenu>
  10928. <productMenu id="ota"
  10929. type="2" >
  10930. <otaLanguages>
  10931. <otaLanguage
  10932. id="0"
  10933. name="English"
  10934. package="0"
  10935. />
  10936. <otaLanguage
  10937. id="0"
  10938. name="French"
  10939. package="1"
  10940. />
  10941. <otaLanguage
  10942. id="0"
  10943. name="Spanish"
  10944. package="2"
  10945. />
  10946. <otaLanguage
  10947. id="0"
  10948. name="Italian"
  10949. package="3"
  10950. />
  10951. <otaLanguage
  10952. id="0"
  10953. name="German"
  10954. package="4"
  10955. />
  10956. <otaLanguage
  10957. id="0"
  10958. name="Dutch"
  10959. package="5"
  10960. />
  10961. <otaLanguage
  10962. id="0"
  10963. name="Russian"
  10964. package="6"
  10965. />
  10966. <otaLanguage
  10967. id="0"
  10968. name="Chinese"
  10969. package="7"
  10970. />
  10971. <otaLanguage
  10972. id="0"
  10973. name="Korean"
  10974. package="8"
  10975. />
  10976. <otaLanguage
  10977. id="0"
  10978. name="Japanese"
  10979. package="9"
  10980. />
  10981. <otaLanguage
  10982. id="0"
  10983. name="Finnish"
  10984. package="10"
  10985. />
  10986. </otaLanguages>
  10987. <otaPackages>
  10988. <package
  10989. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0.img"
  10990. size="5183988"
  10991. />
  10992. <package
  10993. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-fr-FR.img"
  10994. size="5183988"
  10995. />
  10996. <package
  10997. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-es-ES.img"
  10998. size="5183988"
  10999. />
  11000. <package
  11001. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-it-IT.img"
  11002. size="5183988"
  11003. />
  11004. <package
  11005. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-de-DE.img"
  11006. size="5183988"
  11007. />
  11008. <package
  11009. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-nl-NL.img"
  11010. size="5183988"
  11011. />
  11012. <package
  11013. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-ru-RU.img"
  11014. size="5183988"
  11015. />
  11016. <package
  11017. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-cmn-CN.img"
  11018. size="5183988"
  11019. />
  11020. <package
  11021. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-ko-KR.img"
  11022. size="5183988"
  11023. />
  11024. <package
  11025. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-ja-JP.img"
  11026. size="5183988"
  11027. />
  11028. <package
  11029. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-fi-FI.img"
  11030. size="5183988"
  11031. />
  11032. </otaPackages>
  11033. </productMenu>
  11034. <productMenu id="wa"
  11035. type="0" >
  11036. </productMenu>
  11037. <productMenu id="sip"
  11038. type="1" >
  11039. </productMenu>
  11040. <productMenu id="led"
  11041. type="0" >
  11042. </productMenu>
  11043. <productMenu id="illusion"
  11044. type="1" >
  11045. </productMenu>
  11046. <productMenu id="meshIntercom"
  11047. type="30" >
  11048. </productMenu>
  11049. <productMenu id="meshIntercom+"
  11050. type="3"
  11051. url="2" >
  11052. </productMenu>
  11053. <productMenu id="waveIntercom"
  11054. type="0" >
  11055. </productMenu>
  11056. <productMenu id="bluetoothIntercom"
  11057. type="1" >
  11058. </productMenu>
  11059. <productMenu id="bluetoothIntercomGrouping"
  11060. type="0" >
  11061. </productMenu>
  11062. <productMenu id="fmradio"
  11063. type="1"
  11064. url="1" >
  11065. </productMenu>
  11066. <productMenu id="phone"
  11067. type="1" >
  11068. </productMenu>
  11069. <productMenu id="music"
  11070. type="1" >
  11071. </productMenu>
  11072. <productMenu id="musicSharing"
  11073. type="0" >
  11074. </productMenu>
  11075. <productMenu id="deviceSetting"
  11076. type="1"
  11077. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  11078. </productMenu>
  11079. <productMenu id="quickGuide"
  11080. type="0"
  11081. url=""
  11082. size="1.12MB" >
  11083. </productMenu>
  11084. <productMenu id="userGuide"
  11085. type="1"
  11086. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  11087. size="2.0MB" >
  11088. </productMenu>
  11089. <productMenu id="videoGuide"
  11090. type="0"
  11091. url=""
  11092. size="3.41MB" >
  11093. </productMenu>
  11094. <productMenu id="volume"
  11095. type="16" >
  11096. </productMenu>
  11097. <productMenu id="soundMode"
  11098. type="1" >
  11099. </productMenu>
  11100. <productMenu id="battery"
  11101. type="1" >
  11102. </productMenu>
  11103. <productID id="6A83"
  11104. />
  11105. <productGroupable type="0"
  11106. />
  11107. </product>
  11108. <product id="MeshStation"
  11109. name="Mesh Station"
  11110. series="50"
  11111. latestVersion="0.9"
  11112. show = "-1" >
  11113. <productMenu id="protocol"
  11114. type="2" >
  11115. </productMenu>
  11116. <productMenu id="meshIntercom"
  11117. type="20"
  11118. url="99" >
  11119. </productMenu>
  11120. <productID id="3161"
  11121. />
  11122. <productGroupable type="0"
  11123. />
  11124. </product>
  11125. </products>
  11126. </sna>