snm.xml 199 KB

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