snm.xml 184 KB

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