snm.xml 252 KB

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