snm.xml 301 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20250196" 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-v1.1.4-build0.img"
  1972. size="5183988"
  1973. />
  1974. <package
  1975. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fr-FR.img"
  1976. size="5183988"
  1977. />
  1978. <package
  1979. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-es-ES.img"
  1980. size="5183988"
  1981. />
  1982. <package
  1983. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-it-IT.img"
  1984. size="5183988"
  1985. />
  1986. <package
  1987. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-de-DE.img"
  1988. size="5183988"
  1989. />
  1990. <package
  1991. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-nl-NL.img"
  1992. size="5183988"
  1993. />
  1994. <package
  1995. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ru-RU.img"
  1996. size="5183988"
  1997. />
  1998. <package
  1999. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-cmn-CN.img"
  2000. size="5183988"
  2001. />
  2002. <package
  2003. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ko-KR.img"
  2004. size="5183988"
  2005. />
  2006. <package
  2007. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ja-JP.img"
  2008. size="5183988"
  2009. />
  2010. <package
  2011. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fi-FI.img"
  2012. size="5183988"
  2013. />
  2014. <package
  2015. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-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/PHANTOM/NS_PHANTOM_06.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="Impulse"
  2083. name="Impulse"
  2084. series="Helmet"
  2085. latestVersion="1.4"
  2086. show = "1" >
  2087. <productMenu id="protocol"
  2088. type="2" >
  2089. </productMenu>
  2090. <productMenu id="alexa"
  2091. type="0" >
  2092. </productMenu>
  2093. <productMenu id="ota"
  2094. type="0" >
  2095. </productMenu>
  2096. <productMenu id="wa"
  2097. type="24" >
  2098. </productMenu>
  2099. <productMenu id="manager"
  2100. type="0" >
  2101. </productMenu>
  2102. <productMenu id="sip"
  2103. type="1" >
  2104. </productMenu>
  2105. <productMenu id="led"
  2106. type="1" >
  2107. <productMenuType version="1.0.1"
  2108. type="2"
  2109. />
  2110. <productMenuType version="1.0"
  2111. type="1"
  2112. />
  2113. </productMenu>
  2114. <productMenu id="meshIntercom"
  2115. type="30" >
  2116. <productMenuType version="1.1.1"
  2117. type="20"
  2118. />
  2119. </productMenu>
  2120. <productMenu id="meshIntercom+"
  2121. type="3"
  2122. url="2" >
  2123. <productMenuType version="1.3.9"
  2124. type="2"
  2125. />
  2126. <productMenuURL version="1.1.1"
  2127. url="0"
  2128. />
  2129. </productMenu>
  2130. <productMenu id="waveIntercom"
  2131. type="1" >
  2132. <productMenuType version="1.3.9"
  2133. type="0"
  2134. />
  2135. </productMenu>
  2136. <productMenu id="bluetoothIntercom"
  2137. type="1" >
  2138. </productMenu>
  2139. <productMenu id="phone"
  2140. type="1" >
  2141. </productMenu>
  2142. <productMenu id="music"
  2143. type="1" >
  2144. </productMenu>
  2145. <productMenu id="fmradio"
  2146. type="1" >
  2147. </productMenu>
  2148. <productMenu id="deviceSetting"
  2149. type="1"
  2150. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  2151. <productMenuURL version="1.3.9"
  2152. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  2153. />
  2154. <productMenuURL version="1.1.1"
  2155. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  2156. />
  2157. <productMenuURL version="1.0.4"
  2158. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  2159. />
  2160. </productMenu>
  2161. <productMenu id="quickGuide"
  2162. type="0"
  2163. url=""
  2164. size="344KB" >
  2165. </productMenu>
  2166. <productMenu id="userGuide"
  2167. type="1"
  2168. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  2169. size="3.41MB" >
  2170. </productMenu>
  2171. <productMenu id="volume"
  2172. type="11" >
  2173. </productMenu>
  2174. <productMenu id="battery"
  2175. type="1" >
  2176. </productMenu>
  2177. <productID id="3148"
  2178. />
  2179. <productGroupable type="0"
  2180. />
  2181. </product>
  2182. <product id="Impulse"
  2183. name="Impulse"
  2184. series="Helmet"
  2185. latestVersion="2.0"
  2186. show = "-1" >
  2187. <productMenu id="protocol"
  2188. type="2" >
  2189. </productMenu>
  2190. <productMenu id="alexa"
  2191. type="0" >
  2192. </productMenu>
  2193. <productMenu id="ota"
  2194. type="0" >
  2195. </productMenu>
  2196. <productMenu id="wa"
  2197. type="8" >
  2198. </productMenu>
  2199. <productMenu id="manager"
  2200. type="0" >
  2201. </productMenu>
  2202. <productMenu id="sip"
  2203. type="1" >
  2204. </productMenu>
  2205. <productMenu id="led"
  2206. type="3" >
  2207. </productMenu>
  2208. <productMenu id="meshIntercom"
  2209. type="20" >
  2210. </productMenu>
  2211. <productMenu id="bluetoothIntercom"
  2212. type="1" >
  2213. </productMenu>
  2214. <productMenu id="phone"
  2215. type="1" >
  2216. </productMenu>
  2217. <productMenu id="music"
  2218. type="1" >
  2219. </productMenu>
  2220. <productMenu id="fmradio"
  2221. type="1" >
  2222. </productMenu>
  2223. <productMenu id="deviceSetting"
  2224. type="1"
  2225. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  2226. </productMenu>
  2227. <productMenu id="quickGuide"
  2228. type="1"
  2229. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  2230. size="344KB" >
  2231. </productMenu>
  2232. <productMenu id="userGuide"
  2233. type="1"
  2234. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  2235. size="3.41MB" >
  2236. </productMenu>
  2237. <productMenu id="volume"
  2238. type="11" >
  2239. </productMenu>
  2240. <productMenu id="battery"
  2241. type="1" >
  2242. </productMenu>
  2243. <productID id="3221"
  2244. />
  2245. <productGroupable type="0"
  2246. />
  2247. </product>
  2248. <product id="Stryker"
  2249. name="Stryker"
  2250. series="Helmet"
  2251. latestVersion="1.4"
  2252. show = "1" >
  2253. <productMenu id="protocol"
  2254. type="2" >
  2255. </productMenu>
  2256. <productMenu id="alexa"
  2257. type="0" >
  2258. </productMenu>
  2259. <productMenu id="ota"
  2260. type="0" >
  2261. </productMenu>
  2262. <productMenu id="wa"
  2263. type="40" >
  2264. </productMenu>
  2265. <productMenu id="manager"
  2266. type="0" >
  2267. </productMenu>
  2268. <productMenu id="sip"
  2269. type="1" >
  2270. </productMenu>
  2271. <productMenu id="led"
  2272. type="1" >
  2273. <productMenuType version="1.0.1"
  2274. type="2"
  2275. />
  2276. <productMenuType version="1.0"
  2277. type="1"
  2278. />
  2279. </productMenu>
  2280. <productMenu id="meshIntercom"
  2281. type="30" >
  2282. <productMenuType version="1.1.1"
  2283. type="20"
  2284. />
  2285. </productMenu>
  2286. <productMenu id="meshIntercom+"
  2287. type="3"
  2288. url="2" >
  2289. <productMenuType version="1.3.9"
  2290. type="2"
  2291. />
  2292. <productMenuURL version="1.1.1"
  2293. url="0"
  2294. />
  2295. </productMenu>
  2296. <productMenu id="waveIntercom"
  2297. type="1" >
  2298. <productMenuType version="1.2.9"
  2299. type="0"
  2300. />
  2301. </productMenu>
  2302. <productMenu id="bluetoothIntercom"
  2303. type="1" >
  2304. </productMenu>
  2305. <productMenu id="phone"
  2306. type="1" >
  2307. </productMenu>
  2308. <productMenu id="music"
  2309. type="1" >
  2310. </productMenu>
  2311. <productMenu id="fmradio"
  2312. type="1" >
  2313. </productMenu>
  2314. <productMenu id="deviceSetting"
  2315. type="1"
  2316. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  2317. <productMenuURL version="1.3.9"
  2318. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  2319. />
  2320. <productMenuURL version="1.1.1"
  2321. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  2322. />
  2323. <productMenuURL version="1.0.4"
  2324. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  2325. />
  2326. </productMenu>
  2327. <productMenu id="quickGuide"
  2328. type="0"
  2329. url=""
  2330. size="344KB" >
  2331. </productMenu>
  2332. <productMenu id="userGuide"
  2333. type="1"
  2334. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  2335. size="3.41MB" >
  2336. </productMenu>
  2337. <productMenu id="volume"
  2338. type="11" >
  2339. </productMenu>
  2340. <productMenu id="battery"
  2341. type="1" >
  2342. </productMenu>
  2343. <productID id="3154"
  2344. />
  2345. <productGroupable type="0"
  2346. />
  2347. </product>
  2348. <product id="SRL3"
  2349. name="SRL3"
  2350. series="SRL"
  2351. latestVersion="1.4.1"
  2352. show = "1" >
  2353. <productMenu id="protocol"
  2354. type="2" >
  2355. </productMenu>
  2356. <productMenu id="alexa"
  2357. type="0" >
  2358. </productMenu>
  2359. <productMenu id="ota"
  2360. type="0" >
  2361. </productMenu>
  2362. <productMenu id="wa"
  2363. type="1" >
  2364. </productMenu>
  2365. <productMenu id="sip"
  2366. type="1" >
  2367. </productMenu>
  2368. <productMenu id="meshIntercom"
  2369. type="30" >
  2370. </productMenu>
  2371. <productMenu id="meshIntercom+"
  2372. type="3"
  2373. url="2" >
  2374. <productMenuType version="1.3.9"
  2375. type="2"
  2376. />
  2377. </productMenu>
  2378. <productMenu id="waveIntercom"
  2379. type="1" >
  2380. <productMenuType version="1.4.9"
  2381. type="0"
  2382. />
  2383. </productMenu>
  2384. <productMenu id="bluetoothIntercom"
  2385. type="1" >
  2386. </productMenu>
  2387. <productMenu id="phone"
  2388. type="1" >
  2389. </productMenu>
  2390. <productMenu id="music"
  2391. type="1" >
  2392. </productMenu>
  2393. <productMenu id="fmradio"
  2394. type="1" >
  2395. </productMenu>
  2396. <productMenu id="deviceSetting"
  2397. type="1"
  2398. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2399. <productMenuURL version="1.3"
  2400. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  2401. />
  2402. </productMenu>
  2403. <productMenu id="quickGuide"
  2404. type="0"
  2405. url=""
  2406. size="344KB" >
  2407. </productMenu>
  2408. <productMenu id="userGuide"
  2409. type="1"
  2410. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.2.2_en_250319.pdf"
  2411. size="3.41MB" >
  2412. </productMenu>
  2413. <productMenu id="volume"
  2414. type="11" >
  2415. </productMenu>
  2416. <productMenu id="battery"
  2417. type="1" >
  2418. </productMenu>
  2419. <productID id="3219"
  2420. />
  2421. <productGroupable type="0"
  2422. />
  2423. </product>
  2424. <product id="SRL_Mesh"
  2425. name="SRL-Mesh"
  2426. series="SRL"
  2427. latestVersion="1.6.1"
  2428. show = "1" >
  2429. <productMenu id="protocol"
  2430. type="2" >
  2431. </productMenu>
  2432. <productMenu id="alexa"
  2433. type="0" >
  2434. </productMenu>
  2435. <productMenu id="ota"
  2436. type="0" >
  2437. </productMenu>
  2438. <productMenu id="wa"
  2439. type="1" >
  2440. </productMenu>
  2441. <productMenu id="sip"
  2442. type="1" >
  2443. </productMenu>
  2444. <productMenu id="meshIntercom"
  2445. type="30" >
  2446. <productMenuType version="1.1.1"
  2447. type="20"
  2448. />
  2449. </productMenu>
  2450. <productMenu id="meshIntercom+"
  2451. type="3"
  2452. url="2" >
  2453. <productMenuType version="1.5.9"
  2454. type="2"
  2455. />
  2456. <productMenuURL version="1.1.1"
  2457. url="0"
  2458. />
  2459. </productMenu>
  2460. <productMenu id="waveIntercom"
  2461. type="1" >
  2462. <productMenuType version="1.6.9"
  2463. type="0"
  2464. />
  2465. </productMenu>
  2466. <productMenu id="bluetoothIntercom"
  2467. type="1" >
  2468. </productMenu>
  2469. <productMenu id="phone"
  2470. type="1" >
  2471. </productMenu>
  2472. <productMenu id="music"
  2473. type="1" >
  2474. </productMenu>
  2475. <productMenu id="fmradio"
  2476. type="1" >
  2477. </productMenu>
  2478. <productMenu id="deviceSetting"
  2479. type="1"
  2480. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2481. <productMenuURL version="1.5"
  2482. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  2483. />
  2484. <productMenuURL version="1.1.1"
  2485. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2486. />
  2487. <productMenuURL version="1.0.3"
  2488. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2489. />
  2490. </productMenu>
  2491. <productMenu id="quickGuide"
  2492. type="0"
  2493. url=""
  2494. size="344KB" >
  2495. </productMenu>
  2496. <productMenu id="userGuide"
  2497. type="1"
  2498. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.5.1_en_250213.pdf"
  2499. size="3.41MB" >
  2500. </productMenu>
  2501. <productMenu id="volume"
  2502. type="11" >
  2503. </productMenu>
  2504. <productMenu id="battery"
  2505. type="1" >
  2506. </productMenu>
  2507. <productID id="3216"
  2508. />
  2509. <productGroupable type="0"
  2510. />
  2511. </product>
  2512. <product id="SRL_EXT"
  2513. name="SRL-EXT"
  2514. series="SRL"
  2515. latestVersion="1.6.1"
  2516. show = "1" >
  2517. <productMenu id="protocol"
  2518. type="2" >
  2519. </productMenu>
  2520. <productMenu id="alexa"
  2521. type="0" >
  2522. </productMenu>
  2523. <productMenu id="ota"
  2524. type="0" >
  2525. </productMenu>
  2526. <productMenu id="wa"
  2527. type="0" >
  2528. </productMenu>
  2529. <productMenu id="sip"
  2530. type="1" >
  2531. </productMenu>
  2532. <productMenu id="meshIntercom"
  2533. type="30" >
  2534. <productMenuType version="1.1.1"
  2535. type="20"
  2536. />
  2537. </productMenu>
  2538. <productMenu id="meshIntercom+"
  2539. type="3"
  2540. url="2" >
  2541. <productMenuType version="1.5.9"
  2542. type="2"
  2543. />
  2544. <productMenuURL version="1.1.1"
  2545. url="0"
  2546. />
  2547. </productMenu>
  2548. <productMenu id="waveIntercom"
  2549. type="1" >
  2550. <productMenuType version="1.6.9"
  2551. type="0"
  2552. />
  2553. </productMenu>
  2554. <productMenu id="bluetoothIntercom"
  2555. type="1" >
  2556. </productMenu>
  2557. <productMenu id="phone"
  2558. type="1" >
  2559. </productMenu>
  2560. <productMenu id="music"
  2561. type="1" >
  2562. </productMenu>
  2563. <productMenu id="fmradio"
  2564. type="1" >
  2565. </productMenu>
  2566. <productMenu id="deviceSetting"
  2567. type="1"
  2568. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2569. <productMenuURL version="1.5"
  2570. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  2571. />
  2572. <productMenuURL version="1.1.1"
  2573. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2574. />
  2575. <productMenuURL version="1.0.3"
  2576. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2577. />
  2578. </productMenu>
  2579. <productMenu id="quickGuide"
  2580. type="0"
  2581. url=""
  2582. size="344KB" >
  2583. </productMenu>
  2584. <productMenu id="userGuide"
  2585. type="1"
  2586. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.5.1_en_250226.pdf"
  2587. size="3.41MB" >
  2588. </productMenu>
  2589. <productMenu id="volume"
  2590. type="11" >
  2591. </productMenu>
  2592. <productMenu id="battery"
  2593. type="1" >
  2594. </productMenu>
  2595. <productID id="3212"
  2596. />
  2597. <productGroupable type="0"
  2598. />
  2599. </product>
  2600. <product id="SRL2"
  2601. name="SRL2"
  2602. series="SRL"
  2603. latestVersion="1.0.9"
  2604. show = "1" >
  2605. <productMenu id="protocol"
  2606. type="0">
  2607. </productMenu>
  2608. <productMenu id="sip"
  2609. type="1" >
  2610. </productMenu>
  2611. <productMenu id="bluetoothIntercom"
  2612. type="1" >
  2613. </productMenu>
  2614. <productMenu id="intercomSetting"
  2615. type="1" >
  2616. </productMenu>
  2617. <productMenu id="phone"
  2618. type="2" >
  2619. </productMenu>
  2620. <productMenu id="fmradio"
  2621. type="3" >
  2622. </productMenu>
  2623. <productMenu id="deviceSetting"
  2624. type="1"
  2625. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  2626. </productMenu>
  2627. <productMenu id="quickGuide"
  2628. type="1"
  2629. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  2630. size="846KB" >
  2631. </productMenu>
  2632. <productMenu id="userGuide"
  2633. type="1"
  2634. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  2635. size="1.18MB" >
  2636. </productMenu>
  2637. <productID id="4530"
  2638. />
  2639. <productGroupable type="1"
  2640. />
  2641. </product>
  2642. <product id="Neotec2"
  2643. name="SRL Neotec2"
  2644. series="SRL"
  2645. latestVersion="1.1.5"
  2646. show = "1" >
  2647. <productMenu id="protocol"
  2648. type="0">
  2649. </productMenu>
  2650. <productMenu id="sip"
  2651. type="1" >
  2652. </productMenu>
  2653. <productMenu id="bluetoothIntercom"
  2654. type="1" >
  2655. </productMenu>
  2656. <productMenu id="intercomSetting"
  2657. type="1" >
  2658. </productMenu>
  2659. <productMenu id="phone"
  2660. type="2" >
  2661. </productMenu>
  2662. <productMenu id="fmradio"
  2663. type="3" >
  2664. </productMenu>
  2665. <productMenu id="deviceSetting"
  2666. type="1"
  2667. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  2668. </productMenu>
  2669. <productMenu id="quickGuide"
  2670. type="0"
  2671. url=""
  2672. size="796KB" >
  2673. </productMenu>
  2674. <productMenu id="userGuide"
  2675. type="1"
  2676. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  2677. size="1.90MB" >
  2678. </productMenu>
  2679. <productID id="4510"
  2680. />
  2681. <productGroupable type="1"
  2682. />
  2683. </product>
  2684. <product id="SPIDERST2ANC"
  2685. name="SPIDER ST2 ANC"
  2686. series="SPIDER"
  2687. latestVersion="0.5.1"
  2688. latestVersionVoicePrompt="0.2"
  2689. latestVersionMesh="0.8"
  2690. show = "-1" >
  2691. <productMenu id="protocol"
  2692. type="2" >
  2693. </productMenu>
  2694. <productMenu id="ota"
  2695. type="0" >
  2696. <otaPackages>
  2697. <package
  2698. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  2699. size="2945812"
  2700. />
  2701. </otaPackages>
  2702. </productMenu>
  2703. <productMenu id="wa"
  2704. type="0" >
  2705. </productMenu>
  2706. <productMenu id="led"
  2707. type="1" >
  2708. </productMenu>
  2709. <productMenu id="meshIntercom"
  2710. type="30" >
  2711. </productMenu>
  2712. <productMenu id="fmradio"
  2713. type="1" >
  2714. </productMenu>
  2715. <productMenu id="phone"
  2716. type="1" >
  2717. </productMenu>
  2718. <productMenu id="music"
  2719. type="1" >
  2720. </productMenu>
  2721. <productMenu id="musicSharing"
  2722. type="0" >
  2723. </productMenu>
  2724. <productMenu id="deviceSetting"
  2725. type="1"
  2726. url="https://api.sena.com/support/test/xml/NS_60R_OTATest_02.xml" >
  2727. </productMenu>
  2728. <productMenu id="quickGuide"
  2729. type="1"
  2730. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  2731. size="1.12MB" >
  2732. </productMenu>
  2733. <productMenu id="userGuide"
  2734. type="1"
  2735. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  2736. size="2.0MB" >
  2737. </productMenu>
  2738. <productMenu id="videoGuide"
  2739. type="1"
  2740. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2741. size="3.41MB" >
  2742. </productMenu>
  2743. <productMenu id="volume"
  2744. type="12" >
  2745. </productMenu>
  2746. <productMenu id="battery"
  2747. type="1" >
  2748. </productMenu>
  2749. <productID id="6A00"
  2750. />
  2751. <productGroupable type="0"
  2752. />
  2753. </product>
  2754. <product id="SPIDER_ST1"
  2755. name="SPIDER ST1"
  2756. series="SPIDER"
  2757. latestVersion="2.5"
  2758. latestVersionVoicePrompt="1.1"
  2759. show = "1" >
  2760. <productMenu id="protocol"
  2761. type="2" >
  2762. </productMenu>
  2763. <productMenu id="alexa"
  2764. type="0" >
  2765. </productMenu>
  2766. <productMenu id="ota"
  2767. type="2" >
  2768. <productMenuType version="2.1.9"
  2769. type="0"
  2770. />
  2771. <otaPackages>
  2772. <package
  2773. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_ST1-v2.5-build1.img"
  2774. size="2945812"
  2775. />
  2776. </otaPackages>
  2777. </productMenu>
  2778. <productMenu id="wa"
  2779. type="0" >
  2780. </productMenu>
  2781. <productMenu id="meshIntercom"
  2782. type="30" >
  2783. <productMenuType version="2.1.1"
  2784. type="20"
  2785. />
  2786. </productMenu>
  2787. <productMenu id="meshIntercom+"
  2788. type="3"
  2789. url="2" >
  2790. <productMenuType version="2.2.9"
  2791. type="2"
  2792. />
  2793. <productMenuURL version="2.1.1"
  2794. url="0"
  2795. />
  2796. </productMenu>
  2797. <productMenu id="waveIntercom"
  2798. type="1" >
  2799. <productMenuType version="2.3.9"
  2800. type="0"
  2801. />
  2802. </productMenu>
  2803. <productMenu id="phone"
  2804. type="1" >
  2805. </productMenu>
  2806. <productMenu id="music"
  2807. type="1" >
  2808. </productMenu>
  2809. <productMenu id="musicSharing"
  2810. type="0" >
  2811. </productMenu>
  2812. <productMenu id="deviceSetting"
  2813. type="1"
  2814. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  2815. <productMenuURL version="2.4.9"
  2816. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  2817. />
  2818. <productMenuURL version="2.2.2"
  2819. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  2820. />
  2821. <productMenuURL version="2.1.1"
  2822. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  2823. />
  2824. </productMenu>
  2825. <productMenu id="quickGuide"
  2826. type="0"
  2827. url=""
  2828. size="1.12MB" >
  2829. </productMenu>
  2830. <productMenu id="userGuide"
  2831. type="1"
  2832. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  2833. size="2.0MB" >
  2834. </productMenu>
  2835. <productMenu id="videoGuide"
  2836. type="1"
  2837. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2838. size="3.41MB" >
  2839. </productMenu>
  2840. <productMenu id="volume"
  2841. type="12" >
  2842. </productMenu>
  2843. <productMenu id="battery"
  2844. type="1" >
  2845. </productMenu>
  2846. <productID id="6800"
  2847. />
  2848. <productGroupable type="0"
  2849. />
  2850. </product>
  2851. <product id="SPIDER_ST1"
  2852. name="SPIDER ST1"
  2853. series="SPIDER"
  2854. latestVersion="1.2.2"
  2855. show = "-1" >
  2856. <productMenu id="protocol"
  2857. type="2" >
  2858. </productMenu>
  2859. <productMenu id="alexa"
  2860. type="0" >
  2861. </productMenu>
  2862. <productMenu id="ota"
  2863. type="0" >
  2864. </productMenu>
  2865. <productMenu id="wa"
  2866. type="0" >
  2867. </productMenu>
  2868. <productMenu id="meshIntercom"
  2869. type="20" >
  2870. </productMenu>
  2871. <productMenu id="phone"
  2872. type="1" >
  2873. </productMenu>
  2874. <productMenu id="music"
  2875. type="1" >
  2876. </productMenu>
  2877. <productMenu id="deviceSetting"
  2878. type="1"
  2879. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  2880. </productMenu>
  2881. <productMenu id="quickGuide"
  2882. type="0"
  2883. url=""
  2884. size="1.12MB" >
  2885. </productMenu>
  2886. <productMenu id="userGuide"
  2887. type="1"
  2888. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  2889. size="2.0MB" >
  2890. </productMenu>
  2891. <productMenu id="videoGuide"
  2892. type="1"
  2893. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2894. size="3.41MB" >
  2895. </productMenu>
  2896. <productMenu id="volume"
  2897. type="13" >
  2898. <productMenuType version="1.1.6"
  2899. type="14"/>
  2900. </productMenu>
  2901. <productMenu id="battery"
  2902. type="1" >
  2903. </productMenu>
  2904. <productID id="6510"
  2905. />
  2906. <productGroupable type="0"
  2907. />
  2908. </product>
  2909. <product id="SPIDER_RT1"
  2910. name="SPIDER RT1"
  2911. series="SPIDER"
  2912. latestVersion="2.5"
  2913. latestVersionVoicePrompt="1.1"
  2914. show = "1" >
  2915. <productMenu id="protocol"
  2916. type="2" >
  2917. </productMenu>
  2918. <productMenu id="alexa"
  2919. type="0" >
  2920. </productMenu>
  2921. <productMenu id="ota"
  2922. type="2" >
  2923. <productMenuType version="2.1.9"
  2924. type="0"
  2925. />
  2926. <otaPackages>
  2927. <package
  2928. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_RT1-v2.5-build1.img"
  2929. size="2945812"
  2930. />
  2931. </otaPackages>
  2932. </productMenu>
  2933. <productMenu id="wa"
  2934. type="0" >
  2935. </productMenu>
  2936. <productMenu id="meshIntercom"
  2937. type="30" >
  2938. <productMenuType version="2.1.1"
  2939. type="20"
  2940. />
  2941. </productMenu>
  2942. <productMenu id="meshIntercom+"
  2943. type="3"
  2944. url="2" >
  2945. <productMenuType version="2.2.9"
  2946. type="2"
  2947. />
  2948. <productMenuURL version="2.1.1"
  2949. url="0"
  2950. />
  2951. </productMenu>
  2952. <productMenu id="waveIntercom"
  2953. type="1" >
  2954. <productMenuType version="2.3.9"
  2955. type="0"
  2956. />
  2957. </productMenu>
  2958. <productMenu id="phone"
  2959. type="1" >
  2960. </productMenu>
  2961. <productMenu id="music"
  2962. type="1" >
  2963. </productMenu>
  2964. <productMenu id="musicSharing"
  2965. type="0" >
  2966. </productMenu>
  2967. <productMenu id="deviceSetting"
  2968. type="1"
  2969. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  2970. <productMenuURL version="2.4.9"
  2971. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  2972. />
  2973. <productMenuURL version="2.2.2"
  2974. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  2975. />
  2976. <productMenuURL version="2.1.1"
  2977. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  2978. />
  2979. </productMenu>
  2980. <productMenu id="quickGuide"
  2981. type="0"
  2982. url=""
  2983. size="1.12MB" >
  2984. </productMenu>
  2985. <productMenu id="userGuide"
  2986. type="1"
  2987. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  2988. size="2.0MB" >
  2989. </productMenu>
  2990. <productMenu id="videoGuide"
  2991. type="1"
  2992. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2993. size="3.41MB" >
  2994. </productMenu>
  2995. <productMenu id="connectGuide"
  2996. type="1"
  2997. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  2998. size="1.12MB" >
  2999. </productMenu>
  3000. <productMenu id="volume"
  3001. type="12" >
  3002. </productMenu>
  3003. <productMenu id="battery"
  3004. type="1" >
  3005. </productMenu>
  3006. <productID id="6810"
  3007. />
  3008. <productGroupable type="0"
  3009. />
  3010. </product>
  3011. <product id="SPIDER_RT1"
  3012. name="SPIDER RT1"
  3013. series="SPIDER"
  3014. latestVersion="1.2.2"
  3015. show = "-1" >
  3016. <productMenu id="protocol"
  3017. type="2" >
  3018. </productMenu>
  3019. <productMenu id="alexa"
  3020. type="0" >
  3021. </productMenu>
  3022. <productMenu id="ota"
  3023. type="0" >
  3024. </productMenu>
  3025. <productMenu id="wa"
  3026. type="0" >
  3027. </productMenu>
  3028. <productMenu id="meshIntercom"
  3029. type="20" >
  3030. </productMenu>
  3031. <productMenu id="phone"
  3032. type="1" >
  3033. </productMenu>
  3034. <productMenu id="music"
  3035. type="1" >
  3036. </productMenu>
  3037. <productMenu id="deviceSetting"
  3038. type="1"
  3039. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  3040. </productMenu>
  3041. <productMenu id="quickGuide"
  3042. type="0"
  3043. url=""
  3044. size="1.32MB" >
  3045. </productMenu>
  3046. <productMenu id="userGuide"
  3047. type="1"
  3048. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  3049. size="1.79MB" >
  3050. </productMenu>
  3051. <productMenu id="videoGuide"
  3052. type="1"
  3053. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  3054. size="3.41MB" >
  3055. </productMenu>
  3056. <productMenu id="volume"
  3057. type="13" >
  3058. <productMenuType version="1.1.6"
  3059. type="14"/>
  3060. </productMenu>
  3061. <productMenu id="battery"
  3062. type="1" >
  3063. </productMenu>
  3064. <productID id="6500"
  3065. />
  3066. <productGroupable type="0"
  3067. />
  3068. </product>
  3069. <product id="30K"
  3070. name="30K"
  3071. series="30"
  3072. latestVersion="4.5"
  3073. show = "1" >
  3074. <productMenu id="protocol"
  3075. type="2" >
  3076. </productMenu>
  3077. <productMenu id="alexa"
  3078. type="0" >
  3079. </productMenu>
  3080. <productMenu id="wa"
  3081. type="1" >
  3082. </productMenu>
  3083. <productMenu id="sip"
  3084. type="1" >
  3085. </productMenu>
  3086. <productMenu id="meshIntercom"
  3087. type="30" >
  3088. <productMenuType version="4.0.4"
  3089. type="20"
  3090. />
  3091. </productMenu>
  3092. <productMenu id="meshIntercom+"
  3093. type="3"
  3094. url="2" >
  3095. <productMenuType version="4.3.9"
  3096. type="2"
  3097. />
  3098. <productMenuURL version="4.0.4"
  3099. url="0"
  3100. />
  3101. </productMenu>
  3102. <productMenu id="waveIntercom"
  3103. type="1" >
  3104. <productMenuType version="4.4.9"
  3105. type="0"
  3106. />
  3107. </productMenu>
  3108. <productMenu id="bluetoothIntercom"
  3109. type="1" >
  3110. </productMenu>
  3111. <productMenu id="phone"
  3112. type="1" >
  3113. </productMenu>
  3114. <productMenu id="music"
  3115. type="1" >
  3116. </productMenu>
  3117. <productMenu id="fmradio"
  3118. type="1" >
  3119. </productMenu>
  3120. <productMenu id="deviceSetting"
  3121. type="1"
  3122. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  3123. <productMenuURL version="4.3"
  3124. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  3125. />
  3126. <productMenuURL version="4.2"
  3127. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  3128. />
  3129. <productMenuURL version="4.0.4"
  3130. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  3131. />
  3132. </productMenu>
  3133. <productMenu id="quickGuide"
  3134. type="0"
  3135. url=""
  3136. size="934KB" >
  3137. </productMenu>
  3138. <productMenu id="userGuide"
  3139. type="1"
  3140. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  3141. size="1.14MB" >
  3142. </productMenu>
  3143. <productMenu id="volume"
  3144. type="11" >
  3145. </productMenu>
  3146. <productMenu id="battery"
  3147. type="1" >
  3148. </productMenu>
  3149. <productID id="3211"
  3150. />
  3151. <productGroupable type="0"
  3152. />
  3153. </product>
  3154. <product id="30K"
  3155. name="30K"
  3156. series="30"
  3157. latestVersion="3.5"
  3158. show = "-1" >
  3159. <productMenu id="protocol"
  3160. type="1"
  3161. url="0">
  3162. </productMenu>
  3163. <productMenu id="wa"
  3164. type="7" >
  3165. </productMenu>
  3166. <productMenu id="sip"
  3167. type="1" >
  3168. </productMenu>
  3169. <productMenu id="meshIntercom"
  3170. type="20" >
  3171. <productMenuType version="2.9.9"
  3172. type="10"
  3173. />
  3174. </productMenu>
  3175. <productMenu id="meshIntercom+"
  3176. type="3"
  3177. url="2" >
  3178. <productMenuType version="3.4.9"
  3179. type="2"
  3180. />
  3181. <productMenuType version="2.9.9"
  3182. type="1"
  3183. />
  3184. <productMenuURL version="3.3.1"
  3185. url="0"
  3186. />
  3187. </productMenu>
  3188. <productMenu id="bluetoothIntercom"
  3189. type="1" >
  3190. </productMenu>
  3191. <productMenu id="phone"
  3192. type="1" >
  3193. </productMenu>
  3194. <productMenu id="music"
  3195. type="1" >
  3196. </productMenu>
  3197. <productMenu id="fmradio"
  3198. type="1" >
  3199. </productMenu>
  3200. <productMenu id="deviceSetting"
  3201. type="1"
  3202. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  3203. <productMenuURL version="3.4.9"
  3204. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  3205. />
  3206. <productMenuURL version="3.3.1"
  3207. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  3208. />
  3209. <productMenuURL version="3.0.1"
  3210. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  3211. />
  3212. <productMenuURL version="2.3.1"
  3213. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  3214. />
  3215. <productMenuURL version="2.0"
  3216. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  3217. />
  3218. <productMenuURL version="1.0.3"
  3219. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  3220. />
  3221. </productMenu>
  3222. <productMenu id="quickGuide"
  3223. type="0"
  3224. url=""
  3225. size="1.06MB" >
  3226. </productMenu>
  3227. <productMenu id="userGuide"
  3228. type="1"
  3229. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  3230. size="3.15MB" >
  3231. </productMenu>
  3232. <productMenu id="volume"
  3233. type="1" >
  3234. </productMenu>
  3235. <productID id="3110"
  3236. />
  3237. <productGroupable type="0"
  3238. />
  3239. </product>
  3240. <product id="FURY"
  3241. name="FURY"
  3242. series="Helmet"
  3243. latestVersion="1.0"
  3244. show = "-1" >
  3245. <productMenu id="protocol"
  3246. type="2" >
  3247. </productMenu>
  3248. <productMenu id="alexa"
  3249. type="0" >
  3250. </productMenu>
  3251. <productMenu id="ota"
  3252. type="0" >
  3253. </productMenu>
  3254. <productMenu id="wa"
  3255. type="0" >
  3256. </productMenu>
  3257. <productMenu id="meshIntercom"
  3258. type="20" >
  3259. </productMenu>
  3260. <productMenu id="phone"
  3261. type="1" >
  3262. </productMenu>
  3263. <productMenu id="music"
  3264. type="1" >
  3265. </productMenu>
  3266. <productMenu id="fmradio"
  3267. type="1" >
  3268. </productMenu>
  3269. <productMenu id="deviceSetting"
  3270. type="1"
  3271. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  3272. </productMenu>
  3273. <productMenu id="quickGuide"
  3274. type="1"
  3275. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  3276. size="1.12MB" >
  3277. </productMenu>
  3278. <productMenu id="userGuide"
  3279. type="1"
  3280. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  3281. size="2.0MB" >
  3282. </productMenu>
  3283. <productMenu id="volume"
  3284. type="13" >
  3285. </productMenu>
  3286. <productMenu id="battery"
  3287. type="1" >
  3288. </productMenu>
  3289. <productID id="5552"
  3290. />
  3291. <productGroupable type="0"
  3292. />
  3293. </product>
  3294. <product id="MomentumM"
  3295. name="Momentum EVO"
  3296. series="Helmet"
  3297. latestVersion="2.1.2"
  3298. show = "1" >
  3299. <productMenu id="protocol"
  3300. type="1"
  3301. url="0">
  3302. </productMenu>
  3303. <productMenu id="wa"
  3304. type="3" >
  3305. </productMenu>
  3306. <productMenu id="sip"
  3307. type="1" >
  3308. </productMenu>
  3309. <productMenu id="meshIntercom"
  3310. type="20" >
  3311. <productMenuType version="1.9.9"
  3312. type="10"
  3313. />
  3314. </productMenu>
  3315. <productMenu id="bluetoothIntercom"
  3316. type="1" >
  3317. </productMenu>
  3318. <productMenu id="phone"
  3319. type="1" >
  3320. </productMenu>
  3321. <productMenu id="music"
  3322. type="1" >
  3323. </productMenu>
  3324. <productMenu id="fmradio"
  3325. type="1" >
  3326. </productMenu>
  3327. <productMenu id="deviceSetting"
  3328. type="1"
  3329. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  3330. <productMenuURL version="1.0.1"
  3331. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  3332. />
  3333. </productMenu>
  3334. <productMenu id="quickGuide"
  3335. type="1"
  3336. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  3337. size="1.06MB" >
  3338. </productMenu>
  3339. <productMenu id="userGuide"
  3340. type="1"
  3341. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  3342. size="3.15MB" >
  3343. </productMenu>
  3344. <productMenu id="volume"
  3345. type="2" >
  3346. </productMenu>
  3347. <productID id="3116"
  3348. />
  3349. <productGroupable type="0"
  3350. />
  3351. </product>
  3352. <product id="Momentum"
  3353. name="Momentum"
  3354. series="Helmet"
  3355. latestVersion="1.0.9"
  3356. show = "1" >
  3357. <productMenu id="protocol"
  3358. type="0">
  3359. </productMenu>
  3360. <productMenu id="sip"
  3361. type="1" >
  3362. </productMenu>
  3363. <productMenu id="bluetoothIntercom"
  3364. type="1" >
  3365. </productMenu>
  3366. <productMenu id="intercomSetting"
  3367. type="1" >
  3368. </productMenu>
  3369. <productMenu id="phone"
  3370. type="2" >
  3371. </productMenu>
  3372. <productMenu id="fmradio"
  3373. type="3" >
  3374. </productMenu>
  3375. <productMenu id="deviceSetting"
  3376. type="1"
  3377. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  3378. </productMenu>
  3379. <productMenu id="quickGuide"
  3380. type="1"
  3381. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  3382. size="796KB" >
  3383. </productMenu>
  3384. <productMenu id="userGuide"
  3385. type="1"
  3386. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  3387. size="1.90MB" >
  3388. </productMenu>
  3389. <productID id="4310"
  3390. />
  3391. <productGroupable type="1"
  3392. />
  3393. </product>
  3394. <product id="Momentum_Pro"
  3395. name="Momentum Pro"
  3396. series="Helmet"
  3397. latestVersion="1.0.6"
  3398. show = "1" >
  3399. <productMenu id="protocol"
  3400. type="0">
  3401. </productMenu>
  3402. <productMenu id="sip"
  3403. type="1" >
  3404. </productMenu>
  3405. <productMenu id="bluetoothIntercom"
  3406. type="1" >
  3407. </productMenu>
  3408. <productMenu id="intercomSetting"
  3409. type="1" >
  3410. </productMenu>
  3411. <productMenu id="phone"
  3412. type="2" >
  3413. </productMenu>
  3414. <productMenu id="fmradio"
  3415. type="3" >
  3416. </productMenu>
  3417. <productMenu id="deviceSetting"
  3418. type="1"
  3419. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  3420. </productMenu>
  3421. <productMenu id="quickGuide"
  3422. type="1"
  3423. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  3424. size="796KB" >
  3425. </productMenu>
  3426. <productMenu id="userGuide"
  3427. type="1"
  3428. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  3429. size="1.90MB" >
  3430. </productMenu>
  3431. <productID id="4330"
  3432. />
  3433. <productGroupable type="1"
  3434. />
  3435. </product>
  3436. <product id="Momentum_INC"
  3437. name="Momentum INC"
  3438. series="Helmet"
  3439. latestVersion="1.0.7"
  3440. show = "1" >
  3441. <productMenu id="protocol"
  3442. type="0">
  3443. </productMenu>
  3444. <productMenu id="sip"
  3445. type="1" >
  3446. </productMenu>
  3447. <productMenu id="bluetoothIntercom"
  3448. type="1" >
  3449. </productMenu>
  3450. <productMenu id="intercomSetting"
  3451. type="1" >
  3452. </productMenu>
  3453. <productMenu id="phone"
  3454. type="2" >
  3455. </productMenu>
  3456. <productMenu id="fmradio"
  3457. type="3" >
  3458. </productMenu>
  3459. <productMenu id="deviceSetting"
  3460. type="1"
  3461. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  3462. </productMenu>
  3463. <productMenu id="quickGuide"
  3464. type="1"
  3465. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  3466. size="794KB" >
  3467. </productMenu>
  3468. <productMenu id="userGuide"
  3469. type="1"
  3470. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  3471. size="1.53MB" >
  3472. </productMenu>
  3473. <productID id="4410"
  3474. />
  3475. <productGroupable type="1"
  3476. />
  3477. </product>
  3478. <product id="Momentum_INCP"
  3479. name="Momentum INC Pro"
  3480. series="Helmet"
  3481. latestVersion="1.0.4"
  3482. show = "1" >
  3483. <productMenu id="protocol"
  3484. type="0">
  3485. </productMenu>
  3486. <productMenu id="sip"
  3487. type="1" >
  3488. </productMenu>
  3489. <productMenu id="bluetoothIntercom"
  3490. type="1" >
  3491. </productMenu>
  3492. <productMenu id="intercomSetting"
  3493. type="1" >
  3494. </productMenu>
  3495. <productMenu id="phone"
  3496. type="2" >
  3497. </productMenu>
  3498. <productMenu id="fmradio"
  3499. type="3" >
  3500. </productMenu>
  3501. <productMenu id="deviceSetting"
  3502. type="1"
  3503. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  3504. </productMenu>
  3505. <productMenu id="quickGuide"
  3506. type="1"
  3507. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  3508. size="794KB" >
  3509. </productMenu>
  3510. <productMenu id="userGuide"
  3511. type="1"
  3512. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  3513. size="1.53MB" >
  3514. </productMenu>
  3515. <productID id="4430"
  3516. />
  3517. <productGroupable type="1"
  3518. />
  3519. </product>
  3520. <product id="Momentum_Lite"
  3521. name="Momentum Lite"
  3522. series="Helmet"
  3523. latestVersion="2.0.3"
  3524. show = "1" >
  3525. <productMenu id="protocol"
  3526. type="0">
  3527. </productMenu>
  3528. <productMenu id="sip"
  3529. type="1" >
  3530. </productMenu>
  3531. <productMenu id="bluetoothIntercom"
  3532. type="1" >
  3533. </productMenu>
  3534. <productMenu id="phone"
  3535. type="2" >
  3536. </productMenu>
  3537. <productMenu id="fmradio"
  3538. type="3" >
  3539. </productMenu>
  3540. <productMenu id="deviceSetting"
  3541. type="1"
  3542. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  3543. <productMenuURL version="1.1"
  3544. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  3545. />
  3546. </productMenu>
  3547. <productMenu id="quickGuide"
  3548. type="1"
  3549. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  3550. size="790KB" >
  3551. </productMenu>
  3552. <productMenu id="userGuide"
  3553. type="1"
  3554. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  3555. size="1.42MB" >
  3556. </productMenu>
  3557. <productID id="5526"
  3558. />
  3559. <productGroupable type="0"
  3560. />
  3561. </product>
  3562. <product id="OUTRUSHM"
  3563. name="OUTRUSH M"
  3564. series="Helmet"
  3565. latestVersion="1.0"
  3566. show = "-1" >
  3567. <productMenu id="protocol"
  3568. type="2" >
  3569. </productMenu>
  3570. <productMenu id="alexa"
  3571. type="0" >
  3572. </productMenu>
  3573. <productMenu id="ota"
  3574. type="0" >
  3575. </productMenu>
  3576. <productMenu id="wa"
  3577. type="0" >
  3578. </productMenu>
  3579. <productMenu id="meshIntercom"
  3580. type="30" >
  3581. </productMenu>
  3582. <productMenu id="phone"
  3583. type="1" >
  3584. </productMenu>
  3585. <productMenu id="music"
  3586. type="1" >
  3587. </productMenu>
  3588. <productMenu id="fmradio"
  3589. type="1" >
  3590. </productMenu>
  3591. <productMenu id="deviceSetting"
  3592. type="1"
  3593. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  3594. </productMenu>
  3595. <productMenu id="quickGuide"
  3596. type="1"
  3597. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  3598. size="1.12MB" >
  3599. </productMenu>
  3600. <productMenu id="userGuide"
  3601. type="1"
  3602. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  3603. size="2.0MB" >
  3604. </productMenu>
  3605. <productMenu id="volume"
  3606. type="13" >
  3607. </productMenu>
  3608. <productMenu id="battery"
  3609. type="1" >
  3610. </productMenu>
  3611. <productID id="5600"
  3612. />
  3613. <productGroupable type="0"
  3614. />
  3615. </product>
  3616. <product id="ProRideEVO"
  3617. name="ProRide EVO"
  3618. series="Helmet"
  3619. latestVersion="1.1.2"
  3620. show = "1" >
  3621. <productMenu id="protocol"
  3622. type="0">
  3623. </productMenu>
  3624. <productMenu id="sip"
  3625. type="1" >
  3626. </productMenu>
  3627. <productMenu id="bluetoothIntercom"
  3628. type="1" >
  3629. </productMenu>
  3630. <productMenu id="phone"
  3631. type="2" >
  3632. </productMenu>
  3633. <productMenu id="fmradio"
  3634. type="3" >
  3635. </productMenu>
  3636. <productMenu id="deviceSetting"
  3637. type="1"
  3638. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  3639. </productMenu>
  3640. <productMenu id="userGuide"
  3641. type="1"
  3642. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  3643. size="778KB" >
  3644. </productMenu>
  3645. <productID id="5426"
  3646. />
  3647. <productGroupable type="0"
  3648. />
  3649. </product>
  3650. <product id="OUTRUSHR"
  3651. name="OUTRUSH R"
  3652. series="Helmet"
  3653. latestVersion="2.1"
  3654. show = "1" >
  3655. <productMenu id="protocol"
  3656. type="3" >
  3657. </productMenu>
  3658. <productMenu id="sip"
  3659. type="1" >
  3660. </productMenu>
  3661. <productMenu id="bluetoothIntercom"
  3662. type="1" >
  3663. </productMenu>
  3664. <productMenu id="phone"
  3665. type="1" >
  3666. </productMenu>
  3667. <productMenu id="fmradio"
  3668. type="0" >
  3669. </productMenu>
  3670. <productMenu id="deviceSetting"
  3671. type="1"
  3672. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  3673. </productMenu>
  3674. <productMenu id="userGuide"
  3675. type="1"
  3676. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  3677. size="1.14MB" >
  3678. </productMenu>
  3679. <productID id="5440"
  3680. />
  3681. <productGroupable type="0"
  3682. />
  3683. </product>
  3684. <product id="OUTRUSHR"
  3685. name="OUTRUSH R"
  3686. series="Helmet"
  3687. latestVersion="1.1.3"
  3688. show = "-1" >
  3689. <productMenu id="protocol"
  3690. type="0">
  3691. </productMenu>
  3692. <productMenu id="sip"
  3693. type="1" >
  3694. </productMenu>
  3695. <productMenu id="bluetoothIntercom"
  3696. type="1" >
  3697. </productMenu>
  3698. <productMenu id="phone"
  3699. type="2" >
  3700. </productMenu>
  3701. <productMenu id="fmradio"
  3702. type="3" >
  3703. </productMenu>
  3704. <productMenu id="deviceSetting"
  3705. type="1"
  3706. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  3707. </productMenu>
  3708. <productMenu id="userGuide"
  3709. type="1"
  3710. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  3711. size="660KB" >
  3712. </productMenu>
  3713. <productID id="5424"
  3714. />
  3715. <productGroupable type="0"
  3716. />
  3717. </product>
  3718. <product id="OUTSTARS"
  3719. name="OUTSTAR S"
  3720. series="Helmet"
  3721. latestVersion="2.0.1"
  3722. show = "-1" >
  3723. <productMenu id="protocol"
  3724. type="3" >
  3725. </productMenu>
  3726. <productMenu id="sip"
  3727. type="1" >
  3728. </productMenu>
  3729. <productMenu id="bluetoothIntercom"
  3730. type="1" >
  3731. </productMenu>
  3732. <productMenu id="phone"
  3733. type="1" >
  3734. </productMenu>
  3735. <productMenu id="fmradio"
  3736. type="0" >
  3737. </productMenu>
  3738. <productMenu id="deviceSetting"
  3739. type="1"
  3740. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  3741. </productMenu>
  3742. <productMenu id="userGuide"
  3743. type="0"
  3744. url=""
  3745. size="1.14MB" >
  3746. </productMenu>
  3747. <productID id="5443"
  3748. />
  3749. <productGroupable type="0"
  3750. />
  3751. </product>
  3752. <product id="OUTSTARS"
  3753. name="OUTSTAR S"
  3754. series="Helmet"
  3755. latestVersion="1.1.3"
  3756. show = "1" >
  3757. <productMenu id="protocol"
  3758. type="0">
  3759. </productMenu>
  3760. <productMenu id="sip"
  3761. type="1" >
  3762. </productMenu>
  3763. <productMenu id="bluetoothIntercom"
  3764. type="1" >
  3765. </productMenu>
  3766. <productMenu id="phone"
  3767. type="2" >
  3768. </productMenu>
  3769. <productMenu id="fmradio"
  3770. type="3" >
  3771. </productMenu>
  3772. <productMenu id="deviceSetting"
  3773. type="1"
  3774. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  3775. </productMenu>
  3776. <productMenu id="quickGuide"
  3777. type="1"
  3778. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  3779. size="643KB" >
  3780. </productMenu>
  3781. <productMenu id="userGuide"
  3782. type="1"
  3783. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  3784. size="1.15MB" >
  3785. </productMenu>
  3786. <productID id="5428"
  3787. />
  3788. <productGroupable type="0"
  3789. />
  3790. </product>
  3791. <product id="OUTRIDE"
  3792. name="OUTRIDE"
  3793. series="Helmet"
  3794. latestVersion="1.0.1"
  3795. show = "1" >
  3796. <productMenu id="protocol"
  3797. type="0">
  3798. </productMenu>
  3799. <productMenu id="sip"
  3800. type="1" >
  3801. </productMenu>
  3802. <productMenu id="bluetoothIntercom"
  3803. type="1" >
  3804. </productMenu>
  3805. <productMenu id="phone"
  3806. type="2" >
  3807. </productMenu>
  3808. <productMenu id="fmradio"
  3809. type="3" >
  3810. </productMenu>
  3811. <productMenu id="deviceSetting"
  3812. type="1"
  3813. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  3814. </productMenu>
  3815. <productMenu id="quickGuide"
  3816. type="1"
  3817. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  3818. size="643KB" >
  3819. </productMenu>
  3820. <productMenu id="userGuide"
  3821. type="1"
  3822. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  3823. size="660KB" >
  3824. </productMenu>
  3825. <productID id="5432"
  3826. />
  3827. <productGroupable type="0"
  3828. />
  3829. </product>
  3830. <product id="OUTFORCE"
  3831. name="OUTFORCE"
  3832. series="Helmet"
  3833. latestVersion="1.0.1"
  3834. show = "1" >
  3835. <productMenu id="protocol"
  3836. type="0">
  3837. </productMenu>
  3838. <productMenu id="sip"
  3839. type="1" >
  3840. </productMenu>
  3841. <productMenu id="bluetoothIntercom"
  3842. type="1" >
  3843. </productMenu>
  3844. <productMenu id="phone"
  3845. type="2" >
  3846. </productMenu>
  3847. <productMenu id="fmradio"
  3848. type="3" >
  3849. </productMenu>
  3850. <productMenu id="deviceSetting"
  3851. type="1"
  3852. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  3853. </productMenu>
  3854. <productMenu id="quickGuide"
  3855. type="1"
  3856. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  3857. size="643KB" >
  3858. </productMenu>
  3859. <productMenu id="userGuide"
  3860. type="1"
  3861. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  3862. size="660KB" >
  3863. </productMenu>
  3864. <productID id="5430"
  3865. />
  3866. <productGroupable type="0"
  3867. />
  3868. </product>
  3869. <product id="Rumba"
  3870. name="Rumba"
  3871. series="30"
  3872. latestVersion="2.0"
  3873. show = "-1" >
  3874. <productMenu id="protocol"
  3875. type="3" >
  3876. </productMenu>
  3877. <productMenu id="sip"
  3878. type="1" >
  3879. </productMenu>
  3880. <productMenu id="bluetoothIntercom"
  3881. type="1" >
  3882. </productMenu>
  3883. <productMenu id="deviceSetting"
  3884. type="1"
  3885. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  3886. </productMenu>
  3887. <productMenu id="quickGuide"
  3888. type="1"
  3889. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  3890. size="344KB" >
  3891. </productMenu>
  3892. <productMenu id="userGuide"
  3893. type="1"
  3894. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  3895. size="1.14MB" >
  3896. </productMenu>
  3897. <productID id="6322"
  3898. />
  3899. <productGroupable type="0"
  3900. />
  3901. </product>
  3902. <product id="Savage"
  3903. name="Savage"
  3904. series="Helmet"
  3905. latestVersion="1.2.2"
  3906. show = "1" >
  3907. <productMenu id="protocol"
  3908. type="0">
  3909. </productMenu>
  3910. <productMenu id="sip"
  3911. type="1" >
  3912. </productMenu>
  3913. <productMenu id="bluetoothIntercom"
  3914. type="1" >
  3915. </productMenu>
  3916. <productMenu id="phone"
  3917. type="2" >
  3918. </productMenu>
  3919. <productMenu id="fmradio"
  3920. type="3" >
  3921. </productMenu>
  3922. <productMenu id="deviceSetting"
  3923. type="1"
  3924. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  3925. <productMenuURL version="1.9"
  3926. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  3927. />
  3928. <productMenuURL version="1.1"
  3929. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  3930. />
  3931. </productMenu>
  3932. <productMenu id="quickGuide"
  3933. type="1"
  3934. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  3935. size="796KB" >
  3936. </productMenu>
  3937. <productMenu id="userGuide"
  3938. type="1"
  3939. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  3940. size="910KB" >
  3941. </productMenu>
  3942. <productID id="5550"
  3943. />
  3944. <productGroupable type="0"
  3945. />
  3946. </product>
  3947. <product id="SPECTOR"
  3948. name="SPECTOR"
  3949. series="Helmet"
  3950. latestVersion="1.0"
  3951. latestVersionVoicePrompt="1.1"
  3952. show = "-1" >
  3953. <productMenu id="protocol"
  3954. type="2" >
  3955. </productMenu>
  3956. <productMenu id="ota"
  3957. type="2" >
  3958. <otaLanguages>
  3959. <otaLanguage
  3960. id="0"
  3961. name="English"
  3962. package="0"
  3963. />
  3964. <otaLanguage
  3965. id="0"
  3966. name="French"
  3967. package="1"
  3968. />
  3969. <otaLanguage
  3970. id="0"
  3971. name="Spanish"
  3972. package="2"
  3973. />
  3974. <otaLanguage
  3975. id="0"
  3976. name="Italian"
  3977. package="3"
  3978. />
  3979. <otaLanguage
  3980. id="0"
  3981. name="German"
  3982. package="4"
  3983. />
  3984. <otaLanguage
  3985. id="0"
  3986. name="Dutch"
  3987. package="5"
  3988. />
  3989. <otaLanguage
  3990. id="0"
  3991. name="Russian"
  3992. package="6"
  3993. />
  3994. <otaLanguage
  3995. id="0"
  3996. name="Chinese"
  3997. package="7"
  3998. />
  3999. <otaLanguage
  4000. id="0"
  4001. name="Korean"
  4002. package="8"
  4003. />
  4004. <otaLanguage
  4005. id="0"
  4006. name="Japanese"
  4007. package="9"
  4008. />
  4009. <otaLanguage
  4010. id="0"
  4011. name="Finnish"
  4012. package="10"
  4013. />
  4014. <otaLanguage
  4015. id="0"
  4016. name="Polish"
  4017. package="11"
  4018. />
  4019. </otaLanguages>
  4020. <otaPackages>
  4021. <package
  4022. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2.img"
  4023. size="5183988"
  4024. />
  4025. <package
  4026. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-fr-FR.img"
  4027. size="5183988"
  4028. />
  4029. <package
  4030. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-es-ES.img"
  4031. size="5183988"
  4032. />
  4033. <package
  4034. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-it-IT.img"
  4035. size="5183988"
  4036. />
  4037. <package
  4038. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-de-DE.img"
  4039. size="5183988"
  4040. />
  4041. <package
  4042. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-nl-NL.img"
  4043. size="5183988"
  4044. />
  4045. <package
  4046. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-ru-RU.img"
  4047. size="5183988"
  4048. />
  4049. <package
  4050. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-cmn-CN.img"
  4051. size="5183988"
  4052. />
  4053. <package
  4054. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-ko-KR.img"
  4055. size="5183988"
  4056. />
  4057. <package
  4058. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-ja-JP.img"
  4059. size="5183988"
  4060. />
  4061. <package
  4062. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-fi-FI.img"
  4063. size="5183988"
  4064. />
  4065. <package
  4066. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-pl-PL.img"
  4067. size="5183988"
  4068. />
  4069. </otaPackages>
  4070. </productMenu>
  4071. <productMenu id="wa"
  4072. type="0" >
  4073. </productMenu>
  4074. <productMenu id="led"
  4075. type="5" >
  4076. </productMenu>
  4077. <productMenu id="led+"
  4078. type="2"
  4079. url="1" >
  4080. </productMenu>
  4081. <productMenu id="meshIntercom+"
  4082. type="3"
  4083. url="2" >
  4084. </productMenu>
  4085. <productMenu id="waveIntercom"
  4086. type="1" >
  4087. </productMenu>
  4088. <productMenu id="fmradio"
  4089. type="0" >
  4090. </productMenu>
  4091. <productMenu id="phone"
  4092. type="1" >
  4093. </productMenu>
  4094. <productMenu id="music"
  4095. type="1" >
  4096. </productMenu>
  4097. <productMenu id="musicSharing"
  4098. type="0" >
  4099. </productMenu>
  4100. <productMenu id="deviceSetting"
  4101. type="1"
  4102. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  4103. </productMenu>
  4104. <productMenu id="quickGuide"
  4105. type="0"
  4106. url=""
  4107. size="1.12MB" >
  4108. </productMenu>
  4109. <productMenu id="userGuide"
  4110. type="0"
  4111. url=""
  4112. size="2.0MB" >
  4113. </productMenu>
  4114. <productMenu id="videoGuide"
  4115. type="0"
  4116. url=""
  4117. size="3.41MB" >
  4118. </productMenu>
  4119. <productMenu id="volume"
  4120. type="16" >
  4121. </productMenu>
  4122. <productMenu id="battery"
  4123. type="1" >
  4124. </productMenu>
  4125. <productID id="6A0A"
  4126. />
  4127. <productGroupable type="0"
  4128. />
  4129. </product>
  4130. <product id="OUTLANDER"
  4131. name="OUTLANDER"
  4132. series="Helmet"
  4133. latestVersion="1.0.1"
  4134. latestVersionVoicePrompt="1.0"
  4135. show = "-1" >
  4136. <productMenu id="protocol"
  4137. type="2" >
  4138. </productMenu>
  4139. <productMenu id="ota"
  4140. type="2" >
  4141. <otaLanguages>
  4142. <otaLanguage
  4143. id="0"
  4144. name="English"
  4145. package="0"
  4146. />
  4147. <otaLanguage
  4148. id="0"
  4149. name="French"
  4150. package="1"
  4151. />
  4152. <otaLanguage
  4153. id="0"
  4154. name="Spanish"
  4155. package="2"
  4156. />
  4157. <otaLanguage
  4158. id="0"
  4159. name="Italian"
  4160. package="3"
  4161. />
  4162. <otaLanguage
  4163. id="0"
  4164. name="German"
  4165. package="4"
  4166. />
  4167. <otaLanguage
  4168. id="0"
  4169. name="Dutch"
  4170. package="5"
  4171. />
  4172. <otaLanguage
  4173. id="0"
  4174. name="Russian"
  4175. package="6"
  4176. />
  4177. <otaLanguage
  4178. id="0"
  4179. name="Chinese"
  4180. package="7"
  4181. />
  4182. <otaLanguage
  4183. id="0"
  4184. name="Korean"
  4185. package="8"
  4186. />
  4187. <otaLanguage
  4188. id="0"
  4189. name="Japanese"
  4190. package="9"
  4191. />
  4192. <otaLanguage
  4193. id="0"
  4194. name="Finnish"
  4195. package="10"
  4196. />
  4197. <otaLanguage
  4198. id="0"
  4199. name="Polish"
  4200. package="11"
  4201. />
  4202. </otaLanguages>
  4203. <otaPackages>
  4204. <package
  4205. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0.img"
  4206. size="5183988"
  4207. />
  4208. <package
  4209. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-fr-FR.img"
  4210. size="5183988"
  4211. />
  4212. <package
  4213. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-es-ES.img"
  4214. size="5183988"
  4215. />
  4216. <package
  4217. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-it-IT.img"
  4218. size="5183988"
  4219. />
  4220. <package
  4221. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-de-DE.img"
  4222. size="5183988"
  4223. />
  4224. <package
  4225. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-nl-NL.img"
  4226. size="5183988"
  4227. />
  4228. <package
  4229. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-ru-RU.img"
  4230. size="5183988"
  4231. />
  4232. <package
  4233. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-cmn-CN.img"
  4234. size="5183988"
  4235. />
  4236. <package
  4237. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-ko-KR.img"
  4238. size="5183988"
  4239. />
  4240. <package
  4241. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-ja-JP.img"
  4242. size="5183988"
  4243. />
  4244. <package
  4245. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-fi-FI.img"
  4246. size="5183988"
  4247. />
  4248. <package
  4249. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.1-build0-pl-PL.img"
  4250. size="5183988"
  4251. />
  4252. </otaPackages>
  4253. </productMenu>
  4254. <productMenu id="wa"
  4255. type="0" >
  4256. </productMenu>
  4257. <productMenu id="led"
  4258. type="5" >
  4259. </productMenu>
  4260. <productMenu id="led+"
  4261. type="2"
  4262. url="1" >
  4263. </productMenu>
  4264. <productMenu id="meshIntercom+"
  4265. type="3"
  4266. url="2" >
  4267. </productMenu>
  4268. <productMenu id="waveIntercom"
  4269. type="1" >
  4270. </productMenu>
  4271. <productMenu id="fmradio"
  4272. type="0" >
  4273. </productMenu>
  4274. <productMenu id="phone"
  4275. type="1" >
  4276. </productMenu>
  4277. <productMenu id="music"
  4278. type="1" >
  4279. </productMenu>
  4280. <productMenu id="musicSharing"
  4281. type="0" >
  4282. </productMenu>
  4283. <productMenu id="deviceSetting"
  4284. type="1"
  4285. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4286. </productMenu>
  4287. <productMenu id="quickGuide"
  4288. type="0"
  4289. url=""
  4290. size="1.12MB" >
  4291. </productMenu>
  4292. <productMenu id="userGuide"
  4293. type="0"
  4294. url=""
  4295. size="2.0MB" >
  4296. </productMenu>
  4297. <productMenu id="videoGuide"
  4298. type="0"
  4299. url=""
  4300. size="3.41MB" >
  4301. </productMenu>
  4302. <productMenu id="volume"
  4303. type="16" >
  4304. </productMenu>
  4305. <productMenu id="battery"
  4306. type="1" >
  4307. </productMenu>
  4308. <productID id="6A05"
  4309. />
  4310. <productGroupable type="0"
  4311. />
  4312. </product>
  4313. <product id="OUTRUSH2"
  4314. name="OUTRUSH 2"
  4315. series="Helmet"
  4316. latestVersion="1.0.2"
  4317. latestVersionVoicePrompt="1.1"
  4318. show = "-1" >
  4319. <productMenu id="protocol"
  4320. type="2" >
  4321. </productMenu>
  4322. <productMenu id="alexa"
  4323. type="0" >
  4324. </productMenu>
  4325. <productMenu id="ota"
  4326. type="2" >
  4327. <otaPackages>
  4328. <package
  4329. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  4330. size="2945812"
  4331. />
  4332. </otaPackages>
  4333. </productMenu>
  4334. <productMenu id="meshIntercom+"
  4335. type="3"
  4336. url="2" >
  4337. </productMenu>
  4338. <productMenu id="waveIntercom"
  4339. type="1" >
  4340. </productMenu>
  4341. <productMenu id="phone"
  4342. type="1" >
  4343. </productMenu>
  4344. <productMenu id="music"
  4345. type="1" >
  4346. </productMenu>
  4347. <productMenu id="musicSharing"
  4348. type="0" >
  4349. </productMenu>
  4350. <productMenu id="deviceSetting"
  4351. type="1"
  4352. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  4353. <productMenuURL version="1.0"
  4354. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  4355. />
  4356. </productMenu>
  4357. <productMenu id="quickGuide"
  4358. type="0"
  4359. url=""
  4360. size="1.12MB" >
  4361. </productMenu>
  4362. <productMenu id="userGuide"
  4363. type="1"
  4364. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.0_en_250730.pdf"
  4365. size="2.0MB" >
  4366. </productMenu>
  4367. <productMenu id="volume"
  4368. type="12" >
  4369. </productMenu>
  4370. <productMenu id="battery"
  4371. type="1" >
  4372. </productMenu>
  4373. <productID id="684A"
  4374. />
  4375. <productGroupable type="0"
  4376. />
  4377. </product>
  4378. <product id="OUTSTAR2"
  4379. name="OUTSTAR 2"
  4380. series="Helmet"
  4381. latestVersion="1.0.1"
  4382. latestVersionVoicePrompt="1.1"
  4383. show = "-1" >
  4384. <productMenu id="protocol"
  4385. type="2" >
  4386. </productMenu>
  4387. <productMenu id="alexa"
  4388. type="0" >
  4389. </productMenu>
  4390. <productMenu id="ota"
  4391. type="2" >
  4392. <otaPackages>
  4393. <package
  4394. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.1-build0.img"
  4395. size="2945812"
  4396. />
  4397. </otaPackages>
  4398. </productMenu>
  4399. <productMenu id="meshIntercom+"
  4400. type="3"
  4401. url="2" >
  4402. </productMenu>
  4403. <productMenu id="waveIntercom"
  4404. type="1" >
  4405. </productMenu>
  4406. <productMenu id="phone"
  4407. type="1" >
  4408. </productMenu>
  4409. <productMenu id="music"
  4410. type="1" >
  4411. </productMenu>
  4412. <productMenu id="musicSharing"
  4413. type="0" >
  4414. </productMenu>
  4415. <productMenu id="deviceSetting"
  4416. type="1"
  4417. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  4418. </productMenu>
  4419. <productMenu id="quickGuide"
  4420. type="0"
  4421. url=""
  4422. size="1.12MB" >
  4423. </productMenu>
  4424. <productMenu id="userGuide"
  4425. type="1"
  4426. url=""
  4427. size="2.0MB" >
  4428. </productMenu>
  4429. <productMenu id="volume"
  4430. type="12" >
  4431. </productMenu>
  4432. <productMenu id="battery"
  4433. type="1" >
  4434. </productMenu>
  4435. <productID id="684B"
  4436. />
  4437. <productGroupable type="0"
  4438. />
  4439. </product>
  4440. <product id="SURGE"
  4441. name="SURGE"
  4442. series="Helmet"
  4443. latestVersion="1.1.1"
  4444. latestVersionVoicePrompt="0.9"
  4445. show = "1" >
  4446. <productMenu id="protocol"
  4447. type="2" >
  4448. </productMenu>
  4449. <productMenu id="alexa"
  4450. type="0" >
  4451. </productMenu>
  4452. <productMenu id="ota"
  4453. type="2" >
  4454. <otaPackages>
  4455. <package
  4456. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.1.1-build0.img"
  4457. size="2945812"
  4458. />
  4459. </otaPackages>
  4460. </productMenu>
  4461. <productMenu id="meshIntercom"
  4462. type="30" >
  4463. </productMenu>
  4464. <productMenu id="meshIntercom+"
  4465. type="3"
  4466. url="2" >
  4467. <productMenuType version="1.0.1"
  4468. type="2"
  4469. />
  4470. </productMenu>
  4471. <productMenu id="waveIntercom"
  4472. type="1" >
  4473. <productMenuType version="1.0.9"
  4474. type="0"
  4475. />
  4476. </productMenu>
  4477. <productMenu id="phone"
  4478. type="1" >
  4479. </productMenu>
  4480. <productMenu id="music"
  4481. type="1" >
  4482. </productMenu>
  4483. <productMenu id="musicSharing"
  4484. type="0" >
  4485. </productMenu>
  4486. <productMenu id="deviceSetting"
  4487. type="1"
  4488. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml" >
  4489. <productMenuURL version="1.0.1"
  4490. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  4491. />
  4492. </productMenu>
  4493. <productMenu id="quickGuide"
  4494. type="0"
  4495. url=""
  4496. size="1.12MB" >
  4497. </productMenu>
  4498. <productMenu id="userGuide"
  4499. type="1"
  4500. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.0_en_250408.pdf"
  4501. size="2.0MB" >
  4502. </productMenu>
  4503. <productMenu id="volume"
  4504. type="12" >
  4505. </productMenu>
  4506. <productMenu id="battery"
  4507. type="1" >
  4508. </productMenu>
  4509. <productID id="6840"
  4510. />
  4511. <productGroupable type="0"
  4512. />
  4513. </product>
  4514. <product id="Cavalry2"
  4515. name="Cavalry 2"
  4516. series="Helmet"
  4517. latestVersion="1.1.1"
  4518. latestVersionVoicePrompt="0.9"
  4519. show = "1" >
  4520. <productMenu id="protocol"
  4521. type="2" >
  4522. </productMenu>
  4523. <productMenu id="alexa"
  4524. type="0" >
  4525. </productMenu>
  4526. <productMenu id="ota"
  4527. type="2" >
  4528. <otaPackages>
  4529. <package
  4530. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.1.1-build0.img"
  4531. size="3144148"
  4532. />
  4533. </otaPackages>
  4534. </productMenu>
  4535. <productMenu id="wa"
  4536. type="0" >
  4537. </productMenu>
  4538. <productMenu id="meshIntercom"
  4539. type="30" >
  4540. </productMenu>
  4541. <productMenu id="meshIntercom+"
  4542. type="3"
  4543. url="2" >
  4544. <productMenuType version="1.0"
  4545. type="2"
  4546. />
  4547. </productMenu>
  4548. <productMenu id="waveIntercom"
  4549. type="1" >
  4550. <productMenuType version="1.0.9"
  4551. type="0"
  4552. />
  4553. </productMenu>
  4554. <productMenu id="phone"
  4555. type="1" >
  4556. </productMenu>
  4557. <productMenu id="music"
  4558. type="1" >
  4559. </productMenu>
  4560. <productMenu id="musicSharing"
  4561. type="0" >
  4562. </productMenu>
  4563. <productMenu id="deviceSetting"
  4564. type="1"
  4565. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_02.xml" >
  4566. <productMenuURL version="1.0"
  4567. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_01.xml"
  4568. />
  4569. </productMenu>
  4570. <productMenu id="quickGuide"
  4571. type="0"
  4572. url=""
  4573. size="1.12MB" >
  4574. </productMenu>
  4575. <productMenu id="userGuide"
  4576. type="1"
  4577. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.0_en_250415.pdf"
  4578. size="2.0MB" >
  4579. </productMenu>
  4580. <productMenu id="connectGuide"
  4581. type="1"
  4582. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  4583. size="1.12MB" >
  4584. </productMenu>
  4585. <productMenu id="volume"
  4586. type="12" >
  4587. </productMenu>
  4588. <productMenu id="battery"
  4589. type="1" >
  4590. </productMenu>
  4591. <productID id="6839"
  4592. />
  4593. <productGroupable type="0"
  4594. />
  4595. </product>
  4596. <product id="Cavalry"
  4597. name="Cavalry"
  4598. series="Helmet"
  4599. latestVersion="1.2.2"
  4600. show = "1" >
  4601. <productMenu id="protocol"
  4602. type="0">
  4603. </productMenu>
  4604. <productMenu id="sip"
  4605. type="1" >
  4606. </productMenu>
  4607. <productMenu id="bluetoothIntercom"
  4608. type="1" >
  4609. </productMenu>
  4610. <productMenu id="phone"
  4611. type="2" >
  4612. </productMenu>
  4613. <productMenu id="fmradio"
  4614. type="3" >
  4615. </productMenu>
  4616. <productMenu id="deviceSetting"
  4617. type="1"
  4618. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  4619. <productMenuURL version="1.9"
  4620. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  4621. />
  4622. <productMenuURL version="1.0.1"
  4623. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  4624. />
  4625. </productMenu>
  4626. <productMenu id="quickGuide"
  4627. type="1"
  4628. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  4629. size="795KB" >
  4630. </productMenu>
  4631. <productMenu id="userGuide"
  4632. type="1"
  4633. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  4634. size="1.87MB" >
  4635. </productMenu>
  4636. <productID id="5524"
  4637. />
  4638. <productGroupable type="0"
  4639. />
  4640. </product>
  4641. <product id="Cavalry_Lite"
  4642. name="Cavalry Lite"
  4643. series="Helmet"
  4644. latestVersion="1.0.2"
  4645. show = "1" >
  4646. <productMenu id="protocol"
  4647. type="0">
  4648. </productMenu>
  4649. <productMenu id="sip"
  4650. type="1" >
  4651. </productMenu>
  4652. <productMenu id="bluetoothIntercom"
  4653. type="1" >
  4654. </productMenu>
  4655. <productMenu id="phone"
  4656. type="2" >
  4657. </productMenu>
  4658. <productMenu id="fmradio"
  4659. type="3" >
  4660. </productMenu>
  4661. <productMenu id="deviceSetting"
  4662. type="1"
  4663. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  4664. </productMenu>
  4665. <productMenu id="userGuide"
  4666. type="1"
  4667. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  4668. size="1.74MB" >
  4669. </productMenu>
  4670. <productID id="5536"
  4671. />
  4672. <productGroupable type="0"
  4673. />
  4674. </product>
  4675. <product id="SF4"
  4676. name="SF4"
  4677. series="SF"
  4678. latestVersion="1.1.5"
  4679. show = "-1" >
  4680. <productMenu id="protocol"
  4681. type="1"
  4682. url="3">
  4683. </productMenu>
  4684. <productMenu id="sip"
  4685. type="1" >
  4686. </productMenu>
  4687. <productMenu id="bluetoothIntercom"
  4688. type="1" >
  4689. </productMenu>
  4690. <productMenu id="phone"
  4691. type="1" >
  4692. </productMenu>
  4693. <productMenu id="music"
  4694. type="1" >
  4695. </productMenu>
  4696. <productMenu id="fmradio"
  4697. type="1" >
  4698. </productMenu>
  4699. <productMenu id="deviceSetting"
  4700. type="1"
  4701. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4702. <productMenuURL version="1.0.1"
  4703. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  4704. />
  4705. </productMenu>
  4706. <productMenu id="quickGuide"
  4707. type="1"
  4708. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  4709. size="607KB" >
  4710. </productMenu>
  4711. <productMenu id="userGuide"
  4712. type="1"
  4713. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  4714. size="1.91MB" >
  4715. </productMenu>
  4716. <productMenu id="volume"
  4717. type="4" >
  4718. </productMenu>
  4719. <productID id="5414"
  4720. />
  4721. <productGroupable type="0"
  4722. />
  4723. </product>
  4724. <product id="SF4"
  4725. name="SF4"
  4726. series="SF"
  4727. latestVersion="3.4.2"
  4728. show = "1" >
  4729. <productMenu id="protocol"
  4730. type="2" >
  4731. </productMenu>
  4732. <productMenu id="sip"
  4733. type="1" >
  4734. </productMenu>
  4735. <productMenu id="bluetoothIntercom"
  4736. type="1" >
  4737. </productMenu>
  4738. <productMenu id="phone"
  4739. type="1" >
  4740. </productMenu>
  4741. <productMenu id="music"
  4742. type="1" >
  4743. </productMenu>
  4744. <productMenu id="fmradio"
  4745. type="1" >
  4746. </productMenu>
  4747. <productMenu id="deviceSetting"
  4748. type="1"
  4749. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  4750. <productMenuURL version="3.0"
  4751. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  4752. />
  4753. </productMenu>
  4754. <productMenu id="quickGuide"
  4755. type="0"
  4756. url=""
  4757. size="934KB" >
  4758. </productMenu>
  4759. <productMenu id="userGuide"
  4760. type="1"
  4761. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  4762. size="1.14MB" >
  4763. </productMenu>
  4764. <productMenu id="volume"
  4765. type="15" >
  4766. </productMenu>
  4767. <productID id="3370"
  4768. />
  4769. <productGroupable type="0"
  4770. />
  4771. </product>
  4772. <product id="SF2"
  4773. name="SF2"
  4774. series="SF"
  4775. latestVersion="1.2.1"
  4776. show = "-1" >
  4777. <productMenu id="protocol"
  4778. type="1"
  4779. url="2">
  4780. </productMenu>
  4781. <productMenu id="sip"
  4782. type="1" >
  4783. </productMenu>
  4784. <productMenu id="bluetoothIntercom"
  4785. type="1" >
  4786. </productMenu>
  4787. <productMenu id="phone"
  4788. type="1" >
  4789. </productMenu>
  4790. <productMenu id="music"
  4791. type="1" >
  4792. </productMenu>
  4793. <productMenu id="fmradio"
  4794. type="1" >
  4795. </productMenu>
  4796. <productMenu id="deviceSetting"
  4797. type="1"
  4798. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4799. <productMenuURL version="1.0.1"
  4800. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  4801. />
  4802. </productMenu>
  4803. <productMenu id="quickGuide"
  4804. type="1"
  4805. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  4806. size="607KB" >
  4807. </productMenu>
  4808. <productMenu id="userGuide"
  4809. type="1"
  4810. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  4811. size="1.91MB" >
  4812. </productMenu>
  4813. <productMenu id="volume"
  4814. type="4" >
  4815. </productMenu>
  4816. <productID id="5412"
  4817. />
  4818. <productGroupable type="0"
  4819. />
  4820. </product>
  4821. <product id="SF2"
  4822. name="SF2"
  4823. series="SF"
  4824. latestVersion="3.3.2"
  4825. show = "1" >
  4826. <productMenu id="protocol"
  4827. type="2" >
  4828. </productMenu>
  4829. <productMenu id="sip"
  4830. type="1" >
  4831. </productMenu>
  4832. <productMenu id="bluetoothIntercom"
  4833. type="1" >
  4834. </productMenu>
  4835. <productMenu id="phone"
  4836. type="1" >
  4837. </productMenu>
  4838. <productMenu id="music"
  4839. type="1" >
  4840. </productMenu>
  4841. <productMenu id="fmradio"
  4842. type="0" >
  4843. </productMenu>
  4844. <productMenu id="deviceSetting"
  4845. type="1"
  4846. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  4847. <productMenuURL version="3.0"
  4848. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  4849. />
  4850. </productMenu>
  4851. <productMenu id="quickGuide"
  4852. type="0"
  4853. url=""
  4854. size="934KB" >
  4855. </productMenu>
  4856. <productMenu id="userGuide"
  4857. type="1"
  4858. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  4859. size="1.14MB" >
  4860. </productMenu>
  4861. <productMenu id="volume"
  4862. type="15" >
  4863. </productMenu>
  4864. <productID id="3360"
  4865. />
  4866. <productGroupable type="0"
  4867. />
  4868. </product>
  4869. <product id="SF1"
  4870. name="SF1"
  4871. series="SF"
  4872. latestVersion="2.0.5"
  4873. show = "-1" >
  4874. <productMenu id="protocol"
  4875. type="1"
  4876. url="1">
  4877. </productMenu>
  4878. <productMenu id="sip"
  4879. type="1" >
  4880. </productMenu>
  4881. <productMenu id="bluetoothIntercom"
  4882. type="1" >
  4883. <productMenuType version="1.1"
  4884. type="0"
  4885. />
  4886. </productMenu>
  4887. <productMenu id="phone"
  4888. type="1" >
  4889. </productMenu>
  4890. <productMenu id="music"
  4891. type="1" >
  4892. </productMenu>
  4893. <productMenu id="deviceSetting"
  4894. type="1"
  4895. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  4896. <productMenuURL version="1.1"
  4897. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  4898. />
  4899. <productMenuURL version="1.0"
  4900. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  4901. />
  4902. </productMenu>
  4903. <productMenu id="quickGuide"
  4904. type="1"
  4905. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  4906. size="401KB" >
  4907. </productMenu>
  4908. <productMenu id="userGuide"
  4909. type="1"
  4910. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  4911. size="1.91MB" >
  4912. </productMenu>
  4913. <productMenu id="volume"
  4914. type="3" >
  4915. </productMenu>
  4916. <productID id="5410"
  4917. />
  4918. <productGroupable type="0"
  4919. />
  4920. </product>
  4921. <product id="SF1"
  4922. name="SF1"
  4923. series="SF"
  4924. latestVersion="3.3.2"
  4925. show = "1" >
  4926. <productMenu id="protocol"
  4927. type="2" >
  4928. </productMenu>
  4929. <productMenu id="sip"
  4930. type="1" >
  4931. </productMenu>
  4932. <productMenu id="bluetoothIntercom"
  4933. type="1" >
  4934. </productMenu>
  4935. <productMenu id="phone"
  4936. type="1" >
  4937. </productMenu>
  4938. <productMenu id="music"
  4939. type="1" >
  4940. </productMenu>
  4941. <productMenu id="fmradio"
  4942. type="0" >
  4943. </productMenu>
  4944. <productMenu id="deviceSetting"
  4945. type="1"
  4946. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  4947. <productMenuURL version="3.0"
  4948. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  4949. />
  4950. </productMenu>
  4951. <productMenu id="quickGuide"
  4952. type="0"
  4953. url=""
  4954. size="934KB" >
  4955. </productMenu>
  4956. <productMenu id="userGuide"
  4957. type="1"
  4958. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  4959. size="1.14MB" >
  4960. </productMenu>
  4961. <productMenu id="volume"
  4962. type="15" >
  4963. </productMenu>
  4964. <productID id="3350"
  4965. />
  4966. <productGroupable type="0"
  4967. />
  4968. </product>
  4969. <product id="SFR"
  4970. name="SFR"
  4971. series="SF"
  4972. latestVersion="1.1.1"
  4973. show = "1" >
  4974. <productMenu id="protocol"
  4975. type="1"
  4976. url="3">
  4977. </productMenu>
  4978. <productMenu id="sip"
  4979. type="1" >
  4980. </productMenu>
  4981. <productMenu id="bluetoothIntercom"
  4982. type="1" >
  4983. </productMenu>
  4984. <productMenu id="phone"
  4985. type="1" >
  4986. </productMenu>
  4987. <productMenu id="music"
  4988. type="1" >
  4989. </productMenu>
  4990. <productMenu id="fmradio"
  4991. type="1" >
  4992. </productMenu>
  4993. <productMenu id="deviceSetting"
  4994. type="1"
  4995. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4996. </productMenu>
  4997. <productMenu id="quickGuide"
  4998. type="1"
  4999. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  5000. size="607KB" >
  5001. </productMenu>
  5002. <productMenu id="userGuide"
  5003. type="1"
  5004. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  5005. size="1.91MB" >
  5006. </productMenu>
  5007. <productMenu id="volume"
  5008. type="4" >
  5009. </productMenu>
  5010. <productID id="5418"
  5011. />
  5012. <productGroupable type="0"
  5013. />
  5014. </product>
  5015. <product id="20S"
  5016. name="20S"
  5017. series="20"
  5018. latestVersion="2.2.3"
  5019. show = "1" >
  5020. <productMenu id="protocol"
  5021. type="0">
  5022. </productMenu>
  5023. <productMenu id="wa"
  5024. type="5" >
  5025. </productMenu>
  5026. <productMenu id="sip"
  5027. type="1" >
  5028. <productMenuType version="1.0"
  5029. type="0"
  5030. />
  5031. </productMenu>
  5032. <productMenu id="bluetoothIntercom"
  5033. type="1" >
  5034. <productMenuType version="1.0"
  5035. type="0"
  5036. />
  5037. </productMenu>
  5038. <productMenu id="intercomSetting"
  5039. type="1" >
  5040. </productMenu>
  5041. <productMenu id="phone"
  5042. type="2" >
  5043. </productMenu>
  5044. <productMenu id="fmradio"
  5045. type="3" >
  5046. </productMenu>
  5047. <productMenu id="deviceSetting"
  5048. type="1"
  5049. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  5050. <productMenuURL version="2.0.2"
  5051. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  5052. />
  5053. <productMenuURL version="1.5"
  5054. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  5055. />
  5056. <productMenuURL version="1.4.1"
  5057. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  5058. />
  5059. <productMenuURL version="1.1"
  5060. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  5061. />
  5062. <productMenuURL version="1.0"
  5063. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  5064. />
  5065. </productMenu>
  5066. <productMenu id="quickGuide"
  5067. type="0"
  5068. url=""
  5069. size="264KB" >
  5070. </productMenu>
  5071. <productMenu id="userGuide"
  5072. type="1"
  5073. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  5074. size="3.09MB" >
  5075. </productMenu>
  5076. <productID id="4210"
  5077. />
  5078. <productGroupable type="1"
  5079. />
  5080. </product>
  5081. <product id="20S_EVO"
  5082. name="20S EVO"
  5083. series="20"
  5084. latestVersion="2.2.3"
  5085. show = "1" >
  5086. <productMenu id="protocol"
  5087. type="0">
  5088. </productMenu>
  5089. <productMenu id="wa"
  5090. type="5" >
  5091. </productMenu>
  5092. <productMenu id="sip"
  5093. type="1" >
  5094. <productMenuType version="1.0"
  5095. type="0"
  5096. />
  5097. </productMenu>
  5098. <productMenu id="bluetoothIntercom"
  5099. type="1" >
  5100. <productMenuType version="1.0"
  5101. type="0"
  5102. />
  5103. </productMenu>
  5104. <productMenu id="intercomSetting"
  5105. type="1" >
  5106. </productMenu>
  5107. <productMenu id="phone"
  5108. type="2" >
  5109. </productMenu>
  5110. <productMenu id="fmradio"
  5111. type="3" >
  5112. </productMenu>
  5113. <productMenu id="deviceSetting"
  5114. type="1"
  5115. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  5116. <productMenuURL version="2.0.2"
  5117. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  5118. />
  5119. <productMenuURL version="1.5"
  5120. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  5121. />
  5122. <productMenuURL version="1.4.1"
  5123. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  5124. />
  5125. <productMenuURL version="1.1"
  5126. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  5127. />
  5128. <productMenuURL version="1.0"
  5129. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  5130. />
  5131. </productMenu>
  5132. <productMenu id="quickGuide"
  5133. type="0"
  5134. url=""
  5135. size="264KB" >
  5136. </productMenu>
  5137. <productMenu id="userGuide"
  5138. type="1"
  5139. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  5140. size="3.09MB" >
  5141. </productMenu>
  5142. <productID id="4210"
  5143. />
  5144. <productProductKey key="16"
  5145. />
  5146. <productGroupable type="1"
  5147. />
  5148. </product>
  5149. <product id="10S"
  5150. name="10S"
  5151. series="10"
  5152. latestVersion="3.0.1"
  5153. show = "1" >
  5154. <productMenu id="protocol"
  5155. type="3" >
  5156. </productMenu>
  5157. <productMenu id="sip"
  5158. type="1" >
  5159. </productMenu>
  5160. <productMenu id="bluetoothIntercom"
  5161. type="1" >
  5162. </productMenu>
  5163. <productMenu id="phone"
  5164. type="1" >
  5165. </productMenu>
  5166. <productMenu id="deviceSetting"
  5167. type="1"
  5168. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  5169. </productMenu>
  5170. <productMenu id="quickGuide"
  5171. type="1"
  5172. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  5173. size="934KB" >
  5174. </productMenu>
  5175. <productMenu id="userGuide"
  5176. type="1"
  5177. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  5178. size="1.14MB" >
  5179. </productMenu>
  5180. <productID id="3380"
  5181. />
  5182. <productGroupable type="0"
  5183. />
  5184. </product>
  5185. <product id="10S"
  5186. name="10S"
  5187. series="10"
  5188. latestVersion="2.1.1"
  5189. show = "-1" >
  5190. <productMenu id="protocol"
  5191. type="0">
  5192. </productMenu>
  5193. <productMenu id="sip"
  5194. type="1" >
  5195. </productMenu>
  5196. <productMenu id="bluetoothIntercom"
  5197. type="1" >
  5198. </productMenu>
  5199. <productMenu id="phone"
  5200. type="2" >
  5201. </productMenu>
  5202. <productMenu id="fmradio"
  5203. type="3" >
  5204. </productMenu>
  5205. <productMenu id="deviceSetting"
  5206. type="1"
  5207. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  5208. <productMenuURL version="1.5"
  5209. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  5210. />
  5211. <productMenuURL version="1.3.1"
  5212. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  5213. />
  5214. </productMenu>
  5215. <productMenu id="quickGuide"
  5216. type="1"
  5217. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  5218. size="310KB" >
  5219. </productMenu>
  5220. <productMenu id="userGuide"
  5221. type="1"
  5222. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  5223. size="1.57MB" >
  5224. </productMenu>
  5225. <productID id="5530"
  5226. />
  5227. <productGroupable type="0"
  5228. />
  5229. </product>
  5230. <product id="10R"
  5231. name="10R"
  5232. series="10"
  5233. latestVersion="2.1.1"
  5234. show = "1" >
  5235. <productMenu id="protocol"
  5236. type="0">
  5237. </productMenu>
  5238. <productMenu id="sip"
  5239. type="1" >
  5240. <productMenuType version="1.0.2"
  5241. type="0"
  5242. />
  5243. </productMenu>
  5244. <productMenu id="bluetoothIntercom"
  5245. type="1" >
  5246. <productMenuType version="1.0.2"
  5247. type="0"
  5248. />
  5249. </productMenu>
  5250. <productMenu id="phone"
  5251. type="2" >
  5252. </productMenu>
  5253. <productMenu id="fmradio"
  5254. type="3" >
  5255. </productMenu>
  5256. <productMenu id="deviceSetting"
  5257. type="1"
  5258. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  5259. <productMenuURL version="1.4"
  5260. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  5261. />
  5262. <productMenuURL version="1.2.1"
  5263. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  5264. />
  5265. <productMenuURL version="1.0.2"
  5266. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  5267. />
  5268. <productMenuURL version="1.0"
  5269. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  5270. />
  5271. </productMenu>
  5272. <productMenu id="quickGuide"
  5273. type="1"
  5274. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  5275. size="400KB" >
  5276. </productMenu>
  5277. <productMenu id="userGuide"
  5278. type="1"
  5279. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  5280. size="2.75MB" >
  5281. </productMenu>
  5282. <productID id="5520"
  5283. />
  5284. <productGroupable type="0"
  5285. />
  5286. </product>
  5287. <product id="10C_EVO"
  5288. name="10C EVO"
  5289. series="10"
  5290. latestVersion="1.7"
  5291. show = "1" >
  5292. <productMenu id="protocol"
  5293. type="0">
  5294. </productMenu>
  5295. <productMenu id="sip"
  5296. type="1" >
  5297. </productMenu>
  5298. <productMenu id="bluetoothIntercom"
  5299. type="1" >
  5300. </productMenu>
  5301. <productMenu id="phone"
  5302. type="2" >
  5303. </productMenu>
  5304. <productMenu id="fmradio"
  5305. type="3" >
  5306. </productMenu>
  5307. <productMenu id="deviceSetting"
  5308. type="1"
  5309. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  5310. <productMenuURL version="1.3.1"
  5311. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  5312. />
  5313. </productMenu>
  5314. <productMenu id="quickGuide"
  5315. type="1"
  5316. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  5317. size="1.32MB" >
  5318. </productMenu>
  5319. <productMenu id="userGuide"
  5320. type="1"
  5321. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  5322. size="1.68MB" >
  5323. </productMenu>
  5324. <productID id="5570"
  5325. />
  5326. <productGroupable type="0"
  5327. />
  5328. </product>
  5329. <product id="10C_Pro"
  5330. name="10C Pro"
  5331. series="10"
  5332. latestVersion="2.7.1"
  5333. show = "1" >
  5334. <productMenu id="protocol"
  5335. type="0">
  5336. </productMenu>
  5337. <productMenu id="sip"
  5338. type="1" >
  5339. </productMenu>
  5340. <productMenu id="bluetoothIntercom"
  5341. type="1" >
  5342. </productMenu>
  5343. <productMenu id="phone"
  5344. type="2" >
  5345. </productMenu>
  5346. <productMenu id="fmradio"
  5347. type="3" >
  5348. </productMenu>
  5349. <productMenu id="deviceSetting"
  5350. type="1"
  5351. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  5352. <productMenuURL version="2.5.1"
  5353. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  5354. />
  5355. <productMenuURL version="1.0"
  5356. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  5357. />
  5358. </productMenu>
  5359. <productMenu id="quickGuide"
  5360. type="1"
  5361. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  5362. size="651KB" >
  5363. </productMenu>
  5364. <productMenu id="userGuide"
  5365. type="1"
  5366. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  5367. size="2.34MB" >
  5368. </productMenu>
  5369. <productID id="5580"
  5370. />
  5371. <productGroupable type="0"
  5372. />
  5373. </product>
  5374. <product id="10C"
  5375. name="10C"
  5376. series="10"
  5377. latestVersion="3.0.4"
  5378. show = "1" >
  5379. <productMenu id="protocol"
  5380. type="0">
  5381. </productMenu>
  5382. <productMenu id="sip"
  5383. type="1" >
  5384. <productMenuType version="1.0.4"
  5385. type="0"
  5386. />
  5387. </productMenu>
  5388. <productMenu id="bluetoothIntercom"
  5389. type="1" >
  5390. <productMenuType version="1.0.4"
  5391. type="0"
  5392. />
  5393. </productMenu>
  5394. <productMenu id="phone"
  5395. type="2" >
  5396. </productMenu>
  5397. <productMenu id="fmradio"
  5398. type="3" >
  5399. </productMenu>
  5400. <productMenu id="deviceSetting"
  5401. type="1"
  5402. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  5403. <productMenuURL version="2.3"
  5404. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  5405. />
  5406. <productMenuURL version="2.1.1"
  5407. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  5408. />
  5409. <productMenuURL version="1.0.4"
  5410. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  5411. />
  5412. <productMenuURL version="1.0.2"
  5413. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  5414. />
  5415. </productMenu>
  5416. <productMenu id="quickGuide"
  5417. type="1"
  5418. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  5419. size="935KB" >
  5420. </productMenu>
  5421. <productMenu id="userGuide"
  5422. type="1"
  5423. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  5424. size="2.82MB" >
  5425. </productMenu>
  5426. <productID id="5510"
  5427. />
  5428. <productGroupable type="0"
  5429. />
  5430. </product>
  5431. <product id="10U_GT_AIR"
  5432. name="10U GT-Air"
  5433. series="10"
  5434. latestVersion="2.0.4"
  5435. show = "1" >
  5436. <productMenu id="protocol"
  5437. type="0">
  5438. </productMenu>
  5439. <productMenu id="sip"
  5440. type="1" >
  5441. <productMenuType version="1.0.2"
  5442. type="0"
  5443. />
  5444. </productMenu>
  5445. <productMenu id="bluetoothIntercom"
  5446. type="1" >
  5447. <productMenuType version="1.0.2"
  5448. type="0"
  5449. />
  5450. </productMenu>
  5451. <productMenu id="phone"
  5452. type="2" >
  5453. </productMenu>
  5454. <productMenu id="fmradio"
  5455. type="3" >
  5456. </productMenu>
  5457. <productMenu id="deviceSetting"
  5458. type="1"
  5459. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5460. <productMenuURL version="1.3.2"
  5461. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5462. />
  5463. <productMenuURL version="1.0.2"
  5464. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5465. />
  5466. </productMenu>
  5467. <productMenu id="quickGuide"
  5468. type="1"
  5469. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  5470. size="685KB" >
  5471. </productMenu>
  5472. <productMenu id="userGuide"
  5473. type="1"
  5474. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5475. size="684KB" >
  5476. </productMenu>
  5477. <productMenu id="connectGuide"
  5478. type="1"
  5479. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5480. size="1.12MB" >
  5481. </productMenu>
  5482. <productID id="5610"
  5483. />
  5484. <productGroupable type="0"
  5485. />
  5486. </product>
  5487. <product id="10U_NEOTEC"
  5488. name="10U Neotec"
  5489. series="10"
  5490. latestVersion="2.0.4"
  5491. show = "1" >
  5492. <productMenu id="protocol"
  5493. type="0">
  5494. </productMenu>
  5495. <productMenu id="sip"
  5496. type="1" >
  5497. <productMenuType version="1.0.2"
  5498. type="0"
  5499. />
  5500. </productMenu>
  5501. <productMenu id="bluetoothIntercom"
  5502. type="1" >
  5503. <productMenuType version="1.0.2"
  5504. type="0"
  5505. />
  5506. </productMenu>
  5507. <productMenu id="phone"
  5508. type="2" >
  5509. </productMenu>
  5510. <productMenu id="fmradio"
  5511. type="3" >
  5512. </productMenu>
  5513. <productMenu id="deviceSetting"
  5514. type="1"
  5515. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5516. <productMenuURL version="1.3.2"
  5517. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5518. />
  5519. <productMenuURL version="1.0.2"
  5520. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5521. />
  5522. </productMenu>
  5523. <productMenu id="quickGuide"
  5524. type="1"
  5525. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  5526. size="689KB" >
  5527. </productMenu>
  5528. <productMenu id="userGuide"
  5529. type="1"
  5530. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5531. size="684KB" >
  5532. </productMenu>
  5533. <productMenu id="connectGuide"
  5534. type="1"
  5535. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5536. size="1.12MB" >
  5537. </productMenu>
  5538. <productID id="5611"
  5539. />
  5540. <productGroupable type="0"
  5541. />
  5542. </product>
  5543. <product id="10U_J_CRUISE"
  5544. name="10U J-Cruise"
  5545. series="10"
  5546. latestVersion="2.0.4"
  5547. show = "1" >
  5548. <productMenu id="protocol"
  5549. type="0">
  5550. </productMenu>
  5551. <productMenu id="sip"
  5552. type="1" >
  5553. <productMenuType version="1.0.2"
  5554. type="0"
  5555. />
  5556. </productMenu>
  5557. <productMenu id="bluetoothIntercom"
  5558. type="1" >
  5559. <productMenuType version="1.0.2"
  5560. type="0"
  5561. />
  5562. </productMenu>
  5563. <productMenu id="phone"
  5564. type="2" >
  5565. </productMenu>
  5566. <productMenu id="fmradio"
  5567. type="3" >
  5568. </productMenu>
  5569. <productMenu id="deviceSetting"
  5570. type="1"
  5571. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5572. <productMenuURL version="1.3.2"
  5573. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5574. />
  5575. <productMenuURL version="1.0.2"
  5576. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5577. />
  5578. </productMenu>
  5579. <productMenu id="quickGuide"
  5580. type="1"
  5581. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  5582. size="686KB" >
  5583. </productMenu>
  5584. <productMenu id="userGuide"
  5585. type="1"
  5586. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5587. size="684KB" >
  5588. </productMenu>
  5589. <productMenu id="connectGuide"
  5590. type="1"
  5591. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5592. size="1.12MB" >
  5593. </productMenu>
  5594. <productID id="5612"
  5595. />
  5596. <productGroupable type="0"
  5597. />
  5598. </product>
  5599. <product id="10U_C3"
  5600. name="10U C3/C3Pro"
  5601. series="10"
  5602. latestVersion="2.0.4"
  5603. show = "1" >
  5604. <productMenu id="protocol"
  5605. type="0">
  5606. </productMenu>
  5607. <productMenu id="sip"
  5608. type="1" >
  5609. <productMenuType version="1.0.2"
  5610. type="0"
  5611. />
  5612. </productMenu>
  5613. <productMenu id="bluetoothIntercom"
  5614. type="1" >
  5615. <productMenuType version="1.0.2"
  5616. type="0"
  5617. />
  5618. </productMenu>
  5619. <productMenu id="phone"
  5620. type="2" >
  5621. </productMenu>
  5622. <productMenu id="fmradio"
  5623. type="3" >
  5624. </productMenu>
  5625. <productMenu id="deviceSetting"
  5626. type="1"
  5627. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5628. <productMenuURL version="1.3.2"
  5629. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5630. />
  5631. <productMenuURL version="1.0.2"
  5632. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5633. />
  5634. </productMenu>
  5635. <productMenu id="quickGuide"
  5636. type="1"
  5637. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  5638. size="199KB" >
  5639. </productMenu>
  5640. <productMenu id="userGuide"
  5641. type="1"
  5642. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5643. size="684KB" >
  5644. </productMenu>
  5645. <productMenu id="connectGuide"
  5646. type="1"
  5647. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5648. size="1.12MB" >
  5649. </productMenu>
  5650. <productID id="5620"
  5651. />
  5652. <productGroupable type="0"
  5653. />
  5654. </product>
  5655. <product id="10U_ARAI"
  5656. name="10U Arai"
  5657. series="10"
  5658. latestVersion="2.0.4"
  5659. show = "1" >
  5660. <productMenu id="protocol"
  5661. type="0">
  5662. </productMenu>
  5663. <productMenu id="sip"
  5664. type="1" >
  5665. <productMenuType version="1.0.2"
  5666. type="0"
  5667. />
  5668. </productMenu>
  5669. <productMenu id="bluetoothIntercom"
  5670. type="1" >
  5671. <productMenuType version="1.0.2"
  5672. type="0"
  5673. />
  5674. </productMenu>
  5675. <productMenu id="phone"
  5676. type="2" >
  5677. </productMenu>
  5678. <productMenu id="fmradio"
  5679. type="3" >
  5680. </productMenu>
  5681. <productMenu id="deviceSetting"
  5682. type="1"
  5683. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5684. <productMenuURL version="1.3.2"
  5685. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5686. />
  5687. <productMenuURL version="1.0.2"
  5688. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5689. />
  5690. </productMenu>
  5691. <productMenu id="quickGuide"
  5692. type="1"
  5693. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  5694. size="689KB" >
  5695. </productMenu>
  5696. <productMenu id="userGuide"
  5697. type="1"
  5698. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5699. size="684KB" >
  5700. </productMenu>
  5701. <productMenu id="connectGuide"
  5702. type="1"
  5703. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5704. size="1.12MB" >
  5705. </productMenu>
  5706. <productID id="5621"
  5707. />
  5708. <productGroupable type="0"
  5709. />
  5710. </product>
  5711. <product id="10Upad"
  5712. name="10Upad"
  5713. series="10"
  5714. latestVersion="2.0.3"
  5715. show = "1" >
  5716. <productMenu id="protocol"
  5717. type="0">
  5718. </productMenu>
  5719. <productMenu id="sip"
  5720. type="1" >
  5721. </productMenu>
  5722. <productMenu id="bluetoothIntercom"
  5723. type="1" >
  5724. </productMenu>
  5725. <productMenu id="phone"
  5726. type="2" >
  5727. </productMenu>
  5728. <productMenu id="fmradio"
  5729. type="3" >
  5730. </productMenu>
  5731. <productMenu id="deviceSetting"
  5732. type="1"
  5733. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  5734. <productMenuURL version="1.0.3"
  5735. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  5736. />
  5737. </productMenu>
  5738. <productMenu id="quickGuide"
  5739. type="1"
  5740. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  5741. size="615KB" >
  5742. </productMenu>
  5743. <productMenu id="userGuide"
  5744. type="1"
  5745. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  5746. size="0.99MB" >
  5747. </productMenu>
  5748. <productID id="6210"
  5749. />
  5750. <productGroupable type="0"
  5751. />
  5752. </product>
  5753. <product id="5S"
  5754. name="5S"
  5755. series="5"
  5756. latestVersion="2.2.1"
  5757. show = "1" >
  5758. <productMenu id="protocol"
  5759. type="3" >
  5760. </productMenu>
  5761. <productMenu id="sip"
  5762. type="1" >
  5763. </productMenu>
  5764. <productMenu id="bluetoothIntercom"
  5765. type="1" >
  5766. </productMenu>
  5767. <productMenu id="phone"
  5768. type="1" >
  5769. </productMenu>
  5770. <productMenu id="fmradio"
  5771. type="0" >
  5772. </productMenu>
  5773. <productMenu id="deviceSetting"
  5774. type="1"
  5775. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  5776. </productMenu>
  5777. <productMenu id="quickGuide"
  5778. type="0"
  5779. url=""
  5780. size="934KB" >
  5781. </productMenu>
  5782. <productMenu id="userGuide"
  5783. type="1"
  5784. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  5785. size="1.14MB" >
  5786. </productMenu>
  5787. <productID id="5590"
  5788. />
  5789. <productGroupable type="0"
  5790. />
  5791. </product>
  5792. <product id="5S"
  5793. name="5S"
  5794. series="5"
  5795. latestVersion="1.2"
  5796. show = "-1" >
  5797. <productMenu id="protocol"
  5798. type="0">
  5799. </productMenu>
  5800. <productMenu id="sip"
  5801. type="1" >
  5802. </productMenu>
  5803. <productMenu id="bluetoothIntercom"
  5804. type="1" >
  5805. </productMenu>
  5806. <productMenu id="phone"
  5807. type="2" >
  5808. </productMenu>
  5809. <productMenu id="fmradio"
  5810. type="0" >
  5811. </productMenu>
  5812. <productMenu id="deviceSetting"
  5813. type="1"
  5814. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  5815. </productMenu>
  5816. <productMenu id="quickGuide"
  5817. type="0"
  5818. url=""
  5819. size="970KB" >
  5820. </productMenu>
  5821. <productMenu id="userGuide"
  5822. type="1"
  5823. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  5824. size="1.26MB" >
  5825. </productMenu>
  5826. <productID id="5534"
  5827. />
  5828. <productGroupable type="0"
  5829. />
  5830. </product>
  5831. <product id="5S"
  5832. name="5S"
  5833. series="5"
  5834. latestVersion="3.0.1"
  5835. show = "-1" >
  5836. <productMenu id="protocol"
  5837. type="0">
  5838. </productMenu>
  5839. <productMenu id="sip"
  5840. type="1" >
  5841. </productMenu>
  5842. <productMenu id="bluetoothIntercom"
  5843. type="1" >
  5844. </productMenu>
  5845. <productMenu id="phone"
  5846. type="2" >
  5847. </productMenu>
  5848. <productMenu id="fmradio"
  5849. type="0" >
  5850. </productMenu>
  5851. <productMenu id="deviceSetting"
  5852. type="1"
  5853. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  5854. </productMenu>
  5855. <productMenu id="quickGuide"
  5856. type="0"
  5857. url=""
  5858. size="970KB" >
  5859. </productMenu>
  5860. <productMenu id="userGuide"
  5861. type="1"
  5862. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  5863. size="1.26MB" >
  5864. </productMenu>
  5865. <productID id="5538"
  5866. />
  5867. <productGroupable type="0"
  5868. />
  5869. </product>
  5870. <product id="3SPLUS"
  5871. name="3S PLUS"
  5872. series="3"
  5873. latestVersion="2.2"
  5874. show = "1" >
  5875. <productMenu id="protocol"
  5876. type="3" >
  5877. </productMenu>
  5878. <productMenu id="sip"
  5879. type="1" >
  5880. </productMenu>
  5881. <productMenu id="bluetoothIntercom"
  5882. type="1" >
  5883. </productMenu>
  5884. <productMenu id="deviceSetting"
  5885. type="1"
  5886. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  5887. <productMenuURL version="2.2.1"
  5888. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  5889. />
  5890. </productMenu>
  5891. <productMenu id="quickGuide"
  5892. type="1"
  5893. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  5894. size="344KB" >
  5895. </productMenu>
  5896. <productMenu id="userGuide"
  5897. type="1"
  5898. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  5899. size="1.14MB" >
  5900. </productMenu>
  5901. <productMenu id="connectGuide"
  5902. type="1"
  5903. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  5904. size="1.12MB" >
  5905. </productMenu>
  5906. <productID id="4023"
  5907. />
  5908. <productGroupable type="0"
  5909. />
  5910. </product>
  5911. <product id="3SPLUS"
  5912. name="3S PLUS"
  5913. series="3"
  5914. latestVersion="1.1"
  5915. show = "-1" >
  5916. <productMenu id="protocol"
  5917. type="0">
  5918. </productMenu>
  5919. <productMenu id="sip"
  5920. type="1" >
  5921. </productMenu>
  5922. <productMenu id="bluetoothIntercom"
  5923. type="1" >
  5924. </productMenu>
  5925. <productMenu id="deviceSetting"
  5926. type="1"
  5927. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  5928. </productMenu>
  5929. <productMenu id="quickGuide"
  5930. type="1"
  5931. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  5932. size="842KB" >
  5933. </productMenu>
  5934. <productMenu id="userGuide"
  5935. type="1"
  5936. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  5937. size="1.02MB" >
  5938. </productMenu>
  5939. <productID id="6320"
  5940. />
  5941. <productGroupable type="0"
  5942. />
  5943. </product>
  5944. <product id="iCon"
  5945. name="iCon"
  5946. series="50"
  5947. latestVersion="1.0.1"
  5948. show = "0" >
  5949. <productMenu id="protocol"
  5950. type="2" >
  5951. </productMenu>
  5952. <productMenu id="alexa"
  5953. type="0" >
  5954. </productMenu>
  5955. <productMenu id="wa"
  5956. type="0" >
  5957. </productMenu>
  5958. <productMenu id="sip"
  5959. type="1" >
  5960. </productMenu>
  5961. <productMenu id="led"
  5962. type="3" >
  5963. </productMenu>
  5964. <productMenu id="meshIntercom"
  5965. type="20" >
  5966. </productMenu>
  5967. <productMenu id="meshIntercom+"
  5968. type="3"
  5969. url="0" >
  5970. <productMenuType version="1.0.9"
  5971. type="2"
  5972. />
  5973. </productMenu>
  5974. <productMenu id="bluetoothIntercom"
  5975. type="1" >
  5976. </productMenu>
  5977. <productMenu id="phone"
  5978. type="1" >
  5979. </productMenu>
  5980. <productMenu id="music"
  5981. type="1" >
  5982. </productMenu>
  5983. <productMenu id="fmradio"
  5984. type="1" >
  5985. </productMenu>
  5986. <productMenu id="deviceSetting"
  5987. type="1"
  5988. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  5989. <productMenuURL version="1.0.9"
  5990. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5991. />
  5992. </productMenu>
  5993. <productMenu id="quickGuide"
  5994. type="1"
  5995. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  5996. size="344KB" >
  5997. </productMenu>
  5998. <productMenu id="userGuide"
  5999. type="1"
  6000. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.0.0_en_220830.pdf"
  6001. size="3.41MB" >
  6002. </productMenu>
  6003. <productMenu id="volume"
  6004. type="11" >
  6005. </productMenu>
  6006. <productMenu id="battery"
  6007. type="1" >
  6008. </productMenu>
  6009. <productID id="3900"
  6010. />
  6011. <productGroupable type="0"
  6012. />
  6013. </product>
  6014. <product id="HD50S"
  6015. name="H-D Audio 50S"
  6016. series="50"
  6017. latestVersion="1.0.1"
  6018. show = "-1" >
  6019. <productMenu id="protocol"
  6020. type="2" >
  6021. </productMenu>
  6022. <productMenu id="alexa"
  6023. type="0" >
  6024. </productMenu>
  6025. <productMenu id="ota"
  6026. type="0"
  6027. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  6028. size="1150234" >
  6029. </productMenu>
  6030. <productMenu id="wa"
  6031. type="1" >
  6032. </productMenu>
  6033. <productMenu id="sip"
  6034. type="1" >
  6035. </productMenu>
  6036. <productMenu id="meshIntercom"
  6037. type="20" >
  6038. </productMenu>
  6039. <productMenu id="bluetoothIntercom"
  6040. type="1" >
  6041. </productMenu>
  6042. <productMenu id="phone"
  6043. type="1" >
  6044. </productMenu>
  6045. <productMenu id="music"
  6046. type="1" >
  6047. </productMenu>
  6048. <productMenu id="fmradio"
  6049. type="1" >
  6050. </productMenu>
  6051. <productMenu id="deviceSetting"
  6052. type="1"
  6053. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  6054. </productMenu>
  6055. <productMenu id="quickGuide"
  6056. type="1"
  6057. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  6058. size="934KB" >
  6059. </productMenu>
  6060. <productMenu id="userGuide"
  6061. type="1"
  6062. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  6063. size="1.14MB" >
  6064. </productMenu>
  6065. <productMenu id="volume"
  6066. type="11" >
  6067. </productMenu>
  6068. <productMenu id="battery"
  6069. type="1" >
  6070. </productMenu>
  6071. <productID id="3156"
  6072. />
  6073. <productGroupable type="0"
  6074. />
  6075. </product>
  6076. <product id="HD50S"
  6077. name="H-D Audio 50S"
  6078. series="50"
  6079. latestVersion="2.0.2"
  6080. show = "0" >
  6081. <productMenu id="protocol"
  6082. type="2" >
  6083. </productMenu>
  6084. <productMenu id="alexa"
  6085. type="0" >
  6086. </productMenu>
  6087. <productMenu id="ota"
  6088. type="0"
  6089. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  6090. size="1150234" >
  6091. </productMenu>
  6092. <productMenu id="wa"
  6093. type="1" >
  6094. </productMenu>
  6095. <productMenu id="sip"
  6096. type="1" >
  6097. </productMenu>
  6098. <productMenu id="meshIntercom"
  6099. type="20" >
  6100. </productMenu>
  6101. <productMenu id="bluetoothIntercom"
  6102. type="1" >
  6103. </productMenu>
  6104. <productMenu id="phone"
  6105. type="1" >
  6106. </productMenu>
  6107. <productMenu id="music"
  6108. type="1" >
  6109. </productMenu>
  6110. <productMenu id="fmradio"
  6111. type="1" >
  6112. </productMenu>
  6113. <productMenu id="deviceSetting"
  6114. type="1"
  6115. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  6116. </productMenu>
  6117. <productMenu id="quickGuide"
  6118. type="1"
  6119. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  6120. size="934KB" >
  6121. </productMenu>
  6122. <productMenu id="userGuide"
  6123. type="1"
  6124. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  6125. size="1.14MB" >
  6126. </productMenu>
  6127. <productMenu id="volume"
  6128. type="11" >
  6129. </productMenu>
  6130. <productMenu id="battery"
  6131. type="1" >
  6132. </productMenu>
  6133. <productID id="3213"
  6134. />
  6135. <productGroupable type="0"
  6136. />
  6137. </product>
  6138. <product id="HD50C"
  6139. name="H-D Audio 50C"
  6140. series="50"
  6141. latestVersion="1.0.1"
  6142. show = "0" >
  6143. <productMenu id="protocol"
  6144. type="2" >
  6145. </productMenu>
  6146. <productMenu id="ota"
  6147. type="0" >
  6148. </productMenu>
  6149. <productMenu id="wa"
  6150. type="1" >
  6151. </productMenu>
  6152. <productMenu id="sip"
  6153. type="1" >
  6154. </productMenu>
  6155. <productMenu id="meshIntercom"
  6156. type="20" >
  6157. </productMenu>
  6158. <productMenu id="bluetoothIntercom"
  6159. type="1" >
  6160. </productMenu>
  6161. <productMenu id="phone"
  6162. type="1" >
  6163. </productMenu>
  6164. <productMenu id="music"
  6165. type="1" >
  6166. </productMenu>
  6167. <productMenu id="fmradio"
  6168. type="1" >
  6169. </productMenu>
  6170. <productMenu id="deviceSetting"
  6171. type="1"
  6172. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  6173. </productMenu>
  6174. <productMenu id="quickGuide"
  6175. type="1"
  6176. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  6177. size="344KB" >
  6178. </productMenu>
  6179. <productMenu id="userGuide"
  6180. type="1"
  6181. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  6182. size="3.41MB" >
  6183. </productMenu>
  6184. <productMenu id="volume"
  6185. type="11" >
  6186. </productMenu>
  6187. <productMenu id="battery"
  6188. type="1" >
  6189. </productMenu>
  6190. <productID id="3240"
  6191. />
  6192. <productGroupable type="0"
  6193. />
  6194. </product>
  6195. <product id="HD50S"
  6196. name="FURY N04"
  6197. series="Helmet"
  6198. latestVersion="1.0"
  6199. show = "0" >
  6200. <productMenu id="protocol"
  6201. type="2" >
  6202. </productMenu>
  6203. <productMenu id="alexa"
  6204. type="0" >
  6205. </productMenu>
  6206. <productMenu id="ota"
  6207. type="0" >
  6208. </productMenu>
  6209. <productMenu id="wa"
  6210. type="0" >
  6211. </productMenu>
  6212. <productMenu id="meshIntercom"
  6213. type="20" >
  6214. </productMenu>
  6215. <productMenu id="meshIntercom+"
  6216. type="3"
  6217. url="0" >
  6218. <productMenuType version="1.0.9"
  6219. type="2"
  6220. />
  6221. </productMenu>
  6222. <productMenu id="phone"
  6223. type="1" >
  6224. </productMenu>
  6225. <productMenu id="music"
  6226. type="1" >
  6227. </productMenu>
  6228. <productMenu id="fmradio"
  6229. type="1" >
  6230. </productMenu>
  6231. <productMenu id="deviceSetting"
  6232. type="1"
  6233. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  6234. <productMenuURL version="1.0.9"
  6235. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  6236. />
  6237. </productMenu>
  6238. <productMenu id="quickGuide"
  6239. type="1"
  6240. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  6241. size="1.12MB" >
  6242. </productMenu>
  6243. <productMenu id="userGuide"
  6244. type="1"
  6245. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  6246. size="2.0MB" >
  6247. </productMenu>
  6248. <productMenu id="volume"
  6249. type="13" >
  6250. </productMenu>
  6251. <productMenu id="battery"
  6252. type="1" >
  6253. </productMenu>
  6254. <productID id="5553"
  6255. />
  6256. <productGroupable type="0"
  6257. />
  6258. </product>
  6259. <product id="XCOM3Pro"
  6260. name="X-COM3 Pro"
  6261. series="50"
  6262. latestVersion="1.1"
  6263. show = "0" >
  6264. <productMenu id="protocol"
  6265. type="2" >
  6266. </productMenu>
  6267. <productMenu id="alexa"
  6268. type="0" >
  6269. </productMenu>
  6270. <productMenu id="ota"
  6271. type="0" >
  6272. </productMenu>
  6273. <productMenu id="wa"
  6274. type="0" >
  6275. </productMenu>
  6276. <productMenu id="sip"
  6277. type="1" >
  6278. </productMenu>
  6279. <productMenu id="meshIntercom"
  6280. type="30" >
  6281. </productMenu>
  6282. <productMenu id="meshIntercom+"
  6283. type="3"
  6284. url="2" >
  6285. <productMenuType version="1.1"
  6286. type="2"
  6287. />
  6288. </productMenu>
  6289. <productMenu id="waveIntercom"
  6290. type="1" >
  6291. <productMenuType version="1.1"
  6292. type="0"
  6293. />
  6294. </productMenu>
  6295. <productMenu id="bluetoothIntercom"
  6296. type="1" >
  6297. </productMenu>
  6298. <productMenu id="phone"
  6299. type="1" >
  6300. </productMenu>
  6301. <productMenu id="music"
  6302. type="1" >
  6303. </productMenu>
  6304. <productMenu id="fmradio"
  6305. type="1" >
  6306. </productMenu>
  6307. <productMenu id="deviceSetting"
  6308. type="1"
  6309. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  6310. <productMenuURL version="1.1"
  6311. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  6312. />
  6313. </productMenu>
  6314. <productMenu id="quickGuide"
  6315. type="0"
  6316. url=""
  6317. size="344KB" >
  6318. </productMenu>
  6319. <productMenu id="userGuide"
  6320. type="1"
  6321. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  6322. size="3.41MB" >
  6323. </productMenu>
  6324. <productMenu id="volume"
  6325. type="11" >
  6326. </productMenu>
  6327. <productMenu id="battery"
  6328. type="1" >
  6329. </productMenu>
  6330. <productID id="321A"
  6331. />
  6332. <productGroupable type="0"
  6333. />
  6334. </product>
  6335. <product id="XCOM3"
  6336. name="X-COM3"
  6337. series="20"
  6338. latestVersion="1.0"
  6339. show = "0" >
  6340. <productMenu id="protocol"
  6341. type="2" >
  6342. </productMenu>
  6343. <productMenu id="sip"
  6344. type="1" >
  6345. </productMenu>
  6346. <productMenu id="bluetoothIntercom"
  6347. type="1" >
  6348. </productMenu>
  6349. <productMenu id="phone"
  6350. type="1" >
  6351. </productMenu>
  6352. <productMenu id="music"
  6353. type="1" >
  6354. </productMenu>
  6355. <productMenu id="fmradio"
  6356. type="1" >
  6357. </productMenu>
  6358. <productMenu id="deviceSetting"
  6359. type="1"
  6360. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  6361. </productMenu>
  6362. <productMenu id="quickGuide"
  6363. type="0"
  6364. url=""
  6365. size="934KB" >
  6366. </productMenu>
  6367. <productMenu id="userGuide"
  6368. type="1"
  6369. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  6370. size="1.14MB" >
  6371. </productMenu>
  6372. <productMenu id="volume"
  6373. type="15" >
  6374. </productMenu>
  6375. <productID id="3410"
  6376. />
  6377. <productGroupable type="0"
  6378. />
  6379. </product>
  6380. <product id="X-COM2"
  6381. name="X-COM2"
  6382. series="20"
  6383. latestVersion="1.0.5"
  6384. show = "0" >
  6385. <productMenu id="protocol"
  6386. type="0">
  6387. </productMenu>
  6388. <productMenu id="sip"
  6389. type="1" >
  6390. </productMenu>
  6391. <productMenu id="bluetoothIntercom"
  6392. type="1" >
  6393. </productMenu>
  6394. <productMenu id="intercomSetting"
  6395. type="1" >
  6396. </productMenu>
  6397. <productMenu id="phone"
  6398. type="2" >
  6399. </productMenu>
  6400. <productMenu id="fmradio"
  6401. type="3" >
  6402. </productMenu>
  6403. <productMenu id="deviceSetting"
  6404. type="1"
  6405. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6406. </productMenu>
  6407. <productMenu id="quickGuide"
  6408. type="1"
  6409. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  6410. size="796KB" >
  6411. </productMenu>
  6412. <productMenu id="userGuide"
  6413. type="1"
  6414. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  6415. size="1.90MB" >
  6416. </productMenu>
  6417. <productID id="2030"
  6418. />
  6419. <productGroupable type="1"
  6420. />
  6421. </product>
  6422. <product id="AVAABC"
  6423. name="AVA ABC"
  6424. series="SPIDER"
  6425. latestVersion="1.0"
  6426. show = "0" >
  6427. <productMenu id="protocol"
  6428. type="2" >
  6429. </productMenu>
  6430. <productMenu id="alexa"
  6431. type="0" >
  6432. </productMenu>
  6433. <productMenu id="ota"
  6434. type="0" >
  6435. </productMenu>
  6436. <productMenu id="wa"
  6437. type="0" >
  6438. </productMenu>
  6439. <productMenu id="meshIntercom"
  6440. type="20" >
  6441. </productMenu>
  6442. <productMenu id="phone"
  6443. type="1" >
  6444. </productMenu>
  6445. <productMenu id="music"
  6446. type="1" >
  6447. </productMenu>
  6448. <productMenu id="musicSharing"
  6449. type="0" >
  6450. </productMenu>
  6451. <productMenu id="deviceSetting"
  6452. type="1"
  6453. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml" >
  6454. </productMenu>
  6455. <productMenu id="quickGuide"
  6456. type="1"
  6457. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  6458. size="1.12MB" >
  6459. </productMenu>
  6460. <productMenu id="userGuide"
  6461. type="1"
  6462. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  6463. size="2.0MB" >
  6464. </productMenu>
  6465. <productMenu id="volume"
  6466. type="12" >
  6467. </productMenu>
  6468. <productMenu id="battery"
  6469. type="1" >
  6470. </productMenu>
  6471. <productID id="6808"
  6472. />
  6473. <productGroupable type="0"
  6474. />
  6475. </product>
  6476. <product id="ADVANCEPROCOMMP"
  6477. name="ADVANCE PROCOM MP"
  6478. series="Helmet"
  6479. latestVersion="1.1.4"
  6480. latestVersionVoicePrompt="1.0"
  6481. show = "1" >
  6482. <productMenu id="protocol"
  6483. type="2" >
  6484. </productMenu>
  6485. <productMenu id="ota"
  6486. type="0" >
  6487. <otaLanguages>
  6488. <otaLanguage
  6489. id="0"
  6490. name="English"
  6491. package="0"
  6492. />
  6493. <otaLanguage
  6494. id="0"
  6495. name="French"
  6496. package="1"
  6497. />
  6498. <otaLanguage
  6499. id="0"
  6500. name="Spanish"
  6501. package="2"
  6502. />
  6503. <otaLanguage
  6504. id="0"
  6505. name="Italian"
  6506. package="3"
  6507. />
  6508. <otaLanguage
  6509. id="0"
  6510. name="German"
  6511. package="4"
  6512. />
  6513. <otaLanguage
  6514. id="0"
  6515. name="Dutch"
  6516. package="5"
  6517. />
  6518. <otaLanguage
  6519. id="0"
  6520. name="Russian"
  6521. package="6"
  6522. />
  6523. <otaLanguage
  6524. id="0"
  6525. name="Chinese"
  6526. package="7"
  6527. />
  6528. <otaLanguage
  6529. id="0"
  6530. name="Korean"
  6531. package="8"
  6532. />
  6533. <otaLanguage
  6534. id="0"
  6535. name="Japanese"
  6536. package="9"
  6537. />
  6538. <otaLanguage
  6539. id="0"
  6540. name="Finnish"
  6541. package="10"
  6542. />
  6543. <otaLanguage
  6544. id="0"
  6545. name="Polish"
  6546. package="11"
  6547. />
  6548. </otaLanguages>
  6549. <otaPackages>
  6550. <package
  6551. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0.img"
  6552. size="5183988"
  6553. />
  6554. <package
  6555. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-fr-FR.img"
  6556. size="5183988"
  6557. />
  6558. <package
  6559. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-es-ES.img"
  6560. size="5183988"
  6561. />
  6562. <package
  6563. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-it-IT.img"
  6564. size="5183988"
  6565. />
  6566. <package
  6567. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-de-DE.img"
  6568. size="5183988"
  6569. />
  6570. <package
  6571. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-nl-NL.img"
  6572. size="5183988"
  6573. />
  6574. <package
  6575. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-ru-RU.img"
  6576. size="5183988"
  6577. />
  6578. <package
  6579. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-cmn-CN.img"
  6580. size="5183988"
  6581. />
  6582. <package
  6583. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-ko-KR.img"
  6584. size="5183988"
  6585. />
  6586. <package
  6587. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-ja-JP.img"
  6588. size="5183988"
  6589. />
  6590. <package
  6591. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-fi-FI.img"
  6592. size="5183988"
  6593. />
  6594. <package
  6595. url="https://api.sena.com/support/OTA/PHANTOM/ADVANCE-v1.1.4-build0-pl-PL.img"
  6596. size="5183988"
  6597. />
  6598. </otaPackages>
  6599. </productMenu>
  6600. <productMenu id="wa"
  6601. type="0" >
  6602. </productMenu>
  6603. <productMenu id="led"
  6604. type="5" >
  6605. </productMenu>
  6606. <productMenu id="led+"
  6607. type="2"
  6608. url="1" >
  6609. </productMenu>
  6610. <productMenu id="meshIntercom"
  6611. type="30" >
  6612. </productMenu>
  6613. <productMenu id="meshIntercom+"
  6614. type="3"
  6615. url="2" >
  6616. </productMenu>
  6617. <productMenu id="waveIntercom"
  6618. type="1" >
  6619. </productMenu>
  6620. <productMenu id="fmradio"
  6621. type="1" >
  6622. </productMenu>
  6623. <productMenu id="phone"
  6624. type="0" >
  6625. </productMenu>
  6626. <productMenu id="music"
  6627. type="1" >
  6628. </productMenu>
  6629. <productMenu id="musicSharing"
  6630. type="0" >
  6631. </productMenu>
  6632. <productMenu id="deviceSetting"
  6633. type="1"
  6634. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  6635. </productMenu>
  6636. <productMenu id="quickGuide"
  6637. type="0"
  6638. url=""
  6639. size="1.12MB" >
  6640. </productMenu>
  6641. <productMenu id="userGuide"
  6642. type="1"
  6643. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.0.1_en_250709.pdf"
  6644. size="2.0MB" >
  6645. </productMenu>
  6646. <productMenu id="videoGuide"
  6647. type="0"
  6648. url=""
  6649. size="3.41MB" >
  6650. </productMenu>
  6651. <productMenu id="connectGuide"
  6652. type="1"
  6653. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  6654. size="1.12MB" >
  6655. </productMenu>
  6656. <productMenu id="volume"
  6657. type="16" >
  6658. </productMenu>
  6659. <productMenu id="battery"
  6660. type="1" >
  6661. </productMenu>
  6662. <productID id="6A85"
  6663. />
  6664. <productGroupable type="0"
  6665. />
  6666. </product>
  6667. <product id="Triumph_50S"
  6668. name="Triumph 50S"
  6669. series="50"
  6670. latestVersion="1.5"
  6671. show = "0" >
  6672. <productMenu id="protocol"
  6673. type="2" >
  6674. </productMenu>
  6675. <productMenu id="alexa"
  6676. type="0" >
  6677. </productMenu>
  6678. <productMenu id="ota"
  6679. type="0"
  6680. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  6681. size="1150234" >
  6682. </productMenu>
  6683. <productMenu id="wa"
  6684. type="1" >
  6685. </productMenu>
  6686. <productMenu id="sip"
  6687. type="1" >
  6688. </productMenu>
  6689. <productMenu id="meshIntercom"
  6690. type="20" >
  6691. </productMenu>
  6692. <productMenu id="bluetoothIntercom"
  6693. type="1" >
  6694. </productMenu>
  6695. <productMenu id="meshIntercom+"
  6696. type="3"
  6697. url="2" >
  6698. <productMenuType version="1.2.9"
  6699. type="2"
  6700. />
  6701. <productMenuURL version="1.2.9"
  6702. url="0"
  6703. />
  6704. </productMenu>
  6705. <productMenu id="waveIntercom"
  6706. type="1" >
  6707. <productMenuType version="1.2.9"
  6708. type="0"
  6709. />
  6710. </productMenu>
  6711. <productMenu id="phone"
  6712. type="1" >
  6713. </productMenu>
  6714. <productMenu id="music"
  6715. type="1" >
  6716. </productMenu>
  6717. <productMenu id="fmradio"
  6718. type="1" >
  6719. </productMenu>
  6720. <productMenu id="deviceSetting"
  6721. type="1"
  6722. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  6723. <productMenuURL version="1.2.9"
  6724. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  6725. />
  6726. <productMenuURL version="1.0"
  6727. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  6728. />
  6729. </productMenu>
  6730. <productMenu id="quickGuide"
  6731. type="1"
  6732. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  6733. size="934KB" >
  6734. </productMenu>
  6735. <productMenu id="userGuide"
  6736. type="1"
  6737. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  6738. size="1.14MB" >
  6739. </productMenu>
  6740. <productMenu id="volume"
  6741. type="11" >
  6742. </productMenu>
  6743. <productMenu id="battery"
  6744. type="1" >
  6745. </productMenu>
  6746. <productID id="3264"
  6747. />
  6748. <productGroupable type="0"
  6749. />
  6750. </product>
  6751. <product id="RE50S"
  6752. name="RE 50S"
  6753. series="50"
  6754. latestVersion="2.7"
  6755. show = "0" >
  6756. <productMenu id="protocol"
  6757. type="2" >
  6758. </productMenu>
  6759. <productMenu id="alexa"
  6760. type="0" >
  6761. </productMenu>
  6762. <productMenu id="ota"
  6763. type="0"
  6764. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  6765. size="1150234" >
  6766. </productMenu>
  6767. <productMenu id="wa"
  6768. type="1" >
  6769. </productMenu>
  6770. <productMenu id="sip"
  6771. type="1" >
  6772. </productMenu>
  6773. <productMenu id="meshIntercom"
  6774. type="30" >
  6775. </productMenu>
  6776. <productMenu id="meshIntercom+"
  6777. type="3"
  6778. url="2" >
  6779. <productMenuType version="2.5"
  6780. type="2"
  6781. />
  6782. </productMenu>
  6783. <productMenu id="waveIntercom"
  6784. type="1" >
  6785. <productMenuType version="2.5"
  6786. type="0"
  6787. />
  6788. </productMenu>
  6789. <productMenu id="bluetoothIntercom"
  6790. type="1" >
  6791. </productMenu>
  6792. <productMenu id="phone"
  6793. type="1" >
  6794. </productMenu>
  6795. <productMenu id="music"
  6796. type="1" >
  6797. </productMenu>
  6798. <productMenu id="fmradio"
  6799. type="1" >
  6800. </productMenu>
  6801. <productMenu id="deviceSetting"
  6802. type="1"
  6803. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  6804. <productMenuURL version="2.5"
  6805. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  6806. />
  6807. </productMenu>
  6808. <productMenu id="quickGuide"
  6809. type="1"
  6810. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  6811. size="934KB" >
  6812. </productMenu>
  6813. <productMenu id="userGuide"
  6814. type="1"
  6815. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  6816. size="1.14MB" >
  6817. </productMenu>
  6818. <productMenu id="videoGuide"
  6819. type="0"
  6820. url=""
  6821. size="3.41MB" >
  6822. </productMenu>
  6823. <productMenu id="volume"
  6824. type="11" >
  6825. </productMenu>
  6826. <productMenu id="battery"
  6827. type="1" >
  6828. </productMenu>
  6829. <productID id="321C"
  6830. />
  6831. <productGroupable type="0"
  6832. />
  6833. </product>
  6834. <product id="BMW_HELMET_II_U1"
  6835. name="BMW HELMET II U1"
  6836. series="50"
  6837. latestVersion="1.0"
  6838. show = "0" >
  6839. <productMenu id="protocol"
  6840. type="2" >
  6841. </productMenu>
  6842. <productMenu id="alexa"
  6843. type="0" >
  6844. </productMenu>
  6845. <productMenu id="sip"
  6846. type="1" >
  6847. </productMenu>
  6848. <productMenu id="meshIntercom"
  6849. type="20" >
  6850. </productMenu>
  6851. <productMenu id="bluetoothIntercom"
  6852. type="1" >
  6853. </productMenu>
  6854. <productMenu id="bluetoothIntercom2"
  6855. type="1" >
  6856. </productMenu>
  6857. <productMenu id="phone"
  6858. type="1" >
  6859. </productMenu>
  6860. <productMenu id="music"
  6861. type="1" >
  6862. </productMenu>
  6863. <productMenu id="fmradio"
  6864. type="1" >
  6865. </productMenu>
  6866. <productMenu id="deviceSetting"
  6867. type="1"
  6868. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  6869. </productMenu>
  6870. <productMenu id="quickGuide"
  6871. type="1"
  6872. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  6873. size="934KB" >
  6874. </productMenu>
  6875. <productMenu id="userGuide"
  6876. type="1"
  6877. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  6878. size="1.14MB" >
  6879. </productMenu>
  6880. <productMenu id="volume"
  6881. type="11" >
  6882. </productMenu>
  6883. <productMenu id="battery"
  6884. type="1" >
  6885. </productMenu>
  6886. <productID id="3260"
  6887. />
  6888. <productGroupable type="0"
  6889. />
  6890. </product>
  6891. <product id="OUTRUSHR"
  6892. name="CX935"
  6893. series="Helmet"
  6894. latestVersion="1.1.3"
  6895. show = "-1" >
  6896. <productMenu id="protocol"
  6897. type="0">
  6898. </productMenu>
  6899. <productMenu id="sip"
  6900. type="1" >
  6901. </productMenu>
  6902. <productMenu id="bluetoothIntercom"
  6903. type="1" >
  6904. </productMenu>
  6905. <productMenu id="phone"
  6906. type="2" >
  6907. </productMenu>
  6908. <productMenu id="fmradio"
  6909. type="3" >
  6910. </productMenu>
  6911. <productMenu id="deviceSetting"
  6912. type="1"
  6913. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6914. </productMenu>
  6915. <productMenu id="userGuide"
  6916. type="1"
  6917. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6918. size="660KB" >
  6919. </productMenu>
  6920. <productID id="5436"
  6921. />
  6922. <productGroupable type="0"
  6923. />
  6924. </product>
  6925. <product id="LSE_01"
  6926. name="LSE-01"
  6927. series="SF"
  6928. latestVersion="1.2.3"
  6929. show = "0" >
  6930. <productMenu id="protocol"
  6931. type="1"
  6932. url="3">
  6933. </productMenu>
  6934. <productMenu id="sip"
  6935. type="1" >
  6936. </productMenu>
  6937. <productMenu id="bluetoothIntercom"
  6938. type="1" >
  6939. </productMenu>
  6940. <productMenu id="phone"
  6941. type="1" >
  6942. </productMenu>
  6943. <productMenu id="music"
  6944. type="1" >
  6945. </productMenu>
  6946. <productMenu id="fmradio"
  6947. type="1" >
  6948. </productMenu>
  6949. <productMenu id="deviceSetting"
  6950. type="1"
  6951. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  6952. <productMenuURL version="1.1"
  6953. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  6954. />
  6955. <productMenuURL version="1.0"
  6956. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  6957. />
  6958. </productMenu>
  6959. <productMenu id="quickGuide"
  6960. type="1"
  6961. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  6962. size="607KB" >
  6963. </productMenu>
  6964. <productMenu id="userGuide"
  6965. type="1"
  6966. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  6967. size="1.91MB" >
  6968. </productMenu>
  6969. <productMenu id="volume"
  6970. type="4" >
  6971. </productMenu>
  6972. <productID id="5416"
  6973. />
  6974. <productGroupable type="0"
  6975. />
  6976. </product>
  6977. <product id="AGV_ARK"
  6978. name="AGV ARK"
  6979. series="SF"
  6980. latestVersion="1.0.3"
  6981. show = "0" >
  6982. <productMenu id="protocol"
  6983. type="1"
  6984. url="3">
  6985. </productMenu>
  6986. <productMenu id="sip"
  6987. type="1" >
  6988. </productMenu>
  6989. <productMenu id="bluetoothIntercom"
  6990. type="1" >
  6991. </productMenu>
  6992. <productMenu id="phone"
  6993. type="1" >
  6994. </productMenu>
  6995. <productMenu id="music"
  6996. type="1" >
  6997. </productMenu>
  6998. <productMenu id="fmradio"
  6999. type="1" >
  7000. </productMenu>
  7001. <productMenu id="deviceSetting"
  7002. type="1"
  7003. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  7004. </productMenu>
  7005. <productMenu id="quickGuide"
  7006. type="1"
  7007. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  7008. size="607KB" >
  7009. </productMenu>
  7010. <productMenu id="userGuide"
  7011. type="1"
  7012. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  7013. size="1.91MB" >
  7014. </productMenu>
  7015. <productMenu id="volume"
  7016. type="4" >
  7017. </productMenu>
  7018. <productID id="5420"
  7019. />
  7020. <productGroupable type="0"
  7021. />
  7022. </product>
  7023. <product id="KLIM_KRIOS"
  7024. name="KLIM Krios"
  7025. series="10"
  7026. latestVersion="1.1.2"
  7027. show = "0" >
  7028. <productMenu id="protocol"
  7029. type="0">
  7030. </productMenu>
  7031. <productMenu id="sip"
  7032. type="1" >
  7033. </productMenu>
  7034. <productMenu id="bluetoothIntercom"
  7035. type="1" >
  7036. </productMenu>
  7037. <productMenu id="phone"
  7038. type="2" >
  7039. </productMenu>
  7040. <productMenu id="fmradio"
  7041. type="3" >
  7042. </productMenu>
  7043. <productMenu id="deviceSetting"
  7044. type="1"
  7045. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  7046. <productMenuURL version="1.0"
  7047. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  7048. />
  7049. </productMenu>
  7050. <productMenu id="quickGuide"
  7051. type="1"
  7052. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  7053. size="649KB" >
  7054. </productMenu>
  7055. <productMenu id="userGuide"
  7056. type="1"
  7057. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  7058. size="1.43MB" >
  7059. </productMenu>
  7060. <productID id="5910"
  7061. />
  7062. <productGroupable type="0"
  7063. />
  7064. </product>
  7065. <product id="POLARIS_SLINGSHOT"
  7066. name="Polaris Slingshot"
  7067. series="10"
  7068. latestVersion="1.1.2"
  7069. show = "0" >
  7070. <productMenu id="protocol"
  7071. type="0">
  7072. </productMenu>
  7073. <productMenu id="sip"
  7074. type="1" >
  7075. </productMenu>
  7076. <productMenu id="bluetoothIntercom"
  7077. type="1" >
  7078. </productMenu>
  7079. <productMenu id="phone"
  7080. type="2" >
  7081. </productMenu>
  7082. <productMenu id="fmradio"
  7083. type="3" >
  7084. </productMenu>
  7085. <productMenu id="deviceSetting"
  7086. type="1"
  7087. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  7088. <productMenuURL version="1.0"
  7089. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  7090. />
  7091. </productMenu>
  7092. <productMenu id="quickGuide"
  7093. type="1"
  7094. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  7095. size="689KB" >
  7096. </productMenu>
  7097. <productMenu id="userGuide"
  7098. type="1"
  7099. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  7100. size="1.43MB" >
  7101. </productMenu>
  7102. <productID id="5920"
  7103. />
  7104. <productGroupable type="0"
  7105. />
  7106. </product>
  7107. <product id="DWO6"
  7108. name="SEDICI DWO6-PRO"
  7109. series="10"
  7110. latestVersion="1.0.2"
  7111. show = "0" >
  7112. <productMenu id="protocol"
  7113. type="0">
  7114. </productMenu>
  7115. <productMenu id="sip"
  7116. type="1" >
  7117. </productMenu>
  7118. <productMenu id="bluetoothIntercom"
  7119. type="1" >
  7120. </productMenu>
  7121. <productMenu id="phone"
  7122. type="2" >
  7123. </productMenu>
  7124. <productMenu id="fmradio"
  7125. type="3" >
  7126. </productMenu>
  7127. <productMenu id="deviceSetting"
  7128. type="1"
  7129. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  7130. </productMenu>
  7131. <productMenu id="quickGuide"
  7132. type="1"
  7133. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  7134. size="529KB" >
  7135. </productMenu>
  7136. <productMenu id="userGuide"
  7137. type="1"
  7138. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  7139. size="4.09MB" >
  7140. </productMenu>
  7141. <productID id="6112"
  7142. />
  7143. <productGroupable type="0"
  7144. />
  7145. </product>
  7146. <product id="DWO6A"
  7147. name="SEDICI DWO-6"
  7148. series="10"
  7149. latestVersion="1.0.2"
  7150. show = "0" >
  7151. <productMenu id="protocol"
  7152. type="0">
  7153. </productMenu>
  7154. <productMenu id="sip"
  7155. type="1" >
  7156. </productMenu>
  7157. <productMenu id="bluetoothIntercom"
  7158. type="1" >
  7159. </productMenu>
  7160. <productMenu id="phone"
  7161. type="2" >
  7162. </productMenu>
  7163. <productMenu id="fmradio"
  7164. type="3" >
  7165. </productMenu>
  7166. <productMenu id="deviceSetting"
  7167. type="1"
  7168. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  7169. </productMenu>
  7170. <productMenu id="quickGuide"
  7171. type="1"
  7172. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  7173. size="522KB" >
  7174. </productMenu>
  7175. <productMenu id="userGuide"
  7176. type="1"
  7177. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  7178. size="2.71MB" >
  7179. </productMenu>
  7180. <productID id="6114"
  7181. />
  7182. <productGroupable type="0"
  7183. />
  7184. </product>
  7185. <product id="3SPLUS"
  7186. name="ZILL"
  7187. series="3"
  7188. latestVersion="1.0.4"
  7189. show = "0" >
  7190. <productMenu id="protocol"
  7191. type="0">
  7192. </productMenu>
  7193. <productMenu id="sip"
  7194. type="1" >
  7195. </productMenu>
  7196. <productMenu id="bluetoothIntercom"
  7197. type="1" >
  7198. </productMenu>
  7199. <productMenu id="deviceSetting"
  7200. type="1"
  7201. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  7202. </productMenu>
  7203. <productMenu id="quickGuide"
  7204. type="1"
  7205. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  7206. size="842KB" >
  7207. </productMenu>
  7208. <productMenu id="userGuide"
  7209. type="1"
  7210. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  7211. size="1.02MB" >
  7212. </productMenu>
  7213. <productID id="6335"
  7214. />
  7215. <productGroupable type="0"
  7216. />
  7217. </product>
  7218. <product id="HD50S"
  7219. name="Boom! Audio 30K"
  7220. series="30"
  7221. latestVersion="3.4"
  7222. show = "0" >
  7223. <productMenu id="protocol"
  7224. type="1"
  7225. url="0">
  7226. </productMenu>
  7227. <productMenu id="wa"
  7228. type="0" >
  7229. </productMenu>
  7230. <productMenu id="sip"
  7231. type="1" >
  7232. </productMenu>
  7233. <productMenu id="meshIntercom"
  7234. type="20" >
  7235. <productMenuType version="2.9.9"
  7236. type="10"
  7237. />
  7238. </productMenu>
  7239. <productMenu id="bluetoothIntercom"
  7240. type="1" >
  7241. </productMenu>
  7242. <productMenu id="phone"
  7243. type="1" >
  7244. </productMenu>
  7245. <productMenu id="music"
  7246. type="1" >
  7247. </productMenu>
  7248. <productMenu id="fmradio"
  7249. type="1" >
  7250. </productMenu>
  7251. <productMenu id="deviceSetting"
  7252. type="1"
  7253. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  7254. <productMenuURL version="3.2"
  7255. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  7256. />
  7257. <productMenuURL version="3.0"
  7258. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  7259. />
  7260. <productMenuURL version="2.2"
  7261. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  7262. />
  7263. </productMenu>
  7264. <productMenu id="quickGuide"
  7265. type="1"
  7266. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  7267. size="1.06MB" >
  7268. </productMenu>
  7269. <productMenu id="userGuide"
  7270. type="1"
  7271. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  7272. size="3.15MB" >
  7273. </productMenu>
  7274. <productMenu id="volume"
  7275. type="1" >
  7276. </productMenu>
  7277. <productID id="3112"
  7278. />
  7279. <productGroupable type="0"
  7280. />
  7281. </product>
  7282. <product id="HD50S"
  7283. name="Boom! Audio N02"
  7284. series="30"
  7285. latestVersion="3.1"
  7286. show = "0" >
  7287. <productMenu id="protocol"
  7288. type="1"
  7289. url="0">
  7290. </productMenu>
  7291. <productMenu id="wa"
  7292. type="2" >
  7293. </productMenu>
  7294. <productMenu id="sip"
  7295. type="1" >
  7296. </productMenu>
  7297. <productMenu id="meshIntercom"
  7298. type="20" >
  7299. <productMenuType version="2.9.9"
  7300. type="10"
  7301. />
  7302. </productMenu>
  7303. <productMenu id="bluetoothIntercom"
  7304. type="1" >
  7305. </productMenu>
  7306. <productMenu id="phone"
  7307. type="1" >
  7308. </productMenu>
  7309. <productMenu id="music"
  7310. type="1" >
  7311. </productMenu>
  7312. <productMenu id="fmradio"
  7313. type="1" >
  7314. </productMenu>
  7315. <productMenu id="deviceSetting"
  7316. type="1"
  7317. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  7318. <productMenuURL version="2.2"
  7319. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  7320. />
  7321. </productMenu>
  7322. <productMenu id="quickGuide"
  7323. type="1"
  7324. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  7325. size="1.06MB" >
  7326. </productMenu>
  7327. <productMenu id="userGuide"
  7328. type="1"
  7329. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  7330. size="3.15MB" >
  7331. </productMenu>
  7332. <productMenu id="volume"
  7333. type="2" >
  7334. </productMenu>
  7335. <productID id="3114"
  7336. />
  7337. <productGroupable type="0"
  7338. />
  7339. </product>
  7340. <product id="HD50S"
  7341. name="Boom Audio 20S"
  7342. series="50"
  7343. latestVersion="2.5.2"
  7344. show = "0" >
  7345. <productMenu id="protocol"
  7346. type="0">
  7347. </productMenu>
  7348. <productMenu id="sip"
  7349. type="1" >
  7350. <productMenuType version="1.0"
  7351. type="0"
  7352. />
  7353. </productMenu>
  7354. <productMenu id="bluetoothIntercom"
  7355. type="1" >
  7356. <productMenuType version="1.0"
  7357. type="0"
  7358. />
  7359. </productMenu>
  7360. <productMenu id="intercomSetting"
  7361. type="1" >
  7362. </productMenu>
  7363. <productMenu id="phone"
  7364. type="2" >
  7365. </productMenu>
  7366. <productMenu id="fmradio"
  7367. type="3" >
  7368. </productMenu>
  7369. <productMenu id="deviceSetting"
  7370. type="1"
  7371. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  7372. <productMenuURL version="2.4"
  7373. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  7374. />
  7375. <productMenuURL version="1.5"
  7376. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  7377. />
  7378. <productMenuURL version="1.4.1"
  7379. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  7380. />
  7381. <productMenuURL version="1.1"
  7382. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  7383. />
  7384. <productMenuURL version="1.0"
  7385. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  7386. />
  7387. </productMenu>
  7388. <productMenu id="quickGuide"
  7389. type="1"
  7390. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  7391. size="264KB" >
  7392. </productMenu>
  7393. <productMenu id="userGuide"
  7394. type="1"
  7395. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  7396. size="3.09MB" >
  7397. </productMenu>
  7398. <productID id="4210"
  7399. />
  7400. <productProductKey key="11"
  7401. />
  7402. <productID id="4230"
  7403. />
  7404. <productProductKey key="11"
  7405. />
  7406. <productGroupable type="1"
  7407. />
  7408. </product>
  7409. <product id="HD50S"
  7410. name="Boom Audio 20S EVO"
  7411. series="50"
  7412. latestVersion="2.5.2"
  7413. show = "0" >
  7414. <productMenu id="protocol"
  7415. type="0">
  7416. </productMenu>
  7417. <productMenu id="sip"
  7418. type="1" >
  7419. <productMenuType version="1.0"
  7420. type="0"
  7421. />
  7422. </productMenu>
  7423. <productMenu id="bluetoothIntercom"
  7424. type="1" >
  7425. <productMenuType version="1.0"
  7426. type="0"
  7427. />
  7428. </productMenu>
  7429. <productMenu id="intercomSetting"
  7430. type="1" >
  7431. </productMenu>
  7432. <productMenu id="phone"
  7433. type="2" >
  7434. </productMenu>
  7435. <productMenu id="fmradio"
  7436. type="3" >
  7437. </productMenu>
  7438. <productMenu id="deviceSetting"
  7439. type="1"
  7440. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  7441. <productMenuURL version="2.4"
  7442. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  7443. />
  7444. <productMenuURL version="1.5"
  7445. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  7446. />
  7447. <productMenuURL version="1.4.1"
  7448. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  7449. />
  7450. <productMenuURL version="1.1"
  7451. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  7452. />
  7453. <productMenuURL version="1.0"
  7454. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  7455. />
  7456. </productMenu>
  7457. <productMenu id="quickGuide"
  7458. type="1"
  7459. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  7460. size="321KB" >
  7461. </productMenu>
  7462. <productMenu id="userGuide"
  7463. type="1"
  7464. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  7465. size="2.46MB" >
  7466. </productMenu>
  7467. <productID id="4230"
  7468. />
  7469. <productProductKey key="27"
  7470. />
  7471. <productGroupable type="1"
  7472. />
  7473. </product>
  7474. <product id="HD50S"
  7475. name="Boom! Audio 10S"
  7476. series="50"
  7477. latestVersion="1.1.3"
  7478. show = "0" >
  7479. <productMenu id="protocol"
  7480. type="0">
  7481. </productMenu>
  7482. <productMenu id="sip"
  7483. type="1" >
  7484. </productMenu>
  7485. <productMenu id="bluetoothIntercom"
  7486. type="1" >
  7487. </productMenu>
  7488. <productMenu id="phone"
  7489. type="2" >
  7490. </productMenu>
  7491. <productMenu id="fmradio"
  7492. type="3" >
  7493. </productMenu>
  7494. <productMenu id="deviceSetting"
  7495. type="1"
  7496. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  7497. </productMenu>
  7498. <productMenu id="quickGuide"
  7499. type="1"
  7500. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  7501. size="538KB" >
  7502. </productMenu>
  7503. <productMenu id="userGuide"
  7504. type="1"
  7505. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  7506. size="1.55MB" >
  7507. </productMenu>
  7508. <productID id="5532"
  7509. />
  7510. <productGroupable type="0"
  7511. />
  7512. </product>
  7513. <product id="HD50S"
  7514. name="Boom! Audio N01 10R"
  7515. series="50"
  7516. latestVersion="1.1.3"
  7517. show = "0" >
  7518. <productMenu id="protocol"
  7519. type="0">
  7520. </productMenu>
  7521. <productMenu id="sip"
  7522. type="1" >
  7523. </productMenu>
  7524. <productMenu id="bluetoothIntercom"
  7525. type="1" >
  7526. </productMenu>
  7527. <productMenu id="phone"
  7528. type="2" >
  7529. </productMenu>
  7530. <productMenu id="fmradio"
  7531. type="3" >
  7532. </productMenu>
  7533. <productMenu id="deviceSetting"
  7534. type="1"
  7535. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7536. </productMenu>
  7537. <productMenu id="quickGuide"
  7538. type="1"
  7539. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  7540. size="766KB" >
  7541. </productMenu>
  7542. <productMenu id="userGuide"
  7543. type="1"
  7544. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  7545. size="1.45MB" >
  7546. </productMenu>
  7547. <productID id="5522"
  7548. />
  7549. <productGroupable type="0"
  7550. />
  7551. </product>
  7552. <product id="HD50S"
  7553. name="OUTRUSH-R N03"
  7554. series="50"
  7555. latestVersion="1.2.1"
  7556. show = "-1" >
  7557. <productMenu id="protocol"
  7558. type="0">
  7559. </productMenu>
  7560. <productMenu id="sip"
  7561. type="1" >
  7562. </productMenu>
  7563. <productMenu id="bluetoothIntercom"
  7564. type="1" >
  7565. </productMenu>
  7566. <productMenu id="phone"
  7567. type="2" >
  7568. </productMenu>
  7569. <productMenu id="fmradio"
  7570. type="3" >
  7571. </productMenu>
  7572. <productMenu id="deviceSetting"
  7573. type="1"
  7574. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  7575. </productMenu>
  7576. <productMenu id="userGuide"
  7577. type="1"
  7578. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  7579. size="660KB" >
  7580. </productMenu>
  7581. <productID id="5434"
  7582. />
  7583. <productGroupable type="0"
  7584. />
  7585. </product>
  7586. <product id="HD50S"
  7587. name="OUTRUSH-R N03"
  7588. series="50"
  7589. latestVersion="2.0"
  7590. show = "0" >
  7591. <productMenu id="protocol"
  7592. type="3" >
  7593. </productMenu>
  7594. <productMenu id="sip"
  7595. type="1" >
  7596. </productMenu>
  7597. <productMenu id="bluetoothIntercom"
  7598. type="1" >
  7599. </productMenu>
  7600. <productMenu id="phone"
  7601. type="1" >
  7602. </productMenu>
  7603. <productMenu id="fmradio"
  7604. type="1" >
  7605. </productMenu>
  7606. <productMenu id="deviceSetting"
  7607. type="1"
  7608. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  7609. </productMenu>
  7610. <productMenu id="userGuide"
  7611. type="1"
  7612. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  7613. size="1.14MB" >
  7614. </productMenu>
  7615. <productID id="5441"
  7616. />
  7617. <productGroupable type="0"
  7618. />
  7619. </product>
  7620. <product id="5R"
  7621. name="5R"
  7622. series="5"
  7623. latestVersion="1.0.1"
  7624. show = "1" >
  7625. <productMenu id="protocol"
  7626. type="3" >
  7627. </productMenu>
  7628. <productMenu id="sip"
  7629. type="1" >
  7630. </productMenu>
  7631. <productMenu id="bluetoothIntercom"
  7632. type="1" >
  7633. </productMenu>
  7634. <productMenu id="phone"
  7635. type="1" >
  7636. </productMenu>
  7637. <productMenu id="fmradio"
  7638. type="1" >
  7639. </productMenu>
  7640. <productMenu id="deviceSetting"
  7641. type="1"
  7642. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  7643. </productMenu>
  7644. <productMenu id="quickGuide"
  7645. type="0"
  7646. url=""
  7647. size="934KB" >
  7648. </productMenu>
  7649. <productMenu id="userGuide"
  7650. type="1"
  7651. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  7652. size="1.14MB" >
  7653. </productMenu>
  7654. <productMenu id="connectGuide"
  7655. type="1"
  7656. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  7657. size="1.12MB" >
  7658. </productMenu>
  7659. <productID id="5591"
  7660. />
  7661. <productGroupable type="0"
  7662. />
  7663. </product>
  7664. <product id="5R"
  7665. name="5R LITE"
  7666. series="5"
  7667. latestVersion="1.0.1"
  7668. show = "1" >
  7669. <productMenu id="protocol"
  7670. type="3" >
  7671. </productMenu>
  7672. <productMenu id="sip"
  7673. type="1" >
  7674. </productMenu>
  7675. <productMenu id="bluetoothIntercom"
  7676. type="1" >
  7677. </productMenu>
  7678. <productMenu id="phone"
  7679. type="1" >
  7680. </productMenu>
  7681. <productMenu id="fmradio"
  7682. type="1" >
  7683. </productMenu>
  7684. <productMenu id="deviceSetting"
  7685. type="1"
  7686. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  7687. </productMenu>
  7688. <productMenu id="quickGuide"
  7689. type="0"
  7690. url=""
  7691. size="934KB" >
  7692. </productMenu>
  7693. <productMenu id="userGuide"
  7694. type="1"
  7695. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  7696. size="1.14MB" >
  7697. </productMenu>
  7698. <productMenu id="connectGuide"
  7699. type="1"
  7700. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  7701. size="1.12MB" >
  7702. </productMenu>
  7703. <productID id="5592"
  7704. />
  7705. <productGroupable type="0"
  7706. />
  7707. </product>
  7708. <product id="50RLE"
  7709. name="50R LE"
  7710. series="50"
  7711. latestVersion="1.1"
  7712. show = "0" >
  7713. <productMenu id="protocol"
  7714. type="2" >
  7715. </productMenu>
  7716. <productMenu id="alexa"
  7717. type="0" >
  7718. </productMenu>
  7719. <productMenu id="sip"
  7720. type="1" >
  7721. </productMenu>
  7722. <productMenu id="meshIntercom"
  7723. type="30" >
  7724. </productMenu>
  7725. <productMenu id="meshIntercom+"
  7726. type="3"
  7727. url="2" >
  7728. <productMenuType version="1.0.9"
  7729. type="2"
  7730. />
  7731. </productMenu>
  7732. <productMenu id="waveIntercom"
  7733. type="1" >
  7734. <productMenuType version="1.0.9"
  7735. type="0"
  7736. />
  7737. </productMenu>
  7738. <productMenu id="bluetoothIntercom"
  7739. type="1" >
  7740. </productMenu>
  7741. <productMenu id="phone"
  7742. type="1" >
  7743. </productMenu>
  7744. <productMenu id="music"
  7745. type="1" >
  7746. </productMenu>
  7747. <productMenu id="fmradio"
  7748. type="0" >
  7749. </productMenu>
  7750. <productMenu id="deviceSetting"
  7751. type="1"
  7752. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  7753. <productMenuURL version="1.0.9"
  7754. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  7755. />
  7756. </productMenu>
  7757. <productMenu id="quickGuide"
  7758. type="0"
  7759. url=""
  7760. size="344KB" >
  7761. </productMenu>
  7762. <productMenu id="userGuide"
  7763. type="0"
  7764. url=""
  7765. size="3.41MB" >
  7766. </productMenu>
  7767. <productMenu id="volume"
  7768. type="11" >
  7769. </productMenu>
  7770. <productMenu id="battery"
  7771. type="1" >
  7772. </productMenu>
  7773. <productID id="3223"
  7774. />
  7775. <productGroupable type="0"
  7776. />
  7777. </product>
  7778. <product id="5RLOUIS"
  7779. name="5R LOUIS EDITION"
  7780. series="5"
  7781. latestVersion="1.0"
  7782. show = "-1" >
  7783. <productMenu id="protocol"
  7784. type="3" >
  7785. </productMenu>
  7786. <productMenu id="sip"
  7787. type="1" >
  7788. </productMenu>
  7789. <productMenu id="bluetoothIntercom"
  7790. type="1" >
  7791. </productMenu>
  7792. <productMenu id="phone"
  7793. type="1" >
  7794. </productMenu>
  7795. <productMenu id="fmradio"
  7796. type="1" >
  7797. </productMenu>
  7798. <productMenu id="deviceSetting"
  7799. type="1"
  7800. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  7801. </productMenu>
  7802. <productMenu id="quickGuide"
  7803. type="0"
  7804. url=""
  7805. size="934KB" >
  7806. </productMenu>
  7807. <productMenu id="userGuide"
  7808. type="0"
  7809. url=""
  7810. size="1.14MB" >
  7811. </productMenu>
  7812. <productID id="5597"
  7813. />
  7814. <productGroupable type="0"
  7815. />
  7816. </product>
  7817. <product id="5S"
  7818. name="Ridekont 5S"
  7819. series="5"
  7820. latestVersion="2.3"
  7821. show = "-1" >
  7822. <productMenu id="protocol"
  7823. type="3" >
  7824. </productMenu>
  7825. <productMenu id="sip"
  7826. type="1" >
  7827. </productMenu>
  7828. <productMenu id="bluetoothIntercom"
  7829. type="1" >
  7830. </productMenu>
  7831. <productMenu id="phone"
  7832. type="1" >
  7833. </productMenu>
  7834. <productMenu id="fmradio"
  7835. type="0" >
  7836. </productMenu>
  7837. <productMenu id="deviceSetting"
  7838. type="1"
  7839. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  7840. </productMenu>
  7841. <productMenu id="quickGuide"
  7842. type="0"
  7843. url=""
  7844. size="934KB" >
  7845. </productMenu>
  7846. <productMenu id="userGuide"
  7847. type="1"
  7848. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  7849. size="1.14MB" >
  7850. </productMenu>
  7851. <productID id="5589"
  7852. />
  7853. <productGroupable type="0"
  7854. />
  7855. </product>
  7856. <product id="5R"
  7857. name="Ridekont 5R"
  7858. series="5"
  7859. latestVersion="1.0"
  7860. show = "0" >
  7861. <productMenu id="protocol"
  7862. type="3" >
  7863. </productMenu>
  7864. <productMenu id="sip"
  7865. type="1" >
  7866. </productMenu>
  7867. <productMenu id="bluetoothIntercom"
  7868. type="1" >
  7869. </productMenu>
  7870. <productMenu id="phone"
  7871. type="1" >
  7872. </productMenu>
  7873. <productMenu id="fmradio"
  7874. type="1" >
  7875. </productMenu>
  7876. <productMenu id="deviceSetting"
  7877. type="1"
  7878. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  7879. </productMenu>
  7880. <productMenu id="quickGuide"
  7881. type="1"
  7882. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  7883. size="934KB" >
  7884. </productMenu>
  7885. <productMenu id="userGuide"
  7886. type="1"
  7887. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  7888. size="1.14MB" >
  7889. </productMenu>
  7890. <productID id="5593"
  7891. />
  7892. <productGroupable type="0"
  7893. />
  7894. </product>
  7895. <product id="5R"
  7896. name="Ridekont 5R LITE"
  7897. series="5"
  7898. latestVersion="1.0"
  7899. show = "0" >
  7900. <productMenu id="protocol"
  7901. type="3" >
  7902. </productMenu>
  7903. <productMenu id="sip"
  7904. type="1" >
  7905. </productMenu>
  7906. <productMenu id="bluetoothIntercom"
  7907. type="1" >
  7908. </productMenu>
  7909. <productMenu id="phone"
  7910. type="1" >
  7911. </productMenu>
  7912. <productMenu id="fmradio"
  7913. type="1" >
  7914. </productMenu>
  7915. <productMenu id="deviceSetting"
  7916. type="1"
  7917. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  7918. </productMenu>
  7919. <productMenu id="quickGuide"
  7920. type="0"
  7921. url=""
  7922. size="934KB" >
  7923. </productMenu>
  7924. <productMenu id="userGuide"
  7925. type="1"
  7926. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  7927. size="1.14MB" >
  7928. </productMenu>
  7929. <productID id="5594"
  7930. />
  7931. <productGroupable type="0"
  7932. />
  7933. </product>
  7934. <product id="C30"
  7935. name="SENA C30"
  7936. series="C"
  7937. latestVersion="1.1.3"
  7938. latestVersionVoicePrompt="0.11"
  7939. show = "1" >
  7940. <productMenu id="protocol"
  7941. type="2" >
  7942. </productMenu>
  7943. <productMenu id="alexa"
  7944. type="0" >
  7945. </productMenu>
  7946. <productMenu id="ota"
  7947. type="2" >
  7948. <otaPackages>
  7949. <package
  7950. url="https://api.sena.com/support/OTA/C30/SENA_C30-v1.1.3-build2.img"
  7951. size="3144148"
  7952. />
  7953. </otaPackages>
  7954. </productMenu>
  7955. <productMenu id="wa"
  7956. type="0" >
  7957. </productMenu>
  7958. <productMenu id="meshIntercom"
  7959. type="30" >
  7960. </productMenu>
  7961. <productMenu id="meshIntercom+"
  7962. type="3"
  7963. url="2" >
  7964. <productMenuType version="1.0.9"
  7965. type="2"
  7966. />
  7967. </productMenu>
  7968. <productMenu id="phone"
  7969. type="1" >
  7970. </productMenu>
  7971. <productMenu id="music"
  7972. type="1" >
  7973. </productMenu>
  7974. <productMenu id="musicSharing"
  7975. type="0" >
  7976. </productMenu>
  7977. <productMenu id="deviceSetting"
  7978. type="1"
  7979. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_06_zh_rCN.xml" >
  7980. <productMenuURL version="1.0.9"
  7981. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  7982. />
  7983. </productMenu>
  7984. <productMenu id="quickGuide"
  7985. type="1"
  7986. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  7987. size="1.12MB" >
  7988. </productMenu>
  7989. <productMenu id="userGuide"
  7990. type="0"
  7991. url=""
  7992. size="2.0MB" >
  7993. </productMenu>
  7994. <productMenu id="videoGuide"
  7995. type="0"
  7996. url=""
  7997. size="3.41MB" >
  7998. </productMenu>
  7999. <productMenu id="volume"
  8000. type="12" >
  8001. </productMenu>
  8002. <productMenu id="battery"
  8003. type="1" >
  8004. </productMenu>
  8005. <productID id="683A"
  8006. />
  8007. <productGroupable type="0"
  8008. />
  8009. </product>
  8010. <product id="C20"
  8011. name="C20"
  8012. series="5"
  8013. latestVersion="1.0"
  8014. show = "0" >
  8015. <productMenu id="protocol"
  8016. type="3" >
  8017. </productMenu>
  8018. <productMenu id="sip"
  8019. type="1" >
  8020. </productMenu>
  8021. <productMenu id="bluetoothIntercom"
  8022. type="1" >
  8023. </productMenu>
  8024. <productMenu id="phone"
  8025. type="1" >
  8026. </productMenu>
  8027. <productMenu id="deviceSetting"
  8028. type="1"
  8029. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  8030. </productMenu>
  8031. <productMenu id="quickGuide"
  8032. type="1"
  8033. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  8034. size="934KB" >
  8035. </productMenu>
  8036. <productMenu id="userGuide"
  8037. type="1"
  8038. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  8039. size="1.14MB" >
  8040. </productMenu>
  8041. <productID id="3701"
  8042. />
  8043. <productGroupable type="0"
  8044. />
  8045. </product>
  8046. <product id="C10"
  8047. name="C10"
  8048. series="5"
  8049. latestVersion="1.4.1"
  8050. show = "0" >
  8051. <productMenu id="protocol"
  8052. type="3" >
  8053. </productMenu>
  8054. <productMenu id="sip"
  8055. type="1" >
  8056. </productMenu>
  8057. <productMenu id="bluetoothIntercom"
  8058. type="1" >
  8059. </productMenu>
  8060. <productMenu id="phone"
  8061. type="1" >
  8062. </productMenu>
  8063. <productMenu id="fmradio"
  8064. type="0" >
  8065. </productMenu>
  8066. <productMenu id="deviceSetting"
  8067. type="1"
  8068. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  8069. </productMenu>
  8070. <productMenu id="userGuide"
  8071. type="1"
  8072. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  8073. size="1.14MB" >
  8074. </productMenu>
  8075. <productID id="5595"
  8076. />
  8077. <productGroupable type="0"
  8078. />
  8079. </product>
  8080. <product id="J30"
  8081. name="J30"
  8082. series="J"
  8083. latestVersion="1.2"
  8084. latestVersionVoicePrompt="0.13"
  8085. show = "0" >
  8086. <productMenu id="protocol"
  8087. type="2" >
  8088. </productMenu>
  8089. <productMenu id="alexa"
  8090. type="0" >
  8091. </productMenu>
  8092. <productMenu id="ota"
  8093. type="2" >
  8094. <otaPackages>
  8095. <package
  8096. url="https://api.sena.com/support/OTA/J30/SENA_J30-v1.2-build1.img"
  8097. size="3144148"
  8098. />
  8099. </otaPackages>
  8100. </productMenu>
  8101. <productMenu id="wa"
  8102. type="0" >
  8103. </productMenu>
  8104. <productMenu id="meshIntercom"
  8105. type="30" >
  8106. </productMenu>
  8107. <productMenu id="meshIntercom+"
  8108. type="3"
  8109. url="2" >
  8110. <productMenuType version="1.0.9"
  8111. type="2"
  8112. />
  8113. </productMenu>
  8114. <productMenu id="waveIntercom"
  8115. type="1" >
  8116. <productMenuType version="1.1.9"
  8117. type="0"
  8118. />
  8119. </productMenu>
  8120. <productMenu id="phone"
  8121. type="1" >
  8122. </productMenu>
  8123. <productMenu id="music"
  8124. type="1" >
  8125. </productMenu>
  8126. <productMenu id="musicSharing"
  8127. type="0" >
  8128. </productMenu>
  8129. <productMenu id="deviceSetting"
  8130. type="1"
  8131. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  8132. <productMenuURL version="1.0.9"
  8133. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  8134. />
  8135. </productMenu>
  8136. <productMenu id="quickGuide"
  8137. type="0"
  8138. url=""
  8139. size="1.12MB" >
  8140. </productMenu>
  8141. <productMenu id="userGuide"
  8142. type="1"
  8143. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  8144. size="2.0MB" >
  8145. </productMenu>
  8146. <productMenu id="videoGuide"
  8147. type="0"
  8148. url=""
  8149. size="3.41MB" >
  8150. </productMenu>
  8151. <productMenu id="volume"
  8152. type="12" >
  8153. </productMenu>
  8154. <productMenu id="battery"
  8155. type="1" >
  8156. </productMenu>
  8157. <productID id="6848"
  8158. />
  8159. <productGroupable type="0"
  8160. />
  8161. </product>
  8162. <product id="J10"
  8163. name="J10"
  8164. series="5"
  8165. latestVersion="1.1.1"
  8166. show = "0" >
  8167. <productMenu id="protocol"
  8168. type="3" >
  8169. </productMenu>
  8170. <productMenu id="sip"
  8171. type="1" >
  8172. </productMenu>
  8173. <productMenu id="bluetoothIntercom"
  8174. type="1" >
  8175. </productMenu>
  8176. <productMenu id="phone"
  8177. type="1" >
  8178. </productMenu>
  8179. <productMenu id="fmradio"
  8180. type="0" >
  8181. </productMenu>
  8182. <productMenu id="deviceSetting"
  8183. type="1"
  8184. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  8185. </productMenu>
  8186. <productMenu id="userGuide"
  8187. type="1"
  8188. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  8189. size="1.14MB" >
  8190. </productMenu>
  8191. <productID id="5598"
  8192. />
  8193. <productGroupable type="0"
  8194. />
  8195. </product>
  8196. <product id="B20"
  8197. name="B20"
  8198. series="B"
  8199. latestVersion="1.1"
  8200. latestVersionVoicePrompt="0.13"
  8201. show = "0" >
  8202. <productMenu id="protocol"
  8203. type="2" >
  8204. </productMenu>
  8205. <productMenu id="alexa"
  8206. type="0" >
  8207. </productMenu>
  8208. <productMenu id="ota"
  8209. type="2" >
  8210. <otaPackages>
  8211. <package
  8212. url="https://api.sena.com/support/OTA/B20/SENA_B20-v1.1-build0.img"
  8213. size="3144148"
  8214. />
  8215. </otaPackages>
  8216. </productMenu>
  8217. <productMenu id="wa"
  8218. type="0" >
  8219. </productMenu>
  8220. <productMenu id="meshIntercom"
  8221. type="30" >
  8222. </productMenu>
  8223. <productMenu id="phone"
  8224. type="1" >
  8225. </productMenu>
  8226. <productMenu id="music"
  8227. type="1" >
  8228. </productMenu>
  8229. <productMenu id="musicSharing"
  8230. type="0" >
  8231. </productMenu>
  8232. <productMenu id="deviceSetting"
  8233. type="1"
  8234. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  8235. <productMenuURL version="1.0.9"
  8236. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  8237. />
  8238. </productMenu>
  8239. <productMenu id="quickGuide"
  8240. type="0"
  8241. url=""
  8242. size="1.12MB" >
  8243. </productMenu>
  8244. <productMenu id="userGuide"
  8245. type="1"
  8246. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  8247. size="2.0MB" >
  8248. </productMenu>
  8249. <productMenu id="videoGuide"
  8250. type="0"
  8251. url=""
  8252. size="3.41MB" >
  8253. </productMenu>
  8254. <productMenu id="volume"
  8255. type="12" >
  8256. </productMenu>
  8257. <productMenu id="battery"
  8258. type="1" >
  8259. </productMenu>
  8260. <productID id="6847"
  8261. />
  8262. <productGroupable type="0"
  8263. />
  8264. </product>
  8265. <product id="B10"
  8266. name="B10"
  8267. series="5"
  8268. latestVersion="1.2.1"
  8269. show = "0" >
  8270. <productMenu id="protocol"
  8271. type="3" >
  8272. </productMenu>
  8273. <productMenu id="sip"
  8274. type="1" >
  8275. </productMenu>
  8276. <productMenu id="bluetoothIntercom"
  8277. type="1" >
  8278. </productMenu>
  8279. <productMenu id="phone"
  8280. type="1" >
  8281. </productMenu>
  8282. <productMenu id="fmradio"
  8283. type="0" >
  8284. </productMenu>
  8285. <productMenu id="deviceSetting"
  8286. type="1"
  8287. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  8288. </productMenu>
  8289. <productMenu id="userGuide"
  8290. type="1"
  8291. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  8292. size="1.14MB" >
  8293. </productMenu>
  8294. <productID id="5596"
  8295. />
  8296. <productGroupable type="0"
  8297. />
  8298. </product>
  8299. <product id="E30"
  8300. name="E30"
  8301. series="E"
  8302. latestVersion="1.1"
  8303. latestVersionVoicePrompt="0.13"
  8304. show = "0" >
  8305. <productMenu id="protocol"
  8306. type="2" >
  8307. </productMenu>
  8308. <productMenu id="alexa"
  8309. type="0" >
  8310. </productMenu>
  8311. <productMenu id="ota"
  8312. type="2" >
  8313. <otaPackages>
  8314. <package
  8315. url="https://api.sena.com/support/OTA/E30/SENA_E30-v1.1-build0.img"
  8316. size="3144148"
  8317. />
  8318. </otaPackages>
  8319. </productMenu>
  8320. <productMenu id="wa"
  8321. type="0" >
  8322. </productMenu>
  8323. <productMenu id="meshIntercom"
  8324. type="30" >
  8325. </productMenu>
  8326. <productMenu id="meshIntercom+"
  8327. type="3"
  8328. url="2" >
  8329. </productMenu>
  8330. <productMenu id="waveIntercom"
  8331. type="1" >
  8332. <productMenuType version="1.0.9"
  8333. type="0"
  8334. />
  8335. </productMenu>
  8336. <productMenu id="phone"
  8337. type="1" >
  8338. </productMenu>
  8339. <productMenu id="music"
  8340. type="1" >
  8341. </productMenu>
  8342. <productMenu id="musicSharing"
  8343. type="0" >
  8344. </productMenu>
  8345. <productMenu id="deviceSetting"
  8346. type="1"
  8347. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  8348. </productMenu>
  8349. <productMenu id="quickGuide"
  8350. type="0"
  8351. url=""
  8352. size="1.12MB" >
  8353. </productMenu>
  8354. <productMenu id="userGuide"
  8355. type="1"
  8356. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  8357. size="2.0MB" >
  8358. </productMenu>
  8359. <productMenu id="videoGuide"
  8360. type="0"
  8361. url=""
  8362. size="3.41MB" >
  8363. </productMenu>
  8364. <productMenu id="volume"
  8365. type="12" >
  8366. </productMenu>
  8367. <productMenu id="battery"
  8368. type="1" >
  8369. </productMenu>
  8370. <productID id="6846"
  8371. />
  8372. <productGroupable type="0"
  8373. />
  8374. </product>
  8375. <product id="ACSRAM"
  8376. name="ACS-RAM"
  8377. series="ACS"
  8378. latestVersion="1.0.5"
  8379. show = "1" >
  8380. <productMenu id="protocol"
  8381. type="3" >
  8382. </productMenu>
  8383. <productMenu id="sip"
  8384. type="1" >
  8385. </productMenu>
  8386. <productMenu id="bluetoothIntercom"
  8387. type="1" >
  8388. </productMenu>
  8389. <productMenu id="deviceSetting"
  8390. type="1"
  8391. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  8392. </productMenu>
  8393. <productMenu id="quickGuide"
  8394. type="1"
  8395. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  8396. size="344KB" >
  8397. </productMenu>
  8398. <productMenu id="userGuide"
  8399. type="1"
  8400. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  8401. size="1.14MB" >
  8402. </productMenu>
  8403. <productMenu id="connectGuide"
  8404. type="1"
  8405. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  8406. size="1.12MB" >
  8407. </productMenu>
  8408. <productID id="3400"
  8409. />
  8410. <productGroupable type="0"
  8411. />
  8412. </product>
  8413. <product id="ACS10"
  8414. name="ACS10"
  8415. series="ACS"
  8416. latestVersion="1.0.2"
  8417. show = "1" >
  8418. <productMenu id="protocol"
  8419. type="0">
  8420. </productMenu>
  8421. <productMenu id="sip"
  8422. type="1" >
  8423. </productMenu>
  8424. <productMenu id="bluetoothIntercom"
  8425. type="1" >
  8426. </productMenu>
  8427. <productMenu id="phone"
  8428. type="2" >
  8429. </productMenu>
  8430. <productMenu id="deviceSetting"
  8431. type="1"
  8432. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  8433. </productMenu>
  8434. <productMenu id="quickGuide"
  8435. type="1"
  8436. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  8437. size="970KB" >
  8438. </productMenu>
  8439. <productMenu id="userGuide"
  8440. type="1"
  8441. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  8442. size="1.26MB" >
  8443. </productMenu>
  8444. <productID id="3300"
  8445. />
  8446. <productGroupable type="0"
  8447. />
  8448. </product>
  8449. <product id="DWO7ProMesh"
  8450. name="DWO 7 Pro Mesh"
  8451. series="50"
  8452. latestVersion="1.1"
  8453. latestVersionVoicePrompt="0.9"
  8454. show = "0" >
  8455. <productMenu id="protocol"
  8456. type="2" >
  8457. </productMenu>
  8458. <productMenu id="alexa"
  8459. type="0" >
  8460. </productMenu>
  8461. <productMenu id="ota"
  8462. type="2" >
  8463. <otaPackages>
  8464. <package
  8465. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  8466. size="2945812"
  8467. />
  8468. </otaPackages>
  8469. </productMenu>
  8470. <productMenu id="wa"
  8471. type="0" >
  8472. </productMenu>
  8473. <productMenu id="meshIntercom"
  8474. type="20" >
  8475. </productMenu>
  8476. <productMenu id="meshIntercom+"
  8477. type="3"
  8478. url="2" >
  8479. <productMenuType version="1.0.9"
  8480. type="2"
  8481. />
  8482. <productMenuURL version="2.1.1"
  8483. url="0"
  8484. />
  8485. </productMenu>
  8486. <productMenu id="waveIntercom"
  8487. type="1" >
  8488. <productMenuType version="1.0.9"
  8489. type="0"
  8490. />
  8491. </productMenu>
  8492. <productMenu id="phone"
  8493. type="1" >
  8494. </productMenu>
  8495. <productMenu id="music"
  8496. type="1" >
  8497. </productMenu>
  8498. <productMenu id="fmradio"
  8499. type="1" >
  8500. </productMenu>
  8501. <productMenu id="musicSharing"
  8502. type="0" >
  8503. </productMenu>
  8504. <productMenu id="deviceSetting"
  8505. type="1"
  8506. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  8507. <productMenuURL version="1.0.9"
  8508. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  8509. />
  8510. </productMenu>
  8511. <productMenu id="quickGuide"
  8512. type="1"
  8513. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  8514. size="1.12MB" >
  8515. </productMenu>
  8516. <productMenu id="userGuide"
  8517. type="1"
  8518. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  8519. size="2.0MB" >
  8520. </productMenu>
  8521. <productMenu id="volume"
  8522. type="12" >
  8523. </productMenu>
  8524. <productMenu id="battery"
  8525. type="1" >
  8526. </productMenu>
  8527. <productID id="6806"
  8528. />
  8529. <productGroupable type="0"
  8530. />
  8531. </product>
  8532. <product id="UCOM16R"
  8533. name="U-COM 16R"
  8534. series="UCOM"
  8535. latestVersion="1.0"
  8536. latestVersionMesh="1.0"
  8537. latestVersionVoicePrompt="1.0"
  8538. show = "-1" >
  8539. <productMenu id="protocol"
  8540. type="2" >
  8541. </productMenu>
  8542. <productMenu id="ota"
  8543. type="0" >
  8544. <otaLanguages>
  8545. <otaLanguage
  8546. id="0"
  8547. name="English"
  8548. package="0"
  8549. />
  8550. <otaLanguage
  8551. id="0"
  8552. name="French"
  8553. package="1"
  8554. />
  8555. <otaLanguage
  8556. id="0"
  8557. name="Spanish"
  8558. package="2"
  8559. />
  8560. <otaLanguage
  8561. id="0"
  8562. name="Italian"
  8563. package="3"
  8564. />
  8565. <otaLanguage
  8566. id="0"
  8567. name="German"
  8568. package="4"
  8569. />
  8570. <otaLanguage
  8571. id="0"
  8572. name="Dutch"
  8573. package="5"
  8574. />
  8575. <otaLanguage
  8576. id="0"
  8577. name="Russian"
  8578. package="6"
  8579. />
  8580. <otaLanguage
  8581. id="0"
  8582. name="Chinese"
  8583. package="7"
  8584. />
  8585. <otaLanguage
  8586. id="0"
  8587. name="Korean"
  8588. package="8"
  8589. />
  8590. <otaLanguage
  8591. id="0"
  8592. name="Japanese"
  8593. package="9"
  8594. />
  8595. <otaLanguage
  8596. id="0"
  8597. name="Finnish"
  8598. package="10"
  8599. />
  8600. </otaLanguages>
  8601. <otaPackages>
  8602. <package
  8603. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2.img"
  8604. size="5183988"
  8605. />
  8606. <package
  8607. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fr-FR.img"
  8608. size="5183988"
  8609. />
  8610. <package
  8611. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-es-ES.img"
  8612. size="5183988"
  8613. />
  8614. <package
  8615. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-it-IT.img"
  8616. size="5183988"
  8617. />
  8618. <package
  8619. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-de-DE.img"
  8620. size="5183988"
  8621. />
  8622. <package
  8623. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-nl-NL.img"
  8624. size="5183988"
  8625. />
  8626. <package
  8627. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ru-RU.img"
  8628. size="5183988"
  8629. />
  8630. <package
  8631. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-cmn-CN.img"
  8632. size="5183988"
  8633. />
  8634. <package
  8635. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ko-KR.img"
  8636. size="5183988"
  8637. />
  8638. <package
  8639. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ja-JP.img"
  8640. size="5183988"
  8641. />
  8642. <package
  8643. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fi-FI.img"
  8644. size="5183988"
  8645. />
  8646. </otaPackages>
  8647. </productMenu>
  8648. <productMenu id="wa"
  8649. type="0" >
  8650. </productMenu>
  8651. <productMenu id="sip"
  8652. type="1" >
  8653. </productMenu>
  8654. <productMenu id="led"
  8655. type="0" >
  8656. </productMenu>
  8657. <productMenu id="illusion"
  8658. type="1" >
  8659. </productMenu>
  8660. <productMenu id="meshIntercom"
  8661. type="30" >
  8662. </productMenu>
  8663. <productMenu id="meshIntercom+"
  8664. type="3"
  8665. url="2" >
  8666. </productMenu>
  8667. <productMenu id="waveIntercom"
  8668. type="0" >
  8669. </productMenu>
  8670. <productMenu id="bluetoothIntercom"
  8671. type="1" >
  8672. </productMenu>
  8673. <productMenu id="bluetoothIntercomGrouping"
  8674. type="0" >
  8675. </productMenu>
  8676. <productMenu id="fmradio"
  8677. type="1"
  8678. url="1" >
  8679. </productMenu>
  8680. <productMenu id="phone"
  8681. type="1" >
  8682. </productMenu>
  8683. <productMenu id="music"
  8684. type="1" >
  8685. </productMenu>
  8686. <productMenu id="musicSharing"
  8687. type="0" >
  8688. </productMenu>
  8689. <productMenu id="deviceSetting"
  8690. type="1"
  8691. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  8692. </productMenu>
  8693. <productMenu id="quickGuide"
  8694. type="0"
  8695. url=""
  8696. size="1.12MB" >
  8697. </productMenu>
  8698. <productMenu id="userGuide"
  8699. type="1"
  8700. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  8701. size="2.0MB" >
  8702. </productMenu>
  8703. <productMenu id="videoGuide"
  8704. type="0"
  8705. url=""
  8706. size="3.41MB" >
  8707. </productMenu>
  8708. <productMenu id="volume"
  8709. type="16" >
  8710. </productMenu>
  8711. <productMenu id="soundMode"
  8712. type="1" >
  8713. </productMenu>
  8714. <productMenu id="battery"
  8715. type="1" >
  8716. </productMenu>
  8717. <productID id="6A83"
  8718. />
  8719. <productGroupable type="0"
  8720. />
  8721. </product>
  8722. <product id="MeshStation"
  8723. name="Mesh Station"
  8724. series="50"
  8725. latestVersion="0.9"
  8726. show = "-1" >
  8727. <productMenu id="protocol"
  8728. type="2" >
  8729. </productMenu>
  8730. <productMenu id="meshIntercom"
  8731. type="20"
  8732. url="99" >
  8733. </productMenu>
  8734. <productID id="3161"
  8735. />
  8736. <productGroupable type="0"
  8737. />
  8738. </product>
  8739. </products>
  8740. </sna>