snm.xml 187 KB

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