snm.xml 199 KB

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