snm.xml 186 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20240420" 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/QuickStartGuide_app_WiFi_Adapter_3.0.0_en_220203.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/QuickStartGuide_app_IMPULSE_1.2.0_en_220114.pdf"
  16. />
  17. <wst url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Stryker_1.0.0_en_220114.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="0"
  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. <!--
  107. <series id="Cycling"
  108. name="Cycling"
  109. />
  110. <series id="sf"
  111. name="SF"
  112. />
  113. <series id="20"
  114. name="20"
  115. />
  116. <series id="smh"
  117. name="SMH"
  118. />
  119. <series id="10"
  120. name="10"
  121. />
  122. <series id="cavalry"
  123. name="CAVALRY"
  124. show="0"
  125. />
  126. <series id="5"
  127. name="5"
  128. />
  129. <series id="3"
  130. name="3"
  131. />
  132. -->
  133. </serieses>
  134. <products>
  135. <product id="60S"
  136. name="60S"
  137. series="60"
  138. latestVersion="0.5.2"
  139. latestVersionVoicePrompt="0.3"
  140. show = "-1" >
  141. <productMenu id="protocol"
  142. type="2" >
  143. </productMenu>
  144. <productMenu id="ota"
  145. type="0" >
  146. <otaPackages>
  147. <package
  148. url="https://api.sena.com/support/test/60R-v0.5.2-build0_OTA2.img"
  149. size="2945812"
  150. />
  151. </otaPackages>
  152. </productMenu>
  153. <productMenu id="wa"
  154. type="0" >
  155. </productMenu>
  156. <productMenu id="led"
  157. type="0" >
  158. </productMenu>
  159. <productMenu id="meshIntercom"
  160. type="30" >
  161. </productMenu>
  162. <productMenu id="bluetoothIntercom"
  163. type="1" >
  164. </productMenu>
  165. <productMenu id="fmradio"
  166. type="1" >
  167. </productMenu>
  168. <productMenu id="phone"
  169. type="1" >
  170. </productMenu>
  171. <productMenu id="music"
  172. type="1" >
  173. </productMenu>
  174. <productMenu id="musicSharing"
  175. type="0" >
  176. </productMenu>
  177. <productMenu id="deviceSetting"
  178. type="1"
  179. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml" >
  180. </productMenu>
  181. <productMenu id="quickGuide"
  182. type="1"
  183. url=""
  184. size="1.12MB" >
  185. </productMenu>
  186. <productMenu id="userGuide"
  187. type="1"
  188. url=""
  189. size="2.0MB" >
  190. </productMenu>
  191. <productMenu id="videoGuide"
  192. type="1"
  193. url=""
  194. size="3.41MB" >
  195. </productMenu>
  196. <productMenu id="volume"
  197. type="12" >
  198. </productMenu>
  199. <productMenu id="battery"
  200. type="1" >
  201. </productMenu>
  202. <productID id="6A02"
  203. />
  204. <productGroupable type="0"
  205. />
  206. </product>
  207. <product id="60R"
  208. name="60R"
  209. series="60"
  210. latestVersion="0.6.1"
  211. latestVersionMesh="0.8"
  212. latestVersionVoicePrompt="0.2"
  213. show = "-1" >
  214. <productMenu id="protocol"
  215. type="2" >
  216. </productMenu>
  217. <productMenu id="ota"
  218. type="2" >
  219. <otaPackages>
  220. <package
  221. url="https://api.sena.com/support/test/60R-v0.6.1-build0.img"
  222. size="2945812"
  223. />
  224. </otaPackages>
  225. </productMenu>
  226. <productMenu id="wa"
  227. type="0" >
  228. </productMenu>
  229. <productMenu id="led"
  230. type="1" >
  231. </productMenu>
  232. <productMenu id="meshIntercom"
  233. type="30" >
  234. </productMenu>
  235. <productMenu id="bluetoothIntercom"
  236. type="1" >
  237. </productMenu>
  238. <productMenu id="fmradio"
  239. type="1" >
  240. </productMenu>
  241. <productMenu id="phone"
  242. type="1" >
  243. </productMenu>
  244. <productMenu id="music"
  245. type="1" >
  246. </productMenu>
  247. <productMenu id="musicSharing"
  248. type="0" >
  249. </productMenu>
  250. <productMenu id="deviceSetting"
  251. type="1"
  252. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml" >
  253. </productMenu>
  254. <productMenu id="quickGuide"
  255. type="1"
  256. url=""
  257. size="1.12MB" >
  258. </productMenu>
  259. <productMenu id="userGuide"
  260. type="1"
  261. url=""
  262. size="2.0MB" >
  263. </productMenu>
  264. <productMenu id="videoGuide"
  265. type="1"
  266. url=""
  267. size="3.41MB" >
  268. </productMenu>
  269. <productMenu id="volume"
  270. type="12" >
  271. </productMenu>
  272. <productMenu id="battery"
  273. type="1" >
  274. </productMenu>
  275. <productID id="6A03"
  276. />
  277. <productGroupable type="0"
  278. />
  279. </product>
  280. <product id="COMP1"
  281. name="BMW COM P1"
  282. series="60"
  283. latestVersion="0.6rc0"
  284. latestVersionMesh="0.9"
  285. latestVersionVoicePrompt="0.3"
  286. show = "-1" >
  287. <productMenu id="protocol"
  288. type="2" >
  289. </productMenu>
  290. <productMenu id="ota"
  291. type="2" >
  292. <otaPackages>
  293. <package
  294. url="https://api.sena.com/support/test/BMW_COM_P1-v0.6rc0-build0.img"
  295. size="2945812"
  296. />
  297. </otaPackages>
  298. </productMenu>
  299. <productMenu id="wa"
  300. type="0" >
  301. </productMenu>
  302. <productMenu id="led"
  303. type="1" >
  304. </productMenu>
  305. <productMenu id="meshIntercom"
  306. type="30" >
  307. </productMenu>
  308. <productMenu id="bluetoothIntercom"
  309. type="1" >
  310. </productMenu>
  311. <productMenu id="fmradio"
  312. type="1" >
  313. </productMenu>
  314. <productMenu id="phone"
  315. type="1" >
  316. </productMenu>
  317. <productMenu id="music"
  318. type="1" >
  319. </productMenu>
  320. <productMenu id="musicSharing"
  321. type="0" >
  322. </productMenu>
  323. <productMenu id="deviceSetting"
  324. type="1"
  325. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml" >
  326. </productMenu>
  327. <productMenu id="quickGuide"
  328. type="1"
  329. url=""
  330. size="1.12MB" >
  331. </productMenu>
  332. <productMenu id="userGuide"
  333. type="1"
  334. url=""
  335. size="2.0MB" >
  336. </productMenu>
  337. <productMenu id="videoGuide"
  338. type="1"
  339. url=""
  340. size="3.41MB" >
  341. </productMenu>
  342. <productMenu id="volume"
  343. type="12" >
  344. </productMenu>
  345. <productMenu id="battery"
  346. type="1" >
  347. </productMenu>
  348. <productID id="6A80"
  349. />
  350. <productGroupable type="0"
  351. />
  352. </product>
  353. <product id="50S"
  354. name="50S"
  355. series="50"
  356. latestVersion="2.4"
  357. show = "1" >
  358. <productMenu id="protocol"
  359. type="2" >
  360. </productMenu>
  361. <productMenu id="alexa"
  362. type="0" >
  363. </productMenu>
  364. <productMenu id="ota"
  365. type="0"
  366. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  367. size="1150234" >
  368. </productMenu>
  369. <productMenu id="wa"
  370. type="1" >
  371. </productMenu>
  372. <productMenu id="sip"
  373. type="1" >
  374. </productMenu>
  375. <productMenu id="meshIntercom"
  376. type="30" >
  377. <productMenuType version="2.1.1"
  378. type="20"
  379. />
  380. </productMenu>
  381. <productMenu id="bluetoothIntercom"
  382. type="1" >
  383. </productMenu>
  384. <productMenu id="phone"
  385. type="1" >
  386. </productMenu>
  387. <productMenu id="music"
  388. type="1" >
  389. </productMenu>
  390. <productMenu id="fmradio"
  391. type="1" >
  392. </productMenu>
  393. <productMenu id="deviceSetting"
  394. type="1"
  395. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml" >
  396. <productMenuURL version="2.1.1"
  397. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  398. />
  399. <productMenuURL version="2.0.3"
  400. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  401. />
  402. </productMenu>
  403. <productMenu id="quickGuide"
  404. type="1"
  405. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_50S_2.3.0_en_230714.pdf"
  406. size="934KB" >
  407. </productMenu>
  408. <productMenu id="userGuide"
  409. type="1"
  410. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_50S_2.4.0_en_230714.pdf"
  411. size="1.14MB" >
  412. </productMenu>
  413. <productMenu id="videoGuide"
  414. type="1"
  415. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  416. size="3.41MB" >
  417. </productMenu>
  418. <productMenu id="volume"
  419. type="11" >
  420. </productMenu>
  421. <productMenu id="battery"
  422. type="1" >
  423. </productMenu>
  424. <productID id="3210"
  425. />
  426. <productGroupable type="0"
  427. />
  428. </product>
  429. <product id="50S"
  430. name="50S"
  431. series="50"
  432. latestVersion="1.3.1"
  433. show = "0" >
  434. <productMenu id="protocol"
  435. type="2" >
  436. </productMenu>
  437. <productMenu id="alexa"
  438. type="0" >
  439. </productMenu>
  440. <productMenu id="wa"
  441. type="1" >
  442. </productMenu>
  443. <productMenu id="sip"
  444. type="1" >
  445. </productMenu>
  446. <productMenu id="meshIntercom"
  447. type="30" >
  448. <productMenuType version="1.2.2"
  449. type="20"
  450. />
  451. </productMenu>
  452. <productMenu id="bluetoothIntercom"
  453. type="1" >
  454. </productMenu>
  455. <productMenu id="phone"
  456. type="1" >
  457. </productMenu>
  458. <productMenu id="music"
  459. type="1" >
  460. </productMenu>
  461. <productMenu id="fmradio"
  462. type="1" >
  463. </productMenu>
  464. <productMenu id="deviceSetting"
  465. type="1"
  466. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml" >
  467. <productMenuURL version="1.2.2"
  468. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  469. />
  470. <productMenuURL version="1.1.1"
  471. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  472. />
  473. </productMenu>
  474. <productMenu id="quickGuide"
  475. type="1"
  476. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_50S_1.6.0_en_230714.pdf"
  477. size="934KB" >
  478. </productMenu>
  479. <productMenu id="userGuide"
  480. type="1"
  481. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_50S_1.8.0_en_230714.pdf"
  482. size="1.14MB" >
  483. </productMenu>
  484. <productMenu id="videoGuide"
  485. type="1"
  486. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  487. size="3.41MB" >
  488. </productMenu>
  489. <productMenu id="volume"
  490. type="11" >
  491. </productMenu>
  492. <productMenu id="battery"
  493. type="1" >
  494. </productMenu>
  495. <productID id="3132"
  496. />
  497. <productGroupable type="0"
  498. />
  499. </product>
  500. <product id="50R"
  501. name="50R"
  502. series="50"
  503. latestVersion="2.4"
  504. show = "1" >
  505. <productMenu id="protocol"
  506. type="2" >
  507. </productMenu>
  508. <productMenu id="alexa"
  509. type="0" >
  510. </productMenu>
  511. <productMenu id="ota"
  512. type="0"
  513. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  514. size="1150234" >
  515. </productMenu>
  516. <productMenu id="wa"
  517. type="1" >
  518. </productMenu>
  519. <productMenu id="sip"
  520. type="1" >
  521. </productMenu>
  522. <productMenu id="meshIntercom"
  523. type="30" >
  524. <productMenuType version="2.1.1"
  525. type="20"
  526. />
  527. </productMenu>
  528. <productMenu id="bluetoothIntercom"
  529. type="1" >
  530. </productMenu>
  531. <productMenu id="phone"
  532. type="1" >
  533. </productMenu>
  534. <productMenu id="music"
  535. type="1" >
  536. </productMenu>
  537. <productMenu id="fmradio"
  538. type="1" >
  539. </productMenu>
  540. <productMenu id="deviceSetting"
  541. type="1"
  542. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml" >
  543. <productMenuURL version="2.1.1"
  544. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  545. />
  546. <productMenuURL version="2.0"
  547. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  548. />
  549. </productMenu>
  550. <productMenu id="quickGuide"
  551. type="1"
  552. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_50R_2.2.0_en_230713.pdf"
  553. size="344KB" >
  554. </productMenu>
  555. <productMenu id="userGuide"
  556. type="1"
  557. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_50R_2.3.0_en_230713.pdf"
  558. size="3.41MB" >
  559. </productMenu>
  560. <productMenu id="videoGuide"
  561. type="1"
  562. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  563. size="3.41MB" >
  564. </productMenu>
  565. <productMenu id="volume"
  566. type="11" >
  567. </productMenu>
  568. <productMenu id="battery"
  569. type="1" >
  570. </productMenu>
  571. <productID id="3218"
  572. />
  573. <productGroupable type="0"
  574. />
  575. </product>
  576. <product id="50R"
  577. name="50R"
  578. series="50"
  579. latestVersion="1.3.1"
  580. show = "0" >
  581. <productMenu id="protocol"
  582. type="2" >
  583. </productMenu>
  584. <productMenu id="alexa"
  585. type="0" >
  586. </productMenu>
  587. <productMenu id="wa"
  588. type="1" >
  589. </productMenu>
  590. <productMenu id="sip"
  591. type="1" >
  592. </productMenu>
  593. <productMenu id="meshIntercom"
  594. type="30" >
  595. <productMenuType version="1.2.2"
  596. type="20"
  597. />
  598. </productMenu>
  599. <productMenu id="bluetoothIntercom"
  600. type="1" >
  601. </productMenu>
  602. <productMenu id="phone"
  603. type="1" >
  604. </productMenu>
  605. <productMenu id="music"
  606. type="1" >
  607. </productMenu>
  608. <productMenu id="fmradio"
  609. type="1" >
  610. </productMenu>
  611. <productMenu id="deviceSetting"
  612. type="1"
  613. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml" >
  614. <productMenuURL version="1.2.2"
  615. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  616. />
  617. <productMenuURL version="1.1.1"
  618. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  619. />
  620. </productMenu>
  621. <productMenu id="quickGuide"
  622. type="1"
  623. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_50R_1.6.0_en_230713.pdf"
  624. size="344KB" >
  625. </productMenu>
  626. <productMenu id="userGuide"
  627. type="1"
  628. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_50R_1.8.0_en_230713.pdf"
  629. size="3.41MB" >
  630. </productMenu>
  631. <productMenu id="videoGuide"
  632. type="1"
  633. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  634. size="3.41MB" >
  635. </productMenu>
  636. <productMenu id="volume"
  637. type="11" >
  638. </productMenu>
  639. <productMenu id="battery"
  640. type="1" >
  641. </productMenu>
  642. <productID id="3134"
  643. />
  644. <productGroupable type="0"
  645. />
  646. </product>
  647. <product id="50C"
  648. name="50C"
  649. series="50"
  650. latestVersion="1.2.3"
  651. show = "1" >
  652. <productMenu id="protocol"
  653. type="2" >
  654. </productMenu>
  655. <productMenu id="ota"
  656. type="0" >
  657. </productMenu>
  658. <productMenu id="wa"
  659. type="1" >
  660. </productMenu>
  661. <productMenu id="sip"
  662. type="1" >
  663. </productMenu>
  664. <productMenu id="meshIntercom"
  665. type="30" >
  666. <productMenuType version="1.1.1"
  667. type="20"
  668. />
  669. </productMenu>
  670. <productMenu id="bluetoothIntercom"
  671. type="1" >
  672. </productMenu>
  673. <productMenu id="phone"
  674. type="1" >
  675. </productMenu>
  676. <productMenu id="music"
  677. type="1" >
  678. </productMenu>
  679. <productMenu id="fmradio"
  680. type="1" >
  681. </productMenu>
  682. <productMenu id="deviceSetting"
  683. type="1"
  684. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml" >
  685. <productMenuURL version="1.1.1"
  686. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  687. />
  688. <productMenuURL version="1.0.1"
  689. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  690. />
  691. </productMenu>
  692. <productMenu id="quickGuide"
  693. type="1"
  694. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_50C_1.3.0_en_230712.pdf"
  695. size="344KB" >
  696. </productMenu>
  697. <productMenu id="userGuide"
  698. type="1"
  699. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_50C_1.4.0_en_230712.pdf"
  700. size="3.41MB" >
  701. </productMenu>
  702. <productMenu id="volume"
  703. type="11" >
  704. </productMenu>
  705. <productMenu id="battery"
  706. type="1" >
  707. </productMenu>
  708. <productID id="3232"
  709. />
  710. <productGroupable type="0"
  711. />
  712. </product>
  713. <product id="Impulse"
  714. name="Impulse"
  715. series="Helmet"
  716. latestVersion="1.2.2"
  717. show = "1" >
  718. <productMenu id="protocol"
  719. type="2" >
  720. </productMenu>
  721. <productMenu id="alexa"
  722. type="0" >
  723. </productMenu>
  724. <productMenu id="ota"
  725. type="0" >
  726. </productMenu>
  727. <productMenu id="wa"
  728. type="8" >
  729. </productMenu>
  730. <productMenu id="manager"
  731. type="0" >
  732. </productMenu>
  733. <productMenu id="sip"
  734. type="1" >
  735. </productMenu>
  736. <productMenu id="led"
  737. type="1" >
  738. <productMenuType version="1.0.1"
  739. type="2"
  740. />
  741. <productMenuType version="1.0"
  742. type="1"
  743. />
  744. </productMenu>
  745. <productMenu id="meshIntercom"
  746. type="30" >
  747. <productMenuType version="1.1.1"
  748. type="20"
  749. />
  750. </productMenu>
  751. <productMenu id="bluetoothIntercom"
  752. type="1" >
  753. </productMenu>
  754. <productMenu id="phone"
  755. type="1" >
  756. </productMenu>
  757. <productMenu id="music"
  758. type="1" >
  759. </productMenu>
  760. <productMenu id="fmradio"
  761. type="1" >
  762. </productMenu>
  763. <productMenu id="deviceSetting"
  764. type="1"
  765. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml" >
  766. <productMenuURL version="1.1.1"
  767. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  768. />
  769. <productMenuURL version="1.0.4"
  770. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  771. />
  772. </productMenu>
  773. <productMenu id="quickGuide"
  774. type="1"
  775. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.5.0_en_230727.pdf"
  776. size="344KB" >
  777. </productMenu>
  778. <productMenu id="userGuide"
  779. type="1"
  780. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.8.0_en_230727.pdf"
  781. size="3.41MB" >
  782. </productMenu>
  783. <productMenu id="volume"
  784. type="11" >
  785. </productMenu>
  786. <productMenu id="battery"
  787. type="1" >
  788. </productMenu>
  789. <productID id="3148"
  790. />
  791. <productGroupable type="0"
  792. />
  793. </product>
  794. <product id="Impulse"
  795. name="Impulse"
  796. series="Helmet"
  797. latestVersion="2.0"
  798. show = "0" >
  799. <productMenu id="protocol"
  800. type="2" >
  801. </productMenu>
  802. <productMenu id="alexa"
  803. type="0" >
  804. </productMenu>
  805. <productMenu id="ota"
  806. type="0" >
  807. </productMenu>
  808. <productMenu id="wa"
  809. type="8" >
  810. </productMenu>
  811. <productMenu id="manager"
  812. type="0" >
  813. </productMenu>
  814. <productMenu id="sip"
  815. type="1" >
  816. </productMenu>
  817. <productMenu id="led"
  818. type="3" >
  819. </productMenu>
  820. <productMenu id="meshIntercom"
  821. type="20" >
  822. </productMenu>
  823. <productMenu id="bluetoothIntercom"
  824. type="1" >
  825. </productMenu>
  826. <productMenu id="phone"
  827. type="1" >
  828. </productMenu>
  829. <productMenu id="music"
  830. type="1" >
  831. </productMenu>
  832. <productMenu id="fmradio"
  833. type="1" >
  834. </productMenu>
  835. <productMenu id="deviceSetting"
  836. type="1"
  837. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  838. </productMenu>
  839. <productMenu id="quickGuide"
  840. type="1"
  841. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  842. size="344KB" >
  843. </productMenu>
  844. <productMenu id="userGuide"
  845. type="1"
  846. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  847. size="3.41MB" >
  848. </productMenu>
  849. <productMenu id="volume"
  850. type="11" >
  851. </productMenu>
  852. <productMenu id="battery"
  853. type="1" >
  854. </productMenu>
  855. <productID id="3221"
  856. />
  857. <productGroupable type="0"
  858. />
  859. </product>
  860. <product id="Stryker"
  861. name="Stryker"
  862. series="Helmet"
  863. latestVersion="1.2.2"
  864. show = "1" >
  865. <productMenu id="protocol"
  866. type="2" >
  867. </productMenu>
  868. <productMenu id="alexa"
  869. type="0" >
  870. </productMenu>
  871. <productMenu id="ota"
  872. type="0" >
  873. </productMenu>
  874. <productMenu id="wa"
  875. type="8" >
  876. </productMenu>
  877. <productMenu id="manager"
  878. type="0" >
  879. </productMenu>
  880. <productMenu id="sip"
  881. type="1" >
  882. </productMenu>
  883. <productMenu id="led"
  884. type="1" >
  885. <productMenuType version="1.0.1"
  886. type="2"
  887. />
  888. <productMenuType version="1.0"
  889. type="1"
  890. />
  891. </productMenu>
  892. <productMenu id="meshIntercom"
  893. type="30" >
  894. <productMenuType version="1.1.1"
  895. type="20"
  896. />
  897. </productMenu>
  898. <productMenu id="bluetoothIntercom"
  899. type="1" >
  900. </productMenu>
  901. <productMenu id="phone"
  902. type="1" >
  903. </productMenu>
  904. <productMenu id="music"
  905. type="1" >
  906. </productMenu>
  907. <productMenu id="fmradio"
  908. type="1" >
  909. </productMenu>
  910. <productMenu id="deviceSetting"
  911. type="1"
  912. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml" >
  913. <productMenuURL version="1.1.1"
  914. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  915. />
  916. <productMenuURL version="1.0.4"
  917. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  918. />
  919. </productMenu>
  920. <productMenu id="quickGuide"
  921. type="1"
  922. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_STRYKER_1.3.0_en_230727.pdf"
  923. size="344KB" >
  924. </productMenu>
  925. <productMenu id="userGuide"
  926. type="1"
  927. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_STRYKER_1.5.0_en_230727.pdf"
  928. size="3.41MB" >
  929. </productMenu>
  930. <productMenu id="volume"
  931. type="11" >
  932. </productMenu>
  933. <productMenu id="battery"
  934. type="1" >
  935. </productMenu>
  936. <productID id="3154"
  937. />
  938. <productGroupable type="0"
  939. />
  940. </product>
  941. <product id="SRL3"
  942. name="SRL3"
  943. series="SRL"
  944. latestVersion="1.2"
  945. show = "1" >
  946. <productMenu id="protocol"
  947. type="2" >
  948. </productMenu>
  949. <productMenu id="alexa"
  950. type="0" >
  951. </productMenu>
  952. <productMenu id="ota"
  953. type="0" >
  954. </productMenu>
  955. <productMenu id="wa"
  956. type="1" >
  957. </productMenu>
  958. <productMenu id="sip"
  959. type="1" >
  960. </productMenu>
  961. <productMenu id="meshIntercom"
  962. type="30" >
  963. </productMenu>
  964. <productMenu id="bluetoothIntercom"
  965. type="1" >
  966. </productMenu>
  967. <productMenu id="phone"
  968. type="1" >
  969. </productMenu>
  970. <productMenu id="music"
  971. type="1" >
  972. </productMenu>
  973. <productMenu id="fmradio"
  974. type="1" >
  975. </productMenu>
  976. <productMenu id="deviceSetting"
  977. type="1"
  978. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml" >
  979. </productMenu>
  980. <productMenu id="quickGuide"
  981. type="1"
  982. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL3_1.0.0_en_230623.pdf"
  983. size="344KB" >
  984. </productMenu>
  985. <productMenu id="userGuide"
  986. type="1"
  987. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL3_1.0.0_en_230627.pdf"
  988. size="3.41MB" >
  989. </productMenu>
  990. <productMenu id="volume"
  991. type="11" >
  992. </productMenu>
  993. <productMenu id="battery"
  994. type="1" >
  995. </productMenu>
  996. <productID id="3219"
  997. />
  998. <productGroupable type="0"
  999. />
  1000. </product>
  1001. <product id="SRL_Mesh"
  1002. name="SRL-Mesh"
  1003. series="SRL"
  1004. latestVersion="1.4"
  1005. show = "1" >
  1006. <productMenu id="protocol"
  1007. type="2" >
  1008. </productMenu>
  1009. <productMenu id="alexa"
  1010. type="0" >
  1011. </productMenu>
  1012. <productMenu id="ota"
  1013. type="0" >
  1014. </productMenu>
  1015. <productMenu id="wa"
  1016. type="1" >
  1017. </productMenu>
  1018. <productMenu id="sip"
  1019. type="1" >
  1020. </productMenu>
  1021. <productMenu id="meshIntercom"
  1022. type="30" >
  1023. <productMenuType version="1.1.1"
  1024. type="20"
  1025. />
  1026. </productMenu>
  1027. <productMenu id="bluetoothIntercom"
  1028. type="1" >
  1029. </productMenu>
  1030. <productMenu id="phone"
  1031. type="1" >
  1032. </productMenu>
  1033. <productMenu id="music"
  1034. type="1" >
  1035. </productMenu>
  1036. <productMenu id="fmradio"
  1037. type="1" >
  1038. </productMenu>
  1039. <productMenu id="deviceSetting"
  1040. type="1"
  1041. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml" >
  1042. <productMenuURL version="1.1.1"
  1043. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1044. />
  1045. <productMenuURL version="1.0.3"
  1046. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1047. />
  1048. </productMenu>
  1049. <productMenu id="quickGuide"
  1050. type="1"
  1051. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL-Mesh_1.2.0_en_230713.pdf"
  1052. size="344KB" >
  1053. </productMenu>
  1054. <productMenu id="userGuide"
  1055. type="1"
  1056. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL-Mesh_1.3.0_en_230713.pdf"
  1057. size="3.41MB" >
  1058. </productMenu>
  1059. <productMenu id="volume"
  1060. type="11" >
  1061. </productMenu>
  1062. <productMenu id="battery"
  1063. type="1" >
  1064. </productMenu>
  1065. <productID id="3216"
  1066. />
  1067. <productGroupable type="0"
  1068. />
  1069. </product>
  1070. <product id="SRL_EXT"
  1071. name="SRL-EXT"
  1072. series="SRL"
  1073. latestVersion="1.4"
  1074. show = "1" >
  1075. <productMenu id="protocol"
  1076. type="2" >
  1077. </productMenu>
  1078. <productMenu id="alexa"
  1079. type="0" >
  1080. </productMenu>
  1081. <productMenu id="ota"
  1082. type="0" >
  1083. </productMenu>
  1084. <productMenu id="wa"
  1085. type="0" >
  1086. </productMenu>
  1087. <productMenu id="sip"
  1088. type="1" >
  1089. </productMenu>
  1090. <productMenu id="meshIntercom"
  1091. type="30" >
  1092. <productMenuType version="1.1.1"
  1093. type="20"
  1094. />
  1095. </productMenu>
  1096. <productMenu id="bluetoothIntercom"
  1097. type="1" >
  1098. </productMenu>
  1099. <productMenu id="phone"
  1100. type="1" >
  1101. </productMenu>
  1102. <productMenu id="music"
  1103. type="1" >
  1104. </productMenu>
  1105. <productMenu id="fmradio"
  1106. type="1" >
  1107. </productMenu>
  1108. <productMenu id="deviceSetting"
  1109. type="1"
  1110. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml" >
  1111. <productMenuURL version="1.1.1"
  1112. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1113. />
  1114. <productMenuURL version="1.0.3"
  1115. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1116. />
  1117. </productMenu>
  1118. <productMenu id="quickGuide"
  1119. type="1"
  1120. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL-EXT_1.2.0_en_230714.pdf"
  1121. size="344KB" >
  1122. </productMenu>
  1123. <productMenu id="userGuide"
  1124. type="1"
  1125. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL-EXT_1.3.0_en_230714.pdf"
  1126. size="3.41MB" >
  1127. </productMenu>
  1128. <productMenu id="volume"
  1129. type="11" >
  1130. </productMenu>
  1131. <productMenu id="battery"
  1132. type="1" >
  1133. </productMenu>
  1134. <productID id="3212"
  1135. />
  1136. <productGroupable type="0"
  1137. />
  1138. </product>
  1139. <product id="SRL2"
  1140. name="SRL2"
  1141. series="SRL"
  1142. latestVersion="1.0.9"
  1143. show = "1" >
  1144. <productMenu id="protocol"
  1145. type="0">
  1146. </productMenu>
  1147. <productMenu id="sip"
  1148. type="1" >
  1149. </productMenu>
  1150. <productMenu id="bluetoothIntercom"
  1151. type="1" >
  1152. </productMenu>
  1153. <productMenu id="intercomSetting"
  1154. type="1" >
  1155. </productMenu>
  1156. <productMenu id="phone"
  1157. type="2" >
  1158. </productMenu>
  1159. <productMenu id="fmradio"
  1160. type="3" >
  1161. </productMenu>
  1162. <productMenu id="deviceSetting"
  1163. type="1"
  1164. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  1165. </productMenu>
  1166. <productMenu id="quickGuide"
  1167. type="1"
  1168. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  1169. size="846KB" >
  1170. </productMenu>
  1171. <productMenu id="userGuide"
  1172. type="1"
  1173. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  1174. size="1.18MB" >
  1175. </productMenu>
  1176. <productID id="4530"
  1177. />
  1178. <productGroupable type="1"
  1179. />
  1180. </product>
  1181. <product id="Neotec2"
  1182. name="SRL Neotec2"
  1183. series="SRL"
  1184. latestVersion="1.1.5"
  1185. show = "1" >
  1186. <productMenu id="protocol"
  1187. type="0">
  1188. </productMenu>
  1189. <productMenu id="sip"
  1190. type="1" >
  1191. </productMenu>
  1192. <productMenu id="bluetoothIntercom"
  1193. type="1" >
  1194. </productMenu>
  1195. <productMenu id="intercomSetting"
  1196. type="1" >
  1197. </productMenu>
  1198. <productMenu id="phone"
  1199. type="2" >
  1200. </productMenu>
  1201. <productMenu id="fmradio"
  1202. type="3" >
  1203. </productMenu>
  1204. <productMenu id="deviceSetting"
  1205. type="1"
  1206. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  1207. </productMenu>
  1208. <productMenu id="quickGuide"
  1209. type="1"
  1210. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL_for_Shoei_Neotec2_1.1.0_en_220922.pdf"
  1211. size="796KB" >
  1212. </productMenu>
  1213. <productMenu id="userGuide"
  1214. type="1"
  1215. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.0_en_220922.pdf"
  1216. size="1.90MB" >
  1217. </productMenu>
  1218. <productID id="4510"
  1219. />
  1220. <productGroupable type="1"
  1221. />
  1222. </product>
  1223. <product id="SPIDER_ST1_TEST"
  1224. name="SPIDER ST1 TEST"
  1225. series="SPIDER"
  1226. latestVersion="0.5.1"
  1227. latestVersionVoicePrompt="0.2"
  1228. latestVersionMesh="0.8"
  1229. show = "-1" >
  1230. <productMenu id="protocol"
  1231. type="2" >
  1232. </productMenu>
  1233. <productMenu id="ota"
  1234. type="0" >
  1235. <otaPackages>
  1236. <package
  1237. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  1238. size="2945812"
  1239. />
  1240. </otaPackages>
  1241. </productMenu>
  1242. <productMenu id="wa"
  1243. type="0" >
  1244. </productMenu>
  1245. <productMenu id="led"
  1246. type="1" >
  1247. </productMenu>
  1248. <productMenu id="meshIntercom"
  1249. type="30" >
  1250. </productMenu>
  1251. <productMenu id="fmradio"
  1252. type="1" >
  1253. </productMenu>
  1254. <productMenu id="phone"
  1255. type="1" >
  1256. </productMenu>
  1257. <productMenu id="music"
  1258. type="1" >
  1259. </productMenu>
  1260. <productMenu id="musicSharing"
  1261. type="0" >
  1262. </productMenu>
  1263. <productMenu id="deviceSetting"
  1264. type="1"
  1265. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml" >
  1266. </productMenu>
  1267. <productMenu id="quickGuide"
  1268. type="1"
  1269. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  1270. size="1.12MB" >
  1271. </productMenu>
  1272. <productMenu id="userGuide"
  1273. type="1"
  1274. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  1275. size="2.0MB" >
  1276. </productMenu>
  1277. <productMenu id="videoGuide"
  1278. type="1"
  1279. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  1280. size="3.41MB" >
  1281. </productMenu>
  1282. <productMenu id="volume"
  1283. type="12" >
  1284. </productMenu>
  1285. <productMenu id="battery"
  1286. type="1" >
  1287. </productMenu>
  1288. <productID id="6A00"
  1289. />
  1290. <productGroupable type="0"
  1291. />
  1292. </product>
  1293. <product id="SPIDER_ST1"
  1294. name="SPIDER ST1"
  1295. series="SPIDER"
  1296. latestVersion="2.2.2"
  1297. latestVersionVoicePrompt="0.8"
  1298. show = "1" >
  1299. <productMenu id="protocol"
  1300. type="2" >
  1301. </productMenu>
  1302. <productMenu id="alexa"
  1303. type="0" >
  1304. </productMenu>
  1305. <productMenu id="ota"
  1306. type="2" >
  1307. <productMenuType version="2.1.9"
  1308. type="0"
  1309. />
  1310. <otaPackages>
  1311. <package
  1312. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_ST1-v2.2.2-build1.img"
  1313. size="2945812"
  1314. />
  1315. </otaPackages>
  1316. </productMenu>
  1317. <productMenu id="wa"
  1318. type="0" >
  1319. </productMenu>
  1320. <productMenu id="meshIntercom"
  1321. type="30" >
  1322. <productMenuType version="2.1.1"
  1323. type="20"
  1324. />
  1325. </productMenu>
  1326. <productMenu id="phone"
  1327. type="1" >
  1328. </productMenu>
  1329. <productMenu id="music"
  1330. type="1" >
  1331. </productMenu>
  1332. <productMenu id="musicSharing"
  1333. type="0" >
  1334. </productMenu>
  1335. <productMenu id="deviceSetting"
  1336. type="1"
  1337. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml" >
  1338. <productMenuURL version="2.1.1"
  1339. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  1340. />
  1341. </productMenu>
  1342. <productMenu id="quickGuide"
  1343. type="1"
  1344. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  1345. size="1.12MB" >
  1346. </productMenu>
  1347. <productMenu id="userGuide"
  1348. type="1"
  1349. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  1350. size="2.0MB" >
  1351. </productMenu>
  1352. <productMenu id="videoGuide"
  1353. type="1"
  1354. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  1355. size="3.41MB" >
  1356. </productMenu>
  1357. <productMenu id="volume"
  1358. type="12" >
  1359. </productMenu>
  1360. <productMenu id="battery"
  1361. type="1" >
  1362. </productMenu>
  1363. <productID id="6800"
  1364. />
  1365. <productGroupable type="0"
  1366. />
  1367. </product>
  1368. <product id="SPIDER_ST1"
  1369. name="SPIDER ST1"
  1370. series="SPIDER"
  1371. latestVersion="1.2.2"
  1372. show = "0" >
  1373. <productMenu id="protocol"
  1374. type="2" >
  1375. </productMenu>
  1376. <productMenu id="alexa"
  1377. type="0" >
  1378. </productMenu>
  1379. <productMenu id="ota"
  1380. type="0" >
  1381. </productMenu>
  1382. <productMenu id="wa"
  1383. type="0" >
  1384. </productMenu>
  1385. <productMenu id="meshIntercom"
  1386. type="20" >
  1387. </productMenu>
  1388. <productMenu id="phone"
  1389. type="1" >
  1390. </productMenu>
  1391. <productMenu id="music"
  1392. type="1" >
  1393. </productMenu>
  1394. <productMenu id="deviceSetting"
  1395. type="1"
  1396. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  1397. </productMenu>
  1398. <productMenu id="quickGuide"
  1399. type="1"
  1400. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_1.2.0_en_230717.pdf"
  1401. size="1.12MB" >
  1402. </productMenu>
  1403. <productMenu id="userGuide"
  1404. type="1"
  1405. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.2.0_en_230717.pdf"
  1406. size="2.0MB" >
  1407. </productMenu>
  1408. <productMenu id="videoGuide"
  1409. type="1"
  1410. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  1411. size="3.41MB" >
  1412. </productMenu>
  1413. <productMenu id="volume"
  1414. type="13" >
  1415. <productMenuType version="1.1.6"
  1416. type="14"/>
  1417. </productMenu>
  1418. <productMenu id="battery"
  1419. type="1" >
  1420. </productMenu>
  1421. <productID id="6510"
  1422. />
  1423. <productGroupable type="0"
  1424. />
  1425. </product>
  1426. <product id="SPIDER_RT1"
  1427. name="SPIDER RT1"
  1428. series="SPIDER"
  1429. latestVersion="2.2.2"
  1430. latestVersionVoicePrompt="0.8"
  1431. show = "1" >
  1432. <productMenu id="protocol"
  1433. type="2" >
  1434. </productMenu>
  1435. <productMenu id="alexa"
  1436. type="0" >
  1437. </productMenu>
  1438. <productMenu id="ota"
  1439. type="2" >
  1440. <productMenuType version="2.1.9"
  1441. type="0"
  1442. />
  1443. <otaPackages>
  1444. <package
  1445. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_RT1-v2.2.2-build1.img"
  1446. size="2945812"
  1447. />
  1448. </otaPackages>
  1449. </productMenu>
  1450. <productMenu id="wa"
  1451. type="0" >
  1452. </productMenu>
  1453. <productMenu id="meshIntercom"
  1454. type="30" >
  1455. <productMenuType version="2.1.1"
  1456. type="20"
  1457. />
  1458. </productMenu>
  1459. <productMenu id="phone"
  1460. type="1" >
  1461. </productMenu>
  1462. <productMenu id="music"
  1463. type="1" >
  1464. </productMenu>
  1465. <productMenu id="musicSharing"
  1466. type="0" >
  1467. </productMenu>
  1468. <productMenu id="deviceSetting"
  1469. type="1"
  1470. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml" >
  1471. <productMenuURL version="2.1.1"
  1472. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  1473. />
  1474. </productMenu>
  1475. <productMenu id="quickGuide"
  1476. type="1"
  1477. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_RT1_2.3.0_en_231205.pdf"
  1478. size="1.12MB" >
  1479. </productMenu>
  1480. <productMenu id="userGuide"
  1481. type="1"
  1482. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_2.4.0_en_231204.pdf"
  1483. size="2.0MB" >
  1484. </productMenu>
  1485. <productMenu id="videoGuide"
  1486. type="1"
  1487. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  1488. size="3.41MB" >
  1489. </productMenu>
  1490. <productMenu id="volume"
  1491. type="12" >
  1492. </productMenu>
  1493. <productMenu id="battery"
  1494. type="1" >
  1495. </productMenu>
  1496. <productID id="6810"
  1497. />
  1498. <productGroupable type="0"
  1499. />
  1500. </product>
  1501. <product id="SPIDER_RT1"
  1502. name="SPIDER RT1"
  1503. series="SPIDER"
  1504. latestVersion="1.2.2"
  1505. show = "0" >
  1506. <productMenu id="protocol"
  1507. type="2" >
  1508. </productMenu>
  1509. <productMenu id="alexa"
  1510. type="0" >
  1511. </productMenu>
  1512. <productMenu id="ota"
  1513. type="0" >
  1514. </productMenu>
  1515. <productMenu id="wa"
  1516. type="0" >
  1517. </productMenu>
  1518. <productMenu id="meshIntercom"
  1519. type="20" >
  1520. </productMenu>
  1521. <productMenu id="phone"
  1522. type="1" >
  1523. </productMenu>
  1524. <productMenu id="music"
  1525. type="1" >
  1526. </productMenu>
  1527. <productMenu id="deviceSetting"
  1528. type="1"
  1529. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  1530. </productMenu>
  1531. <productMenu id="quickGuide"
  1532. type="1"
  1533. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_RT1_1.2.0_en_230717.pdf"
  1534. size="1.32MB" >
  1535. </productMenu>
  1536. <productMenu id="userGuide"
  1537. type="1"
  1538. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.2.0_en_230717.pdf"
  1539. size="1.79MB" >
  1540. </productMenu>
  1541. <productMenu id="videoGuide"
  1542. type="1"
  1543. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  1544. size="3.41MB" >
  1545. </productMenu>
  1546. <productMenu id="volume"
  1547. type="13" >
  1548. <productMenuType version="1.1.6"
  1549. type="14"/>
  1550. </productMenu>
  1551. <productMenu id="battery"
  1552. type="1" >
  1553. </productMenu>
  1554. <productID id="6500"
  1555. />
  1556. <productGroupable type="0"
  1557. />
  1558. </product>
  1559. <product id="30K"
  1560. name="30K"
  1561. series="30"
  1562. latestVersion="4.2"
  1563. show = "1" >
  1564. <productMenu id="protocol"
  1565. type="2" >
  1566. </productMenu>
  1567. <productMenu id="alexa"
  1568. type="0" >
  1569. </productMenu>
  1570. <productMenu id="wa"
  1571. type="1" >
  1572. </productMenu>
  1573. <productMenu id="sip"
  1574. type="1" >
  1575. </productMenu>
  1576. <productMenu id="meshIntercom"
  1577. type="30" >
  1578. <productMenuType version="4.0.4"
  1579. type="20"
  1580. />
  1581. </productMenu>
  1582. <productMenu id="bluetoothIntercom"
  1583. type="1" >
  1584. </productMenu>
  1585. <productMenu id="phone"
  1586. type="1" >
  1587. </productMenu>
  1588. <productMenu id="music"
  1589. type="1" >
  1590. </productMenu>
  1591. <productMenu id="fmradio"
  1592. type="1" >
  1593. </productMenu>
  1594. <productMenu id="deviceSetting"
  1595. type="1"
  1596. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml" >
  1597. <productMenuURL version="4.0.4"
  1598. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  1599. />
  1600. </productMenu>
  1601. <productMenu id="quickGuide"
  1602. type="1"
  1603. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_30K_3.2.0_en_230714.pdf"
  1604. size="934KB" >
  1605. </productMenu>
  1606. <productMenu id="userGuide"
  1607. type="1"
  1608. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_4.3.0_en_230714.pdf"
  1609. size="1.14MB" >
  1610. </productMenu>
  1611. <productMenu id="volume"
  1612. type="11" >
  1613. </productMenu>
  1614. <productMenu id="battery"
  1615. type="1" >
  1616. </productMenu>
  1617. <productID id="3211"
  1618. />
  1619. <productGroupable type="0"
  1620. />
  1621. </product>
  1622. <product id="30K"
  1623. name="30K"
  1624. series="30"
  1625. latestVersion="3.4"
  1626. show = "0" >
  1627. <productMenu id="protocol"
  1628. type="1"
  1629. url="0">
  1630. </productMenu>
  1631. <productMenu id="wa"
  1632. type="7" >
  1633. </productMenu>
  1634. <productMenu id="sip"
  1635. type="1" >
  1636. </productMenu>
  1637. <productMenu id="meshIntercom"
  1638. type="20" >
  1639. <productMenuType version="2.9.9"
  1640. type="10"
  1641. />
  1642. </productMenu>
  1643. <productMenu id="bluetoothIntercom"
  1644. type="1" >
  1645. </productMenu>
  1646. <productMenu id="phone"
  1647. type="1" >
  1648. </productMenu>
  1649. <productMenu id="music"
  1650. type="1" >
  1651. </productMenu>
  1652. <productMenu id="fmradio"
  1653. type="1" >
  1654. </productMenu>
  1655. <productMenu id="deviceSetting"
  1656. type="1"
  1657. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml">
  1658. <productMenuURL version="3.3.1"
  1659. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  1660. />
  1661. <productMenuURL version="3.0.1"
  1662. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  1663. />
  1664. <productMenuURL version="2.3.1"
  1665. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  1666. />
  1667. <productMenuURL version="2.0"
  1668. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  1669. />
  1670. <productMenuURL version="1.0.3"
  1671. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  1672. />
  1673. </productMenu>
  1674. <productMenu id="quickGuide"
  1675. type="1"
  1676. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_30K_2.4.0_en_230714.pdf"
  1677. size="1.06MB" >
  1678. </productMenu>
  1679. <productMenu id="userGuide"
  1680. type="1"
  1681. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.0_en_230714.pdf"
  1682. size="3.15MB" >
  1683. </productMenu>
  1684. <productMenu id="volume"
  1685. type="1" >
  1686. </productMenu>
  1687. <productID id="3110"
  1688. />
  1689. <productGroupable type="0"
  1690. />
  1691. </product>
  1692. <product id="FURY"
  1693. name="FURY"
  1694. series="Helmet"
  1695. latestVersion="1.0"
  1696. show = "0" >
  1697. <productMenu id="protocol"
  1698. type="2" >
  1699. </productMenu>
  1700. <productMenu id="alexa"
  1701. type="0" >
  1702. </productMenu>
  1703. <productMenu id="ota"
  1704. type="0" >
  1705. </productMenu>
  1706. <productMenu id="wa"
  1707. type="0" >
  1708. </productMenu>
  1709. <productMenu id="meshIntercom"
  1710. type="20" >
  1711. </productMenu>
  1712. <productMenu id="phone"
  1713. type="1" >
  1714. </productMenu>
  1715. <productMenu id="music"
  1716. type="1" >
  1717. </productMenu>
  1718. <productMenu id="fmradio"
  1719. type="1" >
  1720. </productMenu>
  1721. <productMenu id="deviceSetting"
  1722. type="1"
  1723. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  1724. </productMenu>
  1725. <productMenu id="quickGuide"
  1726. type="1"
  1727. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  1728. size="1.12MB" >
  1729. </productMenu>
  1730. <productMenu id="userGuide"
  1731. type="1"
  1732. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  1733. size="2.0MB" >
  1734. </productMenu>
  1735. <productMenu id="volume"
  1736. type="13" >
  1737. </productMenu>
  1738. <productMenu id="battery"
  1739. type="1" >
  1740. </productMenu>
  1741. <productID id="5552"
  1742. />
  1743. <productGroupable type="0"
  1744. />
  1745. </product>
  1746. <product id="MomentumM"
  1747. name="Momentum EVO"
  1748. series="Helmet"
  1749. latestVersion="2.1.2"
  1750. show = "1" >
  1751. <productMenu id="protocol"
  1752. type="1"
  1753. url="0">
  1754. </productMenu>
  1755. <productMenu id="wa"
  1756. type="3" >
  1757. </productMenu>
  1758. <productMenu id="sip"
  1759. type="1" >
  1760. </productMenu>
  1761. <productMenu id="meshIntercom"
  1762. type="20" >
  1763. <productMenuType version="1.9.9"
  1764. type="10"
  1765. />
  1766. </productMenu>
  1767. <productMenu id="bluetoothIntercom"
  1768. type="1" >
  1769. </productMenu>
  1770. <productMenu id="phone"
  1771. type="1" >
  1772. </productMenu>
  1773. <productMenu id="music"
  1774. type="1" >
  1775. </productMenu>
  1776. <productMenu id="fmradio"
  1777. type="1" >
  1778. </productMenu>
  1779. <productMenu id="deviceSetting"
  1780. type="1"
  1781. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  1782. <productMenuURL version="1.0.1"
  1783. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  1784. />
  1785. </productMenu>
  1786. <productMenu id="quickGuide"
  1787. type="1"
  1788. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  1789. size="1.06MB" >
  1790. </productMenu>
  1791. <productMenu id="userGuide"
  1792. type="1"
  1793. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  1794. size="3.15MB" >
  1795. </productMenu>
  1796. <productMenu id="volume"
  1797. type="2" >
  1798. </productMenu>
  1799. <productID id="3116"
  1800. />
  1801. <productGroupable type="0"
  1802. />
  1803. </product>
  1804. <product id="Momentum"
  1805. name="Momentum"
  1806. series="Helmet"
  1807. latestVersion="1.0.9"
  1808. show = "1" >
  1809. <productMenu id="protocol"
  1810. type="0">
  1811. </productMenu>
  1812. <productMenu id="sip"
  1813. type="1" >
  1814. </productMenu>
  1815. <productMenu id="bluetoothIntercom"
  1816. type="1" >
  1817. </productMenu>
  1818. <productMenu id="intercomSetting"
  1819. type="1" >
  1820. </productMenu>
  1821. <productMenu id="phone"
  1822. type="2" >
  1823. </productMenu>
  1824. <productMenu id="fmradio"
  1825. type="3" >
  1826. </productMenu>
  1827. <productMenu id="deviceSetting"
  1828. type="1"
  1829. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  1830. </productMenu>
  1831. <productMenu id="quickGuide"
  1832. type="1"
  1833. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  1834. size="796KB" >
  1835. </productMenu>
  1836. <productMenu id="userGuide"
  1837. type="1"
  1838. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  1839. size="1.90MB" >
  1840. </productMenu>
  1841. <productID id="4310"
  1842. />
  1843. <productGroupable type="1"
  1844. />
  1845. </product>
  1846. <product id="Momentum_Pro"
  1847. name="Momentum Pro"
  1848. series="Helmet"
  1849. latestVersion="1.0.6"
  1850. show = "1" >
  1851. <productMenu id="protocol"
  1852. type="0">
  1853. </productMenu>
  1854. <productMenu id="sip"
  1855. type="1" >
  1856. </productMenu>
  1857. <productMenu id="bluetoothIntercom"
  1858. type="1" >
  1859. </productMenu>
  1860. <productMenu id="intercomSetting"
  1861. type="1" >
  1862. </productMenu>
  1863. <productMenu id="phone"
  1864. type="2" >
  1865. </productMenu>
  1866. <productMenu id="fmradio"
  1867. type="3" >
  1868. </productMenu>
  1869. <productMenu id="deviceSetting"
  1870. type="1"
  1871. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  1872. </productMenu>
  1873. <productMenu id="quickGuide"
  1874. type="1"
  1875. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  1876. size="796KB" >
  1877. </productMenu>
  1878. <productMenu id="userGuide"
  1879. type="1"
  1880. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  1881. size="1.90MB" >
  1882. </productMenu>
  1883. <productID id="4330"
  1884. />
  1885. <productGroupable type="1"
  1886. />
  1887. </product>
  1888. <product id="Momentum_INC"
  1889. name="Momentum INC"
  1890. series="Helmet"
  1891. latestVersion="1.0.7"
  1892. show = "1" >
  1893. <productMenu id="protocol"
  1894. type="0">
  1895. </productMenu>
  1896. <productMenu id="sip"
  1897. type="1" >
  1898. </productMenu>
  1899. <productMenu id="bluetoothIntercom"
  1900. type="1" >
  1901. </productMenu>
  1902. <productMenu id="intercomSetting"
  1903. type="1" >
  1904. </productMenu>
  1905. <productMenu id="phone"
  1906. type="2" >
  1907. </productMenu>
  1908. <productMenu id="fmradio"
  1909. type="3" >
  1910. </productMenu>
  1911. <productMenu id="deviceSetting"
  1912. type="1"
  1913. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  1914. </productMenu>
  1915. <productMenu id="quickGuide"
  1916. type="1"
  1917. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  1918. size="794KB" >
  1919. </productMenu>
  1920. <productMenu id="userGuide"
  1921. type="1"
  1922. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  1923. size="1.53MB" >
  1924. </productMenu>
  1925. <productID id="4410"
  1926. />
  1927. <productGroupable type="1"
  1928. />
  1929. </product>
  1930. <product id="Momentum_INCP"
  1931. name="Momentum INC Pro"
  1932. series="Helmet"
  1933. latestVersion="1.0.4"
  1934. show = "1" >
  1935. <productMenu id="protocol"
  1936. type="0">
  1937. </productMenu>
  1938. <productMenu id="sip"
  1939. type="1" >
  1940. </productMenu>
  1941. <productMenu id="bluetoothIntercom"
  1942. type="1" >
  1943. </productMenu>
  1944. <productMenu id="intercomSetting"
  1945. type="1" >
  1946. </productMenu>
  1947. <productMenu id="phone"
  1948. type="2" >
  1949. </productMenu>
  1950. <productMenu id="fmradio"
  1951. type="3" >
  1952. </productMenu>
  1953. <productMenu id="deviceSetting"
  1954. type="1"
  1955. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  1956. </productMenu>
  1957. <productMenu id="quickGuide"
  1958. type="1"
  1959. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  1960. size="794KB" >
  1961. </productMenu>
  1962. <productMenu id="userGuide"
  1963. type="1"
  1964. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  1965. size="1.53MB" >
  1966. </productMenu>
  1967. <productID id="4430"
  1968. />
  1969. <productGroupable type="1"
  1970. />
  1971. </product>
  1972. <product id="Momentum_Lite"
  1973. name="Momentum Lite"
  1974. series="Helmet"
  1975. latestVersion="2.0.3"
  1976. show = "1" >
  1977. <productMenu id="protocol"
  1978. type="0">
  1979. </productMenu>
  1980. <productMenu id="sip"
  1981. type="1" >
  1982. </productMenu>
  1983. <productMenu id="bluetoothIntercom"
  1984. type="1" >
  1985. </productMenu>
  1986. <productMenu id="phone"
  1987. type="2" >
  1988. </productMenu>
  1989. <productMenu id="fmradio"
  1990. type="3" >
  1991. </productMenu>
  1992. <productMenu id="deviceSetting"
  1993. type="1"
  1994. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  1995. <productMenuURL version="1.1"
  1996. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  1997. />
  1998. </productMenu>
  1999. <productMenu id="quickGuide"
  2000. type="1"
  2001. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  2002. size="790KB" >
  2003. </productMenu>
  2004. <productMenu id="userGuide"
  2005. type="1"
  2006. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  2007. size="1.42MB" >
  2008. </productMenu>
  2009. <productID id="5526"
  2010. />
  2011. <productGroupable type="0"
  2012. />
  2013. </product>
  2014. <product id="OUTRUSHM"
  2015. name="OUTRUSH M"
  2016. series="Helmet"
  2017. latestVersion="1.0"
  2018. show = "0" >
  2019. <productMenu id="protocol"
  2020. type="2" >
  2021. </productMenu>
  2022. <productMenu id="alexa"
  2023. type="0" >
  2024. </productMenu>
  2025. <productMenu id="ota"
  2026. type="0" >
  2027. </productMenu>
  2028. <productMenu id="wa"
  2029. type="0" >
  2030. </productMenu>
  2031. <productMenu id="meshIntercom"
  2032. type="30" >
  2033. </productMenu>
  2034. <productMenu id="phone"
  2035. type="1" >
  2036. </productMenu>
  2037. <productMenu id="music"
  2038. type="1" >
  2039. </productMenu>
  2040. <productMenu id="fmradio"
  2041. type="1" >
  2042. </productMenu>
  2043. <productMenu id="deviceSetting"
  2044. type="1"
  2045. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  2046. </productMenu>
  2047. <productMenu id="quickGuide"
  2048. type="1"
  2049. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  2050. size="1.12MB" >
  2051. </productMenu>
  2052. <productMenu id="userGuide"
  2053. type="1"
  2054. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  2055. size="2.0MB" >
  2056. </productMenu>
  2057. <productMenu id="volume"
  2058. type="13" >
  2059. </productMenu>
  2060. <productMenu id="battery"
  2061. type="1" >
  2062. </productMenu>
  2063. <productID id="5600"
  2064. />
  2065. <productGroupable type="0"
  2066. />
  2067. </product>
  2068. <product id="ProRideEVO"
  2069. name="ProRide EVO"
  2070. series="Helmet"
  2071. latestVersion="1.1.2"
  2072. show = "1" >
  2073. <productMenu id="protocol"
  2074. type="0">
  2075. </productMenu>
  2076. <productMenu id="sip"
  2077. type="1" >
  2078. </productMenu>
  2079. <productMenu id="bluetoothIntercom"
  2080. type="1" >
  2081. </productMenu>
  2082. <productMenu id="phone"
  2083. type="2" >
  2084. </productMenu>
  2085. <productMenu id="fmradio"
  2086. type="3" >
  2087. </productMenu>
  2088. <productMenu id="deviceSetting"
  2089. type="1"
  2090. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  2091. </productMenu>
  2092. <productMenu id="userGuide"
  2093. type="1"
  2094. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  2095. size="778KB" >
  2096. </productMenu>
  2097. <productID id="5426"
  2098. />
  2099. <productGroupable type="0"
  2100. />
  2101. </product>
  2102. <product id="OUTRUSHR"
  2103. name="OUTRUSH R"
  2104. series="Helmet"
  2105. latestVersion="1.1.3"
  2106. show = "1" >
  2107. <productMenu id="protocol"
  2108. type="0">
  2109. </productMenu>
  2110. <productMenu id="sip"
  2111. type="1" >
  2112. </productMenu>
  2113. <productMenu id="bluetoothIntercom"
  2114. type="1" >
  2115. </productMenu>
  2116. <productMenu id="phone"
  2117. type="2" >
  2118. </productMenu>
  2119. <productMenu id="fmradio"
  2120. type="3" >
  2121. </productMenu>
  2122. <productMenu id="deviceSetting"
  2123. type="1"
  2124. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  2125. </productMenu>
  2126. <productMenu id="userGuide"
  2127. type="1"
  2128. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH_R_1.2.0_en_230705.pdf"
  2129. size="660KB" >
  2130. </productMenu>
  2131. <productID id="5424"
  2132. />
  2133. <productGroupable type="0"
  2134. />
  2135. </product>
  2136. <product id="OUTSTARS"
  2137. name="OUTSTAR S"
  2138. series="Helmet"
  2139. latestVersion="1.1.2"
  2140. show = "1" >
  2141. <productMenu id="protocol"
  2142. type="0">
  2143. </productMenu>
  2144. <productMenu id="sip"
  2145. type="1" >
  2146. </productMenu>
  2147. <productMenu id="bluetoothIntercom"
  2148. type="1" >
  2149. </productMenu>
  2150. <productMenu id="phone"
  2151. type="2" >
  2152. </productMenu>
  2153. <productMenu id="fmradio"
  2154. type="3" >
  2155. </productMenu>
  2156. <productMenu id="deviceSetting"
  2157. type="1"
  2158. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  2159. </productMenu>
  2160. <productMenu id="quickGuide"
  2161. type="1"
  2162. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  2163. size="643KB" >
  2164. </productMenu>
  2165. <productMenu id="userGuide"
  2166. type="1"
  2167. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  2168. size="1.15MB" >
  2169. </productMenu>
  2170. <productID id="5428"
  2171. />
  2172. <productGroupable type="0"
  2173. />
  2174. </product>
  2175. <product id="OUTRIDE"
  2176. name="OUTRIDE"
  2177. series="Helmet"
  2178. latestVersion="1.0.1"
  2179. show = "1" >
  2180. <productMenu id="protocol"
  2181. type="0">
  2182. </productMenu>
  2183. <productMenu id="sip"
  2184. type="1" >
  2185. </productMenu>
  2186. <productMenu id="bluetoothIntercom"
  2187. type="1" >
  2188. </productMenu>
  2189. <productMenu id="phone"
  2190. type="2" >
  2191. </productMenu>
  2192. <productMenu id="fmradio"
  2193. type="3" >
  2194. </productMenu>
  2195. <productMenu id="deviceSetting"
  2196. type="1"
  2197. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  2198. </productMenu>
  2199. <productMenu id="quickGuide"
  2200. type="1"
  2201. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.0_en_230705.pdf"
  2202. size="643KB" >
  2203. </productMenu>
  2204. <productMenu id="userGuide"
  2205. type="1"
  2206. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.0_en_230705.pdf"
  2207. size="660KB" >
  2208. </productMenu>
  2209. <productID id="5432"
  2210. />
  2211. <productGroupable type="0"
  2212. />
  2213. </product>
  2214. <product id="OUTFORCE"
  2215. name="OUTFORCE"
  2216. series="Helmet"
  2217. latestVersion="1.0.1"
  2218. show = "1" >
  2219. <productMenu id="protocol"
  2220. type="0">
  2221. </productMenu>
  2222. <productMenu id="sip"
  2223. type="1" >
  2224. </productMenu>
  2225. <productMenu id="bluetoothIntercom"
  2226. type="1" >
  2227. </productMenu>
  2228. <productMenu id="phone"
  2229. type="2" >
  2230. </productMenu>
  2231. <productMenu id="fmradio"
  2232. type="3" >
  2233. </productMenu>
  2234. <productMenu id="deviceSetting"
  2235. type="1"
  2236. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  2237. </productMenu>
  2238. <productMenu id="quickGuide"
  2239. type="1"
  2240. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.0_en_230706.pdf"
  2241. size="643KB" >
  2242. </productMenu>
  2243. <productMenu id="userGuide"
  2244. type="1"
  2245. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.0_en_230706.pdf"
  2246. size="660KB" >
  2247. </productMenu>
  2248. <productID id="5430"
  2249. />
  2250. <productGroupable type="0"
  2251. />
  2252. </product>
  2253. <product id="Rumba"
  2254. name="Rumba"
  2255. series="30"
  2256. latestVersion="2.0"
  2257. show = "0" >
  2258. <productMenu id="protocol"
  2259. type="3" >
  2260. </productMenu>
  2261. <productMenu id="sip"
  2262. type="1" >
  2263. </productMenu>
  2264. <productMenu id="bluetoothIntercom"
  2265. type="1" >
  2266. </productMenu>
  2267. <productMenu id="deviceSetting"
  2268. type="1"
  2269. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  2270. </productMenu>
  2271. <productMenu id="quickGuide"
  2272. type="1"
  2273. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  2274. size="344KB" >
  2275. </productMenu>
  2276. <productMenu id="userGuide"
  2277. type="1"
  2278. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  2279. size="1.14MB" >
  2280. </productMenu>
  2281. <productID id="6322"
  2282. />
  2283. <productGroupable type="0"
  2284. />
  2285. </product>
  2286. <product id="Savage"
  2287. name="Savage"
  2288. series="Helmet"
  2289. latestVersion="1.2.2"
  2290. show = "1" >
  2291. <productMenu id="protocol"
  2292. type="0">
  2293. </productMenu>
  2294. <productMenu id="sip"
  2295. type="1" >
  2296. </productMenu>
  2297. <productMenu id="bluetoothIntercom"
  2298. type="1" >
  2299. </productMenu>
  2300. <productMenu id="phone"
  2301. type="2" >
  2302. </productMenu>
  2303. <productMenu id="fmradio"
  2304. type="3" >
  2305. </productMenu>
  2306. <productMenu id="deviceSetting"
  2307. type="1"
  2308. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  2309. <productMenuURL version="1.9"
  2310. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  2311. />
  2312. <productMenuURL version="1.1"
  2313. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  2314. />
  2315. </productMenu>
  2316. <productMenu id="quickGuide"
  2317. type="1"
  2318. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  2319. size="796KB" >
  2320. </productMenu>
  2321. <productMenu id="userGuide"
  2322. type="1"
  2323. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  2324. size="910KB" >
  2325. </productMenu>
  2326. <productID id="5550"
  2327. />
  2328. <productGroupable type="0"
  2329. />
  2330. </product>
  2331. <product id="CavalryM"
  2332. name="Cavalry M"
  2333. series="Helmet"
  2334. latestVersion="1.0"
  2335. latestVersionVoicePrompt="0.8"
  2336. show = "-1" >
  2337. <productMenu id="protocol"
  2338. type="2" >
  2339. </productMenu>
  2340. <productMenu id="alexa"
  2341. type="0" >
  2342. </productMenu>
  2343. <productMenu id="ota"
  2344. type="0" >
  2345. <otaPackages>
  2346. <package
  2347. url=""
  2348. size="2945812"
  2349. />
  2350. </otaPackages>
  2351. </productMenu>
  2352. <productMenu id="wa"
  2353. type="0" >
  2354. </productMenu>
  2355. <productMenu id="meshIntercom"
  2356. type="30" >
  2357. </productMenu>
  2358. <productMenu id="phone"
  2359. type="1" >
  2360. </productMenu>
  2361. <productMenu id="music"
  2362. type="1" >
  2363. </productMenu>
  2364. <productMenu id="musicSharing"
  2365. type="0" >
  2366. </productMenu>
  2367. <productMenu id="deviceSetting"
  2368. type="1"
  2369. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml" >
  2370. </productMenu>
  2371. <productMenu id="quickGuide"
  2372. type="1"
  2373. url=""
  2374. size="1.12MB" >
  2375. </productMenu>
  2376. <productMenu id="userGuide"
  2377. type="1"
  2378. url=""
  2379. size="2.0MB" >
  2380. </productMenu>
  2381. <productMenu id="volume"
  2382. type="12" >
  2383. </productMenu>
  2384. <productMenu id="battery"
  2385. type="1" >
  2386. </productMenu>
  2387. <productID id="6839"
  2388. />
  2389. <productGroupable type="0"
  2390. />
  2391. </product>
  2392. <product id="Cavalry"
  2393. name="Cavalry"
  2394. series="Helmet"
  2395. latestVersion="1.2.2"
  2396. show = "1" >
  2397. <productMenu id="protocol"
  2398. type="0">
  2399. </productMenu>
  2400. <productMenu id="sip"
  2401. type="1" >
  2402. </productMenu>
  2403. <productMenu id="bluetoothIntercom"
  2404. type="1" >
  2405. </productMenu>
  2406. <productMenu id="phone"
  2407. type="2" >
  2408. </productMenu>
  2409. <productMenu id="fmradio"
  2410. type="3" >
  2411. </productMenu>
  2412. <productMenu id="deviceSetting"
  2413. type="1"
  2414. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  2415. <productMenuURL version="1.9"
  2416. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  2417. />
  2418. <productMenuURL version="1.0.1"
  2419. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  2420. />
  2421. </productMenu>
  2422. <productMenu id="quickGuide"
  2423. type="1"
  2424. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  2425. size="795KB" >
  2426. </productMenu>
  2427. <productMenu id="userGuide"
  2428. type="1"
  2429. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  2430. size="1.87MB" >
  2431. </productMenu>
  2432. <productID id="5524"
  2433. />
  2434. <productGroupable type="0"
  2435. />
  2436. </product>
  2437. <product id="Cavalry_Lite"
  2438. name="Cavalry Lite"
  2439. series="Helmet"
  2440. latestVersion="1.0.2"
  2441. show = "1" >
  2442. <productMenu id="protocol"
  2443. type="0">
  2444. </productMenu>
  2445. <productMenu id="sip"
  2446. type="1" >
  2447. </productMenu>
  2448. <productMenu id="bluetoothIntercom"
  2449. type="1" >
  2450. </productMenu>
  2451. <productMenu id="phone"
  2452. type="2" >
  2453. </productMenu>
  2454. <productMenu id="fmradio"
  2455. type="3" >
  2456. </productMenu>
  2457. <productMenu id="deviceSetting"
  2458. type="1"
  2459. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  2460. </productMenu>
  2461. <productMenu id="userGuide"
  2462. type="1"
  2463. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  2464. size="1.74MB" >
  2465. </productMenu>
  2466. <productID id="5536"
  2467. />
  2468. <productGroupable type="0"
  2469. />
  2470. </product>
  2471. <product id="SF4"
  2472. name="SF4"
  2473. series="SF"
  2474. latestVersion="1.1.5"
  2475. show = "1" >
  2476. <productMenu id="protocol"
  2477. type="1"
  2478. url="3">
  2479. </productMenu>
  2480. <productMenu id="sip"
  2481. type="1" >
  2482. </productMenu>
  2483. <productMenu id="bluetoothIntercom"
  2484. type="1" >
  2485. </productMenu>
  2486. <productMenu id="phone"
  2487. type="1" >
  2488. </productMenu>
  2489. <productMenu id="music"
  2490. type="1" >
  2491. </productMenu>
  2492. <productMenu id="fmradio"
  2493. type="1" >
  2494. </productMenu>
  2495. <productMenu id="deviceSetting"
  2496. type="1"
  2497. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  2498. <productMenuURL version="1.0.1"
  2499. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  2500. />
  2501. </productMenu>
  2502. <productMenu id="quickGuide"
  2503. type="1"
  2504. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  2505. size="607KB" >
  2506. </productMenu>
  2507. <productMenu id="userGuide"
  2508. type="1"
  2509. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.3.0_en_230704.pdf"
  2510. size="1.91MB" >
  2511. </productMenu>
  2512. <productMenu id="volume"
  2513. type="4" >
  2514. </productMenu>
  2515. <productID id="5414"
  2516. />
  2517. <productGroupable type="0"
  2518. />
  2519. </product>
  2520. <product id="SF4"
  2521. name="SF4"
  2522. series="SF"
  2523. latestVersion="3.2"
  2524. show = "0" >
  2525. <productMenu id="protocol"
  2526. type="2" >
  2527. </productMenu>
  2528. <productMenu id="sip"
  2529. type="1" >
  2530. </productMenu>
  2531. <productMenu id="bluetoothIntercom"
  2532. type="1" >
  2533. </productMenu>
  2534. <productMenu id="phone"
  2535. type="1" >
  2536. </productMenu>
  2537. <productMenu id="music"
  2538. type="1" >
  2539. </productMenu>
  2540. <productMenu id="fmradio"
  2541. type="1" >
  2542. </productMenu>
  2543. <productMenu id="deviceSetting"
  2544. type="1"
  2545. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4.xml" >
  2546. <productMenuURL version="3.0"
  2547. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  2548. />
  2549. </productMenu>
  2550. <productMenu id="quickGuide"
  2551. type="1"
  2552. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_2.1.0_en_230704.pdf"
  2553. size="934KB" >
  2554. </productMenu>
  2555. <productMenu id="userGuide"
  2556. type="1"
  2557. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.2.0_en_230704.pdf"
  2558. size="1.14MB" >
  2559. </productMenu>
  2560. <productMenu id="volume"
  2561. type="15" >
  2562. </productMenu>
  2563. <productID id="3370"
  2564. />
  2565. <productGroupable type="0"
  2566. />
  2567. </product>
  2568. <product id="SF2"
  2569. name="SF2"
  2570. series="SF"
  2571. latestVersion="1.2.1"
  2572. show = "1" >
  2573. <productMenu id="protocol"
  2574. type="1"
  2575. url="2">
  2576. </productMenu>
  2577. <productMenu id="sip"
  2578. type="1" >
  2579. </productMenu>
  2580. <productMenu id="bluetoothIntercom"
  2581. type="1" >
  2582. </productMenu>
  2583. <productMenu id="phone"
  2584. type="1" >
  2585. </productMenu>
  2586. <productMenu id="music"
  2587. type="1" >
  2588. </productMenu>
  2589. <productMenu id="fmradio"
  2590. type="1" >
  2591. </productMenu>
  2592. <productMenu id="deviceSetting"
  2593. type="1"
  2594. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  2595. <productMenuURL version="1.0.1"
  2596. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  2597. />
  2598. </productMenu>
  2599. <productMenu id="quickGuide"
  2600. type="1"
  2601. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  2602. size="607KB" >
  2603. </productMenu>
  2604. <productMenu id="userGuide"
  2605. type="1"
  2606. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.3.0_en_230704.pdf"
  2607. size="1.91MB" >
  2608. </productMenu>
  2609. <productMenu id="volume"
  2610. type="4" >
  2611. </productMenu>
  2612. <productID id="5412"
  2613. />
  2614. <productGroupable type="0"
  2615. />
  2616. </product>
  2617. <product id="SF2"
  2618. name="SF2"
  2619. series="SF"
  2620. latestVersion="3.2"
  2621. show = "0" >
  2622. <productMenu id="protocol"
  2623. type="2" >
  2624. </productMenu>
  2625. <productMenu id="sip"
  2626. type="1" >
  2627. </productMenu>
  2628. <productMenu id="bluetoothIntercom"
  2629. type="1" >
  2630. </productMenu>
  2631. <productMenu id="phone"
  2632. type="1" >
  2633. </productMenu>
  2634. <productMenu id="music"
  2635. type="1" >
  2636. </productMenu>
  2637. <productMenu id="fmradio"
  2638. type="0" >
  2639. </productMenu>
  2640. <productMenu id="deviceSetting"
  2641. type="1"
  2642. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2.xml" >
  2643. <productMenuURL version="3.0"
  2644. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  2645. />
  2646. </productMenu>
  2647. <productMenu id="quickGuide"
  2648. type="1"
  2649. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_2.1.0_en_230704.pdf"
  2650. size="934KB" >
  2651. </productMenu>
  2652. <productMenu id="userGuide"
  2653. type="1"
  2654. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.2.0_en_230704.pdf"
  2655. size="1.14MB" >
  2656. </productMenu>
  2657. <productMenu id="volume"
  2658. type="15" >
  2659. </productMenu>
  2660. <productID id="3360"
  2661. />
  2662. <productGroupable type="0"
  2663. />
  2664. </product>
  2665. <product id="SF1"
  2666. name="SF1"
  2667. series="SF"
  2668. latestVersion="2.0.5"
  2669. show = "1" >
  2670. <productMenu id="protocol"
  2671. type="1"
  2672. url="1">
  2673. </productMenu>
  2674. <productMenu id="sip"
  2675. type="1" >
  2676. </productMenu>
  2677. <productMenu id="bluetoothIntercom"
  2678. type="1" >
  2679. <productMenuType version="1.1"
  2680. type="0"
  2681. />
  2682. </productMenu>
  2683. <productMenu id="phone"
  2684. type="1" >
  2685. </productMenu>
  2686. <productMenu id="music"
  2687. type="1" >
  2688. </productMenu>
  2689. <productMenu id="deviceSetting"
  2690. type="1"
  2691. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  2692. <productMenuURL version="1.1"
  2693. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  2694. />
  2695. <productMenuURL version="1.0"
  2696. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  2697. />
  2698. </productMenu>
  2699. <productMenu id="quickGuide"
  2700. type="1"
  2701. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  2702. size="401KB" >
  2703. </productMenu>
  2704. <productMenu id="userGuide"
  2705. type="1"
  2706. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.3.0_en_230704.pdf"
  2707. size="1.91MB" >
  2708. </productMenu>
  2709. <productMenu id="volume"
  2710. type="3" >
  2711. </productMenu>
  2712. <productID id="5410"
  2713. />
  2714. <productGroupable type="0"
  2715. />
  2716. </product>
  2717. <product id="SF1"
  2718. name="SF1"
  2719. series="SF"
  2720. latestVersion="3.2"
  2721. show = "0" >
  2722. <productMenu id="protocol"
  2723. type="2" >
  2724. </productMenu>
  2725. <productMenu id="sip"
  2726. type="1" >
  2727. </productMenu>
  2728. <productMenu id="bluetoothIntercom"
  2729. type="1" >
  2730. </productMenu>
  2731. <productMenu id="phone"
  2732. type="1" >
  2733. </productMenu>
  2734. <productMenu id="music"
  2735. type="1" >
  2736. </productMenu>
  2737. <productMenu id="fmradio"
  2738. type="0" >
  2739. </productMenu>
  2740. <productMenu id="deviceSetting"
  2741. type="1"
  2742. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2.xml" >
  2743. <productMenuURL version="3.0"
  2744. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  2745. />
  2746. </productMenu>
  2747. <productMenu id="quickGuide"
  2748. type="1"
  2749. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_3.1.0_en_230704.pdf"
  2750. size="934KB" >
  2751. </productMenu>
  2752. <productMenu id="userGuide"
  2753. type="1"
  2754. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.2.0_en_230704.pdf"
  2755. size="1.14MB" >
  2756. </productMenu>
  2757. <productMenu id="volume"
  2758. type="15" >
  2759. </productMenu>
  2760. <productID id="3350"
  2761. />
  2762. <productGroupable type="0"
  2763. />
  2764. </product>
  2765. <product id="SFR"
  2766. name="SFR"
  2767. series="SF"
  2768. latestVersion="1.1.1"
  2769. show = "1" >
  2770. <productMenu id="protocol"
  2771. type="1"
  2772. url="3">
  2773. </productMenu>
  2774. <productMenu id="sip"
  2775. type="1" >
  2776. </productMenu>
  2777. <productMenu id="bluetoothIntercom"
  2778. type="1" >
  2779. </productMenu>
  2780. <productMenu id="phone"
  2781. type="1" >
  2782. </productMenu>
  2783. <productMenu id="music"
  2784. type="1" >
  2785. </productMenu>
  2786. <productMenu id="fmradio"
  2787. type="1" >
  2788. </productMenu>
  2789. <productMenu id="deviceSetting"
  2790. type="1"
  2791. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  2792. </productMenu>
  2793. <productMenu id="quickGuide"
  2794. type="1"
  2795. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  2796. size="607KB" >
  2797. </productMenu>
  2798. <productMenu id="userGuide"
  2799. type="1"
  2800. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  2801. size="1.91MB" >
  2802. </productMenu>
  2803. <productMenu id="volume"
  2804. type="4" >
  2805. </productMenu>
  2806. <productID id="5418"
  2807. />
  2808. <productGroupable type="0"
  2809. />
  2810. </product>
  2811. <product id="20S"
  2812. name="20S"
  2813. series="20"
  2814. latestVersion="2.2.2"
  2815. show = "1" >
  2816. <productMenu id="protocol"
  2817. type="0">
  2818. </productMenu>
  2819. <productMenu id="wa"
  2820. type="5" >
  2821. </productMenu>
  2822. <productMenu id="sip"
  2823. type="1" >
  2824. <productMenuType version="1.0"
  2825. type="0"
  2826. />
  2827. </productMenu>
  2828. <productMenu id="bluetoothIntercom"
  2829. type="1" >
  2830. <productMenuType version="1.0"
  2831. type="0"
  2832. />
  2833. </productMenu>
  2834. <productMenu id="intercomSetting"
  2835. type="1" >
  2836. </productMenu>
  2837. <productMenu id="phone"
  2838. type="2" >
  2839. </productMenu>
  2840. <productMenu id="fmradio"
  2841. type="3" >
  2842. </productMenu>
  2843. <productMenu id="deviceSetting"
  2844. type="1"
  2845. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  2846. <productMenuURL version="2.0.2"
  2847. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  2848. />
  2849. <productMenuURL version="1.5"
  2850. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  2851. />
  2852. <productMenuURL version="1.4.1"
  2853. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  2854. />
  2855. <productMenuURL version="1.1"
  2856. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  2857. />
  2858. <productMenuURL version="1.0"
  2859. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  2860. />
  2861. </productMenu>
  2862. <productMenu id="quickGuide"
  2863. type="1"
  2864. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_20S_EVO_1.4.0_en_220922.pdf"
  2865. size="264KB" >
  2866. </productMenu>
  2867. <productMenu id="userGuide"
  2868. type="1"
  2869. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.0_en_220922.pdf"
  2870. size="3.09MB" >
  2871. </productMenu>
  2872. <productID id="4210"
  2873. />
  2874. <productGroupable type="1"
  2875. />
  2876. </product>
  2877. <product id="20S_EVO"
  2878. name="20S EVO"
  2879. series="20"
  2880. latestVersion="2.2.2"
  2881. show = "1" >
  2882. <productMenu id="protocol"
  2883. type="0">
  2884. </productMenu>
  2885. <productMenu id="wa"
  2886. type="5" >
  2887. </productMenu>
  2888. <productMenu id="sip"
  2889. type="1" >
  2890. <productMenuType version="1.0"
  2891. type="0"
  2892. />
  2893. </productMenu>
  2894. <productMenu id="bluetoothIntercom"
  2895. type="1" >
  2896. <productMenuType version="1.0"
  2897. type="0"
  2898. />
  2899. </productMenu>
  2900. <productMenu id="intercomSetting"
  2901. type="1" >
  2902. </productMenu>
  2903. <productMenu id="phone"
  2904. type="2" >
  2905. </productMenu>
  2906. <productMenu id="fmradio"
  2907. type="3" >
  2908. </productMenu>
  2909. <productMenu id="deviceSetting"
  2910. type="1"
  2911. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  2912. <productMenuURL version="2.0.2"
  2913. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  2914. />
  2915. <productMenuURL version="1.5"
  2916. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  2917. />
  2918. <productMenuURL version="1.4.1"
  2919. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  2920. />
  2921. <productMenuURL version="1.1"
  2922. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  2923. />
  2924. <productMenuURL version="1.0"
  2925. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  2926. />
  2927. </productMenu>
  2928. <productMenu id="quickGuide"
  2929. type="1"
  2930. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_20S_EVO_1.4.0_en_220922.pdf"
  2931. size="264KB" >
  2932. </productMenu>
  2933. <productMenu id="userGuide"
  2934. type="1"
  2935. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.0_en_220922.pdf"
  2936. size="3.09MB" >
  2937. </productMenu>
  2938. <productID id="4210"
  2939. />
  2940. <productProductKey key="16"
  2941. />
  2942. <productGroupable type="1"
  2943. />
  2944. </product>
  2945. <product id="10S"
  2946. name="10S"
  2947. series="10"
  2948. latestVersion="3.0.1"
  2949. show = "0" >
  2950. <productMenu id="protocol"
  2951. type="3" >
  2952. </productMenu>
  2953. <productMenu id="sip"
  2954. type="1" >
  2955. </productMenu>
  2956. <productMenu id="bluetoothIntercom"
  2957. type="1" >
  2958. </productMenu>
  2959. <productMenu id="phone"
  2960. type="1" >
  2961. </productMenu>
  2962. <productMenu id="deviceSetting"
  2963. type="1"
  2964. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  2965. </productMenu>
  2966. <productMenu id="quickGuide"
  2967. type="1"
  2968. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  2969. size="934KB" >
  2970. </productMenu>
  2971. <productMenu id="userGuide"
  2972. type="1"
  2973. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.0.1_en_230828.pdf"
  2974. size="1.14MB" >
  2975. </productMenu>
  2976. <productID id="3380"
  2977. />
  2978. <productGroupable type="0"
  2979. />
  2980. </product>
  2981. <product id="10S"
  2982. name="10S"
  2983. series="10"
  2984. latestVersion="2.1.1"
  2985. show = "1" >
  2986. <productMenu id="protocol"
  2987. type="0">
  2988. </productMenu>
  2989. <productMenu id="sip"
  2990. type="1" >
  2991. </productMenu>
  2992. <productMenu id="bluetoothIntercom"
  2993. type="1" >
  2994. </productMenu>
  2995. <productMenu id="phone"
  2996. type="2" >
  2997. </productMenu>
  2998. <productMenu id="fmradio"
  2999. type="3" >
  3000. </productMenu>
  3001. <productMenu id="deviceSetting"
  3002. type="1"
  3003. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  3004. <productMenuURL version="1.5"
  3005. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  3006. />
  3007. <productMenuURL version="1.3.1"
  3008. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  3009. />
  3010. </productMenu>
  3011. <productMenu id="quickGuide"
  3012. type="1"
  3013. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  3014. size="310KB" >
  3015. </productMenu>
  3016. <productMenu id="userGuide"
  3017. type="1"
  3018. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.3.0_en_230623.pdf"
  3019. size="1.57MB" >
  3020. </productMenu>
  3021. <productID id="5530"
  3022. />
  3023. <productGroupable type="0"
  3024. />
  3025. </product>
  3026. <product id="10R"
  3027. name="10R"
  3028. series="10"
  3029. latestVersion="2.1.1"
  3030. show = "1" >
  3031. <productMenu id="protocol"
  3032. type="0">
  3033. </productMenu>
  3034. <productMenu id="sip"
  3035. type="1" >
  3036. <productMenuType version="1.0.2"
  3037. type="0"
  3038. />
  3039. </productMenu>
  3040. <productMenu id="bluetoothIntercom"
  3041. type="1" >
  3042. <productMenuType version="1.0.2"
  3043. type="0"
  3044. />
  3045. </productMenu>
  3046. <productMenu id="phone"
  3047. type="2" >
  3048. </productMenu>
  3049. <productMenu id="fmradio"
  3050. type="3" >
  3051. </productMenu>
  3052. <productMenu id="deviceSetting"
  3053. type="1"
  3054. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  3055. <productMenuURL version="1.4"
  3056. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  3057. />
  3058. <productMenuURL version="1.2.1"
  3059. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  3060. />
  3061. <productMenuURL version="1.0.2"
  3062. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  3063. />
  3064. <productMenuURL version="1.0"
  3065. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  3066. />
  3067. </productMenu>
  3068. <productMenu id="quickGuide"
  3069. type="1"
  3070. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  3071. size="400KB" >
  3072. </productMenu>
  3073. <productMenu id="userGuide"
  3074. type="1"
  3075. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  3076. size="2.75MB" >
  3077. </productMenu>
  3078. <productID id="5520"
  3079. />
  3080. <productGroupable type="0"
  3081. />
  3082. </product>
  3083. <product id="10C_EVO"
  3084. name="10C EVO"
  3085. series="10"
  3086. latestVersion="1.7"
  3087. show = "1" >
  3088. <productMenu id="protocol"
  3089. type="0">
  3090. </productMenu>
  3091. <productMenu id="sip"
  3092. type="1" >
  3093. </productMenu>
  3094. <productMenu id="bluetoothIntercom"
  3095. type="1" >
  3096. </productMenu>
  3097. <productMenu id="phone"
  3098. type="2" >
  3099. </productMenu>
  3100. <productMenu id="fmradio"
  3101. type="3" >
  3102. </productMenu>
  3103. <productMenu id="deviceSetting"
  3104. type="1"
  3105. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  3106. <productMenuURL version="1.3.1"
  3107. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  3108. />
  3109. </productMenu>
  3110. <productMenu id="quickGuide"
  3111. type="1"
  3112. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  3113. size="1.32MB" >
  3114. </productMenu>
  3115. <productMenu id="userGuide"
  3116. type="1"
  3117. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  3118. size="1.68MB" >
  3119. </productMenu>
  3120. <productID id="5570"
  3121. />
  3122. <productGroupable type="0"
  3123. />
  3124. </product>
  3125. <product id="10C_Pro"
  3126. name="10C Pro"
  3127. series="10"
  3128. latestVersion="2.7.1"
  3129. show = "1" >
  3130. <productMenu id="protocol"
  3131. type="0">
  3132. </productMenu>
  3133. <productMenu id="sip"
  3134. type="1" >
  3135. </productMenu>
  3136. <productMenu id="bluetoothIntercom"
  3137. type="1" >
  3138. </productMenu>
  3139. <productMenu id="phone"
  3140. type="2" >
  3141. </productMenu>
  3142. <productMenu id="fmradio"
  3143. type="3" >
  3144. </productMenu>
  3145. <productMenu id="deviceSetting"
  3146. type="1"
  3147. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  3148. <productMenuURL version="2.5.1"
  3149. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  3150. />
  3151. <productMenuURL version="1.0"
  3152. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  3153. />
  3154. </productMenu>
  3155. <productMenu id="quickGuide"
  3156. type="1"
  3157. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  3158. size="651KB" >
  3159. </productMenu>
  3160. <productMenu id="userGuide"
  3161. type="1"
  3162. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  3163. size="2.34MB" >
  3164. </productMenu>
  3165. <productID id="5580"
  3166. />
  3167. <productGroupable type="0"
  3168. />
  3169. </product>
  3170. <product id="10C"
  3171. name="10C"
  3172. series="10"
  3173. latestVersion="3.0.4"
  3174. show = "1" >
  3175. <productMenu id="protocol"
  3176. type="0">
  3177. </productMenu>
  3178. <productMenu id="sip"
  3179. type="1" >
  3180. <productMenuType version="1.0.4"
  3181. type="0"
  3182. />
  3183. </productMenu>
  3184. <productMenu id="bluetoothIntercom"
  3185. type="1" >
  3186. <productMenuType version="1.0.4"
  3187. type="0"
  3188. />
  3189. </productMenu>
  3190. <productMenu id="phone"
  3191. type="2" >
  3192. </productMenu>
  3193. <productMenu id="fmradio"
  3194. type="3" >
  3195. </productMenu>
  3196. <productMenu id="deviceSetting"
  3197. type="1"
  3198. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  3199. <productMenuURL version="2.3"
  3200. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  3201. />
  3202. <productMenuURL version="2.1.1"
  3203. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  3204. />
  3205. <productMenuURL version="1.0.4"
  3206. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  3207. />
  3208. <productMenuURL version="1.0.2"
  3209. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  3210. />
  3211. </productMenu>
  3212. <productMenu id="quickGuide"
  3213. type="1"
  3214. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  3215. size="935KB" >
  3216. </productMenu>
  3217. <productMenu id="userGuide"
  3218. type="1"
  3219. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  3220. size="2.82MB" >
  3221. </productMenu>
  3222. <productID id="5510"
  3223. />
  3224. <productGroupable type="0"
  3225. />
  3226. </product>
  3227. <product id="10U_GT_AIR"
  3228. name="10U GT-Air"
  3229. series="10"
  3230. latestVersion="2.0.4"
  3231. show = "1" >
  3232. <productMenu id="protocol"
  3233. type="0">
  3234. </productMenu>
  3235. <productMenu id="sip"
  3236. type="1" >
  3237. <productMenuType version="1.0.2"
  3238. type="0"
  3239. />
  3240. </productMenu>
  3241. <productMenu id="bluetoothIntercom"
  3242. type="1" >
  3243. <productMenuType version="1.0.2"
  3244. type="0"
  3245. />
  3246. </productMenu>
  3247. <productMenu id="phone"
  3248. type="2" >
  3249. </productMenu>
  3250. <productMenu id="fmradio"
  3251. type="3" >
  3252. </productMenu>
  3253. <productMenu id="deviceSetting"
  3254. type="1"
  3255. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3256. <productMenuURL version="1.3.2"
  3257. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3258. />
  3259. <productMenuURL version="1.0.2"
  3260. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3261. />
  3262. </productMenu>
  3263. <productMenu id="quickGuide"
  3264. type="1"
  3265. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  3266. size="685KB" >
  3267. </productMenu>
  3268. <productMenu id="userGuide"
  3269. type="1"
  3270. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3271. size="684KB" >
  3272. </productMenu>
  3273. <productID id="5610"
  3274. />
  3275. <productGroupable type="0"
  3276. />
  3277. </product>
  3278. <product id="10U_NEOTEC"
  3279. name="10U Neotec"
  3280. series="10"
  3281. latestVersion="2.0.4"
  3282. show = "1" >
  3283. <productMenu id="protocol"
  3284. type="0">
  3285. </productMenu>
  3286. <productMenu id="sip"
  3287. type="1" >
  3288. <productMenuType version="1.0.2"
  3289. type="0"
  3290. />
  3291. </productMenu>
  3292. <productMenu id="bluetoothIntercom"
  3293. type="1" >
  3294. <productMenuType version="1.0.2"
  3295. type="0"
  3296. />
  3297. </productMenu>
  3298. <productMenu id="phone"
  3299. type="2" >
  3300. </productMenu>
  3301. <productMenu id="fmradio"
  3302. type="3" >
  3303. </productMenu>
  3304. <productMenu id="deviceSetting"
  3305. type="1"
  3306. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3307. <productMenuURL version="1.3.2"
  3308. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3309. />
  3310. <productMenuURL version="1.0.2"
  3311. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3312. />
  3313. </productMenu>
  3314. <productMenu id="quickGuide"
  3315. type="1"
  3316. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  3317. size="689KB" >
  3318. </productMenu>
  3319. <productMenu id="userGuide"
  3320. type="1"
  3321. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3322. size="684KB" >
  3323. </productMenu>
  3324. <productID id="5611"
  3325. />
  3326. <productGroupable type="0"
  3327. />
  3328. </product>
  3329. <product id="10U_J_CRUISE"
  3330. name="10U J-Cruise"
  3331. series="10"
  3332. latestVersion="2.0.4"
  3333. show = "1" >
  3334. <productMenu id="protocol"
  3335. type="0">
  3336. </productMenu>
  3337. <productMenu id="sip"
  3338. type="1" >
  3339. <productMenuType version="1.0.2"
  3340. type="0"
  3341. />
  3342. </productMenu>
  3343. <productMenu id="bluetoothIntercom"
  3344. type="1" >
  3345. <productMenuType version="1.0.2"
  3346. type="0"
  3347. />
  3348. </productMenu>
  3349. <productMenu id="phone"
  3350. type="2" >
  3351. </productMenu>
  3352. <productMenu id="fmradio"
  3353. type="3" >
  3354. </productMenu>
  3355. <productMenu id="deviceSetting"
  3356. type="1"
  3357. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3358. <productMenuURL version="1.3.2"
  3359. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3360. />
  3361. <productMenuURL version="1.0.2"
  3362. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3363. />
  3364. </productMenu>
  3365. <productMenu id="quickGuide"
  3366. type="1"
  3367. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  3368. size="686KB" >
  3369. </productMenu>
  3370. <productMenu id="userGuide"
  3371. type="1"
  3372. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3373. size="684KB" >
  3374. </productMenu>
  3375. <productID id="5612"
  3376. />
  3377. <productGroupable type="0"
  3378. />
  3379. </product>
  3380. <product id="10U_C3"
  3381. name="10U C3/C3Pro"
  3382. series="10"
  3383. latestVersion="2.0.4"
  3384. show = "1" >
  3385. <productMenu id="protocol"
  3386. type="0">
  3387. </productMenu>
  3388. <productMenu id="sip"
  3389. type="1" >
  3390. <productMenuType version="1.0.2"
  3391. type="0"
  3392. />
  3393. </productMenu>
  3394. <productMenu id="bluetoothIntercom"
  3395. type="1" >
  3396. <productMenuType version="1.0.2"
  3397. type="0"
  3398. />
  3399. </productMenu>
  3400. <productMenu id="phone"
  3401. type="2" >
  3402. </productMenu>
  3403. <productMenu id="fmradio"
  3404. type="3" >
  3405. </productMenu>
  3406. <productMenu id="deviceSetting"
  3407. type="1"
  3408. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3409. <productMenuURL version="1.3.2"
  3410. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3411. />
  3412. <productMenuURL version="1.0.2"
  3413. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3414. />
  3415. </productMenu>
  3416. <productMenu id="quickGuide"
  3417. type="1"
  3418. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  3419. size="199KB" >
  3420. </productMenu>
  3421. <productMenu id="userGuide"
  3422. type="1"
  3423. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3424. size="684KB" >
  3425. </productMenu>
  3426. <productID id="5620"
  3427. />
  3428. <productGroupable type="0"
  3429. />
  3430. </product>
  3431. <product id="10U_ARAI"
  3432. name="10U Arai"
  3433. series="10"
  3434. latestVersion="2.0.4"
  3435. show = "1" >
  3436. <productMenu id="protocol"
  3437. type="0">
  3438. </productMenu>
  3439. <productMenu id="sip"
  3440. type="1" >
  3441. <productMenuType version="1.0.2"
  3442. type="0"
  3443. />
  3444. </productMenu>
  3445. <productMenu id="bluetoothIntercom"
  3446. type="1" >
  3447. <productMenuType version="1.0.2"
  3448. type="0"
  3449. />
  3450. </productMenu>
  3451. <productMenu id="phone"
  3452. type="2" >
  3453. </productMenu>
  3454. <productMenu id="fmradio"
  3455. type="3" >
  3456. </productMenu>
  3457. <productMenu id="deviceSetting"
  3458. type="1"
  3459. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3460. <productMenuURL version="1.3.2"
  3461. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3462. />
  3463. <productMenuURL version="1.0.2"
  3464. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3465. />
  3466. </productMenu>
  3467. <productMenu id="quickGuide"
  3468. type="1"
  3469. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  3470. size="689KB" >
  3471. </productMenu>
  3472. <productMenu id="userGuide"
  3473. type="1"
  3474. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3475. size="684KB" >
  3476. </productMenu>
  3477. <productID id="5621"
  3478. />
  3479. <productGroupable type="0"
  3480. />
  3481. </product>
  3482. <product id="10Upad"
  3483. name="10Upad"
  3484. series="10"
  3485. latestVersion="2.0.3"
  3486. show = "1" >
  3487. <productMenu id="protocol"
  3488. type="0">
  3489. </productMenu>
  3490. <productMenu id="sip"
  3491. type="1" >
  3492. </productMenu>
  3493. <productMenu id="bluetoothIntercom"
  3494. type="1" >
  3495. </productMenu>
  3496. <productMenu id="phone"
  3497. type="2" >
  3498. </productMenu>
  3499. <productMenu id="fmradio"
  3500. type="3" >
  3501. </productMenu>
  3502. <productMenu id="deviceSetting"
  3503. type="1"
  3504. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  3505. <productMenuURL version="1.0.3"
  3506. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  3507. />
  3508. </productMenu>
  3509. <productMenu id="quickGuide"
  3510. type="1"
  3511. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  3512. size="615KB" >
  3513. </productMenu>
  3514. <productMenu id="userGuide"
  3515. type="1"
  3516. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  3517. size="0.99MB" >
  3518. </productMenu>
  3519. <productID id="6210"
  3520. />
  3521. <productGroupable type="0"
  3522. />
  3523. </product>
  3524. <product id="5S"
  3525. name="5S"
  3526. series="5"
  3527. latestVersion="2.2.1"
  3528. show = "1" >
  3529. <productMenu id="protocol"
  3530. type="3" >
  3531. </productMenu>
  3532. <productMenu id="sip"
  3533. type="1" >
  3534. </productMenu>
  3535. <productMenu id="bluetoothIntercom"
  3536. type="1" >
  3537. </productMenu>
  3538. <productMenu id="phone"
  3539. type="1" >
  3540. </productMenu>
  3541. <productMenu id="fmradio"
  3542. type="1" >
  3543. </productMenu>
  3544. <productMenu id="deviceSetting"
  3545. type="1"
  3546. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  3547. </productMenu>
  3548. <productMenu id="quickGuide"
  3549. type="1"
  3550. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_5S_2.1.0_en_230703.pdf"
  3551. size="934KB" >
  3552. </productMenu>
  3553. <productMenu id="userGuide"
  3554. type="1"
  3555. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5S_2.2.0_en_230703.pdf"
  3556. size="1.14MB" >
  3557. </productMenu>
  3558. <productID id="5590"
  3559. />
  3560. <productGroupable type="0"
  3561. />
  3562. </product>
  3563. <product id="5S"
  3564. name="5S"
  3565. series="5"
  3566. latestVersion="1.2"
  3567. show = "0" >
  3568. <productMenu id="protocol"
  3569. type="0">
  3570. </productMenu>
  3571. <productMenu id="sip"
  3572. type="1" >
  3573. </productMenu>
  3574. <productMenu id="bluetoothIntercom"
  3575. type="1" >
  3576. </productMenu>
  3577. <productMenu id="phone"
  3578. type="2" >
  3579. </productMenu>
  3580. <productMenu id="fmradio"
  3581. type="3" >
  3582. </productMenu>
  3583. <productMenu id="deviceSetting"
  3584. type="1"
  3585. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  3586. </productMenu>
  3587. <productMenu id="quickGuide"
  3588. type="1"
  3589. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_5S_2.1.0_en_230703.pdf"
  3590. size="970KB" >
  3591. </productMenu>
  3592. <productMenu id="userGuide"
  3593. type="1"
  3594. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5S_1.2.0_en_230703.pdf"
  3595. size="1.26MB" >
  3596. </productMenu>
  3597. <productID id="5534"
  3598. />
  3599. <productGroupable type="0"
  3600. />
  3601. </product>
  3602. <product id="5S"
  3603. name="5S"
  3604. series="5"
  3605. latestVersion="3.0.1"
  3606. show = "0" >
  3607. <productMenu id="protocol"
  3608. type="0">
  3609. </productMenu>
  3610. <productMenu id="sip"
  3611. type="1" >
  3612. </productMenu>
  3613. <productMenu id="bluetoothIntercom"
  3614. type="1" >
  3615. </productMenu>
  3616. <productMenu id="phone"
  3617. type="2" >
  3618. </productMenu>
  3619. <productMenu id="fmradio"
  3620. type="3" >
  3621. </productMenu>
  3622. <productMenu id="deviceSetting"
  3623. type="1"
  3624. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  3625. </productMenu>
  3626. <productMenu id="quickGuide"
  3627. type="1"
  3628. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_5S_2.1.0_en_230703.pdf"
  3629. size="970KB" >
  3630. </productMenu>
  3631. <productMenu id="userGuide"
  3632. type="1"
  3633. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5S_3.0.0_en_230703.pdf"
  3634. size="1.26MB" >
  3635. </productMenu>
  3636. <productID id="5538"
  3637. />
  3638. <productGroupable type="0"
  3639. />
  3640. </product>
  3641. <product id="3SPLUS"
  3642. name="3S PLUS"
  3643. series="3"
  3644. latestVersion="2.1"
  3645. show = "0" >
  3646. <productMenu id="protocol"
  3647. type="3" >
  3648. </productMenu>
  3649. <productMenu id="sip"
  3650. type="1" >
  3651. </productMenu>
  3652. <productMenu id="bluetoothIntercom"
  3653. type="1" >
  3654. </productMenu>
  3655. <productMenu id="deviceSetting"
  3656. type="1"
  3657. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  3658. </productMenu>
  3659. <productMenu id="quickGuide"
  3660. type="1"
  3661. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  3662. size="344KB" >
  3663. </productMenu>
  3664. <productMenu id="userGuide"
  3665. type="1"
  3666. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.1.0_en_230623.pdf"
  3667. size="1.14MB" >
  3668. </productMenu>
  3669. <productID id="4023"
  3670. />
  3671. <productGroupable type="0"
  3672. />
  3673. </product>
  3674. <product id="3SPLUS"
  3675. name="3S PLUS"
  3676. series="3"
  3677. latestVersion="1.0.5"
  3678. show = "1" >
  3679. <productMenu id="protocol"
  3680. type="0">
  3681. </productMenu>
  3682. <productMenu id="sip"
  3683. type="1" >
  3684. </productMenu>
  3685. <productMenu id="bluetoothIntercom"
  3686. type="1" >
  3687. </productMenu>
  3688. <productMenu id="deviceSetting"
  3689. type="1"
  3690. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  3691. </productMenu>
  3692. <productMenu id="quickGuide"
  3693. type="1"
  3694. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  3695. size="842KB" >
  3696. </productMenu>
  3697. <productMenu id="userGuide"
  3698. type="1"
  3699. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  3700. size="1.02MB" >
  3701. </productMenu>
  3702. <productID id="6320"
  3703. />
  3704. <productGroupable type="0"
  3705. />
  3706. </product>
  3707. <product id="iCon"
  3708. name="iCon"
  3709. series="50"
  3710. latestVersion="1.0.1"
  3711. show = "0" >
  3712. <productMenu id="protocol"
  3713. type="2" >
  3714. </productMenu>
  3715. <productMenu id="alexa"
  3716. type="0" >
  3717. </productMenu>
  3718. <productMenu id="wa"
  3719. type="0" >
  3720. </productMenu>
  3721. <productMenu id="sip"
  3722. type="1" >
  3723. </productMenu>
  3724. <productMenu id="led"
  3725. type="3" >
  3726. </productMenu>
  3727. <productMenu id="meshIntercom"
  3728. type="20" >
  3729. </productMenu>
  3730. <productMenu id="bluetoothIntercom"
  3731. type="1" >
  3732. </productMenu>
  3733. <productMenu id="phone"
  3734. type="1" >
  3735. </productMenu>
  3736. <productMenu id="music"
  3737. type="1" >
  3738. </productMenu>
  3739. <productMenu id="fmradio"
  3740. type="1" >
  3741. </productMenu>
  3742. <productMenu id="deviceSetting"
  3743. type="1"
  3744. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml" >
  3745. </productMenu>
  3746. <productMenu id="quickGuide"
  3747. type="1"
  3748. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  3749. size="344KB" >
  3750. </productMenu>
  3751. <productMenu id="userGuide"
  3752. type="1"
  3753. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.0.0_en_220830.pdf"
  3754. size="3.41MB" >
  3755. </productMenu>
  3756. <productMenu id="volume"
  3757. type="11" >
  3758. </productMenu>
  3759. <productMenu id="battery"
  3760. type="1" >
  3761. </productMenu>
  3762. <productID id="3900"
  3763. />
  3764. <productGroupable type="0"
  3765. />
  3766. </product>
  3767. <product id="HD50S"
  3768. name="H-D Audio 50S"
  3769. series="50"
  3770. latestVersion="1.0.1"
  3771. show = "0" >
  3772. <productMenu id="protocol"
  3773. type="2" >
  3774. </productMenu>
  3775. <productMenu id="alexa"
  3776. type="0" >
  3777. </productMenu>
  3778. <productMenu id="ota"
  3779. type="0"
  3780. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  3781. size="1150234" >
  3782. </productMenu>
  3783. <productMenu id="wa"
  3784. type="1" >
  3785. </productMenu>
  3786. <productMenu id="sip"
  3787. type="1" >
  3788. </productMenu>
  3789. <productMenu id="meshIntercom"
  3790. type="20" >
  3791. </productMenu>
  3792. <productMenu id="bluetoothIntercom"
  3793. type="1" >
  3794. </productMenu>
  3795. <productMenu id="phone"
  3796. type="1" >
  3797. </productMenu>
  3798. <productMenu id="music"
  3799. type="1" >
  3800. </productMenu>
  3801. <productMenu id="fmradio"
  3802. type="1" >
  3803. </productMenu>
  3804. <productMenu id="deviceSetting"
  3805. type="1"
  3806. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  3807. </productMenu>
  3808. <productMenu id="quickGuide"
  3809. type="1"
  3810. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  3811. size="934KB" >
  3812. </productMenu>
  3813. <productMenu id="userGuide"
  3814. type="1"
  3815. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  3816. size="1.14MB" >
  3817. </productMenu>
  3818. <productMenu id="volume"
  3819. type="11" >
  3820. </productMenu>
  3821. <productMenu id="battery"
  3822. type="1" >
  3823. </productMenu>
  3824. <productID id="3156"
  3825. />
  3826. <productGroupable type="0"
  3827. />
  3828. </product>
  3829. <product id="HD50S"
  3830. name="H-D Audio 50S"
  3831. series="50"
  3832. latestVersion="2.0.2"
  3833. show = "0" >
  3834. <productMenu id="protocol"
  3835. type="2" >
  3836. </productMenu>
  3837. <productMenu id="alexa"
  3838. type="0" >
  3839. </productMenu>
  3840. <productMenu id="ota"
  3841. type="0"
  3842. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  3843. size="1150234" >
  3844. </productMenu>
  3845. <productMenu id="wa"
  3846. type="1" >
  3847. </productMenu>
  3848. <productMenu id="sip"
  3849. type="1" >
  3850. </productMenu>
  3851. <productMenu id="meshIntercom"
  3852. type="20" >
  3853. </productMenu>
  3854. <productMenu id="bluetoothIntercom"
  3855. type="1" >
  3856. </productMenu>
  3857. <productMenu id="phone"
  3858. type="1" >
  3859. </productMenu>
  3860. <productMenu id="music"
  3861. type="1" >
  3862. </productMenu>
  3863. <productMenu id="fmradio"
  3864. type="1" >
  3865. </productMenu>
  3866. <productMenu id="deviceSetting"
  3867. type="1"
  3868. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  3869. </productMenu>
  3870. <productMenu id="quickGuide"
  3871. type="1"
  3872. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  3873. size="934KB" >
  3874. </productMenu>
  3875. <productMenu id="userGuide"
  3876. type="1"
  3877. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  3878. size="1.14MB" >
  3879. </productMenu>
  3880. <productMenu id="volume"
  3881. type="11" >
  3882. </productMenu>
  3883. <productMenu id="battery"
  3884. type="1" >
  3885. </productMenu>
  3886. <productID id="3213"
  3887. />
  3888. <productGroupable type="0"
  3889. />
  3890. </product>
  3891. <product id="HD50C"
  3892. name="H-D Audio 50C"
  3893. series="50"
  3894. latestVersion="1.0.1"
  3895. show = "0" >
  3896. <productMenu id="protocol"
  3897. type="2" >
  3898. </productMenu>
  3899. <productMenu id="ota"
  3900. type="0" >
  3901. </productMenu>
  3902. <productMenu id="wa"
  3903. type="1" >
  3904. </productMenu>
  3905. <productMenu id="sip"
  3906. type="1" >
  3907. </productMenu>
  3908. <productMenu id="meshIntercom"
  3909. type="20" >
  3910. </productMenu>
  3911. <productMenu id="bluetoothIntercom"
  3912. type="1" >
  3913. </productMenu>
  3914. <productMenu id="phone"
  3915. type="1" >
  3916. </productMenu>
  3917. <productMenu id="music"
  3918. type="1" >
  3919. </productMenu>
  3920. <productMenu id="fmradio"
  3921. type="1" >
  3922. </productMenu>
  3923. <productMenu id="deviceSetting"
  3924. type="1"
  3925. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  3926. </productMenu>
  3927. <productMenu id="quickGuide"
  3928. type="1"
  3929. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  3930. size="344KB" >
  3931. </productMenu>
  3932. <productMenu id="userGuide"
  3933. type="1"
  3934. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  3935. size="3.41MB" >
  3936. </productMenu>
  3937. <productMenu id="volume"
  3938. type="11" >
  3939. </productMenu>
  3940. <productMenu id="battery"
  3941. type="1" >
  3942. </productMenu>
  3943. <productID id="3240"
  3944. />
  3945. <productGroupable type="0"
  3946. />
  3947. </product>
  3948. <product id="HD50S"
  3949. name="FURY N04"
  3950. series="Helmet"
  3951. latestVersion="1.0"
  3952. show = "0" >
  3953. <productMenu id="protocol"
  3954. type="2" >
  3955. </productMenu>
  3956. <productMenu id="alexa"
  3957. type="0" >
  3958. </productMenu>
  3959. <productMenu id="ota"
  3960. type="0" >
  3961. </productMenu>
  3962. <productMenu id="wa"
  3963. type="0" >
  3964. </productMenu>
  3965. <productMenu id="meshIntercom"
  3966. type="20" >
  3967. </productMenu>
  3968. <productMenu id="phone"
  3969. type="1" >
  3970. </productMenu>
  3971. <productMenu id="music"
  3972. type="1" >
  3973. </productMenu>
  3974. <productMenu id="fmradio"
  3975. type="1" >
  3976. </productMenu>
  3977. <productMenu id="deviceSetting"
  3978. type="1"
  3979. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  3980. </productMenu>
  3981. <productMenu id="quickGuide"
  3982. type="1"
  3983. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  3984. size="1.12MB" >
  3985. </productMenu>
  3986. <productMenu id="userGuide"
  3987. type="1"
  3988. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  3989. size="2.0MB" >
  3990. </productMenu>
  3991. <productMenu id="volume"
  3992. type="13" >
  3993. </productMenu>
  3994. <productMenu id="battery"
  3995. type="1" >
  3996. </productMenu>
  3997. <productID id="5553"
  3998. />
  3999. <productGroupable type="0"
  4000. />
  4001. </product>
  4002. <product id="XCOM3Pro"
  4003. name="X-COM3 Pro"
  4004. series="20"
  4005. latestVersion="1.0"
  4006. show = "-1" >
  4007. <productMenu id="protocol"
  4008. type="2" >
  4009. </productMenu>
  4010. <productMenu id="alexa"
  4011. type="0" >
  4012. </productMenu>
  4013. <productMenu id="ota"
  4014. type="0" >
  4015. </productMenu>
  4016. <productMenu id="wa"
  4017. type="0" >
  4018. </productMenu>
  4019. <productMenu id="sip"
  4020. type="1" >
  4021. </productMenu>
  4022. <productMenu id="meshIntercom"
  4023. type="30" >
  4024. </productMenu>
  4025. <productMenu id="bluetoothIntercom"
  4026. type="1" >
  4027. </productMenu>
  4028. <productMenu id="phone"
  4029. type="1" >
  4030. </productMenu>
  4031. <productMenu id="music"
  4032. type="1" >
  4033. </productMenu>
  4034. <productMenu id="fmradio"
  4035. type="1" >
  4036. </productMenu>
  4037. <productMenu id="deviceSetting"
  4038. type="1"
  4039. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_01.xml" >
  4040. </productMenu>
  4041. <productMenu id="quickGuide"
  4042. type="1"
  4043. url=""
  4044. size="344KB" >
  4045. </productMenu>
  4046. <productMenu id="userGuide"
  4047. type="1"
  4048. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.0.0_en_231229.pdf"
  4049. size="3.41MB" >
  4050. </productMenu>
  4051. <productMenu id="volume"
  4052. type="11" >
  4053. </productMenu>
  4054. <productMenu id="battery"
  4055. type="1" >
  4056. </productMenu>
  4057. <productID id="321A"
  4058. />
  4059. <productGroupable type="0"
  4060. />
  4061. </product>
  4062. <product id="XCOM3"
  4063. name="X-COM3"
  4064. series="20"
  4065. latestVersion="1.0"
  4066. show = "0" >
  4067. <productMenu id="protocol"
  4068. type="2" >
  4069. </productMenu>
  4070. <productMenu id="sip"
  4071. type="1" >
  4072. </productMenu>
  4073. <productMenu id="bluetoothIntercom"
  4074. type="1" >
  4075. </productMenu>
  4076. <productMenu id="phone"
  4077. type="1" >
  4078. </productMenu>
  4079. <productMenu id="music"
  4080. type="1" >
  4081. </productMenu>
  4082. <productMenu id="fmradio"
  4083. type="1" >
  4084. </productMenu>
  4085. <productMenu id="deviceSetting"
  4086. type="1"
  4087. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  4088. </productMenu>
  4089. <productMenu id="quickGuide"
  4090. type="1"
  4091. url=""
  4092. size="934KB" >
  4093. </productMenu>
  4094. <productMenu id="userGuide"
  4095. type="1"
  4096. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  4097. size="1.14MB" >
  4098. </productMenu>
  4099. <productMenu id="volume"
  4100. type="15" >
  4101. </productMenu>
  4102. <productID id="3410"
  4103. />
  4104. <productGroupable type="0"
  4105. />
  4106. </product>
  4107. <product id="X-COM2"
  4108. name="X-COM2"
  4109. series="20"
  4110. latestVersion="1.0.5"
  4111. show = "0" >
  4112. <productMenu id="protocol"
  4113. type="0">
  4114. </productMenu>
  4115. <productMenu id="sip"
  4116. type="1" >
  4117. </productMenu>
  4118. <productMenu id="bluetoothIntercom"
  4119. type="1" >
  4120. </productMenu>
  4121. <productMenu id="intercomSetting"
  4122. type="1" >
  4123. </productMenu>
  4124. <productMenu id="phone"
  4125. type="2" >
  4126. </productMenu>
  4127. <productMenu id="fmradio"
  4128. type="3" >
  4129. </productMenu>
  4130. <productMenu id="deviceSetting"
  4131. type="1"
  4132. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  4133. </productMenu>
  4134. <productMenu id="quickGuide"
  4135. type="1"
  4136. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  4137. size="796KB" >
  4138. </productMenu>
  4139. <productMenu id="userGuide"
  4140. type="1"
  4141. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  4142. size="1.90MB" >
  4143. </productMenu>
  4144. <productID id="2030"
  4145. />
  4146. <productGroupable type="1"
  4147. />
  4148. </product>
  4149. <product id="AVAABC"
  4150. name="AVA ABC"
  4151. series="SPIDER"
  4152. latestVersion="1.0"
  4153. show = "0" >
  4154. <productMenu id="protocol"
  4155. type="2" >
  4156. </productMenu>
  4157. <productMenu id="alexa"
  4158. type="0" >
  4159. </productMenu>
  4160. <productMenu id="ota"
  4161. type="0" >
  4162. </productMenu>
  4163. <productMenu id="wa"
  4164. type="0" >
  4165. </productMenu>
  4166. <productMenu id="meshIntercom"
  4167. type="20" >
  4168. </productMenu>
  4169. <productMenu id="phone"
  4170. type="1" >
  4171. </productMenu>
  4172. <productMenu id="music"
  4173. type="1" >
  4174. </productMenu>
  4175. <productMenu id="musicSharing"
  4176. type="0" >
  4177. </productMenu>
  4178. <productMenu id="deviceSetting"
  4179. type="1"
  4180. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml" >
  4181. </productMenu>
  4182. <productMenu id="quickGuide"
  4183. type="1"
  4184. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  4185. size="1.12MB" >
  4186. </productMenu>
  4187. <productMenu id="userGuide"
  4188. type="1"
  4189. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  4190. size="2.0MB" >
  4191. </productMenu>
  4192. <productMenu id="volume"
  4193. type="12" >
  4194. </productMenu>
  4195. <productMenu id="battery"
  4196. type="1" >
  4197. </productMenu>
  4198. <productID id="6808"
  4199. />
  4200. <productGroupable type="0"
  4201. />
  4202. </product>
  4203. <product id="Triumph_50S"
  4204. name="Triumph 50S"
  4205. series="50"
  4206. latestVersion="1.2.2"
  4207. show = "0" >
  4208. <productMenu id="protocol"
  4209. type="2" >
  4210. </productMenu>
  4211. <productMenu id="alexa"
  4212. type="0" >
  4213. </productMenu>
  4214. <productMenu id="ota"
  4215. type="0"
  4216. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  4217. size="1150234" >
  4218. </productMenu>
  4219. <productMenu id="wa"
  4220. type="1" >
  4221. </productMenu>
  4222. <productMenu id="sip"
  4223. type="1" >
  4224. </productMenu>
  4225. <productMenu id="meshIntercom"
  4226. type="20" >
  4227. </productMenu>
  4228. <productMenu id="bluetoothIntercom"
  4229. type="1" >
  4230. </productMenu>
  4231. <productMenu id="phone"
  4232. type="1" >
  4233. </productMenu>
  4234. <productMenu id="music"
  4235. type="1" >
  4236. </productMenu>
  4237. <productMenu id="fmradio"
  4238. type="1" >
  4239. </productMenu>
  4240. <productMenu id="deviceSetting"
  4241. type="1"
  4242. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml" >
  4243. <productMenuURL version="1.0"
  4244. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  4245. />
  4246. </productMenu>
  4247. <productMenu id="quickGuide"
  4248. type="1"
  4249. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  4250. size="934KB" >
  4251. </productMenu>
  4252. <productMenu id="userGuide"
  4253. type="1"
  4254. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Triumph_50S_1.5.0_us_220111.pdf"
  4255. size="1.14MB" >
  4256. </productMenu>
  4257. <productMenu id="volume"
  4258. type="11" >
  4259. </productMenu>
  4260. <productMenu id="battery"
  4261. type="1" >
  4262. </productMenu>
  4263. <productID id="3264"
  4264. />
  4265. <productGroupable type="0"
  4266. />
  4267. </product>
  4268. <product id="BMW_HELMET_II_U1"
  4269. name="BMW HELMET II U1"
  4270. series="50"
  4271. latestVersion="1.0"
  4272. show = "0" >
  4273. <productMenu id="protocol"
  4274. type="2" >
  4275. </productMenu>
  4276. <productMenu id="alexa"
  4277. type="0" >
  4278. </productMenu>
  4279. <productMenu id="sip"
  4280. type="1" >
  4281. </productMenu>
  4282. <productMenu id="meshIntercom"
  4283. type="20" >
  4284. </productMenu>
  4285. <productMenu id="bluetoothIntercom"
  4286. type="1" >
  4287. </productMenu>
  4288. <productMenu id="bluetoothIntercom2"
  4289. type="1" >
  4290. </productMenu>
  4291. <productMenu id="phone"
  4292. type="1" >
  4293. </productMenu>
  4294. <productMenu id="music"
  4295. type="1" >
  4296. </productMenu>
  4297. <productMenu id="fmradio"
  4298. type="1" >
  4299. </productMenu>
  4300. <productMenu id="deviceSetting"
  4301. type="1"
  4302. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  4303. </productMenu>
  4304. <productMenu id="quickGuide"
  4305. type="1"
  4306. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  4307. size="934KB" >
  4308. </productMenu>
  4309. <productMenu id="userGuide"
  4310. type="1"
  4311. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  4312. size="1.14MB" >
  4313. </productMenu>
  4314. <productMenu id="volume"
  4315. type="11" >
  4316. </productMenu>
  4317. <productMenu id="battery"
  4318. type="1" >
  4319. </productMenu>
  4320. <productID id="3260"
  4321. />
  4322. <productGroupable type="0"
  4323. />
  4324. </product>
  4325. <product id="LSE-01"
  4326. name="LSE-01"
  4327. series="SF"
  4328. latestVersion="1.2.3"
  4329. show = "0" >
  4330. <productMenu id="protocol"
  4331. type="1"
  4332. url="3">
  4333. </productMenu>
  4334. <productMenu id="sip"
  4335. type="1" >
  4336. </productMenu>
  4337. <productMenu id="bluetoothIntercom"
  4338. type="1" >
  4339. </productMenu>
  4340. <productMenu id="phone"
  4341. type="1" >
  4342. </productMenu>
  4343. <productMenu id="music"
  4344. type="1" >
  4345. </productMenu>
  4346. <productMenu id="fmradio"
  4347. type="1" >
  4348. </productMenu>
  4349. <productMenu id="deviceSetting"
  4350. type="1"
  4351. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4352. <productMenuURL version="1.1"
  4353. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  4354. />
  4355. <productMenuURL version="1.0"
  4356. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  4357. />
  4358. </productMenu>
  4359. <productMenu id="quickGuide"
  4360. type="1"
  4361. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  4362. size="607KB" >
  4363. </productMenu>
  4364. <productMenu id="userGuide"
  4365. type="1"
  4366. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  4367. size="1.91MB" >
  4368. </productMenu>
  4369. <productMenu id="volume"
  4370. type="4" >
  4371. </productMenu>
  4372. <productID id="5416"
  4373. />
  4374. <productGroupable type="0"
  4375. />
  4376. </product>
  4377. <product id="AGV_ARK"
  4378. name="AGV ARK"
  4379. series="SF"
  4380. latestVersion="1.0.3"
  4381. show = "0" >
  4382. <productMenu id="protocol"
  4383. type="1"
  4384. url="3">
  4385. </productMenu>
  4386. <productMenu id="sip"
  4387. type="1" >
  4388. </productMenu>
  4389. <productMenu id="bluetoothIntercom"
  4390. type="1" >
  4391. </productMenu>
  4392. <productMenu id="phone"
  4393. type="1" >
  4394. </productMenu>
  4395. <productMenu id="music"
  4396. type="1" >
  4397. </productMenu>
  4398. <productMenu id="fmradio"
  4399. type="1" >
  4400. </productMenu>
  4401. <productMenu id="deviceSetting"
  4402. type="1"
  4403. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4404. </productMenu>
  4405. <productMenu id="quickGuide"
  4406. type="1"
  4407. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  4408. size="607KB" >
  4409. </productMenu>
  4410. <productMenu id="userGuide"
  4411. type="1"
  4412. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  4413. size="1.91MB" >
  4414. </productMenu>
  4415. <productMenu id="volume"
  4416. type="4" >
  4417. </productMenu>
  4418. <productID id="5420"
  4419. />
  4420. <productGroupable type="0"
  4421. />
  4422. </product>
  4423. <product id="KLIM_KRIOS"
  4424. name="KLIM Krios"
  4425. series="10"
  4426. latestVersion="1.1.2"
  4427. show = "0" >
  4428. <productMenu id="protocol"
  4429. type="0">
  4430. </productMenu>
  4431. <productMenu id="sip"
  4432. type="1" >
  4433. </productMenu>
  4434. <productMenu id="bluetoothIntercom"
  4435. type="1" >
  4436. </productMenu>
  4437. <productMenu id="phone"
  4438. type="2" >
  4439. </productMenu>
  4440. <productMenu id="fmradio"
  4441. type="3" >
  4442. </productMenu>
  4443. <productMenu id="deviceSetting"
  4444. type="1"
  4445. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  4446. <productMenuURL version="1.0"
  4447. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  4448. />
  4449. </productMenu>
  4450. <productMenu id="quickGuide"
  4451. type="1"
  4452. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  4453. size="649KB" >
  4454. </productMenu>
  4455. <productMenu id="userGuide"
  4456. type="1"
  4457. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  4458. size="1.43MB" >
  4459. </productMenu>
  4460. <productID id="5910"
  4461. />
  4462. <productGroupable type="0"
  4463. />
  4464. </product>
  4465. <product id="POLARIS_SLINGSHOT"
  4466. name="Polaris Slingshot"
  4467. series="10"
  4468. latestVersion="1.1.2"
  4469. show = "0" >
  4470. <productMenu id="protocol"
  4471. type="0">
  4472. </productMenu>
  4473. <productMenu id="sip"
  4474. type="1" >
  4475. </productMenu>
  4476. <productMenu id="bluetoothIntercom"
  4477. type="1" >
  4478. </productMenu>
  4479. <productMenu id="phone"
  4480. type="2" >
  4481. </productMenu>
  4482. <productMenu id="fmradio"
  4483. type="3" >
  4484. </productMenu>
  4485. <productMenu id="deviceSetting"
  4486. type="1"
  4487. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  4488. <productMenuURL version="1.0"
  4489. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  4490. />
  4491. </productMenu>
  4492. <productMenu id="quickGuide"
  4493. type="1"
  4494. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  4495. size="689KB" >
  4496. </productMenu>
  4497. <productMenu id="userGuide"
  4498. type="1"
  4499. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  4500. size="1.43MB" >
  4501. </productMenu>
  4502. <productID id="5920"
  4503. />
  4504. <productGroupable type="0"
  4505. />
  4506. </product>
  4507. <product id="DW06"
  4508. name="SEDICI DWO6-PRO"
  4509. series="10"
  4510. latestVersion="1.0.2"
  4511. show = "0" >
  4512. <productMenu id="protocol"
  4513. type="0">
  4514. </productMenu>
  4515. <productMenu id="sip"
  4516. type="1" >
  4517. </productMenu>
  4518. <productMenu id="bluetoothIntercom"
  4519. type="1" >
  4520. </productMenu>
  4521. <productMenu id="phone"
  4522. type="2" >
  4523. </productMenu>
  4524. <productMenu id="fmradio"
  4525. type="3" >
  4526. </productMenu>
  4527. <productMenu id="deviceSetting"
  4528. type="1"
  4529. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  4530. </productMenu>
  4531. <productMenu id="quickGuide"
  4532. type="1"
  4533. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  4534. size="529KB" >
  4535. </productMenu>
  4536. <productMenu id="userGuide"
  4537. type="1"
  4538. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  4539. size="4.09MB" >
  4540. </productMenu>
  4541. <productID id="6112"
  4542. />
  4543. <productGroupable type="0"
  4544. />
  4545. </product>
  4546. <product id="DW06A"
  4547. name="SEDICI DWO-6"
  4548. series="10"
  4549. latestVersion="1.0.2"
  4550. show = "0" >
  4551. <productMenu id="protocol"
  4552. type="0">
  4553. </productMenu>
  4554. <productMenu id="sip"
  4555. type="1" >
  4556. </productMenu>
  4557. <productMenu id="bluetoothIntercom"
  4558. type="1" >
  4559. </productMenu>
  4560. <productMenu id="phone"
  4561. type="2" >
  4562. </productMenu>
  4563. <productMenu id="fmradio"
  4564. type="3" >
  4565. </productMenu>
  4566. <productMenu id="deviceSetting"
  4567. type="1"
  4568. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  4569. </productMenu>
  4570. <productMenu id="quickGuide"
  4571. type="1"
  4572. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  4573. size="522KB" >
  4574. </productMenu>
  4575. <productMenu id="userGuide"
  4576. type="1"
  4577. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  4578. size="2.71MB" >
  4579. </productMenu>
  4580. <productID id="6114"
  4581. />
  4582. <productGroupable type="0"
  4583. />
  4584. </product>
  4585. <product id="3SPLUS"
  4586. name="ZILL"
  4587. series="3"
  4588. latestVersion="1.0.4"
  4589. show = "0" >
  4590. <productMenu id="protocol"
  4591. type="0">
  4592. </productMenu>
  4593. <productMenu id="sip"
  4594. type="1" >
  4595. </productMenu>
  4596. <productMenu id="bluetoothIntercom"
  4597. type="1" >
  4598. </productMenu>
  4599. <productMenu id="deviceSetting"
  4600. type="1"
  4601. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  4602. </productMenu>
  4603. <productMenu id="quickGuide"
  4604. type="1"
  4605. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  4606. size="842KB" >
  4607. </productMenu>
  4608. <productMenu id="userGuide"
  4609. type="1"
  4610. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  4611. size="1.02MB" >
  4612. </productMenu>
  4613. <productID id="6335"
  4614. />
  4615. <productGroupable type="0"
  4616. />
  4617. </product>
  4618. <product id="HD50S"
  4619. name="Boom! Audio 30K"
  4620. series="30"
  4621. latestVersion="3.4"
  4622. show = "0" >
  4623. <productMenu id="protocol"
  4624. type="1"
  4625. url="0">
  4626. </productMenu>
  4627. <productMenu id="wa"
  4628. type="0" >
  4629. </productMenu>
  4630. <productMenu id="sip"
  4631. type="1" >
  4632. </productMenu>
  4633. <productMenu id="meshIntercom"
  4634. type="20" >
  4635. <productMenuType version="2.9.9"
  4636. type="10"
  4637. />
  4638. </productMenu>
  4639. <productMenu id="bluetoothIntercom"
  4640. type="1" >
  4641. </productMenu>
  4642. <productMenu id="phone"
  4643. type="1" >
  4644. </productMenu>
  4645. <productMenu id="music"
  4646. type="1" >
  4647. </productMenu>
  4648. <productMenu id="fmradio"
  4649. type="1" >
  4650. </productMenu>
  4651. <productMenu id="deviceSetting"
  4652. type="1"
  4653. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  4654. <productMenuURL version="3.2"
  4655. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  4656. />
  4657. <productMenuURL version="3.0"
  4658. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  4659. />
  4660. <productMenuURL version="2.2"
  4661. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  4662. />
  4663. </productMenu>
  4664. <productMenu id="quickGuide"
  4665. type="1"
  4666. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  4667. size="1.06MB" >
  4668. </productMenu>
  4669. <productMenu id="userGuide"
  4670. type="1"
  4671. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  4672. size="3.15MB" >
  4673. </productMenu>
  4674. <productMenu id="volume"
  4675. type="1" >
  4676. </productMenu>
  4677. <productID id="3112"
  4678. />
  4679. <productGroupable type="0"
  4680. />
  4681. </product>
  4682. <product id="HD50S"
  4683. name="Boom! Audio N02"
  4684. series="30"
  4685. latestVersion="3.1"
  4686. show = "0" >
  4687. <productMenu id="protocol"
  4688. type="1"
  4689. url="0">
  4690. </productMenu>
  4691. <productMenu id="wa"
  4692. type="2" >
  4693. </productMenu>
  4694. <productMenu id="sip"
  4695. type="1" >
  4696. </productMenu>
  4697. <productMenu id="meshIntercom"
  4698. type="20" >
  4699. <productMenuType version="2.9.9"
  4700. type="10"
  4701. />
  4702. </productMenu>
  4703. <productMenu id="bluetoothIntercom"
  4704. type="1" >
  4705. </productMenu>
  4706. <productMenu id="phone"
  4707. type="1" >
  4708. </productMenu>
  4709. <productMenu id="music"
  4710. type="1" >
  4711. </productMenu>
  4712. <productMenu id="fmradio"
  4713. type="1" >
  4714. </productMenu>
  4715. <productMenu id="deviceSetting"
  4716. type="1"
  4717. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  4718. <productMenuURL version="2.2"
  4719. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  4720. />
  4721. </productMenu>
  4722. <productMenu id="quickGuide"
  4723. type="1"
  4724. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  4725. size="1.06MB" >
  4726. </productMenu>
  4727. <productMenu id="userGuide"
  4728. type="1"
  4729. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  4730. size="3.15MB" >
  4731. </productMenu>
  4732. <productMenu id="volume"
  4733. type="2" >
  4734. </productMenu>
  4735. <productID id="3114"
  4736. />
  4737. <productGroupable type="0"
  4738. />
  4739. </product>
  4740. <product id="HD50S"
  4741. name="Boom Audio 20S"
  4742. series="50"
  4743. latestVersion="2.5.2"
  4744. show = "0" >
  4745. <productMenu id="protocol"
  4746. type="0">
  4747. </productMenu>
  4748. <productMenu id="sip"
  4749. type="1" >
  4750. <productMenuType version="1.0"
  4751. type="0"
  4752. />
  4753. </productMenu>
  4754. <productMenu id="bluetoothIntercom"
  4755. type="1" >
  4756. <productMenuType version="1.0"
  4757. type="0"
  4758. />
  4759. </productMenu>
  4760. <productMenu id="intercomSetting"
  4761. type="1" >
  4762. </productMenu>
  4763. <productMenu id="phone"
  4764. type="2" >
  4765. </productMenu>
  4766. <productMenu id="fmradio"
  4767. type="3" >
  4768. </productMenu>
  4769. <productMenu id="deviceSetting"
  4770. type="1"
  4771. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  4772. <productMenuURL version="2.4"
  4773. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  4774. />
  4775. <productMenuURL version="1.5"
  4776. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  4777. />
  4778. <productMenuURL version="1.4.1"
  4779. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  4780. />
  4781. <productMenuURL version="1.1"
  4782. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  4783. />
  4784. <productMenuURL version="1.0"
  4785. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  4786. />
  4787. </productMenu>
  4788. <productMenu id="quickGuide"
  4789. type="1"
  4790. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  4791. size="264KB" >
  4792. </productMenu>
  4793. <productMenu id="userGuide"
  4794. type="1"
  4795. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  4796. size="3.09MB" >
  4797. </productMenu>
  4798. <productID id="4210"
  4799. />
  4800. <productProductKey key="11"
  4801. />
  4802. <productID id="4230"
  4803. />
  4804. <productProductKey key="11"
  4805. />
  4806. <productGroupable type="1"
  4807. />
  4808. </product>
  4809. <product id="HD50S"
  4810. name="Boom Audio 20S EVO"
  4811. series="50"
  4812. latestVersion="2.5.2"
  4813. show = "0" >
  4814. <productMenu id="protocol"
  4815. type="0">
  4816. </productMenu>
  4817. <productMenu id="sip"
  4818. type="1" >
  4819. <productMenuType version="1.0"
  4820. type="0"
  4821. />
  4822. </productMenu>
  4823. <productMenu id="bluetoothIntercom"
  4824. type="1" >
  4825. <productMenuType version="1.0"
  4826. type="0"
  4827. />
  4828. </productMenu>
  4829. <productMenu id="intercomSetting"
  4830. type="1" >
  4831. </productMenu>
  4832. <productMenu id="phone"
  4833. type="2" >
  4834. </productMenu>
  4835. <productMenu id="fmradio"
  4836. type="3" >
  4837. </productMenu>
  4838. <productMenu id="deviceSetting"
  4839. type="1"
  4840. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  4841. <productMenuURL version="2.4"
  4842. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  4843. />
  4844. <productMenuURL version="1.5"
  4845. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  4846. />
  4847. <productMenuURL version="1.4.1"
  4848. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  4849. />
  4850. <productMenuURL version="1.1"
  4851. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  4852. />
  4853. <productMenuURL version="1.0"
  4854. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  4855. />
  4856. </productMenu>
  4857. <productMenu id="quickGuide"
  4858. type="1"
  4859. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  4860. size="321KB" >
  4861. </productMenu>
  4862. <productMenu id="userGuide"
  4863. type="1"
  4864. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  4865. size="2.46MB" >
  4866. </productMenu>
  4867. <productID id="4230"
  4868. />
  4869. <productProductKey key="27"
  4870. />
  4871. <productGroupable type="1"
  4872. />
  4873. </product>
  4874. <product id="HD50S"
  4875. name="Boom! Audio 10S"
  4876. series="50"
  4877. latestVersion="1.1.3"
  4878. show = "0" >
  4879. <productMenu id="protocol"
  4880. type="0">
  4881. </productMenu>
  4882. <productMenu id="sip"
  4883. type="1" >
  4884. </productMenu>
  4885. <productMenu id="bluetoothIntercom"
  4886. type="1" >
  4887. </productMenu>
  4888. <productMenu id="phone"
  4889. type="2" >
  4890. </productMenu>
  4891. <productMenu id="fmradio"
  4892. type="3" >
  4893. </productMenu>
  4894. <productMenu id="deviceSetting"
  4895. type="1"
  4896. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  4897. </productMenu>
  4898. <productMenu id="quickGuide"
  4899. type="1"
  4900. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  4901. size="538KB" >
  4902. </productMenu>
  4903. <productMenu id="userGuide"
  4904. type="1"
  4905. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  4906. size="1.55MB" >
  4907. </productMenu>
  4908. <productID id="5532"
  4909. />
  4910. <productGroupable type="0"
  4911. />
  4912. </product>
  4913. <product id="HD50S"
  4914. name="Boom! Audio N01 10R"
  4915. series="50"
  4916. latestVersion="1.1.3"
  4917. show = "0" >
  4918. <productMenu id="protocol"
  4919. type="0">
  4920. </productMenu>
  4921. <productMenu id="sip"
  4922. type="1" >
  4923. </productMenu>
  4924. <productMenu id="bluetoothIntercom"
  4925. type="1" >
  4926. </productMenu>
  4927. <productMenu id="phone"
  4928. type="2" >
  4929. </productMenu>
  4930. <productMenu id="fmradio"
  4931. type="3" >
  4932. </productMenu>
  4933. <productMenu id="deviceSetting"
  4934. type="1"
  4935. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  4936. </productMenu>
  4937. <productMenu id="quickGuide"
  4938. type="1"
  4939. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  4940. size="766KB" >
  4941. </productMenu>
  4942. <productMenu id="userGuide"
  4943. type="1"
  4944. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  4945. size="1.45MB" >
  4946. </productMenu>
  4947. <productID id="5522"
  4948. />
  4949. <productGroupable type="0"
  4950. />
  4951. </product>
  4952. <product id="HD50S"
  4953. name="OUTRUSH-R N03"
  4954. series="50"
  4955. latestVersion="1.2.1"
  4956. show = "0" >
  4957. <productMenu id="protocol"
  4958. type="0">
  4959. </productMenu>
  4960. <productMenu id="sip"
  4961. type="1" >
  4962. </productMenu>
  4963. <productMenu id="bluetoothIntercom"
  4964. type="1" >
  4965. </productMenu>
  4966. <productMenu id="phone"
  4967. type="2" >
  4968. </productMenu>
  4969. <productMenu id="fmradio"
  4970. type="3" >
  4971. </productMenu>
  4972. <productMenu id="deviceSetting"
  4973. type="1"
  4974. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  4975. </productMenu>
  4976. <productMenu id="userGuide"
  4977. type="1"
  4978. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  4979. size="660KB" >
  4980. </productMenu>
  4981. <productID id="5434"
  4982. />
  4983. <productGroupable type="0"
  4984. />
  4985. </product>
  4986. <product id="HD50S"
  4987. name="OUTRUSH-R N03"
  4988. series="50"
  4989. latestVersion="2.0"
  4990. show = "0" >
  4991. <productMenu id="protocol"
  4992. type="3" >
  4993. </productMenu>
  4994. <productMenu id="sip"
  4995. type="1" >
  4996. </productMenu>
  4997. <productMenu id="bluetoothIntercom"
  4998. type="1" >
  4999. </productMenu>
  5000. <productMenu id="phone"
  5001. type="1" >
  5002. </productMenu>
  5003. <productMenu id="fmradio"
  5004. type="1" >
  5005. </productMenu>
  5006. <productMenu id="deviceSetting"
  5007. type="1"
  5008. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  5009. </productMenu>
  5010. <productMenu id="userGuide"
  5011. type="1"
  5012. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  5013. size="1.14MB" >
  5014. </productMenu>
  5015. <productID id="5441"
  5016. />
  5017. <productGroupable type="0"
  5018. />
  5019. </product>
  5020. <product id="5R"
  5021. name="5R"
  5022. series="5"
  5023. latestVersion="1.0.1"
  5024. show = "1" >
  5025. <productMenu id="protocol"
  5026. type="3" >
  5027. </productMenu>
  5028. <productMenu id="sip"
  5029. type="1" >
  5030. </productMenu>
  5031. <productMenu id="bluetoothIntercom"
  5032. type="1" >
  5033. </productMenu>
  5034. <productMenu id="phone"
  5035. type="1" >
  5036. </productMenu>
  5037. <productMenu id="fmradio"
  5038. type="1" >
  5039. </productMenu>
  5040. <productMenu id="deviceSetting"
  5041. type="1"
  5042. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  5043. </productMenu>
  5044. <productMenu id="quickGuide"
  5045. type="1"
  5046. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  5047. size="934KB" >
  5048. </productMenu>
  5049. <productMenu id="userGuide"
  5050. type="1"
  5051. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  5052. size="1.14MB" >
  5053. </productMenu>
  5054. <productID id="5591"
  5055. />
  5056. <productGroupable type="0"
  5057. />
  5058. </product>
  5059. <product id="5R"
  5060. name="5R LITE"
  5061. series="5"
  5062. latestVersion="1.0.1"
  5063. show = "1" >
  5064. <productMenu id="protocol"
  5065. type="3" >
  5066. </productMenu>
  5067. <productMenu id="sip"
  5068. type="1" >
  5069. </productMenu>
  5070. <productMenu id="bluetoothIntercom"
  5071. type="1" >
  5072. </productMenu>
  5073. <productMenu id="phone"
  5074. type="1" >
  5075. </productMenu>
  5076. <productMenu id="fmradio"
  5077. type="1" >
  5078. </productMenu>
  5079. <productMenu id="deviceSetting"
  5080. type="1"
  5081. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  5082. </productMenu>
  5083. <productMenu id="quickGuide"
  5084. type="1"
  5085. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_LITE_1.0.0_en_220511.pdf"
  5086. size="934KB" >
  5087. </productMenu>
  5088. <productMenu id="userGuide"
  5089. type="1"
  5090. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_LITE_1.0.2_en_230106.pdf"
  5091. size="1.14MB" >
  5092. </productMenu>
  5093. <productID id="5592"
  5094. />
  5095. <productGroupable type="0"
  5096. />
  5097. </product>
  5098. <product id="5R"
  5099. name="Ridekont 5R"
  5100. series="5"
  5101. latestVersion="1.0"
  5102. show = "0" >
  5103. <productMenu id="protocol"
  5104. type="3" >
  5105. </productMenu>
  5106. <productMenu id="sip"
  5107. type="1" >
  5108. </productMenu>
  5109. <productMenu id="bluetoothIntercom"
  5110. type="1" >
  5111. </productMenu>
  5112. <productMenu id="phone"
  5113. type="1" >
  5114. </productMenu>
  5115. <productMenu id="fmradio"
  5116. type="1" >
  5117. </productMenu>
  5118. <productMenu id="deviceSetting"
  5119. type="1"
  5120. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  5121. </productMenu>
  5122. <productMenu id="quickGuide"
  5123. type="1"
  5124. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  5125. size="934KB" >
  5126. </productMenu>
  5127. <productMenu id="userGuide"
  5128. type="1"
  5129. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  5130. size="1.14MB" >
  5131. </productMenu>
  5132. <productID id="5593"
  5133. />
  5134. <productGroupable type="0"
  5135. />
  5136. </product>
  5137. <product id="5R"
  5138. name="Ridekont 5R LITE"
  5139. series="5"
  5140. latestVersion="1.0"
  5141. show = "0" >
  5142. <productMenu id="protocol"
  5143. type="3" >
  5144. </productMenu>
  5145. <productMenu id="sip"
  5146. type="1" >
  5147. </productMenu>
  5148. <productMenu id="bluetoothIntercom"
  5149. type="1" >
  5150. </productMenu>
  5151. <productMenu id="phone"
  5152. type="1" >
  5153. </productMenu>
  5154. <productMenu id="fmradio"
  5155. type="1" >
  5156. </productMenu>
  5157. <productMenu id="deviceSetting"
  5158. type="1"
  5159. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  5160. </productMenu>
  5161. <productMenu id="quickGuide"
  5162. type="1"
  5163. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_LITE_1.0.0_en_220511.pdf"
  5164. size="934KB" >
  5165. </productMenu>
  5166. <productMenu id="userGuide"
  5167. type="1"
  5168. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_LITE_1.0.2_en_230106.pdf"
  5169. size="1.14MB" >
  5170. </productMenu>
  5171. <productID id="5594"
  5172. />
  5173. <productGroupable type="0"
  5174. />
  5175. </product>
  5176. <product id="C20"
  5177. name="C20"
  5178. series="5"
  5179. latestVersion="1.0"
  5180. show = "0" >
  5181. <productMenu id="protocol"
  5182. type="3" >
  5183. </productMenu>
  5184. <productMenu id="sip"
  5185. type="1" >
  5186. </productMenu>
  5187. <productMenu id="bluetoothIntercom"
  5188. type="1" >
  5189. </productMenu>
  5190. <productMenu id="phone"
  5191. type="1" >
  5192. </productMenu>
  5193. <productMenu id="deviceSetting"
  5194. type="1"
  5195. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  5196. </productMenu>
  5197. <productMenu id="quickGuide"
  5198. type="1"
  5199. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  5200. size="934KB" >
  5201. </productMenu>
  5202. <productMenu id="userGuide"
  5203. type="1"
  5204. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  5205. size="1.14MB" >
  5206. </productMenu>
  5207. <productID id="3701"
  5208. />
  5209. <productGroupable type="0"
  5210. />
  5211. </product>
  5212. <product id="C10"
  5213. name="C10"
  5214. series="5"
  5215. latestVersion="1.2"
  5216. show = "0" >
  5217. <productMenu id="protocol"
  5218. type="3" >
  5219. </productMenu>
  5220. <productMenu id="sip"
  5221. type="1" >
  5222. </productMenu>
  5223. <productMenu id="bluetoothIntercom"
  5224. type="1" >
  5225. </productMenu>
  5226. <productMenu id="phone"
  5227. type="1" >
  5228. </productMenu>
  5229. <productMenu id="fmradio"
  5230. type="0" >
  5231. </productMenu>
  5232. <productMenu id="deviceSetting"
  5233. type="1"
  5234. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10.xml" >
  5235. </productMenu>
  5236. <productMenu id="userGuide"
  5237. type="1"
  5238. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C10_1.0.0_sc_221228.pdf"
  5239. size="1.14MB" >
  5240. </productMenu>
  5241. <productID id="5595"
  5242. />
  5243. <productGroupable type="0"
  5244. />
  5245. </product>
  5246. <product id="B10"
  5247. name="B10"
  5248. series="5"
  5249. latestVersion="1.0"
  5250. show = "0" >
  5251. <productMenu id="protocol"
  5252. type="3" >
  5253. </productMenu>
  5254. <productMenu id="sip"
  5255. type="1" >
  5256. </productMenu>
  5257. <productMenu id="bluetoothIntercom"
  5258. type="1" >
  5259. </productMenu>
  5260. <productMenu id="phone"
  5261. type="1" >
  5262. </productMenu>
  5263. <productMenu id="fmradio"
  5264. type="0" >
  5265. </productMenu>
  5266. <productMenu id="deviceSetting"
  5267. type="1"
  5268. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10.xml" >
  5269. </productMenu>
  5270. <productMenu id="userGuide"
  5271. type="1"
  5272. url=""
  5273. size="1.14MB" >
  5274. </productMenu>
  5275. <productID id="5596"
  5276. />
  5277. <productGroupable type="0"
  5278. />
  5279. </product>
  5280. <product id="ACSRAM"
  5281. name="ACS-RAM"
  5282. series="ACS"
  5283. latestVersion="1.0.3"
  5284. show = "1" >
  5285. <productMenu id="protocol"
  5286. type="3" >
  5287. </productMenu>
  5288. <productMenu id="sip"
  5289. type="1" >
  5290. </productMenu>
  5291. <productMenu id="bluetoothIntercom"
  5292. type="1" >
  5293. </productMenu>
  5294. <productMenu id="deviceSetting"
  5295. type="1"
  5296. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  5297. </productMenu>
  5298. <productMenu id="quickGuide"
  5299. type="1"
  5300. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  5301. size="344KB" >
  5302. </productMenu>
  5303. <productMenu id="userGuide"
  5304. type="1"
  5305. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  5306. size="1.14MB" >
  5307. </productMenu>
  5308. <productID id="3400"
  5309. />
  5310. <productGroupable type="0"
  5311. />
  5312. </product>
  5313. <product id="ACS10"
  5314. name="ACS10"
  5315. series="ACS"
  5316. latestVersion="1.0.2"
  5317. show = "1" >
  5318. <productMenu id="protocol"
  5319. type="0">
  5320. </productMenu>
  5321. <productMenu id="sip"
  5322. type="1" >
  5323. </productMenu>
  5324. <productMenu id="bluetoothIntercom"
  5325. type="1" >
  5326. </productMenu>
  5327. <productMenu id="phone"
  5328. type="2" >
  5329. </productMenu>
  5330. <productMenu id="deviceSetting"
  5331. type="1"
  5332. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  5333. </productMenu>
  5334. <productMenu id="quickGuide"
  5335. type="1"
  5336. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  5337. size="970KB" >
  5338. </productMenu>
  5339. <productMenu id="userGuide"
  5340. type="1"
  5341. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  5342. size="1.26MB" >
  5343. </productMenu>
  5344. <productID id="3300"
  5345. />
  5346. <productGroupable type="0"
  5347. />
  5348. </product>
  5349. <product id="DWO7ProMesh"
  5350. name="DWO 7 Pro Mesh"
  5351. series="50"
  5352. latestVersion="1.0"
  5353. show = "0" >
  5354. <productMenu id="protocol"
  5355. type="2" >
  5356. </productMenu>
  5357. <productMenu id="alexa"
  5358. type="0" >
  5359. </productMenu>
  5360. <productMenu id="ota"
  5361. type="2" >
  5362. <otaPackages>
  5363. <package
  5364. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.0-build7.img"
  5365. size="2945812"
  5366. />
  5367. </otaPackages>
  5368. </productMenu>
  5369. <productMenu id="wa"
  5370. type="0" >
  5371. </productMenu>
  5372. <productMenu id="meshIntercom"
  5373. type="20" >
  5374. </productMenu>
  5375. <productMenu id="phone"
  5376. type="1" >
  5377. </productMenu>
  5378. <productMenu id="music"
  5379. type="1" >
  5380. </productMenu>
  5381. <productMenu id="fmradio"
  5382. type="1" >
  5383. </productMenu>
  5384. <productMenu id="musicSharing"
  5385. type="0" >
  5386. </productMenu>
  5387. <productMenu id="deviceSetting"
  5388. type="1"
  5389. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml" >
  5390. </productMenu>
  5391. <productMenu id="quickGuide"
  5392. type="1"
  5393. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.0.0_en_230911.pdf"
  5394. size="1.12MB" >
  5395. </productMenu>
  5396. <productMenu id="userGuide"
  5397. type="1"
  5398. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.0.0_en_230908.pdf"
  5399. size="2.0MB" >
  5400. </productMenu>
  5401. <productMenu id="volume"
  5402. type="12" >
  5403. </productMenu>
  5404. <productMenu id="battery"
  5405. type="1" >
  5406. </productMenu>
  5407. <productID id="6806"
  5408. />
  5409. <productGroupable type="0"
  5410. />
  5411. </product>
  5412. <product id="MeshStation"
  5413. name="Mesh Station"
  5414. series="50"
  5415. latestVersion="0.9"
  5416. show = "0" >
  5417. <productMenu id="protocol"
  5418. type="2" >
  5419. </productMenu>
  5420. <productMenu id="meshIntercom"
  5421. type="20"
  5422. url="99" >
  5423. </productMenu>
  5424. <productID id="3161"
  5425. />
  5426. <productGroupable type="0"
  5427. />
  5428. </product>
  5429. </products>
  5430. </sna>