snm.xml 209 KB

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