snm.xml 185 KB

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