snm.xml 307 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20250200" 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=""
  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="60S"
  122. name="60S"
  123. series="60"
  124. latestVersion="1.2.1"
  125. latestVersionMesh="1.2"
  126. latestVersionVoicePrompt="1.1"
  127. show = "1" >
  128. <productMenu id="protocol"
  129. type="2" >
  130. </productMenu>
  131. <productMenu id="ota"
  132. type="2" >
  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/60S_REV2-v1.2.1-build1.img"
  198. size="5183988"
  199. />
  200. <package
  201. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-fr-FR.img"
  202. size="5183988"
  203. />
  204. <package
  205. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-es-ES.img"
  206. size="5183988"
  207. />
  208. <package
  209. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-it-IT.img"
  210. size="5183988"
  211. />
  212. <package
  213. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-de-DE.img"
  214. size="5183988"
  215. />
  216. <package
  217. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-nl-NL.img"
  218. size="5183988"
  219. />
  220. <package
  221. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-ru-RU.img"
  222. size="5183988"
  223. />
  224. <package
  225. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-cmn-CN.img"
  226. size="5183988"
  227. />
  228. <package
  229. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-ko-KR.img"
  230. size="5183988"
  231. />
  232. <package
  233. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-ja-JP.img"
  234. size="5183988"
  235. />
  236. <package
  237. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.1-build1-fi-FI.img"
  238. size="5183988"
  239. />
  240. <package
  241. url="https://api.sena.com/support/OTA/60S/60S_REV2-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_02.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="0" >
  311. </productMenu>
  312. <productMenu id="battery"
  313. type="1" >
  314. </productMenu>
  315. <productID id="6A0D"
  316. />
  317. <productGroupable type="0"
  318. />
  319. </product>
  320. <product id="60S"
  321. name="60S"
  322. series="60"
  323. latestVersion="1.2"
  324. latestVersionMesh="1.2"
  325. latestVersionVoicePrompt="1.1"
  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-v1.2-build2.img"
  397. size="5183988"
  398. />
  399. <package
  400. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fr-FR.img"
  401. size="5183988"
  402. />
  403. <package
  404. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-es-ES.img"
  405. size="5183988"
  406. />
  407. <package
  408. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-it-IT.img"
  409. size="5183988"
  410. />
  411. <package
  412. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-de-DE.img"
  413. size="5183988"
  414. />
  415. <package
  416. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-nl-NL.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ru-RU.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-cmn-CN.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ko-KR.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ja-JP.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fi-FI.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-pl-PL.img"
  441. size="5183988"
  442. />
  443. </otaPackages>
  444. </productMenu>
  445. <productMenu id="wa"
  446. type="0" >
  447. </productMenu>
  448. <productMenu id="sip"
  449. type="1" >
  450. </productMenu>
  451. <productMenu id="led"
  452. type="0" >
  453. </productMenu>
  454. <productMenu id="illusion"
  455. type="1" >
  456. </productMenu>
  457. <productMenu id="meshIntercom"
  458. type="30" >
  459. </productMenu>
  460. <productMenu id="meshIntercom+"
  461. type="3"
  462. url="2" >
  463. <productMenuURL version="1.0.2"
  464. url="10"
  465. />
  466. </productMenu>
  467. <productMenu id="waveIntercom"
  468. type="1" >
  469. <productMenuType version="1.0.9"
  470. type="0"
  471. />
  472. </productMenu>
  473. <productMenu id="bluetoothIntercom"
  474. type="1"
  475. url="2" >
  476. </productMenu>
  477. <productMenu id="bluetoothIntercomGrouping"
  478. type="0" >
  479. </productMenu>
  480. <productMenu id="fmradio"
  481. type="1"
  482. url="1" >
  483. </productMenu>
  484. <productMenu id="phone"
  485. type="1" >
  486. </productMenu>
  487. <productMenu id="music"
  488. type="1" >
  489. </productMenu>
  490. <productMenu id="musicSharing"
  491. type="0" >
  492. </productMenu>
  493. <productMenu id="deviceSetting"
  494. type="1"
  495. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  496. <productMenuURL version="1.0.2"
  497. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  498. />
  499. <productMenuURL version="1.0"
  500. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  501. />
  502. <productMenuURL version="0.9.11"
  503. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  504. />
  505. </productMenu>
  506. <productMenu id="quickGuide"
  507. type="0"
  508. url=""
  509. size="1.12MB" >
  510. </productMenu>
  511. <productMenu id="userGuide"
  512. type="1"
  513. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.0_en_250808.pdf"
  514. size="2.0MB" >
  515. </productMenu>
  516. <productMenu id="videoGuide"
  517. type="0"
  518. url=""
  519. size="3.41MB" >
  520. </productMenu>
  521. <productMenu id="connectGuide"
  522. type="1"
  523. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  524. size="1.12MB" >
  525. </productMenu>
  526. <productMenu id="volume"
  527. type="16" >
  528. <productMenuType version="0.9.11"
  529. type="13"
  530. />
  531. </productMenu>
  532. <productMenu id="soundMode"
  533. type="0" >
  534. <productMenuType version="0.9.11"
  535. type="0"
  536. />
  537. </productMenu>
  538. <productMenu id="battery"
  539. type="1" >
  540. </productMenu>
  541. <productID id="6A02"
  542. />
  543. <productGroupable type="0"
  544. />
  545. </product>
  546. <product id="60R"
  547. name="60R"
  548. series="60"
  549. latestVersion="0.7"
  550. latestVersionMesh="0.8"
  551. latestVersionVoicePrompt="0.2"
  552. show = "-1" >
  553. <productMenu id="protocol"
  554. type="2" >
  555. </productMenu>
  556. <productMenu id="ota"
  557. type="0" >
  558. <otaLanguages>
  559. <otaLanguage
  560. id="0"
  561. name="English"
  562. package="0"
  563. />
  564. <otaLanguage
  565. id="0"
  566. name="Korean"
  567. package="1"
  568. />
  569. </otaLanguages>
  570. <otaPackages>
  571. <package
  572. url="https://api.sena.com/support/test/60R-v0.7-build0_en_US.img"
  573. size="5183988"
  574. />
  575. <package
  576. url="https://api.sena.com/support/test/60R-v0.6.4-build0_kr_KR.img"
  577. size="5183988"
  578. />
  579. </otaPackages>
  580. </productMenu>
  581. <productMenu id="wa"
  582. type="0" >
  583. </productMenu>
  584. <productMenu id="sip"
  585. type="1" >
  586. </productMenu>
  587. <productMenu id="led"
  588. type="1" >
  589. </productMenu>
  590. <productMenu id="illusion"
  591. type="1" >
  592. </productMenu>
  593. <productMenu id="meshIntercom"
  594. type="30" >
  595. </productMenu>
  596. <productMenu id="bluetoothIntercom"
  597. type="1" >
  598. </productMenu>
  599. <productMenu id="fmradio"
  600. type="1"
  601. url="1" >
  602. </productMenu>
  603. <productMenu id="phone"
  604. type="1" >
  605. </productMenu>
  606. <productMenu id="music"
  607. type="1" >
  608. </productMenu>
  609. <productMenu id="musicSharing"
  610. type="0" >
  611. </productMenu>
  612. <productMenu id="deviceSetting"
  613. type="1"
  614. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml" >
  615. </productMenu>
  616. <productMenu id="quickGuide"
  617. type="0"
  618. url=""
  619. size="1.12MB" >
  620. </productMenu>
  621. <productMenu id="userGuide"
  622. type="0"
  623. url=""
  624. size="2.0MB" >
  625. </productMenu>
  626. <productMenu id="videoGuide"
  627. type="0"
  628. url=""
  629. size="3.41MB" >
  630. </productMenu>
  631. <productMenu id="volume"
  632. type="13" >
  633. </productMenu>
  634. <productMenu id="battery"
  635. type="1" >
  636. </productMenu>
  637. <productID id="6A03"
  638. />
  639. <productGroupable type="0"
  640. />
  641. </product>
  642. <product id="COMP1"
  643. name="BMW COM P1"
  644. series="60"
  645. latestVersion="1.0.6"
  646. latestVersionMesh="0.19"
  647. latestVersionVoicePrompt="1.0"
  648. show = "-1" >
  649. <productMenu id="protocol"
  650. type="2" >
  651. </productMenu>
  652. <productMenu id="ota"
  653. type="2" >
  654. <otaLanguages>
  655. <otaLanguage
  656. id="0"
  657. name="English"
  658. package="0"
  659. />
  660. <otaLanguage
  661. id="0"
  662. name="French"
  663. package="1"
  664. />
  665. <otaLanguage
  666. id="0"
  667. name="Spanish"
  668. package="2"
  669. />
  670. <otaLanguage
  671. id="0"
  672. name="Italian"
  673. package="3"
  674. />
  675. <otaLanguage
  676. id="0"
  677. name="German"
  678. package="4"
  679. />
  680. <otaLanguage
  681. id="0"
  682. name="Dutch"
  683. package="5"
  684. />
  685. <otaLanguage
  686. id="0"
  687. name="Russian"
  688. package="6"
  689. />
  690. <otaLanguage
  691. id="0"
  692. name="Chinese"
  693. package="7"
  694. />
  695. <otaLanguage
  696. id="0"
  697. name="Korean"
  698. package="8"
  699. />
  700. <otaLanguage
  701. id="0"
  702. name="Japanese"
  703. package="9"
  704. />
  705. <otaLanguage
  706. id="0"
  707. name="Finnish"
  708. package="10"
  709. />
  710. </otaLanguages>
  711. <otaPackages>
  712. <package
  713. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0.img"
  714. size="5183988"
  715. />
  716. <package
  717. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fr-FR.img"
  718. size="5183988"
  719. />
  720. <package
  721. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-es-ES.img"
  722. size="5183988"
  723. />
  724. <package
  725. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-it-IT.img"
  726. size="5183988"
  727. />
  728. <package
  729. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-de-DE.img"
  730. size="5183988"
  731. />
  732. <package
  733. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-nl-NL.img"
  734. size="5183988"
  735. />
  736. <package
  737. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ru-RU.img"
  738. size="5183988"
  739. />
  740. <package
  741. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-cmn-CN.img"
  742. size="5183988"
  743. />
  744. <package
  745. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ko-KR.img"
  746. size="5183988"
  747. />
  748. <package
  749. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ja-JP.img"
  750. size="5183988"
  751. />
  752. <package
  753. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fi-FI.img"
  754. size="5183988"
  755. />
  756. </otaPackages>
  757. </productMenu>
  758. <productMenu id="wa"
  759. type="0" >
  760. </productMenu>
  761. <productMenu id="sip"
  762. type="1" >
  763. </productMenu>
  764. <productMenu id="led"
  765. type="0" >
  766. </productMenu>
  767. <productMenu id="illusion"
  768. type="0" >
  769. </productMenu>
  770. <productMenu id="meshIntercom"
  771. type="30" >
  772. </productMenu>
  773. <productMenu id="bluetoothIntercom"
  774. type="1" >
  775. </productMenu>
  776. <productMenu id="bluetoothIntercomGrouping"
  777. type="0" >
  778. </productMenu>
  779. <productMenu id="fmradio"
  780. type="0" >
  781. </productMenu>
  782. <productMenu id="phone"
  783. type="1" >
  784. </productMenu>
  785. <productMenu id="music"
  786. type="1" >
  787. </productMenu>
  788. <productMenu id="musicSharing"
  789. type="0" >
  790. </productMenu>
  791. <productMenu id="deviceSetting"
  792. type="1"
  793. url="https://api.sena.com/support/test/xml/NS_COMP1_Test_13.xml" >
  794. </productMenu>
  795. <productMenu id="quickGuide"
  796. type="0"
  797. url=""
  798. size="1.12MB" >
  799. </productMenu>
  800. <productMenu id="userGuide"
  801. type="0"
  802. url=""
  803. size="2.0MB" >
  804. </productMenu>
  805. <productMenu id="videoGuide"
  806. type="0"
  807. url=""
  808. size="3.41MB" >
  809. </productMenu>
  810. <productMenu id="volume"
  811. type="16" >
  812. </productMenu>
  813. <productMenu id="battery"
  814. type="1" >
  815. </productMenu>
  816. <productID id="6A80"
  817. />
  818. <productGroupable type="0"
  819. />
  820. </product>
  821. <product id="50S"
  822. name="50S"
  823. series="50"
  824. latestVersion="2.7.1"
  825. show = "1" >
  826. <productMenu id="protocol"
  827. type="2" >
  828. </productMenu>
  829. <productMenu id="alexa"
  830. type="0" >
  831. </productMenu>
  832. <productMenu id="ota"
  833. type="0"
  834. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  835. size="1150234" >
  836. </productMenu>
  837. <productMenu id="wa"
  838. type="1" >
  839. </productMenu>
  840. <productMenu id="sip"
  841. type="1" >
  842. </productMenu>
  843. <productMenu id="meshIntercom"
  844. type="30" >
  845. <productMenuType version="2.1.1"
  846. type="20"
  847. />
  848. </productMenu>
  849. <productMenu id="meshIntercom+"
  850. type="3"
  851. url="2" >
  852. <productMenuType version="2.5"
  853. type="2"
  854. />
  855. <productMenuURL version="2.1.1"
  856. url="0"
  857. />
  858. </productMenu>
  859. <productMenu id="waveIntercom"
  860. type="1" >
  861. <productMenuType version="2.6"
  862. type="0"
  863. />
  864. </productMenu>
  865. <productMenu id="bluetoothIntercom"
  866. type="1" >
  867. </productMenu>
  868. <productMenu id="phone"
  869. type="1" >
  870. </productMenu>
  871. <productMenu id="music"
  872. type="1" >
  873. </productMenu>
  874. <productMenu id="fmradio"
  875. type="1" >
  876. </productMenu>
  877. <productMenu id="deviceSetting"
  878. type="1"
  879. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  880. <productMenuURL version="2.5"
  881. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  882. />
  883. <productMenuURL version="2.1.1"
  884. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  885. />
  886. <productMenuURL version="2.0.3"
  887. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  888. />
  889. </productMenu>
  890. <productMenu id="quickGuide"
  891. type="0"
  892. url=""
  893. size="934KB" >
  894. </productMenu>
  895. <productMenu id="userGuide"
  896. type="1"
  897. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  898. size="1.14MB" >
  899. </productMenu>
  900. <productMenu id="videoGuide"
  901. type="1"
  902. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  903. size="3.41MB" >
  904. </productMenu>
  905. <productMenu id="connectGuide"
  906. type="1"
  907. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  908. size="1.12MB" >
  909. </productMenu>
  910. <productMenu id="volume"
  911. type="11" >
  912. </productMenu>
  913. <productMenu id="battery"
  914. type="1" >
  915. </productMenu>
  916. <productID id="3210"
  917. />
  918. <productGroupable type="0"
  919. />
  920. </product>
  921. <product id="50S"
  922. name="50S"
  923. series="50"
  924. latestVersion="1.5"
  925. show = "-1" >
  926. <productMenu id="protocol"
  927. type="2" >
  928. </productMenu>
  929. <productMenu id="alexa"
  930. type="0" >
  931. </productMenu>
  932. <productMenu id="wa"
  933. type="1" >
  934. </productMenu>
  935. <productMenu id="sip"
  936. type="1" >
  937. </productMenu>
  938. <productMenu id="meshIntercom"
  939. type="30" >
  940. <productMenuType version="1.2.2"
  941. type="20"
  942. />
  943. </productMenu>
  944. <productMenu id="meshIntercom+"
  945. type="3"
  946. url="2" >
  947. <productMenuType version="1.4.9"
  948. type="2"
  949. />
  950. <productMenuURL version="1.2.2"
  951. url="0"
  952. />
  953. </productMenu>
  954. <productMenu id="waveIntercom"
  955. type="1" >
  956. <productMenuType version="1.3.9"
  957. type="0"
  958. />
  959. </productMenu>
  960. <productMenu id="bluetoothIntercom"
  961. type="1" >
  962. </productMenu>
  963. <productMenu id="phone"
  964. type="1" >
  965. </productMenu>
  966. <productMenu id="music"
  967. type="1" >
  968. </productMenu>
  969. <productMenu id="fmradio"
  970. type="1" >
  971. </productMenu>
  972. <productMenu id="deviceSetting"
  973. type="1"
  974. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  975. <productMenuURL version="1.4.9"
  976. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  977. />
  978. <productMenuURL version="1.3.9"
  979. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  980. />
  981. <productMenuURL version="1.2.2"
  982. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  983. />
  984. <productMenuURL version="1.1.1"
  985. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  986. />
  987. </productMenu>
  988. <productMenu id="quickGuide"
  989. type="0"
  990. url=""
  991. size="934KB" >
  992. </productMenu>
  993. <productMenu id="userGuide"
  994. type="1"
  995. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  996. size="1.14MB" >
  997. </productMenu>
  998. <productMenu id="videoGuide"
  999. type="1"
  1000. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1001. size="3.41MB" >
  1002. </productMenu>
  1003. <productMenu id="volume"
  1004. type="11" >
  1005. </productMenu>
  1006. <productMenu id="battery"
  1007. type="1" >
  1008. </productMenu>
  1009. <productID id="3132"
  1010. />
  1011. <productGroupable type="0"
  1012. />
  1013. </product>
  1014. <product id="50R"
  1015. name="50R"
  1016. series="50"
  1017. latestVersion="2.7"
  1018. show = "1" >
  1019. <productMenu id="protocol"
  1020. type="2" >
  1021. </productMenu>
  1022. <productMenu id="alexa"
  1023. type="0" >
  1024. </productMenu>
  1025. <productMenu id="ota"
  1026. type="0"
  1027. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1028. size="1150234" >
  1029. </productMenu>
  1030. <productMenu id="wa"
  1031. type="1" >
  1032. </productMenu>
  1033. <productMenu id="sip"
  1034. type="1" >
  1035. </productMenu>
  1036. <productMenu id="meshIntercom"
  1037. type="30" >
  1038. <productMenuType version="2.1.1"
  1039. type="20"
  1040. />
  1041. </productMenu>
  1042. <productMenu id="meshIntercom+"
  1043. type="3"
  1044. url="2" >
  1045. <productMenuType version="2.5"
  1046. type="2"
  1047. />
  1048. <productMenuURL version="2.1.1"
  1049. url="0"
  1050. />
  1051. </productMenu>
  1052. <productMenu id="bluetoothIntercom"
  1053. type="1" >
  1054. </productMenu>
  1055. <productMenu id="phone"
  1056. type="1" >
  1057. </productMenu>
  1058. <productMenu id="music"
  1059. type="1" >
  1060. </productMenu>
  1061. <productMenu id="fmradio"
  1062. type="1" >
  1063. </productMenu>
  1064. <productMenu id="deviceSetting"
  1065. type="1"
  1066. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1067. <productMenuURL version="2.5"
  1068. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1069. />
  1070. <productMenuURL version="2.1.1"
  1071. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1072. />
  1073. <productMenuURL version="2.0"
  1074. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1075. />
  1076. </productMenu>
  1077. <productMenu id="quickGuide"
  1078. type="0"
  1079. url=""
  1080. size="344KB" >
  1081. </productMenu>
  1082. <productMenu id="userGuide"
  1083. type="1"
  1084. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  1085. size="3.41MB" >
  1086. </productMenu>
  1087. <productMenu id="videoGuide"
  1088. type="1"
  1089. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1090. size="3.41MB" >
  1091. </productMenu>
  1092. <productMenu id="connectGuide"
  1093. type="1"
  1094. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  1095. size="1.12MB" >
  1096. </productMenu>
  1097. <productMenu id="volume"
  1098. type="11" >
  1099. </productMenu>
  1100. <productMenu id="battery"
  1101. type="1" >
  1102. </productMenu>
  1103. <productID id="3218"
  1104. />
  1105. <productGroupable type="0"
  1106. />
  1107. </product>
  1108. <product id="50R"
  1109. name="50R"
  1110. series="50"
  1111. latestVersion="1.5"
  1112. show = "-1" >
  1113. <productMenu id="protocol"
  1114. type="2" >
  1115. </productMenu>
  1116. <productMenu id="alexa"
  1117. type="0" >
  1118. </productMenu>
  1119. <productMenu id="wa"
  1120. type="1" >
  1121. </productMenu>
  1122. <productMenu id="sip"
  1123. type="1" >
  1124. </productMenu>
  1125. <productMenu id="meshIntercom"
  1126. type="30" >
  1127. <productMenuType version="1.2.2"
  1128. type="20"
  1129. />
  1130. </productMenu>
  1131. <productMenu id="meshIntercom+"
  1132. type="3"
  1133. url="2" >
  1134. <productMenuType version="1.4.9"
  1135. type="2"
  1136. />
  1137. <productMenuURL version="1.2.2"
  1138. url="0"
  1139. />
  1140. </productMenu>
  1141. <productMenu id="waveIntercom"
  1142. type="1" >
  1143. <productMenuType version="1.3.9"
  1144. type="0"
  1145. />
  1146. </productMenu>
  1147. <productMenu id="bluetoothIntercom"
  1148. type="1" >
  1149. </productMenu>
  1150. <productMenu id="phone"
  1151. type="1" >
  1152. </productMenu>
  1153. <productMenu id="music"
  1154. type="1" >
  1155. </productMenu>
  1156. <productMenu id="fmradio"
  1157. type="1" >
  1158. </productMenu>
  1159. <productMenu id="deviceSetting"
  1160. type="1"
  1161. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1162. <productMenuURL version="1.4.9"
  1163. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1164. />
  1165. <productMenuURL version="1.3.9"
  1166. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1167. />
  1168. <productMenuURL version="1.2.2"
  1169. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1170. />
  1171. <productMenuURL version="1.1.1"
  1172. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1173. />
  1174. </productMenu>
  1175. <productMenu id="quickGuide"
  1176. type="0"
  1177. url=""
  1178. size="344KB" >
  1179. </productMenu>
  1180. <productMenu id="userGuide"
  1181. type="1"
  1182. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  1183. size="3.41MB" >
  1184. </productMenu>
  1185. <productMenu id="videoGuide"
  1186. type="1"
  1187. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1188. size="3.41MB" >
  1189. </productMenu>
  1190. <productMenu id="volume"
  1191. type="11" >
  1192. </productMenu>
  1193. <productMenu id="battery"
  1194. type="1" >
  1195. </productMenu>
  1196. <productID id="3134"
  1197. />
  1198. <productGroupable type="0"
  1199. />
  1200. </product>
  1201. <product id="50C"
  1202. name="50C"
  1203. series="50"
  1204. latestVersion="1.4.2"
  1205. show = "1" >
  1206. <productMenu id="protocol"
  1207. type="2" >
  1208. </productMenu>
  1209. <productMenu id="ota"
  1210. type="0" >
  1211. </productMenu>
  1212. <productMenu id="wa"
  1213. type="1" >
  1214. </productMenu>
  1215. <productMenu id="sip"
  1216. type="1" >
  1217. </productMenu>
  1218. <productMenu id="meshIntercom"
  1219. type="30" >
  1220. <productMenuType version="1.1.1"
  1221. type="20"
  1222. />
  1223. </productMenu>
  1224. <productMenu id="meshIntercom+"
  1225. type="3"
  1226. url="2" >
  1227. <productMenuType version="1.3.9"
  1228. type="2"
  1229. />
  1230. <productMenuURL version="1.1.1"
  1231. url="0"
  1232. />
  1233. </productMenu>
  1234. <productMenu id="waveIntercom"
  1235. type="1" >
  1236. <productMenuType version="1.2.9"
  1237. type="0"
  1238. />
  1239. </productMenu>
  1240. <productMenu id="bluetoothIntercom"
  1241. type="1" >
  1242. </productMenu>
  1243. <productMenu id="phone"
  1244. type="1" >
  1245. </productMenu>
  1246. <productMenu id="music"
  1247. type="1" >
  1248. </productMenu>
  1249. <productMenu id="fmradio"
  1250. type="1" >
  1251. </productMenu>
  1252. <productMenu id="deviceSetting"
  1253. type="1"
  1254. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  1255. <productMenuURL version="1.3.9"
  1256. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  1257. />
  1258. <productMenuURL version="1.1.1"
  1259. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1260. />
  1261. <productMenuURL version="1.0.1"
  1262. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1263. />
  1264. </productMenu>
  1265. <productMenu id="quickGuide"
  1266. type="0"
  1267. url=""
  1268. size="344KB" >
  1269. </productMenu>
  1270. <productMenu id="userGuide"
  1271. type="1"
  1272. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  1273. size="3.41MB" >
  1274. </productMenu>
  1275. <productMenu id="connectGuide"
  1276. type="1"
  1277. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  1278. size="1.12MB" >
  1279. </productMenu>
  1280. <productMenu id="volume"
  1281. type="11" >
  1282. </productMenu>
  1283. <productMenu id="battery"
  1284. type="1" >
  1285. </productMenu>
  1286. <productID id="3232"
  1287. />
  1288. <productGroupable type="0"
  1289. />
  1290. </product>
  1291. <product id="PHANTOMXB"
  1292. name="PHANTOM XB"
  1293. series="Helmet"
  1294. latestVersion="1.2"
  1295. latestVersionVoicePrompt="1.0"
  1296. show = "-1" >
  1297. <productMenu id="protocol"
  1298. type="2" >
  1299. </productMenu>
  1300. <productMenu id="ota"
  1301. type="2" >
  1302. <otaLanguages>
  1303. <otaLanguage
  1304. id="0"
  1305. name="English"
  1306. package="0"
  1307. />
  1308. <otaLanguage
  1309. id="0"
  1310. name="French"
  1311. package="1"
  1312. />
  1313. <otaLanguage
  1314. id="0"
  1315. name="Spanish"
  1316. package="2"
  1317. />
  1318. <otaLanguage
  1319. id="0"
  1320. name="Italian"
  1321. package="3"
  1322. />
  1323. <otaLanguage
  1324. id="0"
  1325. name="German"
  1326. package="4"
  1327. />
  1328. <otaLanguage
  1329. id="0"
  1330. name="Dutch"
  1331. package="5"
  1332. />
  1333. <otaLanguage
  1334. id="0"
  1335. name="Russian"
  1336. package="6"
  1337. />
  1338. <otaLanguage
  1339. id="0"
  1340. name="Chinese"
  1341. package="7"
  1342. />
  1343. <otaLanguage
  1344. id="0"
  1345. name="Korean"
  1346. package="8"
  1347. />
  1348. <otaLanguage
  1349. id="0"
  1350. name="Japanese"
  1351. package="9"
  1352. />
  1353. <otaLanguage
  1354. id="0"
  1355. name="Finnish"
  1356. package="10"
  1357. />
  1358. <otaLanguage
  1359. id="0"
  1360. name="Polish"
  1361. package="11"
  1362. />
  1363. </otaLanguages>
  1364. <otaPackages>
  1365. <package
  1366. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0.img"
  1367. size="5183988"
  1368. />
  1369. <package
  1370. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-fr-FR.img"
  1371. size="5183988"
  1372. />
  1373. <package
  1374. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-es-ES.img"
  1375. size="5183988"
  1376. />
  1377. <package
  1378. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-it-IT.img"
  1379. size="5183988"
  1380. />
  1381. <package
  1382. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-de-DE.img"
  1383. size="5183988"
  1384. />
  1385. <package
  1386. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-nl-NL.img"
  1387. size="5183988"
  1388. />
  1389. <package
  1390. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-ru-RU.img"
  1391. size="5183988"
  1392. />
  1393. <package
  1394. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-cmn-CN.img"
  1395. size="5183988"
  1396. />
  1397. <package
  1398. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-ko-KR.img"
  1399. size="5183988"
  1400. />
  1401. <package
  1402. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-ja-JP.img"
  1403. size="5183988"
  1404. />
  1405. <package
  1406. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-fi-FI.img"
  1407. size="5183988"
  1408. />
  1409. <package
  1410. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2-build0-pl-PL.img"
  1411. size="5183988"
  1412. />
  1413. </otaPackages>
  1414. </productMenu>
  1415. <productMenu id="wa"
  1416. type="0" >
  1417. </productMenu>
  1418. <productMenu id="led"
  1419. type="5" >
  1420. </productMenu>
  1421. <productMenu id="led+"
  1422. type="2"
  1423. url="1" >
  1424. </productMenu>
  1425. <productMenu id="meshIntercom"
  1426. type="30" >
  1427. </productMenu>
  1428. <productMenu id="meshIntercom+"
  1429. type="3"
  1430. url="2" >
  1431. </productMenu>
  1432. <productMenu id="waveIntercom"
  1433. type="1" >
  1434. </productMenu>
  1435. <productMenu id="fmradio"
  1436. type="0" >
  1437. </productMenu>
  1438. <productMenu id="phone"
  1439. type="1" >
  1440. </productMenu>
  1441. <productMenu id="music"
  1442. type="1" >
  1443. </productMenu>
  1444. <productMenu id="musicSharing"
  1445. type="0" >
  1446. </productMenu>
  1447. <productMenu id="deviceSetting"
  1448. type="1"
  1449. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  1450. </productMenu>
  1451. <productMenu id="quickGuide"
  1452. type="0"
  1453. url=""
  1454. size="1.12MB" >
  1455. </productMenu>
  1456. <productMenu id="userGuide"
  1457. type="1"
  1458. url=""
  1459. size="2.0MB" >
  1460. </productMenu>
  1461. <productMenu id="videoGuide"
  1462. type="0"
  1463. url=""
  1464. size="3.41MB" >
  1465. </productMenu>
  1466. <productMenu id="volume"
  1467. type="16" >
  1468. </productMenu>
  1469. <productMenu id="battery"
  1470. type="1" >
  1471. </productMenu>
  1472. <productID id="6A0C"
  1473. />
  1474. <productGroupable type="0"
  1475. />
  1476. </product>
  1477. <product id="PHANTOM"
  1478. name="PHANTOM ANC"
  1479. series="Helmet"
  1480. latestVersion="1.1.4"
  1481. latestVersionVoicePrompt="1.0"
  1482. show = "1" >
  1483. <productMenu id="protocol"
  1484. type="2" >
  1485. </productMenu>
  1486. <productMenu id="ota"
  1487. type="2" >
  1488. <productMenuType version="0.6.9"
  1489. type="0"
  1490. />
  1491. <otaLanguages>
  1492. <otaLanguage
  1493. id="0"
  1494. name="English"
  1495. package="0"
  1496. />
  1497. <otaLanguage
  1498. id="0"
  1499. name="French"
  1500. package="1"
  1501. />
  1502. <otaLanguage
  1503. id="0"
  1504. name="Spanish"
  1505. package="2"
  1506. />
  1507. <otaLanguage
  1508. id="0"
  1509. name="Italian"
  1510. package="3"
  1511. />
  1512. <otaLanguage
  1513. id="0"
  1514. name="German"
  1515. package="4"
  1516. />
  1517. <otaLanguage
  1518. id="0"
  1519. name="Dutch"
  1520. package="5"
  1521. />
  1522. <otaLanguage
  1523. id="0"
  1524. name="Russian"
  1525. package="6"
  1526. />
  1527. <otaLanguage
  1528. id="0"
  1529. name="Chinese"
  1530. package="7"
  1531. />
  1532. <otaLanguage
  1533. id="0"
  1534. name="Korean"
  1535. package="8"
  1536. />
  1537. <otaLanguage
  1538. id="0"
  1539. name="Japanese"
  1540. package="9"
  1541. />
  1542. <otaLanguage
  1543. id="0"
  1544. name="Finnish"
  1545. package="10"
  1546. />
  1547. <otaLanguage
  1548. id="0"
  1549. name="Polish"
  1550. package="11"
  1551. />
  1552. </otaLanguages>
  1553. <otaPackages>
  1554. <package
  1555. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0.img"
  1556. size="5183988"
  1557. />
  1558. <package
  1559. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-fr-FR.img"
  1560. size="5183988"
  1561. />
  1562. <package
  1563. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-es-ES.img"
  1564. size="5183988"
  1565. />
  1566. <package
  1567. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-it-IT.img"
  1568. size="5183988"
  1569. />
  1570. <package
  1571. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-de-DE.img"
  1572. size="5183988"
  1573. />
  1574. <package
  1575. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-nl-NL.img"
  1576. size="5183988"
  1577. />
  1578. <package
  1579. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-ru-RU.img"
  1580. size="5183988"
  1581. />
  1582. <package
  1583. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-cmn-CN.img"
  1584. size="5183988"
  1585. />
  1586. <package
  1587. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-ko-KR.img"
  1588. size="5183988"
  1589. />
  1590. <package
  1591. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-ja-JP.img"
  1592. size="5183988"
  1593. />
  1594. <package
  1595. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-fi-FI.img"
  1596. size="5183988"
  1597. />
  1598. <package
  1599. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-pl-PL.img"
  1600. size="5183988"
  1601. />
  1602. </otaPackages>
  1603. </productMenu>
  1604. <productMenu id="wa"
  1605. type="0" >
  1606. </productMenu>
  1607. <productMenu id="led"
  1608. type="5" >
  1609. </productMenu>
  1610. <productMenu id="led+"
  1611. type="2"
  1612. url="1" >
  1613. </productMenu>
  1614. <productMenu id="meshIntercom"
  1615. type="30" >
  1616. </productMenu>
  1617. <productMenu id="meshIntercom+"
  1618. type="3"
  1619. url="2" >
  1620. <productMenuURL version="1.0.4"
  1621. url="10"
  1622. />
  1623. </productMenu>
  1624. <productMenu id="waveIntercom"
  1625. type="1" >
  1626. <productMenuType version="1.0.9"
  1627. type="0"
  1628. />
  1629. </productMenu>
  1630. <productMenu id="fmradio"
  1631. type="0" >
  1632. </productMenu>
  1633. <productMenu id="phone"
  1634. type="1" >
  1635. </productMenu>
  1636. <productMenu id="music"
  1637. type="1" >
  1638. </productMenu>
  1639. <productMenu id="musicSharing"
  1640. type="0" >
  1641. </productMenu>
  1642. <productMenu id="deviceSetting"
  1643. type="1"
  1644. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  1645. <productMenuURL version="1.1.2"
  1646. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  1647. />
  1648. <productMenuURL version="1.0.4"
  1649. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  1650. />
  1651. </productMenu>
  1652. <productMenu id="quickGuide"
  1653. type="0"
  1654. url=""
  1655. size="1.12MB" >
  1656. </productMenu>
  1657. <productMenu id="userGuide"
  1658. type="1"
  1659. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.0.1_en_250709.pdf"
  1660. size="2.0MB" >
  1661. </productMenu>
  1662. <productMenu id="videoGuide"
  1663. type="0"
  1664. url=""
  1665. size="3.41MB" >
  1666. </productMenu>
  1667. <productMenu id="volume"
  1668. type="16" >
  1669. </productMenu>
  1670. <productMenu id="soundMode"
  1671. type="1" >
  1672. <productMenuType version="0.9.11"
  1673. type="0"
  1674. />
  1675. </productMenu>
  1676. <productMenu id="battery"
  1677. type="1" >
  1678. </productMenu>
  1679. <productID id="6A01"
  1680. />
  1681. <productGroupable type="0"
  1682. />
  1683. </product>
  1684. <product id="PHANTOM"
  1685. name="PHANTOM"
  1686. series="Helmet"
  1687. latestVersion="1.1.4"
  1688. latestVersionVoicePrompt="1.0"
  1689. show = "1" >
  1690. <productMenu id="protocol"
  1691. type="2" >
  1692. </productMenu>
  1693. <productMenu id="ota"
  1694. type="2" >
  1695. <otaLanguages>
  1696. <otaLanguage
  1697. id="0"
  1698. name="English"
  1699. package="0"
  1700. />
  1701. <otaLanguage
  1702. id="0"
  1703. name="French"
  1704. package="1"
  1705. />
  1706. <otaLanguage
  1707. id="0"
  1708. name="Spanish"
  1709. package="2"
  1710. />
  1711. <otaLanguage
  1712. id="0"
  1713. name="Italian"
  1714. package="3"
  1715. />
  1716. <otaLanguage
  1717. id="0"
  1718. name="German"
  1719. package="4"
  1720. />
  1721. <otaLanguage
  1722. id="0"
  1723. name="Dutch"
  1724. package="5"
  1725. />
  1726. <otaLanguage
  1727. id="0"
  1728. name="Russian"
  1729. package="6"
  1730. />
  1731. <otaLanguage
  1732. id="0"
  1733. name="Chinese"
  1734. package="7"
  1735. />
  1736. <otaLanguage
  1737. id="0"
  1738. name="Korean"
  1739. package="8"
  1740. />
  1741. <otaLanguage
  1742. id="0"
  1743. name="Japanese"
  1744. package="9"
  1745. />
  1746. <otaLanguage
  1747. id="0"
  1748. name="Finnish"
  1749. package="10"
  1750. />
  1751. <otaLanguage
  1752. id="0"
  1753. name="Polish"
  1754. package="11"
  1755. />
  1756. </otaLanguages>
  1757. <otaPackages>
  1758. <package
  1759. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0.img"
  1760. size="5183988"
  1761. />
  1762. <package
  1763. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fr-FR.img"
  1764. size="5183988"
  1765. />
  1766. <package
  1767. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-es-ES.img"
  1768. size="5183988"
  1769. />
  1770. <package
  1771. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-it-IT.img"
  1772. size="5183988"
  1773. />
  1774. <package
  1775. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-de-DE.img"
  1776. size="5183988"
  1777. />
  1778. <package
  1779. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-nl-NL.img"
  1780. size="5183988"
  1781. />
  1782. <package
  1783. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ru-RU.img"
  1784. size="5183988"
  1785. />
  1786. <package
  1787. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-cmn-CN.img"
  1788. size="5183988"
  1789. />
  1790. <package
  1791. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ko-KR.img"
  1792. size="5183988"
  1793. />
  1794. <package
  1795. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ja-JP.img"
  1796. size="5183988"
  1797. />
  1798. <package
  1799. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fi-FI.img"
  1800. size="5183988"
  1801. />
  1802. <package
  1803. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-pl-PL.img"
  1804. size="5183988"
  1805. />
  1806. </otaPackages>
  1807. </productMenu>
  1808. <productMenu id="wa"
  1809. type="0" >
  1810. </productMenu>
  1811. <productMenu id="led"
  1812. type="5" >
  1813. <productMenuType version="1.0.1"
  1814. type="4"
  1815. />
  1816. </productMenu>
  1817. <productMenu id="led+"
  1818. type="2"
  1819. url="1" >
  1820. <productMenuType version="1.0.1"
  1821. type="-1"
  1822. />
  1823. </productMenu>
  1824. <productMenu id="meshIntercom"
  1825. type="30" >
  1826. </productMenu>
  1827. <productMenu id="meshIntercom+"
  1828. type="3"
  1829. url="2" >
  1830. <productMenuURL version="1.0.4"
  1831. url="10"
  1832. />
  1833. </productMenu>
  1834. <productMenu id="waveIntercom"
  1835. type="1" >
  1836. <productMenuType version="1.0.9"
  1837. type="0"
  1838. />
  1839. </productMenu>
  1840. <productMenu id="fmradio"
  1841. type="0" >
  1842. </productMenu>
  1843. <productMenu id="phone"
  1844. type="1" >
  1845. </productMenu>
  1846. <productMenu id="music"
  1847. type="1" >
  1848. </productMenu>
  1849. <productMenu id="musicSharing"
  1850. type="0" >
  1851. </productMenu>
  1852. <productMenu id="deviceSetting"
  1853. type="1"
  1854. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  1855. <productMenuURL version="1.0.4"
  1856. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  1857. />
  1858. <productMenuURL version="1.0.1"
  1859. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  1860. />
  1861. </productMenu>
  1862. <productMenu id="quickGuide"
  1863. type="0"
  1864. url=""
  1865. size="1.12MB" >
  1866. </productMenu>
  1867. <productMenu id="userGuide"
  1868. type="1"
  1869. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.0.1_en_250709.pdf"
  1870. size="2.0MB" >
  1871. </productMenu>
  1872. <productMenu id="videoGuide"
  1873. type="0"
  1874. url=""
  1875. size="3.41MB" >
  1876. </productMenu>
  1877. <productMenu id="connectGuide"
  1878. type="1"
  1879. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  1880. size="1.12MB" >
  1881. </productMenu>
  1882. <productMenu id="volume"
  1883. type="16" >
  1884. <productMenuType version="1.0"
  1885. type="13"
  1886. />
  1887. </productMenu>
  1888. <productMenu id="battery"
  1889. type="1" >
  1890. </productMenu>
  1891. <productID id="6A04"
  1892. />
  1893. <productGroupable type="0"
  1894. />
  1895. </product>
  1896. <product id="10R2MESH"
  1897. name="10R2 MESH"
  1898. series="10"
  1899. latestVersion="0.1.11"
  1900. latestVersionVoicePrompt="1.1"
  1901. show = "-1" >
  1902. <productMenu id="protocol"
  1903. type="2" >
  1904. </productMenu>
  1905. <productMenu id="ota"
  1906. type="0" >
  1907. <otaLanguages>
  1908. <otaLanguage
  1909. id="0"
  1910. name="English"
  1911. package="0"
  1912. />
  1913. <otaLanguage
  1914. id="0"
  1915. name="French"
  1916. package="1"
  1917. />
  1918. <otaLanguage
  1919. id="0"
  1920. name="Spanish"
  1921. package="2"
  1922. />
  1923. <otaLanguage
  1924. id="0"
  1925. name="Italian"
  1926. package="3"
  1927. />
  1928. <otaLanguage
  1929. id="0"
  1930. name="German"
  1931. package="4"
  1932. />
  1933. <otaLanguage
  1934. id="0"
  1935. name="Dutch"
  1936. package="5"
  1937. />
  1938. <otaLanguage
  1939. id="0"
  1940. name="Russian"
  1941. package="6"
  1942. />
  1943. <otaLanguage
  1944. id="0"
  1945. name="Chinese"
  1946. package="7"
  1947. />
  1948. <otaLanguage
  1949. id="0"
  1950. name="Korean"
  1951. package="8"
  1952. />
  1953. <otaLanguage
  1954. id="0"
  1955. name="Japanese"
  1956. package="9"
  1957. />
  1958. <otaLanguage
  1959. id="0"
  1960. name="Finnish"
  1961. package="10"
  1962. />
  1963. <otaLanguage
  1964. id="0"
  1965. name="Polish"
  1966. package="11"
  1967. />
  1968. </otaLanguages>
  1969. <otaPackages>
  1970. <package
  1971. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0.img"
  1972. size="5183988"
  1973. />
  1974. <package
  1975. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-fr-FR.img"
  1976. size="5183988"
  1977. />
  1978. <package
  1979. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-es-ES.img"
  1980. size="5183988"
  1981. />
  1982. <package
  1983. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-it-IT.img"
  1984. size="5183988"
  1985. />
  1986. <package
  1987. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-de-DE.img"
  1988. size="5183988"
  1989. />
  1990. <package
  1991. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-nl-NL.img"
  1992. size="5183988"
  1993. />
  1994. <package
  1995. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-ru-RU.img"
  1996. size="5183988"
  1997. />
  1998. <package
  1999. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-cmn-CN.img"
  2000. size="5183988"
  2001. />
  2002. <package
  2003. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-ko-KR.img"
  2004. size="5183988"
  2005. />
  2006. <package
  2007. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-ja-JP.img"
  2008. size="5183988"
  2009. />
  2010. <package
  2011. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-fi-FI.img"
  2012. size="5183988"
  2013. />
  2014. <package
  2015. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-pl-PL.img"
  2016. size="5183988"
  2017. />
  2018. </otaPackages>
  2019. </productMenu>
  2020. <productMenu id="wa"
  2021. type="0" >
  2022. </productMenu>
  2023. <productMenu id="led"
  2024. type="5" >
  2025. </productMenu>
  2026. <productMenu id="led+"
  2027. type="2"
  2028. url="1" >
  2029. </productMenu>
  2030. <productMenu id="meshIntercom"
  2031. type="30" >
  2032. </productMenu>
  2033. <productMenu id="meshIntercom+"
  2034. type="3"
  2035. url="2" >
  2036. </productMenu>
  2037. <productMenu id="waveIntercom"
  2038. type="1" >
  2039. </productMenu>
  2040. <productMenu id="fmradio"
  2041. type="0" >
  2042. </productMenu>
  2043. <productMenu id="phone"
  2044. type="1" >
  2045. </productMenu>
  2046. <productMenu id="music"
  2047. type="1" >
  2048. </productMenu>
  2049. <productMenu id="musicSharing"
  2050. type="0" >
  2051. </productMenu>
  2052. <productMenu id="deviceSetting"
  2053. type="1"
  2054. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2055. </productMenu>
  2056. <productMenu id="quickGuide"
  2057. type="0"
  2058. url=""
  2059. size="1.12MB" >
  2060. </productMenu>
  2061. <productMenu id="userGuide"
  2062. type="1"
  2063. url=""
  2064. size="2.0MB" >
  2065. </productMenu>
  2066. <productMenu id="videoGuide"
  2067. type="0"
  2068. url=""
  2069. size="3.41MB" >
  2070. </productMenu>
  2071. <productMenu id="volume"
  2072. type="16" >
  2073. </productMenu>
  2074. <productMenu id="battery"
  2075. type="1" >
  2076. </productMenu>
  2077. <productID id="6A07"
  2078. />
  2079. <productGroupable type="0"
  2080. />
  2081. </product>
  2082. <product id="VORTEXMESH"
  2083. name="VORTEX MESH"
  2084. series="Helmet"
  2085. latestVersion="0.1.11"
  2086. latestVersionVoicePrompt="1.1"
  2087. show = "-1" >
  2088. <productMenu id="protocol"
  2089. type="2" >
  2090. </productMenu>
  2091. <productMenu id="ota"
  2092. type="0" >
  2093. <otaLanguages>
  2094. <otaLanguage
  2095. id="0"
  2096. name="English"
  2097. package="0"
  2098. />
  2099. <otaLanguage
  2100. id="0"
  2101. name="French"
  2102. package="1"
  2103. />
  2104. <otaLanguage
  2105. id="0"
  2106. name="Spanish"
  2107. package="2"
  2108. />
  2109. <otaLanguage
  2110. id="0"
  2111. name="Italian"
  2112. package="3"
  2113. />
  2114. <otaLanguage
  2115. id="0"
  2116. name="German"
  2117. package="4"
  2118. />
  2119. <otaLanguage
  2120. id="0"
  2121. name="Dutch"
  2122. package="5"
  2123. />
  2124. <otaLanguage
  2125. id="0"
  2126. name="Russian"
  2127. package="6"
  2128. />
  2129. <otaLanguage
  2130. id="0"
  2131. name="Chinese"
  2132. package="7"
  2133. />
  2134. <otaLanguage
  2135. id="0"
  2136. name="Korean"
  2137. package="8"
  2138. />
  2139. <otaLanguage
  2140. id="0"
  2141. name="Japanese"
  2142. package="9"
  2143. />
  2144. <otaLanguage
  2145. id="0"
  2146. name="Finnish"
  2147. package="10"
  2148. />
  2149. <otaLanguage
  2150. id="0"
  2151. name="Polish"
  2152. package="11"
  2153. />
  2154. </otaLanguages>
  2155. <otaPackages>
  2156. <package
  2157. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  2158. size="5183988"
  2159. />
  2160. <package
  2161. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  2162. size="5183988"
  2163. />
  2164. <package
  2165. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  2166. size="5183988"
  2167. />
  2168. <package
  2169. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  2170. size="5183988"
  2171. />
  2172. <package
  2173. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  2174. size="5183988"
  2175. />
  2176. <package
  2177. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  2178. size="5183988"
  2179. />
  2180. <package
  2181. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  2182. size="5183988"
  2183. />
  2184. <package
  2185. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  2186. size="5183988"
  2187. />
  2188. <package
  2189. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  2190. size="5183988"
  2191. />
  2192. <package
  2193. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  2194. size="5183988"
  2195. />
  2196. <package
  2197. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  2198. size="5183988"
  2199. />
  2200. <package
  2201. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  2202. size="5183988"
  2203. />
  2204. </otaPackages>
  2205. </productMenu>
  2206. <productMenu id="wa"
  2207. type="0" >
  2208. </productMenu>
  2209. <productMenu id="led"
  2210. type="5" >
  2211. </productMenu>
  2212. <productMenu id="led+"
  2213. type="2"
  2214. url="1" >
  2215. </productMenu>
  2216. <productMenu id="meshIntercom"
  2217. type="30" >
  2218. </productMenu>
  2219. <productMenu id="meshIntercom+"
  2220. type="3"
  2221. url="2" >
  2222. </productMenu>
  2223. <productMenu id="waveIntercom"
  2224. type="1" >
  2225. </productMenu>
  2226. <productMenu id="fmradio"
  2227. type="0" >
  2228. </productMenu>
  2229. <productMenu id="phone"
  2230. type="1" >
  2231. </productMenu>
  2232. <productMenu id="music"
  2233. type="1" >
  2234. </productMenu>
  2235. <productMenu id="musicSharing"
  2236. type="0" >
  2237. </productMenu>
  2238. <productMenu id="deviceSetting"
  2239. type="1"
  2240. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2241. </productMenu>
  2242. <productMenu id="quickGuide"
  2243. type="0"
  2244. url=""
  2245. size="1.12MB" >
  2246. </productMenu>
  2247. <productMenu id="userGuide"
  2248. type="1"
  2249. url=""
  2250. size="2.0MB" >
  2251. </productMenu>
  2252. <productMenu id="videoGuide"
  2253. type="0"
  2254. url=""
  2255. size="3.41MB" >
  2256. </productMenu>
  2257. <productMenu id="volume"
  2258. type="16" >
  2259. </productMenu>
  2260. <productMenu id="battery"
  2261. type="1" >
  2262. </productMenu>
  2263. <productID id="6A12"
  2264. />
  2265. <productGroupable type="0"
  2266. />
  2267. </product>
  2268. <product id="Impulse"
  2269. name="Impulse"
  2270. series="Helmet"
  2271. latestVersion="1.4"
  2272. show = "1" >
  2273. <productMenu id="protocol"
  2274. type="2" >
  2275. </productMenu>
  2276. <productMenu id="alexa"
  2277. type="0" >
  2278. </productMenu>
  2279. <productMenu id="ota"
  2280. type="0" >
  2281. </productMenu>
  2282. <productMenu id="wa"
  2283. type="24" >
  2284. </productMenu>
  2285. <productMenu id="manager"
  2286. type="0" >
  2287. </productMenu>
  2288. <productMenu id="sip"
  2289. type="1" >
  2290. </productMenu>
  2291. <productMenu id="led"
  2292. type="1" >
  2293. <productMenuType version="1.0.1"
  2294. type="2"
  2295. />
  2296. <productMenuType version="1.0"
  2297. type="1"
  2298. />
  2299. </productMenu>
  2300. <productMenu id="meshIntercom"
  2301. type="30" >
  2302. <productMenuType version="1.1.1"
  2303. type="20"
  2304. />
  2305. </productMenu>
  2306. <productMenu id="meshIntercom+"
  2307. type="3"
  2308. url="2" >
  2309. <productMenuType version="1.3.9"
  2310. type="2"
  2311. />
  2312. <productMenuURL version="1.1.1"
  2313. url="0"
  2314. />
  2315. </productMenu>
  2316. <productMenu id="waveIntercom"
  2317. type="1" >
  2318. <productMenuType version="1.3.9"
  2319. type="0"
  2320. />
  2321. </productMenu>
  2322. <productMenu id="bluetoothIntercom"
  2323. type="1" >
  2324. </productMenu>
  2325. <productMenu id="phone"
  2326. type="1" >
  2327. </productMenu>
  2328. <productMenu id="music"
  2329. type="1" >
  2330. </productMenu>
  2331. <productMenu id="fmradio"
  2332. type="1" >
  2333. </productMenu>
  2334. <productMenu id="deviceSetting"
  2335. type="1"
  2336. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  2337. <productMenuURL version="1.3.9"
  2338. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  2339. />
  2340. <productMenuURL version="1.1.1"
  2341. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  2342. />
  2343. <productMenuURL version="1.0.4"
  2344. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  2345. />
  2346. </productMenu>
  2347. <productMenu id="quickGuide"
  2348. type="0"
  2349. url=""
  2350. size="344KB" >
  2351. </productMenu>
  2352. <productMenu id="userGuide"
  2353. type="1"
  2354. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  2355. size="3.41MB" >
  2356. </productMenu>
  2357. <productMenu id="volume"
  2358. type="11" >
  2359. </productMenu>
  2360. <productMenu id="battery"
  2361. type="1" >
  2362. </productMenu>
  2363. <productID id="3148"
  2364. />
  2365. <productGroupable type="0"
  2366. />
  2367. </product>
  2368. <product id="Impulse"
  2369. name="Impulse"
  2370. series="Helmet"
  2371. latestVersion="2.0"
  2372. show = "-1" >
  2373. <productMenu id="protocol"
  2374. type="2" >
  2375. </productMenu>
  2376. <productMenu id="alexa"
  2377. type="0" >
  2378. </productMenu>
  2379. <productMenu id="ota"
  2380. type="0" >
  2381. </productMenu>
  2382. <productMenu id="wa"
  2383. type="8" >
  2384. </productMenu>
  2385. <productMenu id="manager"
  2386. type="0" >
  2387. </productMenu>
  2388. <productMenu id="sip"
  2389. type="1" >
  2390. </productMenu>
  2391. <productMenu id="led"
  2392. type="3" >
  2393. </productMenu>
  2394. <productMenu id="meshIntercom"
  2395. type="20" >
  2396. </productMenu>
  2397. <productMenu id="bluetoothIntercom"
  2398. type="1" >
  2399. </productMenu>
  2400. <productMenu id="phone"
  2401. type="1" >
  2402. </productMenu>
  2403. <productMenu id="music"
  2404. type="1" >
  2405. </productMenu>
  2406. <productMenu id="fmradio"
  2407. type="1" >
  2408. </productMenu>
  2409. <productMenu id="deviceSetting"
  2410. type="1"
  2411. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  2412. </productMenu>
  2413. <productMenu id="quickGuide"
  2414. type="1"
  2415. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  2416. size="344KB" >
  2417. </productMenu>
  2418. <productMenu id="userGuide"
  2419. type="1"
  2420. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  2421. size="3.41MB" >
  2422. </productMenu>
  2423. <productMenu id="volume"
  2424. type="11" >
  2425. </productMenu>
  2426. <productMenu id="battery"
  2427. type="1" >
  2428. </productMenu>
  2429. <productID id="3221"
  2430. />
  2431. <productGroupable type="0"
  2432. />
  2433. </product>
  2434. <product id="Stryker"
  2435. name="Stryker"
  2436. series="Helmet"
  2437. latestVersion="1.4"
  2438. show = "1" >
  2439. <productMenu id="protocol"
  2440. type="2" >
  2441. </productMenu>
  2442. <productMenu id="alexa"
  2443. type="0" >
  2444. </productMenu>
  2445. <productMenu id="ota"
  2446. type="0" >
  2447. </productMenu>
  2448. <productMenu id="wa"
  2449. type="40" >
  2450. </productMenu>
  2451. <productMenu id="manager"
  2452. type="0" >
  2453. </productMenu>
  2454. <productMenu id="sip"
  2455. type="1" >
  2456. </productMenu>
  2457. <productMenu id="led"
  2458. type="1" >
  2459. <productMenuType version="1.0.1"
  2460. type="2"
  2461. />
  2462. <productMenuType version="1.0"
  2463. type="1"
  2464. />
  2465. </productMenu>
  2466. <productMenu id="meshIntercom"
  2467. type="30" >
  2468. <productMenuType version="1.1.1"
  2469. type="20"
  2470. />
  2471. </productMenu>
  2472. <productMenu id="meshIntercom+"
  2473. type="3"
  2474. url="2" >
  2475. <productMenuType version="1.3.9"
  2476. type="2"
  2477. />
  2478. <productMenuURL version="1.1.1"
  2479. url="0"
  2480. />
  2481. </productMenu>
  2482. <productMenu id="waveIntercom"
  2483. type="1" >
  2484. <productMenuType version="1.2.9"
  2485. type="0"
  2486. />
  2487. </productMenu>
  2488. <productMenu id="bluetoothIntercom"
  2489. type="1" >
  2490. </productMenu>
  2491. <productMenu id="phone"
  2492. type="1" >
  2493. </productMenu>
  2494. <productMenu id="music"
  2495. type="1" >
  2496. </productMenu>
  2497. <productMenu id="fmradio"
  2498. type="1" >
  2499. </productMenu>
  2500. <productMenu id="deviceSetting"
  2501. type="1"
  2502. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  2503. <productMenuURL version="1.3.9"
  2504. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  2505. />
  2506. <productMenuURL version="1.1.1"
  2507. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  2508. />
  2509. <productMenuURL version="1.0.4"
  2510. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  2511. />
  2512. </productMenu>
  2513. <productMenu id="quickGuide"
  2514. type="0"
  2515. url=""
  2516. size="344KB" >
  2517. </productMenu>
  2518. <productMenu id="userGuide"
  2519. type="1"
  2520. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  2521. size="3.41MB" >
  2522. </productMenu>
  2523. <productMenu id="volume"
  2524. type="11" >
  2525. </productMenu>
  2526. <productMenu id="battery"
  2527. type="1" >
  2528. </productMenu>
  2529. <productID id="3154"
  2530. />
  2531. <productGroupable type="0"
  2532. />
  2533. </product>
  2534. <product id="SRL3"
  2535. name="SRL3"
  2536. series="SRL"
  2537. latestVersion="1.5"
  2538. show = "1" >
  2539. <productMenu id="protocol"
  2540. type="2" >
  2541. </productMenu>
  2542. <productMenu id="alexa"
  2543. type="0" >
  2544. </productMenu>
  2545. <productMenu id="ota"
  2546. type="0" >
  2547. </productMenu>
  2548. <productMenu id="wa"
  2549. type="1" >
  2550. </productMenu>
  2551. <productMenu id="sip"
  2552. type="1" >
  2553. </productMenu>
  2554. <productMenu id="meshIntercom"
  2555. type="30" >
  2556. </productMenu>
  2557. <productMenu id="meshIntercom+"
  2558. type="3"
  2559. url="2" >
  2560. <productMenuType version="1.3.9"
  2561. type="2"
  2562. />
  2563. </productMenu>
  2564. <productMenu id="waveIntercom"
  2565. type="1" >
  2566. <productMenuType version="1.4.9"
  2567. type="0"
  2568. />
  2569. </productMenu>
  2570. <productMenu id="bluetoothIntercom"
  2571. type="1" >
  2572. </productMenu>
  2573. <productMenu id="phone"
  2574. type="1" >
  2575. </productMenu>
  2576. <productMenu id="music"
  2577. type="1" >
  2578. </productMenu>
  2579. <productMenu id="fmradio"
  2580. type="1" >
  2581. </productMenu>
  2582. <productMenu id="deviceSetting"
  2583. type="1"
  2584. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2585. <productMenuURL version="1.3"
  2586. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  2587. />
  2588. </productMenu>
  2589. <productMenu id="quickGuide"
  2590. type="0"
  2591. url=""
  2592. size="344KB" >
  2593. </productMenu>
  2594. <productMenu id="userGuide"
  2595. type="1"
  2596. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.2.2_en_250319.pdf"
  2597. size="3.41MB" >
  2598. </productMenu>
  2599. <productMenu id="volume"
  2600. type="11" >
  2601. </productMenu>
  2602. <productMenu id="battery"
  2603. type="1" >
  2604. </productMenu>
  2605. <productID id="3219"
  2606. />
  2607. <productGroupable type="0"
  2608. />
  2609. </product>
  2610. <product id="SRL_Mesh"
  2611. name="SRL-Mesh"
  2612. series="SRL"
  2613. latestVersion="1.7"
  2614. show = "1" >
  2615. <productMenu id="protocol"
  2616. type="2" >
  2617. </productMenu>
  2618. <productMenu id="alexa"
  2619. type="0" >
  2620. </productMenu>
  2621. <productMenu id="ota"
  2622. type="0" >
  2623. </productMenu>
  2624. <productMenu id="wa"
  2625. type="1" >
  2626. </productMenu>
  2627. <productMenu id="sip"
  2628. type="1" >
  2629. </productMenu>
  2630. <productMenu id="meshIntercom"
  2631. type="30" >
  2632. <productMenuType version="1.1.1"
  2633. type="20"
  2634. />
  2635. </productMenu>
  2636. <productMenu id="meshIntercom+"
  2637. type="3"
  2638. url="2" >
  2639. <productMenuType version="1.5.9"
  2640. type="2"
  2641. />
  2642. <productMenuURL version="1.1.1"
  2643. url="0"
  2644. />
  2645. </productMenu>
  2646. <productMenu id="waveIntercom"
  2647. type="1" >
  2648. <productMenuType version="1.6.9"
  2649. type="0"
  2650. />
  2651. </productMenu>
  2652. <productMenu id="bluetoothIntercom"
  2653. type="1" >
  2654. </productMenu>
  2655. <productMenu id="phone"
  2656. type="1" >
  2657. </productMenu>
  2658. <productMenu id="music"
  2659. type="1" >
  2660. </productMenu>
  2661. <productMenu id="fmradio"
  2662. type="1" >
  2663. </productMenu>
  2664. <productMenu id="deviceSetting"
  2665. type="1"
  2666. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2667. <productMenuURL version="1.5"
  2668. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  2669. />
  2670. <productMenuURL version="1.1.1"
  2671. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2672. />
  2673. <productMenuURL version="1.0.3"
  2674. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2675. />
  2676. </productMenu>
  2677. <productMenu id="quickGuide"
  2678. type="0"
  2679. url=""
  2680. size="344KB" >
  2681. </productMenu>
  2682. <productMenu id="userGuide"
  2683. type="1"
  2684. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.5.1_en_250213.pdf"
  2685. size="3.41MB" >
  2686. </productMenu>
  2687. <productMenu id="volume"
  2688. type="11" >
  2689. </productMenu>
  2690. <productMenu id="battery"
  2691. type="1" >
  2692. </productMenu>
  2693. <productID id="3216"
  2694. />
  2695. <productGroupable type="0"
  2696. />
  2697. </product>
  2698. <product id="SRL_EXT"
  2699. name="SRL-EXT"
  2700. series="SRL"
  2701. latestVersion="1.7"
  2702. show = "1" >
  2703. <productMenu id="protocol"
  2704. type="2" >
  2705. </productMenu>
  2706. <productMenu id="alexa"
  2707. type="0" >
  2708. </productMenu>
  2709. <productMenu id="ota"
  2710. type="0" >
  2711. </productMenu>
  2712. <productMenu id="wa"
  2713. type="0" >
  2714. </productMenu>
  2715. <productMenu id="sip"
  2716. type="1" >
  2717. </productMenu>
  2718. <productMenu id="meshIntercom"
  2719. type="30" >
  2720. <productMenuType version="1.1.1"
  2721. type="20"
  2722. />
  2723. </productMenu>
  2724. <productMenu id="meshIntercom+"
  2725. type="3"
  2726. url="2" >
  2727. <productMenuType version="1.5.9"
  2728. type="2"
  2729. />
  2730. <productMenuURL version="1.1.1"
  2731. url="0"
  2732. />
  2733. </productMenu>
  2734. <productMenu id="waveIntercom"
  2735. type="1" >
  2736. <productMenuType version="1.6.9"
  2737. type="0"
  2738. />
  2739. </productMenu>
  2740. <productMenu id="bluetoothIntercom"
  2741. type="1" >
  2742. </productMenu>
  2743. <productMenu id="phone"
  2744. type="1" >
  2745. </productMenu>
  2746. <productMenu id="music"
  2747. type="1" >
  2748. </productMenu>
  2749. <productMenu id="fmradio"
  2750. type="1" >
  2751. </productMenu>
  2752. <productMenu id="deviceSetting"
  2753. type="1"
  2754. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2755. <productMenuURL version="1.5"
  2756. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  2757. />
  2758. <productMenuURL version="1.1.1"
  2759. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2760. />
  2761. <productMenuURL version="1.0.3"
  2762. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2763. />
  2764. </productMenu>
  2765. <productMenu id="quickGuide"
  2766. type="0"
  2767. url=""
  2768. size="344KB" >
  2769. </productMenu>
  2770. <productMenu id="userGuide"
  2771. type="1"
  2772. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.5.1_en_250226.pdf"
  2773. size="3.41MB" >
  2774. </productMenu>
  2775. <productMenu id="volume"
  2776. type="11" >
  2777. </productMenu>
  2778. <productMenu id="battery"
  2779. type="1" >
  2780. </productMenu>
  2781. <productID id="3212"
  2782. />
  2783. <productGroupable type="0"
  2784. />
  2785. </product>
  2786. <product id="SRL2"
  2787. name="SRL2"
  2788. series="SRL"
  2789. latestVersion="1.0.9"
  2790. show = "1" >
  2791. <productMenu id="protocol"
  2792. type="0">
  2793. </productMenu>
  2794. <productMenu id="sip"
  2795. type="1" >
  2796. </productMenu>
  2797. <productMenu id="bluetoothIntercom"
  2798. type="1" >
  2799. </productMenu>
  2800. <productMenu id="intercomSetting"
  2801. type="1" >
  2802. </productMenu>
  2803. <productMenu id="phone"
  2804. type="2" >
  2805. </productMenu>
  2806. <productMenu id="fmradio"
  2807. type="3" >
  2808. </productMenu>
  2809. <productMenu id="deviceSetting"
  2810. type="1"
  2811. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  2812. </productMenu>
  2813. <productMenu id="quickGuide"
  2814. type="1"
  2815. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  2816. size="846KB" >
  2817. </productMenu>
  2818. <productMenu id="userGuide"
  2819. type="1"
  2820. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  2821. size="1.18MB" >
  2822. </productMenu>
  2823. <productID id="4530"
  2824. />
  2825. <productGroupable type="1"
  2826. />
  2827. </product>
  2828. <product id="Neotec2"
  2829. name="SRL Neotec2"
  2830. series="SRL"
  2831. latestVersion="1.1.5"
  2832. show = "1" >
  2833. <productMenu id="protocol"
  2834. type="0">
  2835. </productMenu>
  2836. <productMenu id="sip"
  2837. type="1" >
  2838. </productMenu>
  2839. <productMenu id="bluetoothIntercom"
  2840. type="1" >
  2841. </productMenu>
  2842. <productMenu id="intercomSetting"
  2843. type="1" >
  2844. </productMenu>
  2845. <productMenu id="phone"
  2846. type="2" >
  2847. </productMenu>
  2848. <productMenu id="fmradio"
  2849. type="3" >
  2850. </productMenu>
  2851. <productMenu id="deviceSetting"
  2852. type="1"
  2853. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  2854. </productMenu>
  2855. <productMenu id="quickGuide"
  2856. type="0"
  2857. url=""
  2858. size="796KB" >
  2859. </productMenu>
  2860. <productMenu id="userGuide"
  2861. type="1"
  2862. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  2863. size="1.90MB" >
  2864. </productMenu>
  2865. <productID id="4510"
  2866. />
  2867. <productGroupable type="1"
  2868. />
  2869. </product>
  2870. <product id="SPIDERST2ANC"
  2871. name="SPIDER ST2 ANC"
  2872. series="SPIDER"
  2873. latestVersion="0.5.1"
  2874. latestVersionVoicePrompt="0.2"
  2875. latestVersionMesh="0.8"
  2876. show = "-1" >
  2877. <productMenu id="protocol"
  2878. type="2" >
  2879. </productMenu>
  2880. <productMenu id="ota"
  2881. type="0" >
  2882. <otaPackages>
  2883. <package
  2884. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  2885. size="2945812"
  2886. />
  2887. </otaPackages>
  2888. </productMenu>
  2889. <productMenu id="wa"
  2890. type="0" >
  2891. </productMenu>
  2892. <productMenu id="led"
  2893. type="1" >
  2894. </productMenu>
  2895. <productMenu id="meshIntercom"
  2896. type="30" >
  2897. </productMenu>
  2898. <productMenu id="fmradio"
  2899. type="1" >
  2900. </productMenu>
  2901. <productMenu id="phone"
  2902. type="1" >
  2903. </productMenu>
  2904. <productMenu id="music"
  2905. type="1" >
  2906. </productMenu>
  2907. <productMenu id="musicSharing"
  2908. type="0" >
  2909. </productMenu>
  2910. <productMenu id="deviceSetting"
  2911. type="1"
  2912. url="https://api.sena.com/support/test/xml/NS_60R_OTATest_02.xml" >
  2913. </productMenu>
  2914. <productMenu id="quickGuide"
  2915. type="1"
  2916. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  2917. size="1.12MB" >
  2918. </productMenu>
  2919. <productMenu id="userGuide"
  2920. type="1"
  2921. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  2922. size="2.0MB" >
  2923. </productMenu>
  2924. <productMenu id="videoGuide"
  2925. type="1"
  2926. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2927. size="3.41MB" >
  2928. </productMenu>
  2929. <productMenu id="volume"
  2930. type="12" >
  2931. </productMenu>
  2932. <productMenu id="battery"
  2933. type="1" >
  2934. </productMenu>
  2935. <productID id="6A00"
  2936. />
  2937. <productGroupable type="0"
  2938. />
  2939. </product>
  2940. <product id="SPIDER_ST1"
  2941. name="SPIDER ST1"
  2942. series="SPIDER"
  2943. latestVersion="2.5"
  2944. latestVersionVoicePrompt="1.1"
  2945. show = "1" >
  2946. <productMenu id="protocol"
  2947. type="2" >
  2948. </productMenu>
  2949. <productMenu id="alexa"
  2950. type="0" >
  2951. </productMenu>
  2952. <productMenu id="ota"
  2953. type="2" >
  2954. <productMenuType version="2.1.9"
  2955. type="0"
  2956. />
  2957. <otaPackages>
  2958. <package
  2959. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_ST1-v2.5-build1.img"
  2960. size="2945812"
  2961. />
  2962. </otaPackages>
  2963. </productMenu>
  2964. <productMenu id="wa"
  2965. type="0" >
  2966. </productMenu>
  2967. <productMenu id="meshIntercom"
  2968. type="30" >
  2969. <productMenuType version="2.1.1"
  2970. type="20"
  2971. />
  2972. </productMenu>
  2973. <productMenu id="meshIntercom+"
  2974. type="3"
  2975. url="2" >
  2976. <productMenuType version="2.2.9"
  2977. type="2"
  2978. />
  2979. <productMenuURL version="2.1.1"
  2980. url="0"
  2981. />
  2982. </productMenu>
  2983. <productMenu id="waveIntercom"
  2984. type="1" >
  2985. <productMenuType version="2.3.9"
  2986. type="0"
  2987. />
  2988. </productMenu>
  2989. <productMenu id="phone"
  2990. type="1" >
  2991. </productMenu>
  2992. <productMenu id="music"
  2993. type="1" >
  2994. </productMenu>
  2995. <productMenu id="musicSharing"
  2996. type="0" >
  2997. </productMenu>
  2998. <productMenu id="deviceSetting"
  2999. type="1"
  3000. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  3001. <productMenuURL version="2.4.9"
  3002. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  3003. />
  3004. <productMenuURL version="2.2.2"
  3005. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  3006. />
  3007. <productMenuURL version="2.1.1"
  3008. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  3009. />
  3010. </productMenu>
  3011. <productMenu id="quickGuide"
  3012. type="0"
  3013. url=""
  3014. size="1.12MB" >
  3015. </productMenu>
  3016. <productMenu id="userGuide"
  3017. type="1"
  3018. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  3019. size="2.0MB" >
  3020. </productMenu>
  3021. <productMenu id="videoGuide"
  3022. type="1"
  3023. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  3024. size="3.41MB" >
  3025. </productMenu>
  3026. <productMenu id="volume"
  3027. type="12" >
  3028. </productMenu>
  3029. <productMenu id="battery"
  3030. type="1" >
  3031. </productMenu>
  3032. <productID id="6800"
  3033. />
  3034. <productGroupable type="0"
  3035. />
  3036. </product>
  3037. <product id="SPIDER_ST1"
  3038. name="SPIDER ST1"
  3039. series="SPIDER"
  3040. latestVersion="1.2.2"
  3041. show = "-1" >
  3042. <productMenu id="protocol"
  3043. type="2" >
  3044. </productMenu>
  3045. <productMenu id="alexa"
  3046. type="0" >
  3047. </productMenu>
  3048. <productMenu id="ota"
  3049. type="0" >
  3050. </productMenu>
  3051. <productMenu id="wa"
  3052. type="0" >
  3053. </productMenu>
  3054. <productMenu id="meshIntercom"
  3055. type="20" >
  3056. </productMenu>
  3057. <productMenu id="phone"
  3058. type="1" >
  3059. </productMenu>
  3060. <productMenu id="music"
  3061. type="1" >
  3062. </productMenu>
  3063. <productMenu id="deviceSetting"
  3064. type="1"
  3065. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  3066. </productMenu>
  3067. <productMenu id="quickGuide"
  3068. type="0"
  3069. url=""
  3070. size="1.12MB" >
  3071. </productMenu>
  3072. <productMenu id="userGuide"
  3073. type="1"
  3074. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  3075. size="2.0MB" >
  3076. </productMenu>
  3077. <productMenu id="videoGuide"
  3078. type="1"
  3079. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  3080. size="3.41MB" >
  3081. </productMenu>
  3082. <productMenu id="volume"
  3083. type="13" >
  3084. <productMenuType version="1.1.6"
  3085. type="14"/>
  3086. </productMenu>
  3087. <productMenu id="battery"
  3088. type="1" >
  3089. </productMenu>
  3090. <productID id="6510"
  3091. />
  3092. <productGroupable type="0"
  3093. />
  3094. </product>
  3095. <product id="SPIDER_RT1"
  3096. name="SPIDER RT1"
  3097. series="SPIDER"
  3098. latestVersion="2.5"
  3099. latestVersionVoicePrompt="1.1"
  3100. show = "1" >
  3101. <productMenu id="protocol"
  3102. type="2" >
  3103. </productMenu>
  3104. <productMenu id="alexa"
  3105. type="0" >
  3106. </productMenu>
  3107. <productMenu id="ota"
  3108. type="2" >
  3109. <productMenuType version="2.1.9"
  3110. type="0"
  3111. />
  3112. <otaPackages>
  3113. <package
  3114. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_RT1-v2.5-build1.img"
  3115. size="2945812"
  3116. />
  3117. </otaPackages>
  3118. </productMenu>
  3119. <productMenu id="wa"
  3120. type="0" >
  3121. </productMenu>
  3122. <productMenu id="meshIntercom"
  3123. type="30" >
  3124. <productMenuType version="2.1.1"
  3125. type="20"
  3126. />
  3127. </productMenu>
  3128. <productMenu id="meshIntercom+"
  3129. type="3"
  3130. url="2" >
  3131. <productMenuType version="2.2.9"
  3132. type="2"
  3133. />
  3134. <productMenuURL version="2.1.1"
  3135. url="0"
  3136. />
  3137. </productMenu>
  3138. <productMenu id="waveIntercom"
  3139. type="1" >
  3140. <productMenuType version="2.3.9"
  3141. type="0"
  3142. />
  3143. </productMenu>
  3144. <productMenu id="phone"
  3145. type="1" >
  3146. </productMenu>
  3147. <productMenu id="music"
  3148. type="1" >
  3149. </productMenu>
  3150. <productMenu id="musicSharing"
  3151. type="0" >
  3152. </productMenu>
  3153. <productMenu id="deviceSetting"
  3154. type="1"
  3155. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  3156. <productMenuURL version="2.4.9"
  3157. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  3158. />
  3159. <productMenuURL version="2.2.2"
  3160. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  3161. />
  3162. <productMenuURL version="2.1.1"
  3163. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  3164. />
  3165. </productMenu>
  3166. <productMenu id="quickGuide"
  3167. type="0"
  3168. url=""
  3169. size="1.12MB" >
  3170. </productMenu>
  3171. <productMenu id="userGuide"
  3172. type="1"
  3173. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  3174. size="2.0MB" >
  3175. </productMenu>
  3176. <productMenu id="videoGuide"
  3177. type="1"
  3178. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  3179. size="3.41MB" >
  3180. </productMenu>
  3181. <productMenu id="connectGuide"
  3182. type="1"
  3183. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  3184. size="1.12MB" >
  3185. </productMenu>
  3186. <productMenu id="volume"
  3187. type="12" >
  3188. </productMenu>
  3189. <productMenu id="battery"
  3190. type="1" >
  3191. </productMenu>
  3192. <productID id="6810"
  3193. />
  3194. <productGroupable type="0"
  3195. />
  3196. </product>
  3197. <product id="SPIDER_RT1"
  3198. name="SPIDER RT1"
  3199. series="SPIDER"
  3200. latestVersion="1.2.2"
  3201. show = "-1" >
  3202. <productMenu id="protocol"
  3203. type="2" >
  3204. </productMenu>
  3205. <productMenu id="alexa"
  3206. type="0" >
  3207. </productMenu>
  3208. <productMenu id="ota"
  3209. type="0" >
  3210. </productMenu>
  3211. <productMenu id="wa"
  3212. type="0" >
  3213. </productMenu>
  3214. <productMenu id="meshIntercom"
  3215. type="20" >
  3216. </productMenu>
  3217. <productMenu id="phone"
  3218. type="1" >
  3219. </productMenu>
  3220. <productMenu id="music"
  3221. type="1" >
  3222. </productMenu>
  3223. <productMenu id="deviceSetting"
  3224. type="1"
  3225. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  3226. </productMenu>
  3227. <productMenu id="quickGuide"
  3228. type="0"
  3229. url=""
  3230. size="1.32MB" >
  3231. </productMenu>
  3232. <productMenu id="userGuide"
  3233. type="1"
  3234. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  3235. size="1.79MB" >
  3236. </productMenu>
  3237. <productMenu id="videoGuide"
  3238. type="1"
  3239. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  3240. size="3.41MB" >
  3241. </productMenu>
  3242. <productMenu id="volume"
  3243. type="13" >
  3244. <productMenuType version="1.1.6"
  3245. type="14"/>
  3246. </productMenu>
  3247. <productMenu id="battery"
  3248. type="1" >
  3249. </productMenu>
  3250. <productID id="6500"
  3251. />
  3252. <productGroupable type="0"
  3253. />
  3254. </product>
  3255. <product id="30K"
  3256. name="30K"
  3257. series="30"
  3258. latestVersion="4.5"
  3259. show = "1" >
  3260. <productMenu id="protocol"
  3261. type="2" >
  3262. </productMenu>
  3263. <productMenu id="alexa"
  3264. type="0" >
  3265. </productMenu>
  3266. <productMenu id="wa"
  3267. type="1" >
  3268. </productMenu>
  3269. <productMenu id="sip"
  3270. type="1" >
  3271. </productMenu>
  3272. <productMenu id="meshIntercom"
  3273. type="30" >
  3274. <productMenuType version="4.0.4"
  3275. type="20"
  3276. />
  3277. </productMenu>
  3278. <productMenu id="meshIntercom+"
  3279. type="3"
  3280. url="2" >
  3281. <productMenuType version="4.3.9"
  3282. type="2"
  3283. />
  3284. <productMenuURL version="4.0.4"
  3285. url="0"
  3286. />
  3287. </productMenu>
  3288. <productMenu id="waveIntercom"
  3289. type="1" >
  3290. <productMenuType version="4.4.9"
  3291. type="0"
  3292. />
  3293. </productMenu>
  3294. <productMenu id="bluetoothIntercom"
  3295. type="1" >
  3296. </productMenu>
  3297. <productMenu id="phone"
  3298. type="1" >
  3299. </productMenu>
  3300. <productMenu id="music"
  3301. type="1" >
  3302. </productMenu>
  3303. <productMenu id="fmradio"
  3304. type="1" >
  3305. </productMenu>
  3306. <productMenu id="deviceSetting"
  3307. type="1"
  3308. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  3309. <productMenuURL version="4.3"
  3310. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  3311. />
  3312. <productMenuURL version="4.2"
  3313. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  3314. />
  3315. <productMenuURL version="4.0.4"
  3316. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  3317. />
  3318. </productMenu>
  3319. <productMenu id="quickGuide"
  3320. type="0"
  3321. url=""
  3322. size="934KB" >
  3323. </productMenu>
  3324. <productMenu id="userGuide"
  3325. type="1"
  3326. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  3327. size="1.14MB" >
  3328. </productMenu>
  3329. <productMenu id="volume"
  3330. type="11" >
  3331. </productMenu>
  3332. <productMenu id="battery"
  3333. type="1" >
  3334. </productMenu>
  3335. <productID id="3211"
  3336. />
  3337. <productGroupable type="0"
  3338. />
  3339. </product>
  3340. <product id="30K"
  3341. name="30K"
  3342. series="30"
  3343. latestVersion="3.5"
  3344. show = "-1" >
  3345. <productMenu id="protocol"
  3346. type="1"
  3347. url="0">
  3348. </productMenu>
  3349. <productMenu id="wa"
  3350. type="7" >
  3351. </productMenu>
  3352. <productMenu id="sip"
  3353. type="1" >
  3354. </productMenu>
  3355. <productMenu id="meshIntercom"
  3356. type="20" >
  3357. <productMenuType version="2.9.9"
  3358. type="10"
  3359. />
  3360. </productMenu>
  3361. <productMenu id="meshIntercom+"
  3362. type="3"
  3363. url="2" >
  3364. <productMenuType version="3.4.9"
  3365. type="2"
  3366. />
  3367. <productMenuType version="2.9.9"
  3368. type="1"
  3369. />
  3370. <productMenuURL version="3.3.1"
  3371. url="0"
  3372. />
  3373. </productMenu>
  3374. <productMenu id="bluetoothIntercom"
  3375. type="1" >
  3376. </productMenu>
  3377. <productMenu id="phone"
  3378. type="1" >
  3379. </productMenu>
  3380. <productMenu id="music"
  3381. type="1" >
  3382. </productMenu>
  3383. <productMenu id="fmradio"
  3384. type="1" >
  3385. </productMenu>
  3386. <productMenu id="deviceSetting"
  3387. type="1"
  3388. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  3389. <productMenuURL version="3.4.9"
  3390. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  3391. />
  3392. <productMenuURL version="3.3.1"
  3393. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  3394. />
  3395. <productMenuURL version="3.0.1"
  3396. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  3397. />
  3398. <productMenuURL version="2.3.1"
  3399. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  3400. />
  3401. <productMenuURL version="2.0"
  3402. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  3403. />
  3404. <productMenuURL version="1.0.3"
  3405. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  3406. />
  3407. </productMenu>
  3408. <productMenu id="quickGuide"
  3409. type="0"
  3410. url=""
  3411. size="1.06MB" >
  3412. </productMenu>
  3413. <productMenu id="userGuide"
  3414. type="1"
  3415. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  3416. size="3.15MB" >
  3417. </productMenu>
  3418. <productMenu id="volume"
  3419. type="1" >
  3420. </productMenu>
  3421. <productID id="3110"
  3422. />
  3423. <productGroupable type="0"
  3424. />
  3425. </product>
  3426. <product id="FURY"
  3427. name="FURY"
  3428. series="Helmet"
  3429. latestVersion="1.0"
  3430. show = "-1" >
  3431. <productMenu id="protocol"
  3432. type="2" >
  3433. </productMenu>
  3434. <productMenu id="alexa"
  3435. type="0" >
  3436. </productMenu>
  3437. <productMenu id="ota"
  3438. type="0" >
  3439. </productMenu>
  3440. <productMenu id="wa"
  3441. type="0" >
  3442. </productMenu>
  3443. <productMenu id="meshIntercom"
  3444. type="20" >
  3445. </productMenu>
  3446. <productMenu id="phone"
  3447. type="1" >
  3448. </productMenu>
  3449. <productMenu id="music"
  3450. type="1" >
  3451. </productMenu>
  3452. <productMenu id="fmradio"
  3453. type="1" >
  3454. </productMenu>
  3455. <productMenu id="deviceSetting"
  3456. type="1"
  3457. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  3458. </productMenu>
  3459. <productMenu id="quickGuide"
  3460. type="1"
  3461. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  3462. size="1.12MB" >
  3463. </productMenu>
  3464. <productMenu id="userGuide"
  3465. type="1"
  3466. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  3467. size="2.0MB" >
  3468. </productMenu>
  3469. <productMenu id="volume"
  3470. type="13" >
  3471. </productMenu>
  3472. <productMenu id="battery"
  3473. type="1" >
  3474. </productMenu>
  3475. <productID id="5552"
  3476. />
  3477. <productGroupable type="0"
  3478. />
  3479. </product>
  3480. <product id="MomentumM"
  3481. name="Momentum EVO"
  3482. series="Helmet"
  3483. latestVersion="2.1.2"
  3484. show = "1" >
  3485. <productMenu id="protocol"
  3486. type="1"
  3487. url="0">
  3488. </productMenu>
  3489. <productMenu id="wa"
  3490. type="3" >
  3491. </productMenu>
  3492. <productMenu id="sip"
  3493. type="1" >
  3494. </productMenu>
  3495. <productMenu id="meshIntercom"
  3496. type="20" >
  3497. <productMenuType version="1.9.9"
  3498. type="10"
  3499. />
  3500. </productMenu>
  3501. <productMenu id="bluetoothIntercom"
  3502. type="1" >
  3503. </productMenu>
  3504. <productMenu id="phone"
  3505. type="1" >
  3506. </productMenu>
  3507. <productMenu id="music"
  3508. type="1" >
  3509. </productMenu>
  3510. <productMenu id="fmradio"
  3511. type="1" >
  3512. </productMenu>
  3513. <productMenu id="deviceSetting"
  3514. type="1"
  3515. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  3516. <productMenuURL version="1.0.1"
  3517. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  3518. />
  3519. </productMenu>
  3520. <productMenu id="quickGuide"
  3521. type="1"
  3522. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  3523. size="1.06MB" >
  3524. </productMenu>
  3525. <productMenu id="userGuide"
  3526. type="1"
  3527. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  3528. size="3.15MB" >
  3529. </productMenu>
  3530. <productMenu id="volume"
  3531. type="2" >
  3532. </productMenu>
  3533. <productID id="3116"
  3534. />
  3535. <productGroupable type="0"
  3536. />
  3537. </product>
  3538. <product id="Momentum"
  3539. name="Momentum"
  3540. series="Helmet"
  3541. latestVersion="1.0.9"
  3542. show = "1" >
  3543. <productMenu id="protocol"
  3544. type="0">
  3545. </productMenu>
  3546. <productMenu id="sip"
  3547. type="1" >
  3548. </productMenu>
  3549. <productMenu id="bluetoothIntercom"
  3550. type="1" >
  3551. </productMenu>
  3552. <productMenu id="intercomSetting"
  3553. type="1" >
  3554. </productMenu>
  3555. <productMenu id="phone"
  3556. type="2" >
  3557. </productMenu>
  3558. <productMenu id="fmradio"
  3559. type="3" >
  3560. </productMenu>
  3561. <productMenu id="deviceSetting"
  3562. type="1"
  3563. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  3564. </productMenu>
  3565. <productMenu id="quickGuide"
  3566. type="1"
  3567. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  3568. size="796KB" >
  3569. </productMenu>
  3570. <productMenu id="userGuide"
  3571. type="1"
  3572. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  3573. size="1.90MB" >
  3574. </productMenu>
  3575. <productID id="4310"
  3576. />
  3577. <productGroupable type="1"
  3578. />
  3579. </product>
  3580. <product id="Momentum_Pro"
  3581. name="Momentum Pro"
  3582. series="Helmet"
  3583. latestVersion="1.0.6"
  3584. show = "1" >
  3585. <productMenu id="protocol"
  3586. type="0">
  3587. </productMenu>
  3588. <productMenu id="sip"
  3589. type="1" >
  3590. </productMenu>
  3591. <productMenu id="bluetoothIntercom"
  3592. type="1" >
  3593. </productMenu>
  3594. <productMenu id="intercomSetting"
  3595. type="1" >
  3596. </productMenu>
  3597. <productMenu id="phone"
  3598. type="2" >
  3599. </productMenu>
  3600. <productMenu id="fmradio"
  3601. type="3" >
  3602. </productMenu>
  3603. <productMenu id="deviceSetting"
  3604. type="1"
  3605. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  3606. </productMenu>
  3607. <productMenu id="quickGuide"
  3608. type="1"
  3609. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  3610. size="796KB" >
  3611. </productMenu>
  3612. <productMenu id="userGuide"
  3613. type="1"
  3614. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  3615. size="1.90MB" >
  3616. </productMenu>
  3617. <productID id="4330"
  3618. />
  3619. <productGroupable type="1"
  3620. />
  3621. </product>
  3622. <product id="Momentum_INC"
  3623. name="Momentum INC"
  3624. series="Helmet"
  3625. latestVersion="1.0.7"
  3626. show = "1" >
  3627. <productMenu id="protocol"
  3628. type="0">
  3629. </productMenu>
  3630. <productMenu id="sip"
  3631. type="1" >
  3632. </productMenu>
  3633. <productMenu id="bluetoothIntercom"
  3634. type="1" >
  3635. </productMenu>
  3636. <productMenu id="intercomSetting"
  3637. type="1" >
  3638. </productMenu>
  3639. <productMenu id="phone"
  3640. type="2" >
  3641. </productMenu>
  3642. <productMenu id="fmradio"
  3643. type="3" >
  3644. </productMenu>
  3645. <productMenu id="deviceSetting"
  3646. type="1"
  3647. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  3648. </productMenu>
  3649. <productMenu id="quickGuide"
  3650. type="1"
  3651. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  3652. size="794KB" >
  3653. </productMenu>
  3654. <productMenu id="userGuide"
  3655. type="1"
  3656. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  3657. size="1.53MB" >
  3658. </productMenu>
  3659. <productID id="4410"
  3660. />
  3661. <productGroupable type="1"
  3662. />
  3663. </product>
  3664. <product id="Momentum_INCP"
  3665. name="Momentum INC Pro"
  3666. series="Helmet"
  3667. latestVersion="1.0.4"
  3668. show = "1" >
  3669. <productMenu id="protocol"
  3670. type="0">
  3671. </productMenu>
  3672. <productMenu id="sip"
  3673. type="1" >
  3674. </productMenu>
  3675. <productMenu id="bluetoothIntercom"
  3676. type="1" >
  3677. </productMenu>
  3678. <productMenu id="intercomSetting"
  3679. type="1" >
  3680. </productMenu>
  3681. <productMenu id="phone"
  3682. type="2" >
  3683. </productMenu>
  3684. <productMenu id="fmradio"
  3685. type="3" >
  3686. </productMenu>
  3687. <productMenu id="deviceSetting"
  3688. type="1"
  3689. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  3690. </productMenu>
  3691. <productMenu id="quickGuide"
  3692. type="1"
  3693. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  3694. size="794KB" >
  3695. </productMenu>
  3696. <productMenu id="userGuide"
  3697. type="1"
  3698. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  3699. size="1.53MB" >
  3700. </productMenu>
  3701. <productID id="4430"
  3702. />
  3703. <productGroupable type="1"
  3704. />
  3705. </product>
  3706. <product id="Momentum_Lite"
  3707. name="Momentum Lite"
  3708. series="Helmet"
  3709. latestVersion="2.0.3"
  3710. show = "1" >
  3711. <productMenu id="protocol"
  3712. type="0">
  3713. </productMenu>
  3714. <productMenu id="sip"
  3715. type="1" >
  3716. </productMenu>
  3717. <productMenu id="bluetoothIntercom"
  3718. type="1" >
  3719. </productMenu>
  3720. <productMenu id="phone"
  3721. type="2" >
  3722. </productMenu>
  3723. <productMenu id="fmradio"
  3724. type="3" >
  3725. </productMenu>
  3726. <productMenu id="deviceSetting"
  3727. type="1"
  3728. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  3729. <productMenuURL version="1.1"
  3730. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  3731. />
  3732. </productMenu>
  3733. <productMenu id="quickGuide"
  3734. type="1"
  3735. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  3736. size="790KB" >
  3737. </productMenu>
  3738. <productMenu id="userGuide"
  3739. type="1"
  3740. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  3741. size="1.42MB" >
  3742. </productMenu>
  3743. <productID id="5526"
  3744. />
  3745. <productGroupable type="0"
  3746. />
  3747. </product>
  3748. <product id="OUTRUSHM"
  3749. name="OUTRUSH M"
  3750. series="Helmet"
  3751. latestVersion="1.0"
  3752. show = "-1" >
  3753. <productMenu id="protocol"
  3754. type="2" >
  3755. </productMenu>
  3756. <productMenu id="alexa"
  3757. type="0" >
  3758. </productMenu>
  3759. <productMenu id="ota"
  3760. type="0" >
  3761. </productMenu>
  3762. <productMenu id="wa"
  3763. type="0" >
  3764. </productMenu>
  3765. <productMenu id="meshIntercom"
  3766. type="30" >
  3767. </productMenu>
  3768. <productMenu id="phone"
  3769. type="1" >
  3770. </productMenu>
  3771. <productMenu id="music"
  3772. type="1" >
  3773. </productMenu>
  3774. <productMenu id="fmradio"
  3775. type="1" >
  3776. </productMenu>
  3777. <productMenu id="deviceSetting"
  3778. type="1"
  3779. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  3780. </productMenu>
  3781. <productMenu id="quickGuide"
  3782. type="1"
  3783. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  3784. size="1.12MB" >
  3785. </productMenu>
  3786. <productMenu id="userGuide"
  3787. type="1"
  3788. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  3789. size="2.0MB" >
  3790. </productMenu>
  3791. <productMenu id="volume"
  3792. type="13" >
  3793. </productMenu>
  3794. <productMenu id="battery"
  3795. type="1" >
  3796. </productMenu>
  3797. <productID id="5600"
  3798. />
  3799. <productGroupable type="0"
  3800. />
  3801. </product>
  3802. <product id="ProRideEVO"
  3803. name="ProRide EVO"
  3804. series="Helmet"
  3805. latestVersion="1.1.2"
  3806. show = "1" >
  3807. <productMenu id="protocol"
  3808. type="0">
  3809. </productMenu>
  3810. <productMenu id="sip"
  3811. type="1" >
  3812. </productMenu>
  3813. <productMenu id="bluetoothIntercom"
  3814. type="1" >
  3815. </productMenu>
  3816. <productMenu id="phone"
  3817. type="2" >
  3818. </productMenu>
  3819. <productMenu id="fmradio"
  3820. type="3" >
  3821. </productMenu>
  3822. <productMenu id="deviceSetting"
  3823. type="1"
  3824. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  3825. </productMenu>
  3826. <productMenu id="userGuide"
  3827. type="1"
  3828. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  3829. size="778KB" >
  3830. </productMenu>
  3831. <productID id="5426"
  3832. />
  3833. <productGroupable type="0"
  3834. />
  3835. </product>
  3836. <product id="OUTRUSHR"
  3837. name="OUTRUSH R"
  3838. series="Helmet"
  3839. latestVersion="2.1"
  3840. show = "1" >
  3841. <productMenu id="protocol"
  3842. type="3" >
  3843. </productMenu>
  3844. <productMenu id="sip"
  3845. type="1" >
  3846. </productMenu>
  3847. <productMenu id="bluetoothIntercom"
  3848. type="1" >
  3849. </productMenu>
  3850. <productMenu id="phone"
  3851. type="1" >
  3852. </productMenu>
  3853. <productMenu id="fmradio"
  3854. type="0" >
  3855. </productMenu>
  3856. <productMenu id="deviceSetting"
  3857. type="1"
  3858. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  3859. </productMenu>
  3860. <productMenu id="userGuide"
  3861. type="1"
  3862. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  3863. size="1.14MB" >
  3864. </productMenu>
  3865. <productID id="5440"
  3866. />
  3867. <productGroupable type="0"
  3868. />
  3869. </product>
  3870. <product id="OUTRUSHR"
  3871. name="OUTRUSH R"
  3872. series="Helmet"
  3873. latestVersion="1.1.3"
  3874. show = "-1" >
  3875. <productMenu id="protocol"
  3876. type="0">
  3877. </productMenu>
  3878. <productMenu id="sip"
  3879. type="1" >
  3880. </productMenu>
  3881. <productMenu id="bluetoothIntercom"
  3882. type="1" >
  3883. </productMenu>
  3884. <productMenu id="phone"
  3885. type="2" >
  3886. </productMenu>
  3887. <productMenu id="fmradio"
  3888. type="3" >
  3889. </productMenu>
  3890. <productMenu id="deviceSetting"
  3891. type="1"
  3892. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  3893. </productMenu>
  3894. <productMenu id="userGuide"
  3895. type="1"
  3896. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  3897. size="660KB" >
  3898. </productMenu>
  3899. <productID id="5424"
  3900. />
  3901. <productGroupable type="0"
  3902. />
  3903. </product>
  3904. <product id="OUTSTARS"
  3905. name="OUTSTAR S"
  3906. series="Helmet"
  3907. latestVersion="2.0.1"
  3908. show = "-1" >
  3909. <productMenu id="protocol"
  3910. type="3" >
  3911. </productMenu>
  3912. <productMenu id="sip"
  3913. type="1" >
  3914. </productMenu>
  3915. <productMenu id="bluetoothIntercom"
  3916. type="1" >
  3917. </productMenu>
  3918. <productMenu id="phone"
  3919. type="1" >
  3920. </productMenu>
  3921. <productMenu id="fmradio"
  3922. type="0" >
  3923. </productMenu>
  3924. <productMenu id="deviceSetting"
  3925. type="1"
  3926. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  3927. </productMenu>
  3928. <productMenu id="userGuide"
  3929. type="0"
  3930. url=""
  3931. size="1.14MB" >
  3932. </productMenu>
  3933. <productID id="5443"
  3934. />
  3935. <productGroupable type="0"
  3936. />
  3937. </product>
  3938. <product id="OUTSTARS"
  3939. name="OUTSTAR S"
  3940. series="Helmet"
  3941. latestVersion="1.1.3"
  3942. show = "1" >
  3943. <productMenu id="protocol"
  3944. type="0">
  3945. </productMenu>
  3946. <productMenu id="sip"
  3947. type="1" >
  3948. </productMenu>
  3949. <productMenu id="bluetoothIntercom"
  3950. type="1" >
  3951. </productMenu>
  3952. <productMenu id="phone"
  3953. type="2" >
  3954. </productMenu>
  3955. <productMenu id="fmradio"
  3956. type="3" >
  3957. </productMenu>
  3958. <productMenu id="deviceSetting"
  3959. type="1"
  3960. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  3961. </productMenu>
  3962. <productMenu id="quickGuide"
  3963. type="1"
  3964. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  3965. size="643KB" >
  3966. </productMenu>
  3967. <productMenu id="userGuide"
  3968. type="1"
  3969. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  3970. size="1.15MB" >
  3971. </productMenu>
  3972. <productID id="5428"
  3973. />
  3974. <productGroupable type="0"
  3975. />
  3976. </product>
  3977. <product id="OUTRIDE"
  3978. name="OUTRIDE"
  3979. series="Helmet"
  3980. latestVersion="1.0.1"
  3981. show = "1" >
  3982. <productMenu id="protocol"
  3983. type="0">
  3984. </productMenu>
  3985. <productMenu id="sip"
  3986. type="1" >
  3987. </productMenu>
  3988. <productMenu id="bluetoothIntercom"
  3989. type="1" >
  3990. </productMenu>
  3991. <productMenu id="phone"
  3992. type="2" >
  3993. </productMenu>
  3994. <productMenu id="fmradio"
  3995. type="3" >
  3996. </productMenu>
  3997. <productMenu id="deviceSetting"
  3998. type="1"
  3999. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  4000. </productMenu>
  4001. <productMenu id="quickGuide"
  4002. type="1"
  4003. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  4004. size="643KB" >
  4005. </productMenu>
  4006. <productMenu id="userGuide"
  4007. type="1"
  4008. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  4009. size="660KB" >
  4010. </productMenu>
  4011. <productID id="5432"
  4012. />
  4013. <productGroupable type="0"
  4014. />
  4015. </product>
  4016. <product id="OUTFORCE"
  4017. name="OUTFORCE"
  4018. series="Helmet"
  4019. latestVersion="1.0.1"
  4020. show = "1" >
  4021. <productMenu id="protocol"
  4022. type="0">
  4023. </productMenu>
  4024. <productMenu id="sip"
  4025. type="1" >
  4026. </productMenu>
  4027. <productMenu id="bluetoothIntercom"
  4028. type="1" >
  4029. </productMenu>
  4030. <productMenu id="phone"
  4031. type="2" >
  4032. </productMenu>
  4033. <productMenu id="fmradio"
  4034. type="3" >
  4035. </productMenu>
  4036. <productMenu id="deviceSetting"
  4037. type="1"
  4038. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  4039. </productMenu>
  4040. <productMenu id="quickGuide"
  4041. type="1"
  4042. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  4043. size="643KB" >
  4044. </productMenu>
  4045. <productMenu id="userGuide"
  4046. type="1"
  4047. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  4048. size="660KB" >
  4049. </productMenu>
  4050. <productID id="5430"
  4051. />
  4052. <productGroupable type="0"
  4053. />
  4054. </product>
  4055. <product id="Rumba"
  4056. name="Rumba"
  4057. series="30"
  4058. latestVersion="2.0"
  4059. show = "-1" >
  4060. <productMenu id="protocol"
  4061. type="3" >
  4062. </productMenu>
  4063. <productMenu id="sip"
  4064. type="1" >
  4065. </productMenu>
  4066. <productMenu id="bluetoothIntercom"
  4067. type="1" >
  4068. </productMenu>
  4069. <productMenu id="deviceSetting"
  4070. type="1"
  4071. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  4072. </productMenu>
  4073. <productMenu id="quickGuide"
  4074. type="1"
  4075. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  4076. size="344KB" >
  4077. </productMenu>
  4078. <productMenu id="userGuide"
  4079. type="1"
  4080. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  4081. size="1.14MB" >
  4082. </productMenu>
  4083. <productID id="6322"
  4084. />
  4085. <productGroupable type="0"
  4086. />
  4087. </product>
  4088. <product id="Savage"
  4089. name="Savage"
  4090. series="Helmet"
  4091. latestVersion="1.2.2"
  4092. show = "1" >
  4093. <productMenu id="protocol"
  4094. type="0">
  4095. </productMenu>
  4096. <productMenu id="sip"
  4097. type="1" >
  4098. </productMenu>
  4099. <productMenu id="bluetoothIntercom"
  4100. type="1" >
  4101. </productMenu>
  4102. <productMenu id="phone"
  4103. type="2" >
  4104. </productMenu>
  4105. <productMenu id="fmradio"
  4106. type="3" >
  4107. </productMenu>
  4108. <productMenu id="deviceSetting"
  4109. type="1"
  4110. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  4111. <productMenuURL version="1.9"
  4112. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  4113. />
  4114. <productMenuURL version="1.1"
  4115. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  4116. />
  4117. </productMenu>
  4118. <productMenu id="quickGuide"
  4119. type="1"
  4120. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  4121. size="796KB" >
  4122. </productMenu>
  4123. <productMenu id="userGuide"
  4124. type="1"
  4125. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  4126. size="910KB" >
  4127. </productMenu>
  4128. <productID id="5550"
  4129. />
  4130. <productGroupable type="0"
  4131. />
  4132. </product>
  4133. <product id="SPECTOR"
  4134. name="SPECTOR"
  4135. series="Helmet"
  4136. latestVersion="1.0"
  4137. latestVersionVoicePrompt="1.1"
  4138. show = "-1" >
  4139. <productMenu id="protocol"
  4140. type="2" >
  4141. </productMenu>
  4142. <productMenu id="ota"
  4143. type="2" >
  4144. <otaLanguages>
  4145. <otaLanguage
  4146. id="0"
  4147. name="English"
  4148. package="0"
  4149. />
  4150. <otaLanguage
  4151. id="0"
  4152. name="French"
  4153. package="1"
  4154. />
  4155. <otaLanguage
  4156. id="0"
  4157. name="Spanish"
  4158. package="2"
  4159. />
  4160. <otaLanguage
  4161. id="0"
  4162. name="Italian"
  4163. package="3"
  4164. />
  4165. <otaLanguage
  4166. id="0"
  4167. name="German"
  4168. package="4"
  4169. />
  4170. <otaLanguage
  4171. id="0"
  4172. name="Dutch"
  4173. package="5"
  4174. />
  4175. <otaLanguage
  4176. id="0"
  4177. name="Russian"
  4178. package="6"
  4179. />
  4180. <otaLanguage
  4181. id="0"
  4182. name="Chinese"
  4183. package="7"
  4184. />
  4185. <otaLanguage
  4186. id="0"
  4187. name="Korean"
  4188. package="8"
  4189. />
  4190. <otaLanguage
  4191. id="0"
  4192. name="Japanese"
  4193. package="9"
  4194. />
  4195. <otaLanguage
  4196. id="0"
  4197. name="Finnish"
  4198. package="10"
  4199. />
  4200. <otaLanguage
  4201. id="0"
  4202. name="Polish"
  4203. package="11"
  4204. />
  4205. </otaLanguages>
  4206. <otaPackages>
  4207. <package
  4208. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2.img"
  4209. size="5183988"
  4210. />
  4211. <package
  4212. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-fr-FR.img"
  4213. size="5183988"
  4214. />
  4215. <package
  4216. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-es-ES.img"
  4217. size="5183988"
  4218. />
  4219. <package
  4220. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-it-IT.img"
  4221. size="5183988"
  4222. />
  4223. <package
  4224. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-de-DE.img"
  4225. size="5183988"
  4226. />
  4227. <package
  4228. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-nl-NL.img"
  4229. size="5183988"
  4230. />
  4231. <package
  4232. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-ru-RU.img"
  4233. size="5183988"
  4234. />
  4235. <package
  4236. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-cmn-CN.img"
  4237. size="5183988"
  4238. />
  4239. <package
  4240. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-ko-KR.img"
  4241. size="5183988"
  4242. />
  4243. <package
  4244. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-ja-JP.img"
  4245. size="5183988"
  4246. />
  4247. <package
  4248. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-fi-FI.img"
  4249. size="5183988"
  4250. />
  4251. <package
  4252. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-pl-PL.img"
  4253. size="5183988"
  4254. />
  4255. </otaPackages>
  4256. </productMenu>
  4257. <productMenu id="wa"
  4258. type="0" >
  4259. </productMenu>
  4260. <productMenu id="led"
  4261. type="5" >
  4262. </productMenu>
  4263. <productMenu id="led+"
  4264. type="2"
  4265. url="1" >
  4266. </productMenu>
  4267. <productMenu id="meshIntercom+"
  4268. type="3"
  4269. url="2" >
  4270. </productMenu>
  4271. <productMenu id="waveIntercom"
  4272. type="1" >
  4273. </productMenu>
  4274. <productMenu id="fmradio"
  4275. type="0" >
  4276. </productMenu>
  4277. <productMenu id="phone"
  4278. type="1" >
  4279. </productMenu>
  4280. <productMenu id="music"
  4281. type="1" >
  4282. </productMenu>
  4283. <productMenu id="musicSharing"
  4284. type="0" >
  4285. </productMenu>
  4286. <productMenu id="deviceSetting"
  4287. type="1"
  4288. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  4289. </productMenu>
  4290. <productMenu id="quickGuide"
  4291. type="0"
  4292. url=""
  4293. size="1.12MB" >
  4294. </productMenu>
  4295. <productMenu id="userGuide"
  4296. type="0"
  4297. url=""
  4298. size="2.0MB" >
  4299. </productMenu>
  4300. <productMenu id="videoGuide"
  4301. type="0"
  4302. url=""
  4303. size="3.41MB" >
  4304. </productMenu>
  4305. <productMenu id="volume"
  4306. type="16" >
  4307. </productMenu>
  4308. <productMenu id="battery"
  4309. type="1" >
  4310. </productMenu>
  4311. <productID id="6A0A"
  4312. />
  4313. <productGroupable type="0"
  4314. />
  4315. </product>
  4316. <product id="OUTLANDER"
  4317. name="OUTLANDER"
  4318. series="Helmet"
  4319. latestVersion="1.0.1"
  4320. latestVersionVoicePrompt="1.0"
  4321. show = "-1" >
  4322. <productMenu id="protocol"
  4323. type="2" >
  4324. </productMenu>
  4325. <productMenu id="ota"
  4326. type="2" >
  4327. <otaLanguages>
  4328. <otaLanguage
  4329. id="0"
  4330. name="English"
  4331. package="0"
  4332. />
  4333. <otaLanguage
  4334. id="0"
  4335. name="French"
  4336. package="1"
  4337. />
  4338. <otaLanguage
  4339. id="0"
  4340. name="Spanish"
  4341. package="2"
  4342. />
  4343. <otaLanguage
  4344. id="0"
  4345. name="Italian"
  4346. package="3"
  4347. />
  4348. <otaLanguage
  4349. id="0"
  4350. name="German"
  4351. package="4"
  4352. />
  4353. <otaLanguage
  4354. id="0"
  4355. name="Dutch"
  4356. package="5"
  4357. />
  4358. <otaLanguage
  4359. id="0"
  4360. name="Russian"
  4361. package="6"
  4362. />
  4363. <otaLanguage
  4364. id="0"
  4365. name="Chinese"
  4366. package="7"
  4367. />
  4368. <otaLanguage
  4369. id="0"
  4370. name="Korean"
  4371. package="8"
  4372. />
  4373. <otaLanguage
  4374. id="0"
  4375. name="Japanese"
  4376. package="9"
  4377. />
  4378. <otaLanguage
  4379. id="0"
  4380. name="Finnish"
  4381. package="10"
  4382. />
  4383. <otaLanguage
  4384. id="0"
  4385. name="Polish"
  4386. package="11"
  4387. />
  4388. </otaLanguages>
  4389. <otaPackages>
  4390. <package
  4391. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0.img"
  4392. size="5183988"
  4393. />
  4394. <package
  4395. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-fr-FR.img"
  4396. size="5183988"
  4397. />
  4398. <package
  4399. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-es-ES.img"
  4400. size="5183988"
  4401. />
  4402. <package
  4403. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-it-IT.img"
  4404. size="5183988"
  4405. />
  4406. <package
  4407. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-de-DE.img"
  4408. size="5183988"
  4409. />
  4410. <package
  4411. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-nl-NL.img"
  4412. size="5183988"
  4413. />
  4414. <package
  4415. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-ru-RU.img"
  4416. size="5183988"
  4417. />
  4418. <package
  4419. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-cmn-CN.img"
  4420. size="5183988"
  4421. />
  4422. <package
  4423. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-ko-KR.img"
  4424. size="5183988"
  4425. />
  4426. <package
  4427. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-ja-JP.img"
  4428. size="5183988"
  4429. />
  4430. <package
  4431. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-fi-FI.img"
  4432. size="5183988"
  4433. />
  4434. <package
  4435. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-pl-PL.img"
  4436. size="5183988"
  4437. />
  4438. </otaPackages>
  4439. </productMenu>
  4440. <productMenu id="wa"
  4441. type="0" >
  4442. </productMenu>
  4443. <productMenu id="led"
  4444. type="5" >
  4445. </productMenu>
  4446. <productMenu id="led+"
  4447. type="2"
  4448. url="1" >
  4449. </productMenu>
  4450. <productMenu id="meshIntercom+"
  4451. type="3"
  4452. url="2" >
  4453. </productMenu>
  4454. <productMenu id="waveIntercom"
  4455. type="1" >
  4456. </productMenu>
  4457. <productMenu id="fmradio"
  4458. type="0" >
  4459. </productMenu>
  4460. <productMenu id="phone"
  4461. type="1" >
  4462. </productMenu>
  4463. <productMenu id="music"
  4464. type="1" >
  4465. </productMenu>
  4466. <productMenu id="musicSharing"
  4467. type="0" >
  4468. </productMenu>
  4469. <productMenu id="deviceSetting"
  4470. type="1"
  4471. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4472. </productMenu>
  4473. <productMenu id="quickGuide"
  4474. type="0"
  4475. url=""
  4476. size="1.12MB" >
  4477. </productMenu>
  4478. <productMenu id="userGuide"
  4479. type="0"
  4480. url=""
  4481. size="2.0MB" >
  4482. </productMenu>
  4483. <productMenu id="videoGuide"
  4484. type="0"
  4485. url=""
  4486. size="3.41MB" >
  4487. </productMenu>
  4488. <productMenu id="volume"
  4489. type="16" >
  4490. </productMenu>
  4491. <productMenu id="battery"
  4492. type="1" >
  4493. </productMenu>
  4494. <productID id="6A05"
  4495. />
  4496. <productGroupable type="0"
  4497. />
  4498. </product>
  4499. <product id="OUTRUSH2"
  4500. name="OUTRUSH 2"
  4501. series="Helmet"
  4502. latestVersion="1.0.2"
  4503. latestVersionVoicePrompt="1.1"
  4504. show = "-1" >
  4505. <productMenu id="protocol"
  4506. type="2" >
  4507. </productMenu>
  4508. <productMenu id="alexa"
  4509. type="0" >
  4510. </productMenu>
  4511. <productMenu id="ota"
  4512. type="2" >
  4513. <otaPackages>
  4514. <package
  4515. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  4516. size="2945812"
  4517. />
  4518. </otaPackages>
  4519. </productMenu>
  4520. <productMenu id="meshIntercom+"
  4521. type="3"
  4522. url="2" >
  4523. </productMenu>
  4524. <productMenu id="waveIntercom"
  4525. type="1" >
  4526. </productMenu>
  4527. <productMenu id="phone"
  4528. type="1" >
  4529. </productMenu>
  4530. <productMenu id="music"
  4531. type="1" >
  4532. </productMenu>
  4533. <productMenu id="musicSharing"
  4534. type="0" >
  4535. </productMenu>
  4536. <productMenu id="deviceSetting"
  4537. type="1"
  4538. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  4539. <productMenuURL version="1.0"
  4540. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  4541. />
  4542. </productMenu>
  4543. <productMenu id="quickGuide"
  4544. type="0"
  4545. url=""
  4546. size="1.12MB" >
  4547. </productMenu>
  4548. <productMenu id="userGuide"
  4549. type="1"
  4550. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.0_en_250730.pdf"
  4551. size="2.0MB" >
  4552. </productMenu>
  4553. <productMenu id="volume"
  4554. type="12" >
  4555. </productMenu>
  4556. <productMenu id="battery"
  4557. type="1" >
  4558. </productMenu>
  4559. <productID id="684A"
  4560. />
  4561. <productGroupable type="0"
  4562. />
  4563. </product>
  4564. <product id="OUTSTAR2"
  4565. name="OUTSTAR 2"
  4566. series="Helmet"
  4567. latestVersion="1.0.1"
  4568. latestVersionVoicePrompt="1.1"
  4569. show = "-1" >
  4570. <productMenu id="protocol"
  4571. type="2" >
  4572. </productMenu>
  4573. <productMenu id="alexa"
  4574. type="0" >
  4575. </productMenu>
  4576. <productMenu id="ota"
  4577. type="2" >
  4578. <otaPackages>
  4579. <package
  4580. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.1-build0.img"
  4581. size="2945812"
  4582. />
  4583. </otaPackages>
  4584. </productMenu>
  4585. <productMenu id="meshIntercom+"
  4586. type="3"
  4587. url="2" >
  4588. </productMenu>
  4589. <productMenu id="waveIntercom"
  4590. type="1" >
  4591. </productMenu>
  4592. <productMenu id="phone"
  4593. type="1" >
  4594. </productMenu>
  4595. <productMenu id="music"
  4596. type="1" >
  4597. </productMenu>
  4598. <productMenu id="musicSharing"
  4599. type="0" >
  4600. </productMenu>
  4601. <productMenu id="deviceSetting"
  4602. type="1"
  4603. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  4604. </productMenu>
  4605. <productMenu id="quickGuide"
  4606. type="0"
  4607. url=""
  4608. size="1.12MB" >
  4609. </productMenu>
  4610. <productMenu id="userGuide"
  4611. type="1"
  4612. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.0_en_250903.pdf"
  4613. size="2.0MB" >
  4614. </productMenu>
  4615. <productMenu id="volume"
  4616. type="12" >
  4617. </productMenu>
  4618. <productMenu id="battery"
  4619. type="1" >
  4620. </productMenu>
  4621. <productID id="684B"
  4622. />
  4623. <productGroupable type="0"
  4624. />
  4625. </product>
  4626. <product id="SURGE"
  4627. name="SURGE"
  4628. series="Helmet"
  4629. latestVersion="1.1.1"
  4630. latestVersionVoicePrompt="0.9"
  4631. show = "1" >
  4632. <productMenu id="protocol"
  4633. type="2" >
  4634. </productMenu>
  4635. <productMenu id="alexa"
  4636. type="0" >
  4637. </productMenu>
  4638. <productMenu id="ota"
  4639. type="2" >
  4640. <otaPackages>
  4641. <package
  4642. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.1.1-build0.img"
  4643. size="2945812"
  4644. />
  4645. </otaPackages>
  4646. </productMenu>
  4647. <productMenu id="meshIntercom"
  4648. type="30" >
  4649. </productMenu>
  4650. <productMenu id="meshIntercom+"
  4651. type="3"
  4652. url="2" >
  4653. <productMenuType version="1.0.1"
  4654. type="2"
  4655. />
  4656. </productMenu>
  4657. <productMenu id="waveIntercom"
  4658. type="1" >
  4659. <productMenuType version="1.0.9"
  4660. type="0"
  4661. />
  4662. </productMenu>
  4663. <productMenu id="phone"
  4664. type="1" >
  4665. </productMenu>
  4666. <productMenu id="music"
  4667. type="1" >
  4668. </productMenu>
  4669. <productMenu id="musicSharing"
  4670. type="0" >
  4671. </productMenu>
  4672. <productMenu id="deviceSetting"
  4673. type="1"
  4674. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml" >
  4675. <productMenuURL version="1.0.1"
  4676. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  4677. />
  4678. </productMenu>
  4679. <productMenu id="quickGuide"
  4680. type="0"
  4681. url=""
  4682. size="1.12MB" >
  4683. </productMenu>
  4684. <productMenu id="userGuide"
  4685. type="1"
  4686. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.0_en_250408.pdf"
  4687. size="2.0MB" >
  4688. </productMenu>
  4689. <productMenu id="volume"
  4690. type="12" >
  4691. </productMenu>
  4692. <productMenu id="battery"
  4693. type="1" >
  4694. </productMenu>
  4695. <productID id="6840"
  4696. />
  4697. <productGroupable type="0"
  4698. />
  4699. </product>
  4700. <product id="Cavalry2"
  4701. name="Cavalry 2"
  4702. series="Helmet"
  4703. latestVersion="1.1.1"
  4704. latestVersionVoicePrompt="0.9"
  4705. show = "1" >
  4706. <productMenu id="protocol"
  4707. type="2" >
  4708. </productMenu>
  4709. <productMenu id="alexa"
  4710. type="0" >
  4711. </productMenu>
  4712. <productMenu id="ota"
  4713. type="2" >
  4714. <otaPackages>
  4715. <package
  4716. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.1.1-build0.img"
  4717. size="3144148"
  4718. />
  4719. </otaPackages>
  4720. </productMenu>
  4721. <productMenu id="wa"
  4722. type="0" >
  4723. </productMenu>
  4724. <productMenu id="meshIntercom"
  4725. type="30" >
  4726. </productMenu>
  4727. <productMenu id="meshIntercom+"
  4728. type="3"
  4729. url="2" >
  4730. <productMenuType version="1.0"
  4731. type="2"
  4732. />
  4733. </productMenu>
  4734. <productMenu id="waveIntercom"
  4735. type="1" >
  4736. <productMenuType version="1.0.9"
  4737. type="0"
  4738. />
  4739. </productMenu>
  4740. <productMenu id="phone"
  4741. type="1" >
  4742. </productMenu>
  4743. <productMenu id="music"
  4744. type="1" >
  4745. </productMenu>
  4746. <productMenu id="musicSharing"
  4747. type="0" >
  4748. </productMenu>
  4749. <productMenu id="deviceSetting"
  4750. type="1"
  4751. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_02.xml" >
  4752. <productMenuURL version="1.0"
  4753. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_01.xml"
  4754. />
  4755. </productMenu>
  4756. <productMenu id="quickGuide"
  4757. type="0"
  4758. url=""
  4759. size="1.12MB" >
  4760. </productMenu>
  4761. <productMenu id="userGuide"
  4762. type="1"
  4763. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.0_en_250415.pdf"
  4764. size="2.0MB" >
  4765. </productMenu>
  4766. <productMenu id="connectGuide"
  4767. type="1"
  4768. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  4769. size="1.12MB" >
  4770. </productMenu>
  4771. <productMenu id="volume"
  4772. type="12" >
  4773. </productMenu>
  4774. <productMenu id="battery"
  4775. type="1" >
  4776. </productMenu>
  4777. <productID id="6839"
  4778. />
  4779. <productGroupable type="0"
  4780. />
  4781. </product>
  4782. <product id="Cavalry"
  4783. name="Cavalry"
  4784. series="Helmet"
  4785. latestVersion="1.2.2"
  4786. show = "1" >
  4787. <productMenu id="protocol"
  4788. type="0">
  4789. </productMenu>
  4790. <productMenu id="sip"
  4791. type="1" >
  4792. </productMenu>
  4793. <productMenu id="bluetoothIntercom"
  4794. type="1" >
  4795. </productMenu>
  4796. <productMenu id="phone"
  4797. type="2" >
  4798. </productMenu>
  4799. <productMenu id="fmradio"
  4800. type="3" >
  4801. </productMenu>
  4802. <productMenu id="deviceSetting"
  4803. type="1"
  4804. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  4805. <productMenuURL version="1.9"
  4806. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  4807. />
  4808. <productMenuURL version="1.0.1"
  4809. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  4810. />
  4811. </productMenu>
  4812. <productMenu id="quickGuide"
  4813. type="1"
  4814. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  4815. size="795KB" >
  4816. </productMenu>
  4817. <productMenu id="userGuide"
  4818. type="1"
  4819. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  4820. size="1.87MB" >
  4821. </productMenu>
  4822. <productID id="5524"
  4823. />
  4824. <productGroupable type="0"
  4825. />
  4826. </product>
  4827. <product id="Cavalry_Lite"
  4828. name="Cavalry Lite"
  4829. series="Helmet"
  4830. latestVersion="1.0.2"
  4831. show = "1" >
  4832. <productMenu id="protocol"
  4833. type="0">
  4834. </productMenu>
  4835. <productMenu id="sip"
  4836. type="1" >
  4837. </productMenu>
  4838. <productMenu id="bluetoothIntercom"
  4839. type="1" >
  4840. </productMenu>
  4841. <productMenu id="phone"
  4842. type="2" >
  4843. </productMenu>
  4844. <productMenu id="fmradio"
  4845. type="3" >
  4846. </productMenu>
  4847. <productMenu id="deviceSetting"
  4848. type="1"
  4849. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  4850. </productMenu>
  4851. <productMenu id="userGuide"
  4852. type="1"
  4853. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  4854. size="1.74MB" >
  4855. </productMenu>
  4856. <productID id="5536"
  4857. />
  4858. <productGroupable type="0"
  4859. />
  4860. </product>
  4861. <product id="SF4"
  4862. name="SF4"
  4863. series="SF"
  4864. latestVersion="1.1.5"
  4865. show = "-1" >
  4866. <productMenu id="protocol"
  4867. type="1"
  4868. url="3">
  4869. </productMenu>
  4870. <productMenu id="sip"
  4871. type="1" >
  4872. </productMenu>
  4873. <productMenu id="bluetoothIntercom"
  4874. type="1" >
  4875. </productMenu>
  4876. <productMenu id="phone"
  4877. type="1" >
  4878. </productMenu>
  4879. <productMenu id="music"
  4880. type="1" >
  4881. </productMenu>
  4882. <productMenu id="fmradio"
  4883. type="1" >
  4884. </productMenu>
  4885. <productMenu id="deviceSetting"
  4886. type="1"
  4887. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4888. <productMenuURL version="1.0.1"
  4889. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  4890. />
  4891. </productMenu>
  4892. <productMenu id="quickGuide"
  4893. type="1"
  4894. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  4895. size="607KB" >
  4896. </productMenu>
  4897. <productMenu id="userGuide"
  4898. type="1"
  4899. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  4900. size="1.91MB" >
  4901. </productMenu>
  4902. <productMenu id="volume"
  4903. type="4" >
  4904. </productMenu>
  4905. <productID id="5414"
  4906. />
  4907. <productGroupable type="0"
  4908. />
  4909. </product>
  4910. <product id="SF4"
  4911. name="SF4"
  4912. series="SF"
  4913. latestVersion="3.4.2"
  4914. show = "1" >
  4915. <productMenu id="protocol"
  4916. type="2" >
  4917. </productMenu>
  4918. <productMenu id="sip"
  4919. type="1" >
  4920. </productMenu>
  4921. <productMenu id="bluetoothIntercom"
  4922. type="1" >
  4923. </productMenu>
  4924. <productMenu id="phone"
  4925. type="1" >
  4926. </productMenu>
  4927. <productMenu id="music"
  4928. type="1" >
  4929. </productMenu>
  4930. <productMenu id="fmradio"
  4931. type="1" >
  4932. </productMenu>
  4933. <productMenu id="deviceSetting"
  4934. type="1"
  4935. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  4936. <productMenuURL version="3.0"
  4937. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  4938. />
  4939. </productMenu>
  4940. <productMenu id="quickGuide"
  4941. type="0"
  4942. url=""
  4943. size="934KB" >
  4944. </productMenu>
  4945. <productMenu id="userGuide"
  4946. type="1"
  4947. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  4948. size="1.14MB" >
  4949. </productMenu>
  4950. <productMenu id="volume"
  4951. type="15" >
  4952. </productMenu>
  4953. <productID id="3370"
  4954. />
  4955. <productGroupable type="0"
  4956. />
  4957. </product>
  4958. <product id="SF2"
  4959. name="SF2"
  4960. series="SF"
  4961. latestVersion="1.2.1"
  4962. show = "-1" >
  4963. <productMenu id="protocol"
  4964. type="1"
  4965. url="2">
  4966. </productMenu>
  4967. <productMenu id="sip"
  4968. type="1" >
  4969. </productMenu>
  4970. <productMenu id="bluetoothIntercom"
  4971. type="1" >
  4972. </productMenu>
  4973. <productMenu id="phone"
  4974. type="1" >
  4975. </productMenu>
  4976. <productMenu id="music"
  4977. type="1" >
  4978. </productMenu>
  4979. <productMenu id="fmradio"
  4980. type="1" >
  4981. </productMenu>
  4982. <productMenu id="deviceSetting"
  4983. type="1"
  4984. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4985. <productMenuURL version="1.0.1"
  4986. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  4987. />
  4988. </productMenu>
  4989. <productMenu id="quickGuide"
  4990. type="1"
  4991. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  4992. size="607KB" >
  4993. </productMenu>
  4994. <productMenu id="userGuide"
  4995. type="1"
  4996. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  4997. size="1.91MB" >
  4998. </productMenu>
  4999. <productMenu id="volume"
  5000. type="4" >
  5001. </productMenu>
  5002. <productID id="5412"
  5003. />
  5004. <productGroupable type="0"
  5005. />
  5006. </product>
  5007. <product id="SF2"
  5008. name="SF2"
  5009. series="SF"
  5010. latestVersion="3.3.2"
  5011. show = "1" >
  5012. <productMenu id="protocol"
  5013. type="2" >
  5014. </productMenu>
  5015. <productMenu id="sip"
  5016. type="1" >
  5017. </productMenu>
  5018. <productMenu id="bluetoothIntercom"
  5019. type="1" >
  5020. </productMenu>
  5021. <productMenu id="phone"
  5022. type="1" >
  5023. </productMenu>
  5024. <productMenu id="music"
  5025. type="1" >
  5026. </productMenu>
  5027. <productMenu id="fmradio"
  5028. type="0" >
  5029. </productMenu>
  5030. <productMenu id="deviceSetting"
  5031. type="1"
  5032. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  5033. <productMenuURL version="3.0"
  5034. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  5035. />
  5036. </productMenu>
  5037. <productMenu id="quickGuide"
  5038. type="0"
  5039. url=""
  5040. size="934KB" >
  5041. </productMenu>
  5042. <productMenu id="userGuide"
  5043. type="1"
  5044. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  5045. size="1.14MB" >
  5046. </productMenu>
  5047. <productMenu id="volume"
  5048. type="15" >
  5049. </productMenu>
  5050. <productID id="3360"
  5051. />
  5052. <productGroupable type="0"
  5053. />
  5054. </product>
  5055. <product id="SF1"
  5056. name="SF1"
  5057. series="SF"
  5058. latestVersion="2.0.5"
  5059. show = "-1" >
  5060. <productMenu id="protocol"
  5061. type="1"
  5062. url="1">
  5063. </productMenu>
  5064. <productMenu id="sip"
  5065. type="1" >
  5066. </productMenu>
  5067. <productMenu id="bluetoothIntercom"
  5068. type="1" >
  5069. <productMenuType version="1.1"
  5070. type="0"
  5071. />
  5072. </productMenu>
  5073. <productMenu id="phone"
  5074. type="1" >
  5075. </productMenu>
  5076. <productMenu id="music"
  5077. type="1" >
  5078. </productMenu>
  5079. <productMenu id="deviceSetting"
  5080. type="1"
  5081. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  5082. <productMenuURL version="1.1"
  5083. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  5084. />
  5085. <productMenuURL version="1.0"
  5086. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  5087. />
  5088. </productMenu>
  5089. <productMenu id="quickGuide"
  5090. type="1"
  5091. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  5092. size="401KB" >
  5093. </productMenu>
  5094. <productMenu id="userGuide"
  5095. type="1"
  5096. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  5097. size="1.91MB" >
  5098. </productMenu>
  5099. <productMenu id="volume"
  5100. type="3" >
  5101. </productMenu>
  5102. <productID id="5410"
  5103. />
  5104. <productGroupable type="0"
  5105. />
  5106. </product>
  5107. <product id="SF1"
  5108. name="SF1"
  5109. series="SF"
  5110. latestVersion="3.3.2"
  5111. show = "1" >
  5112. <productMenu id="protocol"
  5113. type="2" >
  5114. </productMenu>
  5115. <productMenu id="sip"
  5116. type="1" >
  5117. </productMenu>
  5118. <productMenu id="bluetoothIntercom"
  5119. type="1" >
  5120. </productMenu>
  5121. <productMenu id="phone"
  5122. type="1" >
  5123. </productMenu>
  5124. <productMenu id="music"
  5125. type="1" >
  5126. </productMenu>
  5127. <productMenu id="fmradio"
  5128. type="0" >
  5129. </productMenu>
  5130. <productMenu id="deviceSetting"
  5131. type="1"
  5132. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  5133. <productMenuURL version="3.0"
  5134. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  5135. />
  5136. </productMenu>
  5137. <productMenu id="quickGuide"
  5138. type="0"
  5139. url=""
  5140. size="934KB" >
  5141. </productMenu>
  5142. <productMenu id="userGuide"
  5143. type="1"
  5144. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  5145. size="1.14MB" >
  5146. </productMenu>
  5147. <productMenu id="volume"
  5148. type="15" >
  5149. </productMenu>
  5150. <productID id="3350"
  5151. />
  5152. <productGroupable type="0"
  5153. />
  5154. </product>
  5155. <product id="SFR"
  5156. name="SFR"
  5157. series="SF"
  5158. latestVersion="1.1.1"
  5159. show = "1" >
  5160. <productMenu id="protocol"
  5161. type="1"
  5162. url="3">
  5163. </productMenu>
  5164. <productMenu id="sip"
  5165. type="1" >
  5166. </productMenu>
  5167. <productMenu id="bluetoothIntercom"
  5168. type="1" >
  5169. </productMenu>
  5170. <productMenu id="phone"
  5171. type="1" >
  5172. </productMenu>
  5173. <productMenu id="music"
  5174. type="1" >
  5175. </productMenu>
  5176. <productMenu id="fmradio"
  5177. type="1" >
  5178. </productMenu>
  5179. <productMenu id="deviceSetting"
  5180. type="1"
  5181. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  5182. </productMenu>
  5183. <productMenu id="quickGuide"
  5184. type="1"
  5185. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  5186. size="607KB" >
  5187. </productMenu>
  5188. <productMenu id="userGuide"
  5189. type="1"
  5190. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  5191. size="1.91MB" >
  5192. </productMenu>
  5193. <productMenu id="volume"
  5194. type="4" >
  5195. </productMenu>
  5196. <productID id="5418"
  5197. />
  5198. <productGroupable type="0"
  5199. />
  5200. </product>
  5201. <product id="20S"
  5202. name="20S"
  5203. series="20"
  5204. latestVersion="2.2.3"
  5205. show = "1" >
  5206. <productMenu id="protocol"
  5207. type="0">
  5208. </productMenu>
  5209. <productMenu id="wa"
  5210. type="5" >
  5211. </productMenu>
  5212. <productMenu id="sip"
  5213. type="1" >
  5214. <productMenuType version="1.0"
  5215. type="0"
  5216. />
  5217. </productMenu>
  5218. <productMenu id="bluetoothIntercom"
  5219. type="1" >
  5220. <productMenuType version="1.0"
  5221. type="0"
  5222. />
  5223. </productMenu>
  5224. <productMenu id="intercomSetting"
  5225. type="1" >
  5226. </productMenu>
  5227. <productMenu id="phone"
  5228. type="2" >
  5229. </productMenu>
  5230. <productMenu id="fmradio"
  5231. type="3" >
  5232. </productMenu>
  5233. <productMenu id="deviceSetting"
  5234. type="1"
  5235. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  5236. <productMenuURL version="2.0.2"
  5237. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  5238. />
  5239. <productMenuURL version="1.5"
  5240. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  5241. />
  5242. <productMenuURL version="1.4.1"
  5243. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  5244. />
  5245. <productMenuURL version="1.1"
  5246. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  5247. />
  5248. <productMenuURL version="1.0"
  5249. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  5250. />
  5251. </productMenu>
  5252. <productMenu id="quickGuide"
  5253. type="0"
  5254. url=""
  5255. size="264KB" >
  5256. </productMenu>
  5257. <productMenu id="userGuide"
  5258. type="1"
  5259. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  5260. size="3.09MB" >
  5261. </productMenu>
  5262. <productID id="4210"
  5263. />
  5264. <productGroupable type="1"
  5265. />
  5266. </product>
  5267. <product id="20S_EVO"
  5268. name="20S EVO"
  5269. series="20"
  5270. latestVersion="2.2.3"
  5271. show = "1" >
  5272. <productMenu id="protocol"
  5273. type="0">
  5274. </productMenu>
  5275. <productMenu id="wa"
  5276. type="5" >
  5277. </productMenu>
  5278. <productMenu id="sip"
  5279. type="1" >
  5280. <productMenuType version="1.0"
  5281. type="0"
  5282. />
  5283. </productMenu>
  5284. <productMenu id="bluetoothIntercom"
  5285. type="1" >
  5286. <productMenuType version="1.0"
  5287. type="0"
  5288. />
  5289. </productMenu>
  5290. <productMenu id="intercomSetting"
  5291. type="1" >
  5292. </productMenu>
  5293. <productMenu id="phone"
  5294. type="2" >
  5295. </productMenu>
  5296. <productMenu id="fmradio"
  5297. type="3" >
  5298. </productMenu>
  5299. <productMenu id="deviceSetting"
  5300. type="1"
  5301. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  5302. <productMenuURL version="2.0.2"
  5303. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  5304. />
  5305. <productMenuURL version="1.5"
  5306. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  5307. />
  5308. <productMenuURL version="1.4.1"
  5309. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  5310. />
  5311. <productMenuURL version="1.1"
  5312. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  5313. />
  5314. <productMenuURL version="1.0"
  5315. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  5316. />
  5317. </productMenu>
  5318. <productMenu id="quickGuide"
  5319. type="0"
  5320. url=""
  5321. size="264KB" >
  5322. </productMenu>
  5323. <productMenu id="userGuide"
  5324. type="1"
  5325. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  5326. size="3.09MB" >
  5327. </productMenu>
  5328. <productID id="4210"
  5329. />
  5330. <productProductKey key="16"
  5331. />
  5332. <productGroupable type="1"
  5333. />
  5334. </product>
  5335. <product id="10S"
  5336. name="10S"
  5337. series="10"
  5338. latestVersion="3.0.1"
  5339. show = "1" >
  5340. <productMenu id="protocol"
  5341. type="3" >
  5342. </productMenu>
  5343. <productMenu id="sip"
  5344. type="1" >
  5345. </productMenu>
  5346. <productMenu id="bluetoothIntercom"
  5347. type="1" >
  5348. </productMenu>
  5349. <productMenu id="phone"
  5350. type="1" >
  5351. </productMenu>
  5352. <productMenu id="deviceSetting"
  5353. type="1"
  5354. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  5355. </productMenu>
  5356. <productMenu id="quickGuide"
  5357. type="1"
  5358. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  5359. size="934KB" >
  5360. </productMenu>
  5361. <productMenu id="userGuide"
  5362. type="1"
  5363. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  5364. size="1.14MB" >
  5365. </productMenu>
  5366. <productID id="3380"
  5367. />
  5368. <productGroupable type="0"
  5369. />
  5370. </product>
  5371. <product id="10S"
  5372. name="10S"
  5373. series="10"
  5374. latestVersion="2.1.1"
  5375. show = "-1" >
  5376. <productMenu id="protocol"
  5377. type="0">
  5378. </productMenu>
  5379. <productMenu id="sip"
  5380. type="1" >
  5381. </productMenu>
  5382. <productMenu id="bluetoothIntercom"
  5383. type="1" >
  5384. </productMenu>
  5385. <productMenu id="phone"
  5386. type="2" >
  5387. </productMenu>
  5388. <productMenu id="fmradio"
  5389. type="3" >
  5390. </productMenu>
  5391. <productMenu id="deviceSetting"
  5392. type="1"
  5393. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  5394. <productMenuURL version="1.5"
  5395. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  5396. />
  5397. <productMenuURL version="1.3.1"
  5398. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  5399. />
  5400. </productMenu>
  5401. <productMenu id="quickGuide"
  5402. type="1"
  5403. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  5404. size="310KB" >
  5405. </productMenu>
  5406. <productMenu id="userGuide"
  5407. type="1"
  5408. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  5409. size="1.57MB" >
  5410. </productMenu>
  5411. <productID id="5530"
  5412. />
  5413. <productGroupable type="0"
  5414. />
  5415. </product>
  5416. <product id="10R"
  5417. name="10R"
  5418. series="10"
  5419. latestVersion="2.1.1"
  5420. show = "1" >
  5421. <productMenu id="protocol"
  5422. type="0">
  5423. </productMenu>
  5424. <productMenu id="sip"
  5425. type="1" >
  5426. <productMenuType version="1.0.2"
  5427. type="0"
  5428. />
  5429. </productMenu>
  5430. <productMenu id="bluetoothIntercom"
  5431. type="1" >
  5432. <productMenuType version="1.0.2"
  5433. type="0"
  5434. />
  5435. </productMenu>
  5436. <productMenu id="phone"
  5437. type="2" >
  5438. </productMenu>
  5439. <productMenu id="fmradio"
  5440. type="3" >
  5441. </productMenu>
  5442. <productMenu id="deviceSetting"
  5443. type="1"
  5444. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  5445. <productMenuURL version="1.4"
  5446. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  5447. />
  5448. <productMenuURL version="1.2.1"
  5449. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  5450. />
  5451. <productMenuURL version="1.0.2"
  5452. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  5453. />
  5454. <productMenuURL version="1.0"
  5455. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  5456. />
  5457. </productMenu>
  5458. <productMenu id="quickGuide"
  5459. type="1"
  5460. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  5461. size="400KB" >
  5462. </productMenu>
  5463. <productMenu id="userGuide"
  5464. type="1"
  5465. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  5466. size="2.75MB" >
  5467. </productMenu>
  5468. <productID id="5520"
  5469. />
  5470. <productGroupable type="0"
  5471. />
  5472. </product>
  5473. <product id="10C_EVO"
  5474. name="10C EVO"
  5475. series="10"
  5476. latestVersion="1.7"
  5477. show = "1" >
  5478. <productMenu id="protocol"
  5479. type="0">
  5480. </productMenu>
  5481. <productMenu id="sip"
  5482. type="1" >
  5483. </productMenu>
  5484. <productMenu id="bluetoothIntercom"
  5485. type="1" >
  5486. </productMenu>
  5487. <productMenu id="phone"
  5488. type="2" >
  5489. </productMenu>
  5490. <productMenu id="fmradio"
  5491. type="3" >
  5492. </productMenu>
  5493. <productMenu id="deviceSetting"
  5494. type="1"
  5495. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  5496. <productMenuURL version="1.3.1"
  5497. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  5498. />
  5499. </productMenu>
  5500. <productMenu id="quickGuide"
  5501. type="1"
  5502. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  5503. size="1.32MB" >
  5504. </productMenu>
  5505. <productMenu id="userGuide"
  5506. type="1"
  5507. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  5508. size="1.68MB" >
  5509. </productMenu>
  5510. <productID id="5570"
  5511. />
  5512. <productGroupable type="0"
  5513. />
  5514. </product>
  5515. <product id="10C_Pro"
  5516. name="10C Pro"
  5517. series="10"
  5518. latestVersion="2.7.1"
  5519. show = "1" >
  5520. <productMenu id="protocol"
  5521. type="0">
  5522. </productMenu>
  5523. <productMenu id="sip"
  5524. type="1" >
  5525. </productMenu>
  5526. <productMenu id="bluetoothIntercom"
  5527. type="1" >
  5528. </productMenu>
  5529. <productMenu id="phone"
  5530. type="2" >
  5531. </productMenu>
  5532. <productMenu id="fmradio"
  5533. type="3" >
  5534. </productMenu>
  5535. <productMenu id="deviceSetting"
  5536. type="1"
  5537. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  5538. <productMenuURL version="2.5.1"
  5539. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  5540. />
  5541. <productMenuURL version="1.0"
  5542. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  5543. />
  5544. </productMenu>
  5545. <productMenu id="quickGuide"
  5546. type="1"
  5547. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  5548. size="651KB" >
  5549. </productMenu>
  5550. <productMenu id="userGuide"
  5551. type="1"
  5552. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  5553. size="2.34MB" >
  5554. </productMenu>
  5555. <productID id="5580"
  5556. />
  5557. <productGroupable type="0"
  5558. />
  5559. </product>
  5560. <product id="10C"
  5561. name="10C"
  5562. series="10"
  5563. latestVersion="3.0.4"
  5564. show = "1" >
  5565. <productMenu id="protocol"
  5566. type="0">
  5567. </productMenu>
  5568. <productMenu id="sip"
  5569. type="1" >
  5570. <productMenuType version="1.0.4"
  5571. type="0"
  5572. />
  5573. </productMenu>
  5574. <productMenu id="bluetoothIntercom"
  5575. type="1" >
  5576. <productMenuType version="1.0.4"
  5577. type="0"
  5578. />
  5579. </productMenu>
  5580. <productMenu id="phone"
  5581. type="2" >
  5582. </productMenu>
  5583. <productMenu id="fmradio"
  5584. type="3" >
  5585. </productMenu>
  5586. <productMenu id="deviceSetting"
  5587. type="1"
  5588. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  5589. <productMenuURL version="2.3"
  5590. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  5591. />
  5592. <productMenuURL version="2.1.1"
  5593. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  5594. />
  5595. <productMenuURL version="1.0.4"
  5596. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  5597. />
  5598. <productMenuURL version="1.0.2"
  5599. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  5600. />
  5601. </productMenu>
  5602. <productMenu id="quickGuide"
  5603. type="1"
  5604. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  5605. size="935KB" >
  5606. </productMenu>
  5607. <productMenu id="userGuide"
  5608. type="1"
  5609. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  5610. size="2.82MB" >
  5611. </productMenu>
  5612. <productID id="5510"
  5613. />
  5614. <productGroupable type="0"
  5615. />
  5616. </product>
  5617. <product id="10U_GT_AIR"
  5618. name="10U GT-Air"
  5619. series="10"
  5620. latestVersion="2.0.4"
  5621. show = "1" >
  5622. <productMenu id="protocol"
  5623. type="0">
  5624. </productMenu>
  5625. <productMenu id="sip"
  5626. type="1" >
  5627. <productMenuType version="1.0.2"
  5628. type="0"
  5629. />
  5630. </productMenu>
  5631. <productMenu id="bluetoothIntercom"
  5632. type="1" >
  5633. <productMenuType version="1.0.2"
  5634. type="0"
  5635. />
  5636. </productMenu>
  5637. <productMenu id="phone"
  5638. type="2" >
  5639. </productMenu>
  5640. <productMenu id="fmradio"
  5641. type="3" >
  5642. </productMenu>
  5643. <productMenu id="deviceSetting"
  5644. type="1"
  5645. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5646. <productMenuURL version="1.3.2"
  5647. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5648. />
  5649. <productMenuURL version="1.0.2"
  5650. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5651. />
  5652. </productMenu>
  5653. <productMenu id="quickGuide"
  5654. type="1"
  5655. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  5656. size="685KB" >
  5657. </productMenu>
  5658. <productMenu id="userGuide"
  5659. type="1"
  5660. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5661. size="684KB" >
  5662. </productMenu>
  5663. <productMenu id="connectGuide"
  5664. type="1"
  5665. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5666. size="1.12MB" >
  5667. </productMenu>
  5668. <productID id="5610"
  5669. />
  5670. <productGroupable type="0"
  5671. />
  5672. </product>
  5673. <product id="10U_NEOTEC"
  5674. name="10U Neotec"
  5675. series="10"
  5676. latestVersion="2.0.4"
  5677. show = "1" >
  5678. <productMenu id="protocol"
  5679. type="0">
  5680. </productMenu>
  5681. <productMenu id="sip"
  5682. type="1" >
  5683. <productMenuType version="1.0.2"
  5684. type="0"
  5685. />
  5686. </productMenu>
  5687. <productMenu id="bluetoothIntercom"
  5688. type="1" >
  5689. <productMenuType version="1.0.2"
  5690. type="0"
  5691. />
  5692. </productMenu>
  5693. <productMenu id="phone"
  5694. type="2" >
  5695. </productMenu>
  5696. <productMenu id="fmradio"
  5697. type="3" >
  5698. </productMenu>
  5699. <productMenu id="deviceSetting"
  5700. type="1"
  5701. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5702. <productMenuURL version="1.3.2"
  5703. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5704. />
  5705. <productMenuURL version="1.0.2"
  5706. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5707. />
  5708. </productMenu>
  5709. <productMenu id="quickGuide"
  5710. type="1"
  5711. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  5712. size="689KB" >
  5713. </productMenu>
  5714. <productMenu id="userGuide"
  5715. type="1"
  5716. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5717. size="684KB" >
  5718. </productMenu>
  5719. <productMenu id="connectGuide"
  5720. type="1"
  5721. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5722. size="1.12MB" >
  5723. </productMenu>
  5724. <productID id="5611"
  5725. />
  5726. <productGroupable type="0"
  5727. />
  5728. </product>
  5729. <product id="10U_J_CRUISE"
  5730. name="10U J-Cruise"
  5731. series="10"
  5732. latestVersion="2.0.4"
  5733. show = "1" >
  5734. <productMenu id="protocol"
  5735. type="0">
  5736. </productMenu>
  5737. <productMenu id="sip"
  5738. type="1" >
  5739. <productMenuType version="1.0.2"
  5740. type="0"
  5741. />
  5742. </productMenu>
  5743. <productMenu id="bluetoothIntercom"
  5744. type="1" >
  5745. <productMenuType version="1.0.2"
  5746. type="0"
  5747. />
  5748. </productMenu>
  5749. <productMenu id="phone"
  5750. type="2" >
  5751. </productMenu>
  5752. <productMenu id="fmradio"
  5753. type="3" >
  5754. </productMenu>
  5755. <productMenu id="deviceSetting"
  5756. type="1"
  5757. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5758. <productMenuURL version="1.3.2"
  5759. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5760. />
  5761. <productMenuURL version="1.0.2"
  5762. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5763. />
  5764. </productMenu>
  5765. <productMenu id="quickGuide"
  5766. type="1"
  5767. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  5768. size="686KB" >
  5769. </productMenu>
  5770. <productMenu id="userGuide"
  5771. type="1"
  5772. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5773. size="684KB" >
  5774. </productMenu>
  5775. <productMenu id="connectGuide"
  5776. type="1"
  5777. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5778. size="1.12MB" >
  5779. </productMenu>
  5780. <productID id="5612"
  5781. />
  5782. <productGroupable type="0"
  5783. />
  5784. </product>
  5785. <product id="10U_C3"
  5786. name="10U C3/C3Pro"
  5787. series="10"
  5788. latestVersion="2.0.4"
  5789. show = "1" >
  5790. <productMenu id="protocol"
  5791. type="0">
  5792. </productMenu>
  5793. <productMenu id="sip"
  5794. type="1" >
  5795. <productMenuType version="1.0.2"
  5796. type="0"
  5797. />
  5798. </productMenu>
  5799. <productMenu id="bluetoothIntercom"
  5800. type="1" >
  5801. <productMenuType version="1.0.2"
  5802. type="0"
  5803. />
  5804. </productMenu>
  5805. <productMenu id="phone"
  5806. type="2" >
  5807. </productMenu>
  5808. <productMenu id="fmradio"
  5809. type="3" >
  5810. </productMenu>
  5811. <productMenu id="deviceSetting"
  5812. type="1"
  5813. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5814. <productMenuURL version="1.3.2"
  5815. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5816. />
  5817. <productMenuURL version="1.0.2"
  5818. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5819. />
  5820. </productMenu>
  5821. <productMenu id="quickGuide"
  5822. type="1"
  5823. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  5824. size="199KB" >
  5825. </productMenu>
  5826. <productMenu id="userGuide"
  5827. type="1"
  5828. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5829. size="684KB" >
  5830. </productMenu>
  5831. <productMenu id="connectGuide"
  5832. type="1"
  5833. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5834. size="1.12MB" >
  5835. </productMenu>
  5836. <productID id="5620"
  5837. />
  5838. <productGroupable type="0"
  5839. />
  5840. </product>
  5841. <product id="10U_ARAI"
  5842. name="10U Arai"
  5843. series="10"
  5844. latestVersion="2.0.4"
  5845. show = "1" >
  5846. <productMenu id="protocol"
  5847. type="0">
  5848. </productMenu>
  5849. <productMenu id="sip"
  5850. type="1" >
  5851. <productMenuType version="1.0.2"
  5852. type="0"
  5853. />
  5854. </productMenu>
  5855. <productMenu id="bluetoothIntercom"
  5856. type="1" >
  5857. <productMenuType version="1.0.2"
  5858. type="0"
  5859. />
  5860. </productMenu>
  5861. <productMenu id="phone"
  5862. type="2" >
  5863. </productMenu>
  5864. <productMenu id="fmradio"
  5865. type="3" >
  5866. </productMenu>
  5867. <productMenu id="deviceSetting"
  5868. type="1"
  5869. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5870. <productMenuURL version="1.3.2"
  5871. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5872. />
  5873. <productMenuURL version="1.0.2"
  5874. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5875. />
  5876. </productMenu>
  5877. <productMenu id="quickGuide"
  5878. type="1"
  5879. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  5880. size="689KB" >
  5881. </productMenu>
  5882. <productMenu id="userGuide"
  5883. type="1"
  5884. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5885. size="684KB" >
  5886. </productMenu>
  5887. <productMenu id="connectGuide"
  5888. type="1"
  5889. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5890. size="1.12MB" >
  5891. </productMenu>
  5892. <productID id="5621"
  5893. />
  5894. <productGroupable type="0"
  5895. />
  5896. </product>
  5897. <product id="10Upad"
  5898. name="10Upad"
  5899. series="10"
  5900. latestVersion="2.0.3"
  5901. show = "1" >
  5902. <productMenu id="protocol"
  5903. type="0">
  5904. </productMenu>
  5905. <productMenu id="sip"
  5906. type="1" >
  5907. </productMenu>
  5908. <productMenu id="bluetoothIntercom"
  5909. type="1" >
  5910. </productMenu>
  5911. <productMenu id="phone"
  5912. type="2" >
  5913. </productMenu>
  5914. <productMenu id="fmradio"
  5915. type="3" >
  5916. </productMenu>
  5917. <productMenu id="deviceSetting"
  5918. type="1"
  5919. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  5920. <productMenuURL version="1.0.3"
  5921. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  5922. />
  5923. </productMenu>
  5924. <productMenu id="quickGuide"
  5925. type="1"
  5926. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  5927. size="615KB" >
  5928. </productMenu>
  5929. <productMenu id="userGuide"
  5930. type="1"
  5931. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  5932. size="0.99MB" >
  5933. </productMenu>
  5934. <productID id="6210"
  5935. />
  5936. <productGroupable type="0"
  5937. />
  5938. </product>
  5939. <product id="5S"
  5940. name="5S"
  5941. series="5"
  5942. latestVersion="2.2.1"
  5943. show = "1" >
  5944. <productMenu id="protocol"
  5945. type="3" >
  5946. </productMenu>
  5947. <productMenu id="sip"
  5948. type="1" >
  5949. </productMenu>
  5950. <productMenu id="bluetoothIntercom"
  5951. type="1" >
  5952. </productMenu>
  5953. <productMenu id="phone"
  5954. type="1" >
  5955. </productMenu>
  5956. <productMenu id="fmradio"
  5957. type="0" >
  5958. </productMenu>
  5959. <productMenu id="deviceSetting"
  5960. type="1"
  5961. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  5962. </productMenu>
  5963. <productMenu id="quickGuide"
  5964. type="0"
  5965. url=""
  5966. size="934KB" >
  5967. </productMenu>
  5968. <productMenu id="userGuide"
  5969. type="1"
  5970. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  5971. size="1.14MB" >
  5972. </productMenu>
  5973. <productID id="5590"
  5974. />
  5975. <productGroupable type="0"
  5976. />
  5977. </product>
  5978. <product id="5S"
  5979. name="5S"
  5980. series="5"
  5981. latestVersion="1.2"
  5982. show = "-1" >
  5983. <productMenu id="protocol"
  5984. type="0">
  5985. </productMenu>
  5986. <productMenu id="sip"
  5987. type="1" >
  5988. </productMenu>
  5989. <productMenu id="bluetoothIntercom"
  5990. type="1" >
  5991. </productMenu>
  5992. <productMenu id="phone"
  5993. type="2" >
  5994. </productMenu>
  5995. <productMenu id="fmradio"
  5996. type="0" >
  5997. </productMenu>
  5998. <productMenu id="deviceSetting"
  5999. type="1"
  6000. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  6001. </productMenu>
  6002. <productMenu id="quickGuide"
  6003. type="0"
  6004. url=""
  6005. size="970KB" >
  6006. </productMenu>
  6007. <productMenu id="userGuide"
  6008. type="1"
  6009. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  6010. size="1.26MB" >
  6011. </productMenu>
  6012. <productID id="5534"
  6013. />
  6014. <productGroupable type="0"
  6015. />
  6016. </product>
  6017. <product id="5S"
  6018. name="5S"
  6019. series="5"
  6020. latestVersion="3.0.1"
  6021. show = "-1" >
  6022. <productMenu id="protocol"
  6023. type="0">
  6024. </productMenu>
  6025. <productMenu id="sip"
  6026. type="1" >
  6027. </productMenu>
  6028. <productMenu id="bluetoothIntercom"
  6029. type="1" >
  6030. </productMenu>
  6031. <productMenu id="phone"
  6032. type="2" >
  6033. </productMenu>
  6034. <productMenu id="fmradio"
  6035. type="0" >
  6036. </productMenu>
  6037. <productMenu id="deviceSetting"
  6038. type="1"
  6039. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  6040. </productMenu>
  6041. <productMenu id="quickGuide"
  6042. type="0"
  6043. url=""
  6044. size="970KB" >
  6045. </productMenu>
  6046. <productMenu id="userGuide"
  6047. type="1"
  6048. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  6049. size="1.26MB" >
  6050. </productMenu>
  6051. <productID id="5538"
  6052. />
  6053. <productGroupable type="0"
  6054. />
  6055. </product>
  6056. <product id="3SPLUS"
  6057. name="3S PLUS"
  6058. series="3"
  6059. latestVersion="2.2"
  6060. show = "1" >
  6061. <productMenu id="protocol"
  6062. type="3" >
  6063. </productMenu>
  6064. <productMenu id="sip"
  6065. type="1" >
  6066. </productMenu>
  6067. <productMenu id="bluetoothIntercom"
  6068. type="1" >
  6069. </productMenu>
  6070. <productMenu id="deviceSetting"
  6071. type="1"
  6072. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  6073. <productMenuURL version="2.2.1"
  6074. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  6075. />
  6076. </productMenu>
  6077. <productMenu id="quickGuide"
  6078. type="1"
  6079. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  6080. size="344KB" >
  6081. </productMenu>
  6082. <productMenu id="userGuide"
  6083. type="1"
  6084. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  6085. size="1.14MB" >
  6086. </productMenu>
  6087. <productMenu id="connectGuide"
  6088. type="1"
  6089. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  6090. size="1.12MB" >
  6091. </productMenu>
  6092. <productID id="4023"
  6093. />
  6094. <productGroupable type="0"
  6095. />
  6096. </product>
  6097. <product id="3SPLUS"
  6098. name="3S PLUS"
  6099. series="3"
  6100. latestVersion="1.1"
  6101. show = "-1" >
  6102. <productMenu id="protocol"
  6103. type="0">
  6104. </productMenu>
  6105. <productMenu id="sip"
  6106. type="1" >
  6107. </productMenu>
  6108. <productMenu id="bluetoothIntercom"
  6109. type="1" >
  6110. </productMenu>
  6111. <productMenu id="deviceSetting"
  6112. type="1"
  6113. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  6114. </productMenu>
  6115. <productMenu id="quickGuide"
  6116. type="1"
  6117. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  6118. size="842KB" >
  6119. </productMenu>
  6120. <productMenu id="userGuide"
  6121. type="1"
  6122. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  6123. size="1.02MB" >
  6124. </productMenu>
  6125. <productID id="6320"
  6126. />
  6127. <productGroupable type="0"
  6128. />
  6129. </product>
  6130. <product id="iCon"
  6131. name="iCon"
  6132. series="50"
  6133. latestVersion="1.0.1"
  6134. show = "0" >
  6135. <productMenu id="protocol"
  6136. type="2" >
  6137. </productMenu>
  6138. <productMenu id="alexa"
  6139. type="0" >
  6140. </productMenu>
  6141. <productMenu id="wa"
  6142. type="0" >
  6143. </productMenu>
  6144. <productMenu id="sip"
  6145. type="1" >
  6146. </productMenu>
  6147. <productMenu id="led"
  6148. type="3" >
  6149. </productMenu>
  6150. <productMenu id="meshIntercom"
  6151. type="20" >
  6152. </productMenu>
  6153. <productMenu id="meshIntercom+"
  6154. type="3"
  6155. url="0" >
  6156. <productMenuType version="1.0.9"
  6157. type="2"
  6158. />
  6159. </productMenu>
  6160. <productMenu id="bluetoothIntercom"
  6161. type="1" >
  6162. </productMenu>
  6163. <productMenu id="phone"
  6164. type="1" >
  6165. </productMenu>
  6166. <productMenu id="music"
  6167. type="1" >
  6168. </productMenu>
  6169. <productMenu id="fmradio"
  6170. type="1" >
  6171. </productMenu>
  6172. <productMenu id="deviceSetting"
  6173. type="1"
  6174. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  6175. <productMenuURL version="1.0.9"
  6176. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  6177. />
  6178. </productMenu>
  6179. <productMenu id="quickGuide"
  6180. type="1"
  6181. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  6182. size="344KB" >
  6183. </productMenu>
  6184. <productMenu id="userGuide"
  6185. type="1"
  6186. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.0.0_en_220830.pdf"
  6187. size="3.41MB" >
  6188. </productMenu>
  6189. <productMenu id="volume"
  6190. type="11" >
  6191. </productMenu>
  6192. <productMenu id="battery"
  6193. type="1" >
  6194. </productMenu>
  6195. <productID id="3900"
  6196. />
  6197. <productGroupable type="0"
  6198. />
  6199. </product>
  6200. <product id="HD50S"
  6201. name="H-D Audio 50S"
  6202. series="50"
  6203. latestVersion="1.0.1"
  6204. show = "-1" >
  6205. <productMenu id="protocol"
  6206. type="2" >
  6207. </productMenu>
  6208. <productMenu id="alexa"
  6209. type="0" >
  6210. </productMenu>
  6211. <productMenu id="ota"
  6212. type="0"
  6213. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  6214. size="1150234" >
  6215. </productMenu>
  6216. <productMenu id="wa"
  6217. type="1" >
  6218. </productMenu>
  6219. <productMenu id="sip"
  6220. type="1" >
  6221. </productMenu>
  6222. <productMenu id="meshIntercom"
  6223. type="20" >
  6224. </productMenu>
  6225. <productMenu id="bluetoothIntercom"
  6226. type="1" >
  6227. </productMenu>
  6228. <productMenu id="phone"
  6229. type="1" >
  6230. </productMenu>
  6231. <productMenu id="music"
  6232. type="1" >
  6233. </productMenu>
  6234. <productMenu id="fmradio"
  6235. type="1" >
  6236. </productMenu>
  6237. <productMenu id="deviceSetting"
  6238. type="1"
  6239. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  6240. </productMenu>
  6241. <productMenu id="quickGuide"
  6242. type="1"
  6243. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  6244. size="934KB" >
  6245. </productMenu>
  6246. <productMenu id="userGuide"
  6247. type="1"
  6248. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  6249. size="1.14MB" >
  6250. </productMenu>
  6251. <productMenu id="volume"
  6252. type="11" >
  6253. </productMenu>
  6254. <productMenu id="battery"
  6255. type="1" >
  6256. </productMenu>
  6257. <productID id="3156"
  6258. />
  6259. <productGroupable type="0"
  6260. />
  6261. </product>
  6262. <product id="HD50S"
  6263. name="H-D Audio 50S"
  6264. series="50"
  6265. latestVersion="2.0.2"
  6266. show = "0" >
  6267. <productMenu id="protocol"
  6268. type="2" >
  6269. </productMenu>
  6270. <productMenu id="alexa"
  6271. type="0" >
  6272. </productMenu>
  6273. <productMenu id="ota"
  6274. type="0"
  6275. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  6276. size="1150234" >
  6277. </productMenu>
  6278. <productMenu id="wa"
  6279. type="1" >
  6280. </productMenu>
  6281. <productMenu id="sip"
  6282. type="1" >
  6283. </productMenu>
  6284. <productMenu id="meshIntercom"
  6285. type="20" >
  6286. </productMenu>
  6287. <productMenu id="bluetoothIntercom"
  6288. type="1" >
  6289. </productMenu>
  6290. <productMenu id="phone"
  6291. type="1" >
  6292. </productMenu>
  6293. <productMenu id="music"
  6294. type="1" >
  6295. </productMenu>
  6296. <productMenu id="fmradio"
  6297. type="1" >
  6298. </productMenu>
  6299. <productMenu id="deviceSetting"
  6300. type="1"
  6301. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  6302. </productMenu>
  6303. <productMenu id="quickGuide"
  6304. type="1"
  6305. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  6306. size="934KB" >
  6307. </productMenu>
  6308. <productMenu id="userGuide"
  6309. type="1"
  6310. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  6311. size="1.14MB" >
  6312. </productMenu>
  6313. <productMenu id="volume"
  6314. type="11" >
  6315. </productMenu>
  6316. <productMenu id="battery"
  6317. type="1" >
  6318. </productMenu>
  6319. <productID id="3213"
  6320. />
  6321. <productGroupable type="0"
  6322. />
  6323. </product>
  6324. <product id="HD50C"
  6325. name="H-D Audio 50C"
  6326. series="50"
  6327. latestVersion="1.0.1"
  6328. show = "0" >
  6329. <productMenu id="protocol"
  6330. type="2" >
  6331. </productMenu>
  6332. <productMenu id="ota"
  6333. type="0" >
  6334. </productMenu>
  6335. <productMenu id="wa"
  6336. type="1" >
  6337. </productMenu>
  6338. <productMenu id="sip"
  6339. type="1" >
  6340. </productMenu>
  6341. <productMenu id="meshIntercom"
  6342. type="20" >
  6343. </productMenu>
  6344. <productMenu id="bluetoothIntercom"
  6345. type="1" >
  6346. </productMenu>
  6347. <productMenu id="phone"
  6348. type="1" >
  6349. </productMenu>
  6350. <productMenu id="music"
  6351. type="1" >
  6352. </productMenu>
  6353. <productMenu id="fmradio"
  6354. type="1" >
  6355. </productMenu>
  6356. <productMenu id="deviceSetting"
  6357. type="1"
  6358. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  6359. </productMenu>
  6360. <productMenu id="quickGuide"
  6361. type="1"
  6362. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  6363. size="344KB" >
  6364. </productMenu>
  6365. <productMenu id="userGuide"
  6366. type="1"
  6367. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  6368. size="3.41MB" >
  6369. </productMenu>
  6370. <productMenu id="volume"
  6371. type="11" >
  6372. </productMenu>
  6373. <productMenu id="battery"
  6374. type="1" >
  6375. </productMenu>
  6376. <productID id="3240"
  6377. />
  6378. <productGroupable type="0"
  6379. />
  6380. </product>
  6381. <product id="HD50S"
  6382. name="FURY N04"
  6383. series="Helmet"
  6384. latestVersion="1.0"
  6385. show = "0" >
  6386. <productMenu id="protocol"
  6387. type="2" >
  6388. </productMenu>
  6389. <productMenu id="alexa"
  6390. type="0" >
  6391. </productMenu>
  6392. <productMenu id="ota"
  6393. type="0" >
  6394. </productMenu>
  6395. <productMenu id="wa"
  6396. type="0" >
  6397. </productMenu>
  6398. <productMenu id="meshIntercom"
  6399. type="20" >
  6400. </productMenu>
  6401. <productMenu id="meshIntercom+"
  6402. type="3"
  6403. url="0" >
  6404. <productMenuType version="1.0.9"
  6405. type="2"
  6406. />
  6407. </productMenu>
  6408. <productMenu id="phone"
  6409. type="1" >
  6410. </productMenu>
  6411. <productMenu id="music"
  6412. type="1" >
  6413. </productMenu>
  6414. <productMenu id="fmradio"
  6415. type="1" >
  6416. </productMenu>
  6417. <productMenu id="deviceSetting"
  6418. type="1"
  6419. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  6420. <productMenuURL version="1.0.9"
  6421. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  6422. />
  6423. </productMenu>
  6424. <productMenu id="quickGuide"
  6425. type="1"
  6426. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  6427. size="1.12MB" >
  6428. </productMenu>
  6429. <productMenu id="userGuide"
  6430. type="1"
  6431. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  6432. size="2.0MB" >
  6433. </productMenu>
  6434. <productMenu id="volume"
  6435. type="13" >
  6436. </productMenu>
  6437. <productMenu id="battery"
  6438. type="1" >
  6439. </productMenu>
  6440. <productID id="5553"
  6441. />
  6442. <productGroupable type="0"
  6443. />
  6444. </product>
  6445. <product id="XCOM3Pro"
  6446. name="X-COM3 Pro"
  6447. series="50"
  6448. latestVersion="1.1"
  6449. show = "0" >
  6450. <productMenu id="protocol"
  6451. type="2" >
  6452. </productMenu>
  6453. <productMenu id="alexa"
  6454. type="0" >
  6455. </productMenu>
  6456. <productMenu id="ota"
  6457. type="0" >
  6458. </productMenu>
  6459. <productMenu id="wa"
  6460. type="0" >
  6461. </productMenu>
  6462. <productMenu id="sip"
  6463. type="1" >
  6464. </productMenu>
  6465. <productMenu id="meshIntercom"
  6466. type="30" >
  6467. </productMenu>
  6468. <productMenu id="meshIntercom+"
  6469. type="3"
  6470. url="2" >
  6471. <productMenuType version="1.1"
  6472. type="2"
  6473. />
  6474. </productMenu>
  6475. <productMenu id="waveIntercom"
  6476. type="1" >
  6477. <productMenuType version="1.1"
  6478. type="0"
  6479. />
  6480. </productMenu>
  6481. <productMenu id="bluetoothIntercom"
  6482. type="1" >
  6483. </productMenu>
  6484. <productMenu id="phone"
  6485. type="1" >
  6486. </productMenu>
  6487. <productMenu id="music"
  6488. type="1" >
  6489. </productMenu>
  6490. <productMenu id="fmradio"
  6491. type="1" >
  6492. </productMenu>
  6493. <productMenu id="deviceSetting"
  6494. type="1"
  6495. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  6496. <productMenuURL version="1.1"
  6497. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  6498. />
  6499. </productMenu>
  6500. <productMenu id="quickGuide"
  6501. type="0"
  6502. url=""
  6503. size="344KB" >
  6504. </productMenu>
  6505. <productMenu id="userGuide"
  6506. type="1"
  6507. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  6508. size="3.41MB" >
  6509. </productMenu>
  6510. <productMenu id="volume"
  6511. type="11" >
  6512. </productMenu>
  6513. <productMenu id="battery"
  6514. type="1" >
  6515. </productMenu>
  6516. <productID id="321A"
  6517. />
  6518. <productGroupable type="0"
  6519. />
  6520. </product>
  6521. <product id="XCOM3"
  6522. name="X-COM3"
  6523. series="20"
  6524. latestVersion="1.0"
  6525. show = "0" >
  6526. <productMenu id="protocol"
  6527. type="2" >
  6528. </productMenu>
  6529. <productMenu id="sip"
  6530. type="1" >
  6531. </productMenu>
  6532. <productMenu id="bluetoothIntercom"
  6533. type="1" >
  6534. </productMenu>
  6535. <productMenu id="phone"
  6536. type="1" >
  6537. </productMenu>
  6538. <productMenu id="music"
  6539. type="1" >
  6540. </productMenu>
  6541. <productMenu id="fmradio"
  6542. type="1" >
  6543. </productMenu>
  6544. <productMenu id="deviceSetting"
  6545. type="1"
  6546. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  6547. </productMenu>
  6548. <productMenu id="quickGuide"
  6549. type="0"
  6550. url=""
  6551. size="934KB" >
  6552. </productMenu>
  6553. <productMenu id="userGuide"
  6554. type="1"
  6555. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  6556. size="1.14MB" >
  6557. </productMenu>
  6558. <productMenu id="volume"
  6559. type="15" >
  6560. </productMenu>
  6561. <productID id="3410"
  6562. />
  6563. <productGroupable type="0"
  6564. />
  6565. </product>
  6566. <product id="X-COM2"
  6567. name="X-COM2"
  6568. series="20"
  6569. latestVersion="1.0.5"
  6570. show = "0" >
  6571. <productMenu id="protocol"
  6572. type="0">
  6573. </productMenu>
  6574. <productMenu id="sip"
  6575. type="1" >
  6576. </productMenu>
  6577. <productMenu id="bluetoothIntercom"
  6578. type="1" >
  6579. </productMenu>
  6580. <productMenu id="intercomSetting"
  6581. type="1" >
  6582. </productMenu>
  6583. <productMenu id="phone"
  6584. type="2" >
  6585. </productMenu>
  6586. <productMenu id="fmradio"
  6587. type="3" >
  6588. </productMenu>
  6589. <productMenu id="deviceSetting"
  6590. type="1"
  6591. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6592. </productMenu>
  6593. <productMenu id="quickGuide"
  6594. type="1"
  6595. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  6596. size="796KB" >
  6597. </productMenu>
  6598. <productMenu id="userGuide"
  6599. type="1"
  6600. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  6601. size="1.90MB" >
  6602. </productMenu>
  6603. <productID id="2030"
  6604. />
  6605. <productGroupable type="1"
  6606. />
  6607. </product>
  6608. <product id="AVAABC"
  6609. name="AVA ABC"
  6610. series="SPIDER"
  6611. latestVersion="1.0"
  6612. show = "0" >
  6613. <productMenu id="protocol"
  6614. type="2" >
  6615. </productMenu>
  6616. <productMenu id="alexa"
  6617. type="0" >
  6618. </productMenu>
  6619. <productMenu id="ota"
  6620. type="0" >
  6621. </productMenu>
  6622. <productMenu id="wa"
  6623. type="0" >
  6624. </productMenu>
  6625. <productMenu id="meshIntercom"
  6626. type="20" >
  6627. </productMenu>
  6628. <productMenu id="phone"
  6629. type="1" >
  6630. </productMenu>
  6631. <productMenu id="music"
  6632. type="1" >
  6633. </productMenu>
  6634. <productMenu id="musicSharing"
  6635. type="0" >
  6636. </productMenu>
  6637. <productMenu id="deviceSetting"
  6638. type="1"
  6639. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml" >
  6640. </productMenu>
  6641. <productMenu id="quickGuide"
  6642. type="1"
  6643. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  6644. size="1.12MB" >
  6645. </productMenu>
  6646. <productMenu id="userGuide"
  6647. type="1"
  6648. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  6649. size="2.0MB" >
  6650. </productMenu>
  6651. <productMenu id="volume"
  6652. type="12" >
  6653. </productMenu>
  6654. <productMenu id="battery"
  6655. type="1" >
  6656. </productMenu>
  6657. <productID id="6808"
  6658. />
  6659. <productGroupable type="0"
  6660. />
  6661. </product>
  6662. <product id="ADVANCEPROCOMMP"
  6663. name="ADVANCE PROCOM MP"
  6664. series="Helmet"
  6665. latestVersion="1.1.4"
  6666. latestVersionVoicePrompt="1.0"
  6667. show = "1" >
  6668. <productMenu id="protocol"
  6669. type="2" >
  6670. </productMenu>
  6671. <productMenu id="ota"
  6672. type="0" >
  6673. <otaLanguages>
  6674. <otaLanguage
  6675. id="0"
  6676. name="English"
  6677. package="0"
  6678. />
  6679. <otaLanguage
  6680. id="0"
  6681. name="French"
  6682. package="1"
  6683. />
  6684. <otaLanguage
  6685. id="0"
  6686. name="Spanish"
  6687. package="2"
  6688. />
  6689. <otaLanguage
  6690. id="0"
  6691. name="Italian"
  6692. package="3"
  6693. />
  6694. <otaLanguage
  6695. id="0"
  6696. name="German"
  6697. package="4"
  6698. />
  6699. <otaLanguage
  6700. id="0"
  6701. name="Dutch"
  6702. package="5"
  6703. />
  6704. <otaLanguage
  6705. id="0"
  6706. name="Russian"
  6707. package="6"
  6708. />
  6709. <otaLanguage
  6710. id="0"
  6711. name="Chinese"
  6712. package="7"
  6713. />
  6714. <otaLanguage
  6715. id="0"
  6716. name="Korean"
  6717. package="8"
  6718. />
  6719. <otaLanguage
  6720. id="0"
  6721. name="Japanese"
  6722. package="9"
  6723. />
  6724. <otaLanguage
  6725. id="0"
  6726. name="Finnish"
  6727. package="10"
  6728. />
  6729. <otaLanguage
  6730. id="0"
  6731. name="Polish"
  6732. package="11"
  6733. />
  6734. </otaLanguages>
  6735. <otaPackages>
  6736. <package
  6737. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0.img"
  6738. size="5183988"
  6739. />
  6740. <package
  6741. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-fr-FR.img"
  6742. size="5183988"
  6743. />
  6744. <package
  6745. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-es-ES.img"
  6746. size="5183988"
  6747. />
  6748. <package
  6749. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-it-IT.img"
  6750. size="5183988"
  6751. />
  6752. <package
  6753. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-de-DE.img"
  6754. size="5183988"
  6755. />
  6756. <package
  6757. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-nl-NL.img"
  6758. size="5183988"
  6759. />
  6760. <package
  6761. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-ru-RU.img"
  6762. size="5183988"
  6763. />
  6764. <package
  6765. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-cmn-CN.img"
  6766. size="5183988"
  6767. />
  6768. <package
  6769. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-ko-KR.img"
  6770. size="5183988"
  6771. />
  6772. <package
  6773. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-ja-JP.img"
  6774. size="5183988"
  6775. />
  6776. <package
  6777. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-fi-FI.img"
  6778. size="5183988"
  6779. />
  6780. <package
  6781. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-pl-PL.img"
  6782. size="5183988"
  6783. />
  6784. </otaPackages>
  6785. </productMenu>
  6786. <productMenu id="wa"
  6787. type="0" >
  6788. </productMenu>
  6789. <productMenu id="led"
  6790. type="5" >
  6791. </productMenu>
  6792. <productMenu id="led+"
  6793. type="2"
  6794. url="1" >
  6795. </productMenu>
  6796. <productMenu id="meshIntercom"
  6797. type="30" >
  6798. </productMenu>
  6799. <productMenu id="meshIntercom+"
  6800. type="3"
  6801. url="2" >
  6802. </productMenu>
  6803. <productMenu id="waveIntercom"
  6804. type="1" >
  6805. </productMenu>
  6806. <productMenu id="fmradio"
  6807. type="1" >
  6808. </productMenu>
  6809. <productMenu id="phone"
  6810. type="0" >
  6811. </productMenu>
  6812. <productMenu id="music"
  6813. type="1" >
  6814. </productMenu>
  6815. <productMenu id="musicSharing"
  6816. type="0" >
  6817. </productMenu>
  6818. <productMenu id="deviceSetting"
  6819. type="1"
  6820. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  6821. </productMenu>
  6822. <productMenu id="quickGuide"
  6823. type="0"
  6824. url=""
  6825. size="1.12MB" >
  6826. </productMenu>
  6827. <productMenu id="userGuide"
  6828. type="1"
  6829. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.0.1_en_250709.pdf"
  6830. size="2.0MB" >
  6831. </productMenu>
  6832. <productMenu id="videoGuide"
  6833. type="0"
  6834. url=""
  6835. size="3.41MB" >
  6836. </productMenu>
  6837. <productMenu id="connectGuide"
  6838. type="1"
  6839. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  6840. size="1.12MB" >
  6841. </productMenu>
  6842. <productMenu id="volume"
  6843. type="16" >
  6844. </productMenu>
  6845. <productMenu id="battery"
  6846. type="1" >
  6847. </productMenu>
  6848. <productID id="6A85"
  6849. />
  6850. <productGroupable type="0"
  6851. />
  6852. </product>
  6853. <product id="Triumph_50S"
  6854. name="Triumph 50S"
  6855. series="50"
  6856. latestVersion="1.5"
  6857. show = "0" >
  6858. <productMenu id="protocol"
  6859. type="2" >
  6860. </productMenu>
  6861. <productMenu id="alexa"
  6862. type="0" >
  6863. </productMenu>
  6864. <productMenu id="ota"
  6865. type="0"
  6866. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  6867. size="1150234" >
  6868. </productMenu>
  6869. <productMenu id="wa"
  6870. type="1" >
  6871. </productMenu>
  6872. <productMenu id="sip"
  6873. type="1" >
  6874. </productMenu>
  6875. <productMenu id="meshIntercom"
  6876. type="20" >
  6877. </productMenu>
  6878. <productMenu id="bluetoothIntercom"
  6879. type="1" >
  6880. </productMenu>
  6881. <productMenu id="meshIntercom+"
  6882. type="3"
  6883. url="2" >
  6884. <productMenuType version="1.2.9"
  6885. type="2"
  6886. />
  6887. <productMenuURL version="1.2.9"
  6888. url="0"
  6889. />
  6890. </productMenu>
  6891. <productMenu id="waveIntercom"
  6892. type="1" >
  6893. <productMenuType version="1.2.9"
  6894. type="0"
  6895. />
  6896. </productMenu>
  6897. <productMenu id="phone"
  6898. type="1" >
  6899. </productMenu>
  6900. <productMenu id="music"
  6901. type="1" >
  6902. </productMenu>
  6903. <productMenu id="fmradio"
  6904. type="1" >
  6905. </productMenu>
  6906. <productMenu id="deviceSetting"
  6907. type="1"
  6908. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  6909. <productMenuURL version="1.2.9"
  6910. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  6911. />
  6912. <productMenuURL version="1.0"
  6913. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  6914. />
  6915. </productMenu>
  6916. <productMenu id="quickGuide"
  6917. type="1"
  6918. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  6919. size="934KB" >
  6920. </productMenu>
  6921. <productMenu id="userGuide"
  6922. type="1"
  6923. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  6924. size="1.14MB" >
  6925. </productMenu>
  6926. <productMenu id="volume"
  6927. type="11" >
  6928. </productMenu>
  6929. <productMenu id="battery"
  6930. type="1" >
  6931. </productMenu>
  6932. <productID id="3264"
  6933. />
  6934. <productGroupable type="0"
  6935. />
  6936. </product>
  6937. <product id="RE50S"
  6938. name="RE 50S"
  6939. series="50"
  6940. latestVersion="2.7"
  6941. show = "0" >
  6942. <productMenu id="protocol"
  6943. type="2" >
  6944. </productMenu>
  6945. <productMenu id="alexa"
  6946. type="0" >
  6947. </productMenu>
  6948. <productMenu id="ota"
  6949. type="0"
  6950. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  6951. size="1150234" >
  6952. </productMenu>
  6953. <productMenu id="wa"
  6954. type="1" >
  6955. </productMenu>
  6956. <productMenu id="sip"
  6957. type="1" >
  6958. </productMenu>
  6959. <productMenu id="meshIntercom"
  6960. type="30" >
  6961. </productMenu>
  6962. <productMenu id="meshIntercom+"
  6963. type="3"
  6964. url="2" >
  6965. <productMenuType version="2.5"
  6966. type="2"
  6967. />
  6968. </productMenu>
  6969. <productMenu id="waveIntercom"
  6970. type="1" >
  6971. <productMenuType version="2.5"
  6972. type="0"
  6973. />
  6974. </productMenu>
  6975. <productMenu id="bluetoothIntercom"
  6976. type="1" >
  6977. </productMenu>
  6978. <productMenu id="phone"
  6979. type="1" >
  6980. </productMenu>
  6981. <productMenu id="music"
  6982. type="1" >
  6983. </productMenu>
  6984. <productMenu id="fmradio"
  6985. type="1" >
  6986. </productMenu>
  6987. <productMenu id="deviceSetting"
  6988. type="1"
  6989. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  6990. <productMenuURL version="2.5"
  6991. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  6992. />
  6993. </productMenu>
  6994. <productMenu id="quickGuide"
  6995. type="1"
  6996. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  6997. size="934KB" >
  6998. </productMenu>
  6999. <productMenu id="userGuide"
  7000. type="1"
  7001. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  7002. size="1.14MB" >
  7003. </productMenu>
  7004. <productMenu id="videoGuide"
  7005. type="0"
  7006. url=""
  7007. size="3.41MB" >
  7008. </productMenu>
  7009. <productMenu id="volume"
  7010. type="11" >
  7011. </productMenu>
  7012. <productMenu id="battery"
  7013. type="1" >
  7014. </productMenu>
  7015. <productID id="321C"
  7016. />
  7017. <productGroupable type="0"
  7018. />
  7019. </product>
  7020. <product id="BMW_HELMET_II_U1"
  7021. name="BMW HELMET II U1"
  7022. series="50"
  7023. latestVersion="1.0"
  7024. show = "0" >
  7025. <productMenu id="protocol"
  7026. type="2" >
  7027. </productMenu>
  7028. <productMenu id="alexa"
  7029. type="0" >
  7030. </productMenu>
  7031. <productMenu id="sip"
  7032. type="1" >
  7033. </productMenu>
  7034. <productMenu id="meshIntercom"
  7035. type="20" >
  7036. </productMenu>
  7037. <productMenu id="bluetoothIntercom"
  7038. type="1" >
  7039. </productMenu>
  7040. <productMenu id="bluetoothIntercom2"
  7041. type="1" >
  7042. </productMenu>
  7043. <productMenu id="phone"
  7044. type="1" >
  7045. </productMenu>
  7046. <productMenu id="music"
  7047. type="1" >
  7048. </productMenu>
  7049. <productMenu id="fmradio"
  7050. type="1" >
  7051. </productMenu>
  7052. <productMenu id="deviceSetting"
  7053. type="1"
  7054. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  7055. </productMenu>
  7056. <productMenu id="quickGuide"
  7057. type="1"
  7058. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  7059. size="934KB" >
  7060. </productMenu>
  7061. <productMenu id="userGuide"
  7062. type="1"
  7063. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  7064. size="1.14MB" >
  7065. </productMenu>
  7066. <productMenu id="volume"
  7067. type="11" >
  7068. </productMenu>
  7069. <productMenu id="battery"
  7070. type="1" >
  7071. </productMenu>
  7072. <productID id="3260"
  7073. />
  7074. <productGroupable type="0"
  7075. />
  7076. </product>
  7077. <product id="OUTRUSHR"
  7078. name="CX935"
  7079. series="Helmet"
  7080. latestVersion="1.1.3"
  7081. show = "-1" >
  7082. <productMenu id="protocol"
  7083. type="0">
  7084. </productMenu>
  7085. <productMenu id="sip"
  7086. type="1" >
  7087. </productMenu>
  7088. <productMenu id="bluetoothIntercom"
  7089. type="1" >
  7090. </productMenu>
  7091. <productMenu id="phone"
  7092. type="2" >
  7093. </productMenu>
  7094. <productMenu id="fmradio"
  7095. type="3" >
  7096. </productMenu>
  7097. <productMenu id="deviceSetting"
  7098. type="1"
  7099. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  7100. </productMenu>
  7101. <productMenu id="userGuide"
  7102. type="1"
  7103. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  7104. size="660KB" >
  7105. </productMenu>
  7106. <productID id="5436"
  7107. />
  7108. <productGroupable type="0"
  7109. />
  7110. </product>
  7111. <product id="LSE_01"
  7112. name="LSE-01"
  7113. series="SF"
  7114. latestVersion="1.2.3"
  7115. show = "0" >
  7116. <productMenu id="protocol"
  7117. type="1"
  7118. url="3">
  7119. </productMenu>
  7120. <productMenu id="sip"
  7121. type="1" >
  7122. </productMenu>
  7123. <productMenu id="bluetoothIntercom"
  7124. type="1" >
  7125. </productMenu>
  7126. <productMenu id="phone"
  7127. type="1" >
  7128. </productMenu>
  7129. <productMenu id="music"
  7130. type="1" >
  7131. </productMenu>
  7132. <productMenu id="fmradio"
  7133. type="1" >
  7134. </productMenu>
  7135. <productMenu id="deviceSetting"
  7136. type="1"
  7137. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  7138. <productMenuURL version="1.1"
  7139. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  7140. />
  7141. <productMenuURL version="1.0"
  7142. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  7143. />
  7144. </productMenu>
  7145. <productMenu id="quickGuide"
  7146. type="1"
  7147. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  7148. size="607KB" >
  7149. </productMenu>
  7150. <productMenu id="userGuide"
  7151. type="1"
  7152. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  7153. size="1.91MB" >
  7154. </productMenu>
  7155. <productMenu id="volume"
  7156. type="4" >
  7157. </productMenu>
  7158. <productID id="5416"
  7159. />
  7160. <productGroupable type="0"
  7161. />
  7162. </product>
  7163. <product id="AGV_ARK"
  7164. name="AGV ARK"
  7165. series="SF"
  7166. latestVersion="1.0.3"
  7167. show = "0" >
  7168. <productMenu id="protocol"
  7169. type="1"
  7170. url="3">
  7171. </productMenu>
  7172. <productMenu id="sip"
  7173. type="1" >
  7174. </productMenu>
  7175. <productMenu id="bluetoothIntercom"
  7176. type="1" >
  7177. </productMenu>
  7178. <productMenu id="phone"
  7179. type="1" >
  7180. </productMenu>
  7181. <productMenu id="music"
  7182. type="1" >
  7183. </productMenu>
  7184. <productMenu id="fmradio"
  7185. type="1" >
  7186. </productMenu>
  7187. <productMenu id="deviceSetting"
  7188. type="1"
  7189. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  7190. </productMenu>
  7191. <productMenu id="quickGuide"
  7192. type="1"
  7193. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  7194. size="607KB" >
  7195. </productMenu>
  7196. <productMenu id="userGuide"
  7197. type="1"
  7198. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  7199. size="1.91MB" >
  7200. </productMenu>
  7201. <productMenu id="volume"
  7202. type="4" >
  7203. </productMenu>
  7204. <productID id="5420"
  7205. />
  7206. <productGroupable type="0"
  7207. />
  7208. </product>
  7209. <product id="KLIM_KRIOS"
  7210. name="KLIM Krios"
  7211. series="10"
  7212. latestVersion="1.1.2"
  7213. show = "0" >
  7214. <productMenu id="protocol"
  7215. type="0">
  7216. </productMenu>
  7217. <productMenu id="sip"
  7218. type="1" >
  7219. </productMenu>
  7220. <productMenu id="bluetoothIntercom"
  7221. type="1" >
  7222. </productMenu>
  7223. <productMenu id="phone"
  7224. type="2" >
  7225. </productMenu>
  7226. <productMenu id="fmradio"
  7227. type="3" >
  7228. </productMenu>
  7229. <productMenu id="deviceSetting"
  7230. type="1"
  7231. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  7232. <productMenuURL version="1.0"
  7233. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  7234. />
  7235. </productMenu>
  7236. <productMenu id="quickGuide"
  7237. type="1"
  7238. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  7239. size="649KB" >
  7240. </productMenu>
  7241. <productMenu id="userGuide"
  7242. type="1"
  7243. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  7244. size="1.43MB" >
  7245. </productMenu>
  7246. <productID id="5910"
  7247. />
  7248. <productGroupable type="0"
  7249. />
  7250. </product>
  7251. <product id="POLARIS_SLINGSHOT"
  7252. name="Polaris Slingshot"
  7253. series="10"
  7254. latestVersion="1.1.2"
  7255. show = "0" >
  7256. <productMenu id="protocol"
  7257. type="0">
  7258. </productMenu>
  7259. <productMenu id="sip"
  7260. type="1" >
  7261. </productMenu>
  7262. <productMenu id="bluetoothIntercom"
  7263. type="1" >
  7264. </productMenu>
  7265. <productMenu id="phone"
  7266. type="2" >
  7267. </productMenu>
  7268. <productMenu id="fmradio"
  7269. type="3" >
  7270. </productMenu>
  7271. <productMenu id="deviceSetting"
  7272. type="1"
  7273. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  7274. <productMenuURL version="1.0"
  7275. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  7276. />
  7277. </productMenu>
  7278. <productMenu id="quickGuide"
  7279. type="1"
  7280. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  7281. size="689KB" >
  7282. </productMenu>
  7283. <productMenu id="userGuide"
  7284. type="1"
  7285. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  7286. size="1.43MB" >
  7287. </productMenu>
  7288. <productID id="5920"
  7289. />
  7290. <productGroupable type="0"
  7291. />
  7292. </product>
  7293. <product id="DWO6"
  7294. name="SEDICI DWO6-PRO"
  7295. series="10"
  7296. latestVersion="1.0.2"
  7297. show = "0" >
  7298. <productMenu id="protocol"
  7299. type="0">
  7300. </productMenu>
  7301. <productMenu id="sip"
  7302. type="1" >
  7303. </productMenu>
  7304. <productMenu id="bluetoothIntercom"
  7305. type="1" >
  7306. </productMenu>
  7307. <productMenu id="phone"
  7308. type="2" >
  7309. </productMenu>
  7310. <productMenu id="fmradio"
  7311. type="3" >
  7312. </productMenu>
  7313. <productMenu id="deviceSetting"
  7314. type="1"
  7315. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  7316. </productMenu>
  7317. <productMenu id="quickGuide"
  7318. type="1"
  7319. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  7320. size="529KB" >
  7321. </productMenu>
  7322. <productMenu id="userGuide"
  7323. type="1"
  7324. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  7325. size="4.09MB" >
  7326. </productMenu>
  7327. <productID id="6112"
  7328. />
  7329. <productGroupable type="0"
  7330. />
  7331. </product>
  7332. <product id="DWO6A"
  7333. name="SEDICI DWO-6"
  7334. series="10"
  7335. latestVersion="1.0.2"
  7336. show = "0" >
  7337. <productMenu id="protocol"
  7338. type="0">
  7339. </productMenu>
  7340. <productMenu id="sip"
  7341. type="1" >
  7342. </productMenu>
  7343. <productMenu id="bluetoothIntercom"
  7344. type="1" >
  7345. </productMenu>
  7346. <productMenu id="phone"
  7347. type="2" >
  7348. </productMenu>
  7349. <productMenu id="fmradio"
  7350. type="3" >
  7351. </productMenu>
  7352. <productMenu id="deviceSetting"
  7353. type="1"
  7354. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  7355. </productMenu>
  7356. <productMenu id="quickGuide"
  7357. type="1"
  7358. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  7359. size="522KB" >
  7360. </productMenu>
  7361. <productMenu id="userGuide"
  7362. type="1"
  7363. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  7364. size="2.71MB" >
  7365. </productMenu>
  7366. <productID id="6114"
  7367. />
  7368. <productGroupable type="0"
  7369. />
  7370. </product>
  7371. <product id="3SPLUS"
  7372. name="ZILL"
  7373. series="3"
  7374. latestVersion="1.0.4"
  7375. show = "0" >
  7376. <productMenu id="protocol"
  7377. type="0">
  7378. </productMenu>
  7379. <productMenu id="sip"
  7380. type="1" >
  7381. </productMenu>
  7382. <productMenu id="bluetoothIntercom"
  7383. type="1" >
  7384. </productMenu>
  7385. <productMenu id="deviceSetting"
  7386. type="1"
  7387. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  7388. </productMenu>
  7389. <productMenu id="quickGuide"
  7390. type="1"
  7391. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  7392. size="842KB" >
  7393. </productMenu>
  7394. <productMenu id="userGuide"
  7395. type="1"
  7396. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  7397. size="1.02MB" >
  7398. </productMenu>
  7399. <productID id="6335"
  7400. />
  7401. <productGroupable type="0"
  7402. />
  7403. </product>
  7404. <product id="HD50S"
  7405. name="Boom! Audio 30K"
  7406. series="30"
  7407. latestVersion="3.4"
  7408. show = "0" >
  7409. <productMenu id="protocol"
  7410. type="1"
  7411. url="0">
  7412. </productMenu>
  7413. <productMenu id="wa"
  7414. type="0" >
  7415. </productMenu>
  7416. <productMenu id="sip"
  7417. type="1" >
  7418. </productMenu>
  7419. <productMenu id="meshIntercom"
  7420. type="20" >
  7421. <productMenuType version="2.9.9"
  7422. type="10"
  7423. />
  7424. </productMenu>
  7425. <productMenu id="bluetoothIntercom"
  7426. type="1" >
  7427. </productMenu>
  7428. <productMenu id="phone"
  7429. type="1" >
  7430. </productMenu>
  7431. <productMenu id="music"
  7432. type="1" >
  7433. </productMenu>
  7434. <productMenu id="fmradio"
  7435. type="1" >
  7436. </productMenu>
  7437. <productMenu id="deviceSetting"
  7438. type="1"
  7439. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  7440. <productMenuURL version="3.2"
  7441. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  7442. />
  7443. <productMenuURL version="3.0"
  7444. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  7445. />
  7446. <productMenuURL version="2.2"
  7447. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  7448. />
  7449. </productMenu>
  7450. <productMenu id="quickGuide"
  7451. type="1"
  7452. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  7453. size="1.06MB" >
  7454. </productMenu>
  7455. <productMenu id="userGuide"
  7456. type="1"
  7457. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  7458. size="3.15MB" >
  7459. </productMenu>
  7460. <productMenu id="volume"
  7461. type="1" >
  7462. </productMenu>
  7463. <productID id="3112"
  7464. />
  7465. <productGroupable type="0"
  7466. />
  7467. </product>
  7468. <product id="HD50S"
  7469. name="Boom! Audio N02"
  7470. series="30"
  7471. latestVersion="3.1"
  7472. show = "0" >
  7473. <productMenu id="protocol"
  7474. type="1"
  7475. url="0">
  7476. </productMenu>
  7477. <productMenu id="wa"
  7478. type="2" >
  7479. </productMenu>
  7480. <productMenu id="sip"
  7481. type="1" >
  7482. </productMenu>
  7483. <productMenu id="meshIntercom"
  7484. type="20" >
  7485. <productMenuType version="2.9.9"
  7486. type="10"
  7487. />
  7488. </productMenu>
  7489. <productMenu id="bluetoothIntercom"
  7490. type="1" >
  7491. </productMenu>
  7492. <productMenu id="phone"
  7493. type="1" >
  7494. </productMenu>
  7495. <productMenu id="music"
  7496. type="1" >
  7497. </productMenu>
  7498. <productMenu id="fmradio"
  7499. type="1" >
  7500. </productMenu>
  7501. <productMenu id="deviceSetting"
  7502. type="1"
  7503. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  7504. <productMenuURL version="2.2"
  7505. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  7506. />
  7507. </productMenu>
  7508. <productMenu id="quickGuide"
  7509. type="1"
  7510. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  7511. size="1.06MB" >
  7512. </productMenu>
  7513. <productMenu id="userGuide"
  7514. type="1"
  7515. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  7516. size="3.15MB" >
  7517. </productMenu>
  7518. <productMenu id="volume"
  7519. type="2" >
  7520. </productMenu>
  7521. <productID id="3114"
  7522. />
  7523. <productGroupable type="0"
  7524. />
  7525. </product>
  7526. <product id="HD50S"
  7527. name="Boom Audio 20S"
  7528. series="50"
  7529. latestVersion="2.5.2"
  7530. show = "0" >
  7531. <productMenu id="protocol"
  7532. type="0">
  7533. </productMenu>
  7534. <productMenu id="sip"
  7535. type="1" >
  7536. <productMenuType version="1.0"
  7537. type="0"
  7538. />
  7539. </productMenu>
  7540. <productMenu id="bluetoothIntercom"
  7541. type="1" >
  7542. <productMenuType version="1.0"
  7543. type="0"
  7544. />
  7545. </productMenu>
  7546. <productMenu id="intercomSetting"
  7547. type="1" >
  7548. </productMenu>
  7549. <productMenu id="phone"
  7550. type="2" >
  7551. </productMenu>
  7552. <productMenu id="fmradio"
  7553. type="3" >
  7554. </productMenu>
  7555. <productMenu id="deviceSetting"
  7556. type="1"
  7557. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  7558. <productMenuURL version="2.4"
  7559. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  7560. />
  7561. <productMenuURL version="1.5"
  7562. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  7563. />
  7564. <productMenuURL version="1.4.1"
  7565. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  7566. />
  7567. <productMenuURL version="1.1"
  7568. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  7569. />
  7570. <productMenuURL version="1.0"
  7571. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  7572. />
  7573. </productMenu>
  7574. <productMenu id="quickGuide"
  7575. type="1"
  7576. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  7577. size="264KB" >
  7578. </productMenu>
  7579. <productMenu id="userGuide"
  7580. type="1"
  7581. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  7582. size="3.09MB" >
  7583. </productMenu>
  7584. <productID id="4210"
  7585. />
  7586. <productProductKey key="11"
  7587. />
  7588. <productID id="4230"
  7589. />
  7590. <productProductKey key="11"
  7591. />
  7592. <productGroupable type="1"
  7593. />
  7594. </product>
  7595. <product id="HD50S"
  7596. name="Boom Audio 20S EVO"
  7597. series="50"
  7598. latestVersion="2.5.2"
  7599. show = "0" >
  7600. <productMenu id="protocol"
  7601. type="0">
  7602. </productMenu>
  7603. <productMenu id="sip"
  7604. type="1" >
  7605. <productMenuType version="1.0"
  7606. type="0"
  7607. />
  7608. </productMenu>
  7609. <productMenu id="bluetoothIntercom"
  7610. type="1" >
  7611. <productMenuType version="1.0"
  7612. type="0"
  7613. />
  7614. </productMenu>
  7615. <productMenu id="intercomSetting"
  7616. type="1" >
  7617. </productMenu>
  7618. <productMenu id="phone"
  7619. type="2" >
  7620. </productMenu>
  7621. <productMenu id="fmradio"
  7622. type="3" >
  7623. </productMenu>
  7624. <productMenu id="deviceSetting"
  7625. type="1"
  7626. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  7627. <productMenuURL version="2.4"
  7628. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  7629. />
  7630. <productMenuURL version="1.5"
  7631. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  7632. />
  7633. <productMenuURL version="1.4.1"
  7634. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  7635. />
  7636. <productMenuURL version="1.1"
  7637. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  7638. />
  7639. <productMenuURL version="1.0"
  7640. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  7641. />
  7642. </productMenu>
  7643. <productMenu id="quickGuide"
  7644. type="1"
  7645. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  7646. size="321KB" >
  7647. </productMenu>
  7648. <productMenu id="userGuide"
  7649. type="1"
  7650. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  7651. size="2.46MB" >
  7652. </productMenu>
  7653. <productID id="4230"
  7654. />
  7655. <productProductKey key="27"
  7656. />
  7657. <productGroupable type="1"
  7658. />
  7659. </product>
  7660. <product id="HD50S"
  7661. name="Boom! Audio 10S"
  7662. series="50"
  7663. latestVersion="1.1.3"
  7664. show = "0" >
  7665. <productMenu id="protocol"
  7666. type="0">
  7667. </productMenu>
  7668. <productMenu id="sip"
  7669. type="1" >
  7670. </productMenu>
  7671. <productMenu id="bluetoothIntercom"
  7672. type="1" >
  7673. </productMenu>
  7674. <productMenu id="phone"
  7675. type="2" >
  7676. </productMenu>
  7677. <productMenu id="fmradio"
  7678. type="3" >
  7679. </productMenu>
  7680. <productMenu id="deviceSetting"
  7681. type="1"
  7682. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  7683. </productMenu>
  7684. <productMenu id="quickGuide"
  7685. type="1"
  7686. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  7687. size="538KB" >
  7688. </productMenu>
  7689. <productMenu id="userGuide"
  7690. type="1"
  7691. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  7692. size="1.55MB" >
  7693. </productMenu>
  7694. <productID id="5532"
  7695. />
  7696. <productGroupable type="0"
  7697. />
  7698. </product>
  7699. <product id="HD50S"
  7700. name="Boom! Audio N01 10R"
  7701. series="50"
  7702. latestVersion="1.1.3"
  7703. show = "0" >
  7704. <productMenu id="protocol"
  7705. type="0">
  7706. </productMenu>
  7707. <productMenu id="sip"
  7708. type="1" >
  7709. </productMenu>
  7710. <productMenu id="bluetoothIntercom"
  7711. type="1" >
  7712. </productMenu>
  7713. <productMenu id="phone"
  7714. type="2" >
  7715. </productMenu>
  7716. <productMenu id="fmradio"
  7717. type="3" >
  7718. </productMenu>
  7719. <productMenu id="deviceSetting"
  7720. type="1"
  7721. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7722. </productMenu>
  7723. <productMenu id="quickGuide"
  7724. type="1"
  7725. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  7726. size="766KB" >
  7727. </productMenu>
  7728. <productMenu id="userGuide"
  7729. type="1"
  7730. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  7731. size="1.45MB" >
  7732. </productMenu>
  7733. <productID id="5522"
  7734. />
  7735. <productGroupable type="0"
  7736. />
  7737. </product>
  7738. <product id="HD50S"
  7739. name="OUTRUSH-R N03"
  7740. series="50"
  7741. latestVersion="1.2.1"
  7742. show = "-1" >
  7743. <productMenu id="protocol"
  7744. type="0">
  7745. </productMenu>
  7746. <productMenu id="sip"
  7747. type="1" >
  7748. </productMenu>
  7749. <productMenu id="bluetoothIntercom"
  7750. type="1" >
  7751. </productMenu>
  7752. <productMenu id="phone"
  7753. type="2" >
  7754. </productMenu>
  7755. <productMenu id="fmradio"
  7756. type="3" >
  7757. </productMenu>
  7758. <productMenu id="deviceSetting"
  7759. type="1"
  7760. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  7761. </productMenu>
  7762. <productMenu id="userGuide"
  7763. type="1"
  7764. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  7765. size="660KB" >
  7766. </productMenu>
  7767. <productID id="5434"
  7768. />
  7769. <productGroupable type="0"
  7770. />
  7771. </product>
  7772. <product id="HD50S"
  7773. name="OUTRUSH-R N03"
  7774. series="50"
  7775. latestVersion="2.0"
  7776. show = "0" >
  7777. <productMenu id="protocol"
  7778. type="3" >
  7779. </productMenu>
  7780. <productMenu id="sip"
  7781. type="1" >
  7782. </productMenu>
  7783. <productMenu id="bluetoothIntercom"
  7784. type="1" >
  7785. </productMenu>
  7786. <productMenu id="phone"
  7787. type="1" >
  7788. </productMenu>
  7789. <productMenu id="fmradio"
  7790. type="1" >
  7791. </productMenu>
  7792. <productMenu id="deviceSetting"
  7793. type="1"
  7794. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  7795. </productMenu>
  7796. <productMenu id="userGuide"
  7797. type="1"
  7798. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  7799. size="1.14MB" >
  7800. </productMenu>
  7801. <productID id="5441"
  7802. />
  7803. <productGroupable type="0"
  7804. />
  7805. </product>
  7806. <product id="5R"
  7807. name="5R"
  7808. series="5"
  7809. latestVersion="1.0.1"
  7810. show = "1" >
  7811. <productMenu id="protocol"
  7812. type="3" >
  7813. </productMenu>
  7814. <productMenu id="sip"
  7815. type="1" >
  7816. </productMenu>
  7817. <productMenu id="bluetoothIntercom"
  7818. type="1" >
  7819. </productMenu>
  7820. <productMenu id="phone"
  7821. type="1" >
  7822. </productMenu>
  7823. <productMenu id="fmradio"
  7824. type="1" >
  7825. </productMenu>
  7826. <productMenu id="deviceSetting"
  7827. type="1"
  7828. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  7829. </productMenu>
  7830. <productMenu id="quickGuide"
  7831. type="0"
  7832. url=""
  7833. size="934KB" >
  7834. </productMenu>
  7835. <productMenu id="userGuide"
  7836. type="1"
  7837. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  7838. size="1.14MB" >
  7839. </productMenu>
  7840. <productMenu id="connectGuide"
  7841. type="1"
  7842. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  7843. size="1.12MB" >
  7844. </productMenu>
  7845. <productID id="5591"
  7846. />
  7847. <productGroupable type="0"
  7848. />
  7849. </product>
  7850. <product id="5R"
  7851. name="5R LITE"
  7852. series="5"
  7853. latestVersion="1.0.1"
  7854. show = "1" >
  7855. <productMenu id="protocol"
  7856. type="3" >
  7857. </productMenu>
  7858. <productMenu id="sip"
  7859. type="1" >
  7860. </productMenu>
  7861. <productMenu id="bluetoothIntercom"
  7862. type="1" >
  7863. </productMenu>
  7864. <productMenu id="phone"
  7865. type="1" >
  7866. </productMenu>
  7867. <productMenu id="fmradio"
  7868. type="1" >
  7869. </productMenu>
  7870. <productMenu id="deviceSetting"
  7871. type="1"
  7872. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  7873. </productMenu>
  7874. <productMenu id="quickGuide"
  7875. type="0"
  7876. url=""
  7877. size="934KB" >
  7878. </productMenu>
  7879. <productMenu id="userGuide"
  7880. type="1"
  7881. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  7882. size="1.14MB" >
  7883. </productMenu>
  7884. <productMenu id="connectGuide"
  7885. type="1"
  7886. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  7887. size="1.12MB" >
  7888. </productMenu>
  7889. <productID id="5592"
  7890. />
  7891. <productGroupable type="0"
  7892. />
  7893. </product>
  7894. <product id="50RLE"
  7895. name="50R LE"
  7896. series="50"
  7897. latestVersion="1.1"
  7898. show = "0" >
  7899. <productMenu id="protocol"
  7900. type="2" >
  7901. </productMenu>
  7902. <productMenu id="alexa"
  7903. type="0" >
  7904. </productMenu>
  7905. <productMenu id="sip"
  7906. type="1" >
  7907. </productMenu>
  7908. <productMenu id="meshIntercom"
  7909. type="30" >
  7910. </productMenu>
  7911. <productMenu id="meshIntercom+"
  7912. type="3"
  7913. url="2" >
  7914. <productMenuType version="1.0.9"
  7915. type="2"
  7916. />
  7917. </productMenu>
  7918. <productMenu id="waveIntercom"
  7919. type="1" >
  7920. <productMenuType version="1.0.9"
  7921. type="0"
  7922. />
  7923. </productMenu>
  7924. <productMenu id="bluetoothIntercom"
  7925. type="1" >
  7926. </productMenu>
  7927. <productMenu id="phone"
  7928. type="1" >
  7929. </productMenu>
  7930. <productMenu id="music"
  7931. type="1" >
  7932. </productMenu>
  7933. <productMenu id="fmradio"
  7934. type="0" >
  7935. </productMenu>
  7936. <productMenu id="deviceSetting"
  7937. type="1"
  7938. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  7939. <productMenuURL version="1.0.9"
  7940. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  7941. />
  7942. </productMenu>
  7943. <productMenu id="quickGuide"
  7944. type="0"
  7945. url=""
  7946. size="344KB" >
  7947. </productMenu>
  7948. <productMenu id="userGuide"
  7949. type="0"
  7950. url=""
  7951. size="3.41MB" >
  7952. </productMenu>
  7953. <productMenu id="volume"
  7954. type="11" >
  7955. </productMenu>
  7956. <productMenu id="battery"
  7957. type="1" >
  7958. </productMenu>
  7959. <productID id="3223"
  7960. />
  7961. <productGroupable type="0"
  7962. />
  7963. </product>
  7964. <product id="5RLOUIS"
  7965. name="5R LOUIS EDITION"
  7966. series="5"
  7967. latestVersion="1.0"
  7968. show = "-1" >
  7969. <productMenu id="protocol"
  7970. type="3" >
  7971. </productMenu>
  7972. <productMenu id="sip"
  7973. type="1" >
  7974. </productMenu>
  7975. <productMenu id="bluetoothIntercom"
  7976. type="1" >
  7977. </productMenu>
  7978. <productMenu id="phone"
  7979. type="1" >
  7980. </productMenu>
  7981. <productMenu id="fmradio"
  7982. type="1" >
  7983. </productMenu>
  7984. <productMenu id="deviceSetting"
  7985. type="1"
  7986. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  7987. </productMenu>
  7988. <productMenu id="quickGuide"
  7989. type="0"
  7990. url=""
  7991. size="934KB" >
  7992. </productMenu>
  7993. <productMenu id="userGuide"
  7994. type="0"
  7995. url=""
  7996. size="1.14MB" >
  7997. </productMenu>
  7998. <productID id="5597"
  7999. />
  8000. <productGroupable type="0"
  8001. />
  8002. </product>
  8003. <product id="5S"
  8004. name="Ridekont 5S"
  8005. series="5"
  8006. latestVersion="2.3"
  8007. show = "-1" >
  8008. <productMenu id="protocol"
  8009. type="3" >
  8010. </productMenu>
  8011. <productMenu id="sip"
  8012. type="1" >
  8013. </productMenu>
  8014. <productMenu id="bluetoothIntercom"
  8015. type="1" >
  8016. </productMenu>
  8017. <productMenu id="phone"
  8018. type="1" >
  8019. </productMenu>
  8020. <productMenu id="fmradio"
  8021. type="0" >
  8022. </productMenu>
  8023. <productMenu id="deviceSetting"
  8024. type="1"
  8025. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  8026. </productMenu>
  8027. <productMenu id="quickGuide"
  8028. type="0"
  8029. url=""
  8030. size="934KB" >
  8031. </productMenu>
  8032. <productMenu id="userGuide"
  8033. type="1"
  8034. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  8035. size="1.14MB" >
  8036. </productMenu>
  8037. <productID id="5589"
  8038. />
  8039. <productGroupable type="0"
  8040. />
  8041. </product>
  8042. <product id="5R"
  8043. name="Ridekont 5R"
  8044. series="5"
  8045. latestVersion="1.0"
  8046. show = "0" >
  8047. <productMenu id="protocol"
  8048. type="3" >
  8049. </productMenu>
  8050. <productMenu id="sip"
  8051. type="1" >
  8052. </productMenu>
  8053. <productMenu id="bluetoothIntercom"
  8054. type="1" >
  8055. </productMenu>
  8056. <productMenu id="phone"
  8057. type="1" >
  8058. </productMenu>
  8059. <productMenu id="fmradio"
  8060. type="1" >
  8061. </productMenu>
  8062. <productMenu id="deviceSetting"
  8063. type="1"
  8064. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  8065. </productMenu>
  8066. <productMenu id="quickGuide"
  8067. type="1"
  8068. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  8069. size="934KB" >
  8070. </productMenu>
  8071. <productMenu id="userGuide"
  8072. type="1"
  8073. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  8074. size="1.14MB" >
  8075. </productMenu>
  8076. <productID id="5593"
  8077. />
  8078. <productGroupable type="0"
  8079. />
  8080. </product>
  8081. <product id="5R"
  8082. name="Ridekont 5R LITE"
  8083. series="5"
  8084. latestVersion="1.0"
  8085. show = "0" >
  8086. <productMenu id="protocol"
  8087. type="3" >
  8088. </productMenu>
  8089. <productMenu id="sip"
  8090. type="1" >
  8091. </productMenu>
  8092. <productMenu id="bluetoothIntercom"
  8093. type="1" >
  8094. </productMenu>
  8095. <productMenu id="phone"
  8096. type="1" >
  8097. </productMenu>
  8098. <productMenu id="fmradio"
  8099. type="1" >
  8100. </productMenu>
  8101. <productMenu id="deviceSetting"
  8102. type="1"
  8103. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  8104. </productMenu>
  8105. <productMenu id="quickGuide"
  8106. type="0"
  8107. url=""
  8108. size="934KB" >
  8109. </productMenu>
  8110. <productMenu id="userGuide"
  8111. type="1"
  8112. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  8113. size="1.14MB" >
  8114. </productMenu>
  8115. <productID id="5594"
  8116. />
  8117. <productGroupable type="0"
  8118. />
  8119. </product>
  8120. <product id="C30"
  8121. name="SENA C30"
  8122. series="C"
  8123. latestVersion="1.1.3"
  8124. latestVersionVoicePrompt="0.11"
  8125. show = "1" >
  8126. <productMenu id="protocol"
  8127. type="2" >
  8128. </productMenu>
  8129. <productMenu id="alexa"
  8130. type="0" >
  8131. </productMenu>
  8132. <productMenu id="ota"
  8133. type="2" >
  8134. <otaPackages>
  8135. <package
  8136. url="https://api.sena.com/support/OTA/C30/SENA_C30-v1.1.3-build2.img"
  8137. size="3144148"
  8138. />
  8139. </otaPackages>
  8140. </productMenu>
  8141. <productMenu id="wa"
  8142. type="0" >
  8143. </productMenu>
  8144. <productMenu id="meshIntercom"
  8145. type="30" >
  8146. </productMenu>
  8147. <productMenu id="meshIntercom+"
  8148. type="3"
  8149. url="2" >
  8150. <productMenuType version="1.0.9"
  8151. type="2"
  8152. />
  8153. </productMenu>
  8154. <productMenu id="phone"
  8155. type="1" >
  8156. </productMenu>
  8157. <productMenu id="music"
  8158. type="1" >
  8159. </productMenu>
  8160. <productMenu id="musicSharing"
  8161. type="0" >
  8162. </productMenu>
  8163. <productMenu id="deviceSetting"
  8164. type="1"
  8165. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_06_zh_rCN.xml" >
  8166. <productMenuURL version="1.0.9"
  8167. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  8168. />
  8169. </productMenu>
  8170. <productMenu id="quickGuide"
  8171. type="1"
  8172. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  8173. size="1.12MB" >
  8174. </productMenu>
  8175. <productMenu id="userGuide"
  8176. type="0"
  8177. url=""
  8178. size="2.0MB" >
  8179. </productMenu>
  8180. <productMenu id="videoGuide"
  8181. type="0"
  8182. url=""
  8183. size="3.41MB" >
  8184. </productMenu>
  8185. <productMenu id="volume"
  8186. type="12" >
  8187. </productMenu>
  8188. <productMenu id="battery"
  8189. type="1" >
  8190. </productMenu>
  8191. <productID id="683A"
  8192. />
  8193. <productGroupable type="0"
  8194. />
  8195. </product>
  8196. <product id="C20"
  8197. name="C20"
  8198. series="5"
  8199. latestVersion="1.0"
  8200. show = "0" >
  8201. <productMenu id="protocol"
  8202. type="3" >
  8203. </productMenu>
  8204. <productMenu id="sip"
  8205. type="1" >
  8206. </productMenu>
  8207. <productMenu id="bluetoothIntercom"
  8208. type="1" >
  8209. </productMenu>
  8210. <productMenu id="phone"
  8211. type="1" >
  8212. </productMenu>
  8213. <productMenu id="deviceSetting"
  8214. type="1"
  8215. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  8216. </productMenu>
  8217. <productMenu id="quickGuide"
  8218. type="1"
  8219. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  8220. size="934KB" >
  8221. </productMenu>
  8222. <productMenu id="userGuide"
  8223. type="1"
  8224. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  8225. size="1.14MB" >
  8226. </productMenu>
  8227. <productID id="3701"
  8228. />
  8229. <productGroupable type="0"
  8230. />
  8231. </product>
  8232. <product id="C10"
  8233. name="C10"
  8234. series="5"
  8235. latestVersion="1.4.1"
  8236. show = "0" >
  8237. <productMenu id="protocol"
  8238. type="3" >
  8239. </productMenu>
  8240. <productMenu id="sip"
  8241. type="1" >
  8242. </productMenu>
  8243. <productMenu id="bluetoothIntercom"
  8244. type="1" >
  8245. </productMenu>
  8246. <productMenu id="phone"
  8247. type="1" >
  8248. </productMenu>
  8249. <productMenu id="fmradio"
  8250. type="0" >
  8251. </productMenu>
  8252. <productMenu id="deviceSetting"
  8253. type="1"
  8254. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  8255. </productMenu>
  8256. <productMenu id="userGuide"
  8257. type="1"
  8258. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  8259. size="1.14MB" >
  8260. </productMenu>
  8261. <productID id="5595"
  8262. />
  8263. <productGroupable type="0"
  8264. />
  8265. </product>
  8266. <product id="J30"
  8267. name="J30"
  8268. series="J"
  8269. latestVersion="1.2"
  8270. latestVersionVoicePrompt="0.13"
  8271. show = "0" >
  8272. <productMenu id="protocol"
  8273. type="2" >
  8274. </productMenu>
  8275. <productMenu id="alexa"
  8276. type="0" >
  8277. </productMenu>
  8278. <productMenu id="ota"
  8279. type="2" >
  8280. <otaPackages>
  8281. <package
  8282. url="https://api.sena.com/support/OTA/J30/SENA_J30-v1.2-build1.img"
  8283. size="3144148"
  8284. />
  8285. </otaPackages>
  8286. </productMenu>
  8287. <productMenu id="wa"
  8288. type="0" >
  8289. </productMenu>
  8290. <productMenu id="meshIntercom"
  8291. type="30" >
  8292. </productMenu>
  8293. <productMenu id="meshIntercom+"
  8294. type="3"
  8295. url="2" >
  8296. <productMenuType version="1.0.9"
  8297. type="2"
  8298. />
  8299. </productMenu>
  8300. <productMenu id="waveIntercom"
  8301. type="1" >
  8302. <productMenuType version="1.1.9"
  8303. type="0"
  8304. />
  8305. </productMenu>
  8306. <productMenu id="phone"
  8307. type="1" >
  8308. </productMenu>
  8309. <productMenu id="music"
  8310. type="1" >
  8311. </productMenu>
  8312. <productMenu id="musicSharing"
  8313. type="0" >
  8314. </productMenu>
  8315. <productMenu id="deviceSetting"
  8316. type="1"
  8317. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  8318. <productMenuURL version="1.0.9"
  8319. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  8320. />
  8321. </productMenu>
  8322. <productMenu id="quickGuide"
  8323. type="0"
  8324. url=""
  8325. size="1.12MB" >
  8326. </productMenu>
  8327. <productMenu id="userGuide"
  8328. type="1"
  8329. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  8330. size="2.0MB" >
  8331. </productMenu>
  8332. <productMenu id="videoGuide"
  8333. type="0"
  8334. url=""
  8335. size="3.41MB" >
  8336. </productMenu>
  8337. <productMenu id="volume"
  8338. type="12" >
  8339. </productMenu>
  8340. <productMenu id="battery"
  8341. type="1" >
  8342. </productMenu>
  8343. <productID id="6848"
  8344. />
  8345. <productGroupable type="0"
  8346. />
  8347. </product>
  8348. <product id="J10"
  8349. name="J10"
  8350. series="5"
  8351. latestVersion="1.1.1"
  8352. show = "0" >
  8353. <productMenu id="protocol"
  8354. type="3" >
  8355. </productMenu>
  8356. <productMenu id="sip"
  8357. type="1" >
  8358. </productMenu>
  8359. <productMenu id="bluetoothIntercom"
  8360. type="1" >
  8361. </productMenu>
  8362. <productMenu id="phone"
  8363. type="1" >
  8364. </productMenu>
  8365. <productMenu id="fmradio"
  8366. type="0" >
  8367. </productMenu>
  8368. <productMenu id="deviceSetting"
  8369. type="1"
  8370. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  8371. </productMenu>
  8372. <productMenu id="userGuide"
  8373. type="1"
  8374. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  8375. size="1.14MB" >
  8376. </productMenu>
  8377. <productID id="5598"
  8378. />
  8379. <productGroupable type="0"
  8380. />
  8381. </product>
  8382. <product id="B20"
  8383. name="B20"
  8384. series="B"
  8385. latestVersion="1.1"
  8386. latestVersionVoicePrompt="0.13"
  8387. show = "0" >
  8388. <productMenu id="protocol"
  8389. type="2" >
  8390. </productMenu>
  8391. <productMenu id="alexa"
  8392. type="0" >
  8393. </productMenu>
  8394. <productMenu id="ota"
  8395. type="2" >
  8396. <otaPackages>
  8397. <package
  8398. url="https://api.sena.com/support/OTA/B20/SENA_B20-v1.1-build0.img"
  8399. size="3144148"
  8400. />
  8401. </otaPackages>
  8402. </productMenu>
  8403. <productMenu id="wa"
  8404. type="0" >
  8405. </productMenu>
  8406. <productMenu id="meshIntercom"
  8407. type="30" >
  8408. </productMenu>
  8409. <productMenu id="phone"
  8410. type="1" >
  8411. </productMenu>
  8412. <productMenu id="music"
  8413. type="1" >
  8414. </productMenu>
  8415. <productMenu id="musicSharing"
  8416. type="0" >
  8417. </productMenu>
  8418. <productMenu id="deviceSetting"
  8419. type="1"
  8420. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  8421. <productMenuURL version="1.0.9"
  8422. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  8423. />
  8424. </productMenu>
  8425. <productMenu id="quickGuide"
  8426. type="0"
  8427. url=""
  8428. size="1.12MB" >
  8429. </productMenu>
  8430. <productMenu id="userGuide"
  8431. type="1"
  8432. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  8433. size="2.0MB" >
  8434. </productMenu>
  8435. <productMenu id="videoGuide"
  8436. type="0"
  8437. url=""
  8438. size="3.41MB" >
  8439. </productMenu>
  8440. <productMenu id="volume"
  8441. type="12" >
  8442. </productMenu>
  8443. <productMenu id="battery"
  8444. type="1" >
  8445. </productMenu>
  8446. <productID id="6847"
  8447. />
  8448. <productGroupable type="0"
  8449. />
  8450. </product>
  8451. <product id="B10"
  8452. name="B10"
  8453. series="5"
  8454. latestVersion="1.2.1"
  8455. show = "0" >
  8456. <productMenu id="protocol"
  8457. type="3" >
  8458. </productMenu>
  8459. <productMenu id="sip"
  8460. type="1" >
  8461. </productMenu>
  8462. <productMenu id="bluetoothIntercom"
  8463. type="1" >
  8464. </productMenu>
  8465. <productMenu id="phone"
  8466. type="1" >
  8467. </productMenu>
  8468. <productMenu id="fmradio"
  8469. type="0" >
  8470. </productMenu>
  8471. <productMenu id="deviceSetting"
  8472. type="1"
  8473. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  8474. </productMenu>
  8475. <productMenu id="userGuide"
  8476. type="1"
  8477. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  8478. size="1.14MB" >
  8479. </productMenu>
  8480. <productID id="5596"
  8481. />
  8482. <productGroupable type="0"
  8483. />
  8484. </product>
  8485. <product id="E30"
  8486. name="E30"
  8487. series="E"
  8488. latestVersion="1.1"
  8489. latestVersionVoicePrompt="0.13"
  8490. show = "0" >
  8491. <productMenu id="protocol"
  8492. type="2" >
  8493. </productMenu>
  8494. <productMenu id="alexa"
  8495. type="0" >
  8496. </productMenu>
  8497. <productMenu id="ota"
  8498. type="2" >
  8499. <otaPackages>
  8500. <package
  8501. url="https://api.sena.com/support/OTA/E30/SENA_E30-v1.1-build0.img"
  8502. size="3144148"
  8503. />
  8504. </otaPackages>
  8505. </productMenu>
  8506. <productMenu id="wa"
  8507. type="0" >
  8508. </productMenu>
  8509. <productMenu id="meshIntercom"
  8510. type="30" >
  8511. </productMenu>
  8512. <productMenu id="meshIntercom+"
  8513. type="3"
  8514. url="2" >
  8515. </productMenu>
  8516. <productMenu id="waveIntercom"
  8517. type="1" >
  8518. <productMenuType version="1.0.9"
  8519. type="0"
  8520. />
  8521. </productMenu>
  8522. <productMenu id="phone"
  8523. type="1" >
  8524. </productMenu>
  8525. <productMenu id="music"
  8526. type="1" >
  8527. </productMenu>
  8528. <productMenu id="musicSharing"
  8529. type="0" >
  8530. </productMenu>
  8531. <productMenu id="deviceSetting"
  8532. type="1"
  8533. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  8534. </productMenu>
  8535. <productMenu id="quickGuide"
  8536. type="0"
  8537. url=""
  8538. size="1.12MB" >
  8539. </productMenu>
  8540. <productMenu id="userGuide"
  8541. type="1"
  8542. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  8543. size="2.0MB" >
  8544. </productMenu>
  8545. <productMenu id="videoGuide"
  8546. type="0"
  8547. url=""
  8548. size="3.41MB" >
  8549. </productMenu>
  8550. <productMenu id="volume"
  8551. type="12" >
  8552. </productMenu>
  8553. <productMenu id="battery"
  8554. type="1" >
  8555. </productMenu>
  8556. <productID id="6846"
  8557. />
  8558. <productGroupable type="0"
  8559. />
  8560. </product>
  8561. <product id="ACSRAM"
  8562. name="ACS-RAM"
  8563. series="ACS"
  8564. latestVersion="1.0.5"
  8565. show = "1" >
  8566. <productMenu id="protocol"
  8567. type="3" >
  8568. </productMenu>
  8569. <productMenu id="sip"
  8570. type="1" >
  8571. </productMenu>
  8572. <productMenu id="bluetoothIntercom"
  8573. type="1" >
  8574. </productMenu>
  8575. <productMenu id="deviceSetting"
  8576. type="1"
  8577. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  8578. </productMenu>
  8579. <productMenu id="quickGuide"
  8580. type="1"
  8581. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  8582. size="344KB" >
  8583. </productMenu>
  8584. <productMenu id="userGuide"
  8585. type="1"
  8586. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  8587. size="1.14MB" >
  8588. </productMenu>
  8589. <productMenu id="connectGuide"
  8590. type="1"
  8591. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  8592. size="1.12MB" >
  8593. </productMenu>
  8594. <productID id="3400"
  8595. />
  8596. <productGroupable type="0"
  8597. />
  8598. </product>
  8599. <product id="ACS10"
  8600. name="ACS10"
  8601. series="ACS"
  8602. latestVersion="1.0.2"
  8603. show = "1" >
  8604. <productMenu id="protocol"
  8605. type="0">
  8606. </productMenu>
  8607. <productMenu id="sip"
  8608. type="1" >
  8609. </productMenu>
  8610. <productMenu id="bluetoothIntercom"
  8611. type="1" >
  8612. </productMenu>
  8613. <productMenu id="phone"
  8614. type="2" >
  8615. </productMenu>
  8616. <productMenu id="deviceSetting"
  8617. type="1"
  8618. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  8619. </productMenu>
  8620. <productMenu id="quickGuide"
  8621. type="1"
  8622. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  8623. size="970KB" >
  8624. </productMenu>
  8625. <productMenu id="userGuide"
  8626. type="1"
  8627. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  8628. size="1.26MB" >
  8629. </productMenu>
  8630. <productID id="3300"
  8631. />
  8632. <productGroupable type="0"
  8633. />
  8634. </product>
  8635. <product id="DWO7ProMesh"
  8636. name="DWO 7 Pro Mesh"
  8637. series="50"
  8638. latestVersion="1.1"
  8639. latestVersionVoicePrompt="0.9"
  8640. show = "0" >
  8641. <productMenu id="protocol"
  8642. type="2" >
  8643. </productMenu>
  8644. <productMenu id="alexa"
  8645. type="0" >
  8646. </productMenu>
  8647. <productMenu id="ota"
  8648. type="2" >
  8649. <otaPackages>
  8650. <package
  8651. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  8652. size="2945812"
  8653. />
  8654. </otaPackages>
  8655. </productMenu>
  8656. <productMenu id="wa"
  8657. type="0" >
  8658. </productMenu>
  8659. <productMenu id="meshIntercom"
  8660. type="20" >
  8661. </productMenu>
  8662. <productMenu id="meshIntercom+"
  8663. type="3"
  8664. url="2" >
  8665. <productMenuType version="1.0.9"
  8666. type="2"
  8667. />
  8668. <productMenuURL version="2.1.1"
  8669. url="0"
  8670. />
  8671. </productMenu>
  8672. <productMenu id="waveIntercom"
  8673. type="1" >
  8674. <productMenuType version="1.0.9"
  8675. type="0"
  8676. />
  8677. </productMenu>
  8678. <productMenu id="phone"
  8679. type="1" >
  8680. </productMenu>
  8681. <productMenu id="music"
  8682. type="1" >
  8683. </productMenu>
  8684. <productMenu id="fmradio"
  8685. type="1" >
  8686. </productMenu>
  8687. <productMenu id="musicSharing"
  8688. type="0" >
  8689. </productMenu>
  8690. <productMenu id="deviceSetting"
  8691. type="1"
  8692. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  8693. <productMenuURL version="1.0.9"
  8694. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  8695. />
  8696. </productMenu>
  8697. <productMenu id="quickGuide"
  8698. type="1"
  8699. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  8700. size="1.12MB" >
  8701. </productMenu>
  8702. <productMenu id="userGuide"
  8703. type="1"
  8704. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  8705. size="2.0MB" >
  8706. </productMenu>
  8707. <productMenu id="volume"
  8708. type="12" >
  8709. </productMenu>
  8710. <productMenu id="battery"
  8711. type="1" >
  8712. </productMenu>
  8713. <productID id="6806"
  8714. />
  8715. <productGroupable type="0"
  8716. />
  8717. </product>
  8718. <product id="UCOM16R"
  8719. name="U-COM 16R"
  8720. series="UCOM"
  8721. latestVersion="1.0"
  8722. latestVersionMesh="1.0"
  8723. latestVersionVoicePrompt="1.0"
  8724. show = "-1" >
  8725. <productMenu id="protocol"
  8726. type="2" >
  8727. </productMenu>
  8728. <productMenu id="ota"
  8729. type="0" >
  8730. <otaLanguages>
  8731. <otaLanguage
  8732. id="0"
  8733. name="English"
  8734. package="0"
  8735. />
  8736. <otaLanguage
  8737. id="0"
  8738. name="French"
  8739. package="1"
  8740. />
  8741. <otaLanguage
  8742. id="0"
  8743. name="Spanish"
  8744. package="2"
  8745. />
  8746. <otaLanguage
  8747. id="0"
  8748. name="Italian"
  8749. package="3"
  8750. />
  8751. <otaLanguage
  8752. id="0"
  8753. name="German"
  8754. package="4"
  8755. />
  8756. <otaLanguage
  8757. id="0"
  8758. name="Dutch"
  8759. package="5"
  8760. />
  8761. <otaLanguage
  8762. id="0"
  8763. name="Russian"
  8764. package="6"
  8765. />
  8766. <otaLanguage
  8767. id="0"
  8768. name="Chinese"
  8769. package="7"
  8770. />
  8771. <otaLanguage
  8772. id="0"
  8773. name="Korean"
  8774. package="8"
  8775. />
  8776. <otaLanguage
  8777. id="0"
  8778. name="Japanese"
  8779. package="9"
  8780. />
  8781. <otaLanguage
  8782. id="0"
  8783. name="Finnish"
  8784. package="10"
  8785. />
  8786. </otaLanguages>
  8787. <otaPackages>
  8788. <package
  8789. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2.img"
  8790. size="5183988"
  8791. />
  8792. <package
  8793. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fr-FR.img"
  8794. size="5183988"
  8795. />
  8796. <package
  8797. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-es-ES.img"
  8798. size="5183988"
  8799. />
  8800. <package
  8801. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-it-IT.img"
  8802. size="5183988"
  8803. />
  8804. <package
  8805. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-de-DE.img"
  8806. size="5183988"
  8807. />
  8808. <package
  8809. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-nl-NL.img"
  8810. size="5183988"
  8811. />
  8812. <package
  8813. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ru-RU.img"
  8814. size="5183988"
  8815. />
  8816. <package
  8817. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-cmn-CN.img"
  8818. size="5183988"
  8819. />
  8820. <package
  8821. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ko-KR.img"
  8822. size="5183988"
  8823. />
  8824. <package
  8825. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ja-JP.img"
  8826. size="5183988"
  8827. />
  8828. <package
  8829. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fi-FI.img"
  8830. size="5183988"
  8831. />
  8832. </otaPackages>
  8833. </productMenu>
  8834. <productMenu id="wa"
  8835. type="0" >
  8836. </productMenu>
  8837. <productMenu id="sip"
  8838. type="1" >
  8839. </productMenu>
  8840. <productMenu id="led"
  8841. type="0" >
  8842. </productMenu>
  8843. <productMenu id="illusion"
  8844. type="1" >
  8845. </productMenu>
  8846. <productMenu id="meshIntercom"
  8847. type="30" >
  8848. </productMenu>
  8849. <productMenu id="meshIntercom+"
  8850. type="3"
  8851. url="2" >
  8852. </productMenu>
  8853. <productMenu id="waveIntercom"
  8854. type="0" >
  8855. </productMenu>
  8856. <productMenu id="bluetoothIntercom"
  8857. type="1" >
  8858. </productMenu>
  8859. <productMenu id="bluetoothIntercomGrouping"
  8860. type="0" >
  8861. </productMenu>
  8862. <productMenu id="fmradio"
  8863. type="1"
  8864. url="1" >
  8865. </productMenu>
  8866. <productMenu id="phone"
  8867. type="1" >
  8868. </productMenu>
  8869. <productMenu id="music"
  8870. type="1" >
  8871. </productMenu>
  8872. <productMenu id="musicSharing"
  8873. type="0" >
  8874. </productMenu>
  8875. <productMenu id="deviceSetting"
  8876. type="1"
  8877. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  8878. </productMenu>
  8879. <productMenu id="quickGuide"
  8880. type="0"
  8881. url=""
  8882. size="1.12MB" >
  8883. </productMenu>
  8884. <productMenu id="userGuide"
  8885. type="1"
  8886. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  8887. size="2.0MB" >
  8888. </productMenu>
  8889. <productMenu id="videoGuide"
  8890. type="0"
  8891. url=""
  8892. size="3.41MB" >
  8893. </productMenu>
  8894. <productMenu id="volume"
  8895. type="16" >
  8896. </productMenu>
  8897. <productMenu id="soundMode"
  8898. type="1" >
  8899. </productMenu>
  8900. <productMenu id="battery"
  8901. type="1" >
  8902. </productMenu>
  8903. <productID id="6A83"
  8904. />
  8905. <productGroupable type="0"
  8906. />
  8907. </product>
  8908. <product id="MeshStation"
  8909. name="Mesh Station"
  8910. series="50"
  8911. latestVersion="0.9"
  8912. show = "-1" >
  8913. <productMenu id="protocol"
  8914. type="2" >
  8915. </productMenu>
  8916. <productMenu id="meshIntercom"
  8917. type="20"
  8918. url="99" >
  8919. </productMenu>
  8920. <productID id="3161"
  8921. />
  8922. <productGroupable type="0"
  8923. />
  8924. </product>
  8925. </products>
  8926. </sna>