snm.xml 378 KB

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