snm.xml 204 KB

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