snm.xml 231 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20221120" 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/QuickStartGuide_app_WiFi_Adapter_3.0.0_en_220203.pdf"
  10. />
  11. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  12. />
  13. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  14. />
  15. <wim url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_IMPULSE_1.2.0_en_220114.pdf"
  16. />
  17. <wst url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Stryker_1.0.0_en_220114.pdf"
  18. />
  19. <support url="https://www.sena.com/support"
  20. />
  21. <forum url="https://community.sena.com/hc/en-us"
  22. />
  23. <sip url="https://community.sena.com/hc/en-us"
  24. />
  25. <productKeys>
  26. <productKey id="4210"
  27. userPSKey="5"
  28. valueLength="1"
  29. />
  30. <productKey id="4230"
  31. userPSKey="5"
  32. valueLength="1"
  33. />
  34. </productKeys>
  35. <!--
  36. <menus>
  37. <menu id="protocol" />
  38. <menu id="alexa" />
  39. <menu id="ota" />
  40. <menu id="wa" />
  41. <menu id="manager" />
  42. <menu id="sip" />
  43. <menu id="meshIntercom" />
  44. <menu id="bluetoothIntercom" />
  45. <menu id="music" />
  46. <menu id="musicSharing" />
  47. <menu id="fmradio" />
  48. <menu id="phone" />
  49. <menu id="led" />
  50. <menu id="volume" />
  51. <menu id="battery" />
  52. <menu id="deviceSetting" />
  53. <menu id="quickGuide" />
  54. <menu id="userGuide" />
  55. </menus>
  56. -->
  57. <serieses>
  58. <series id="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_05_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_05_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_05_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/QuickStartGuide_app_50R_2.0.0_en_220517.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_05_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.1"
  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_05_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.1.0_en_220509.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.1.0_en_220509.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_2.0.0_en_220701.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_2.0.0_en_220701.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="Impulse"
  788. name="Impulse"
  789. series="Helmet"
  790. latestVersion="2.0"
  791. show = "0" >
  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="3" >
  812. </productMenu>
  813. <productMenu id="meshIntercom"
  814. type="20" >
  815. </productMenu>
  816. <productMenu id="bluetoothIntercom"
  817. type="1" >
  818. </productMenu>
  819. <productMenu id="phone"
  820. type="1" >
  821. </productMenu>
  822. <productMenu id="music"
  823. type="1" >
  824. </productMenu>
  825. <productMenu id="fmradio"
  826. type="1" >
  827. </productMenu>
  828. <productMenu id="deviceSetting"
  829. type="1"
  830. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  831. </productMenu>
  832. <productMenu id="quickGuide"
  833. type="1"
  834. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.3.0_en_221006.pdf"
  835. size="344KB" >
  836. </productMenu>
  837. <productMenu id="userGuide"
  838. type="1"
  839. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Impulse_1.5.0_en_221006.pdf"
  840. size="3.41MB" >
  841. </productMenu>
  842. <productMenu id="volume"
  843. type="11" >
  844. </productMenu>
  845. <productMenu id="battery"
  846. type="1" >
  847. </productMenu>
  848. <productID id="3221"
  849. />
  850. <productGroupable type="0"
  851. />
  852. </product>
  853. <product id="Stryker"
  854. name="Stryker"
  855. series="Helmet"
  856. latestVersion="1.1.1"
  857. show = "1" >
  858. <productMenu id="protocol"
  859. type="2" >
  860. </productMenu>
  861. <productMenu id="alexa"
  862. type="0" >
  863. </productMenu>
  864. <productMenu id="ota"
  865. type="0" >
  866. </productMenu>
  867. <productMenu id="wa"
  868. type="1" >
  869. </productMenu>
  870. <productMenu id="manager"
  871. type="0" >
  872. </productMenu>
  873. <productMenu id="sip"
  874. type="1" >
  875. </productMenu>
  876. <productMenu id="led"
  877. type="1" >
  878. <productMenuType version="1.0.1"
  879. type="2"
  880. />
  881. <productMenuType version="1.0"
  882. type="1"
  883. />
  884. </productMenu>
  885. <productMenu id="meshIntercom"
  886. type="20" >
  887. </productMenu>
  888. <productMenu id="bluetoothIntercom"
  889. type="1" >
  890. </productMenu>
  891. <productMenu id="phone"
  892. type="1" >
  893. </productMenu>
  894. <productMenu id="music"
  895. type="1" >
  896. </productMenu>
  897. <productMenu id="fmradio"
  898. type="1" >
  899. </productMenu>
  900. <productMenu id="deviceSetting"
  901. type="1"
  902. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  903. <productMenuURL version="1.0.4"
  904. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  905. />
  906. </productMenu>
  907. <productMenu id="quickGuide"
  908. type="1"
  909. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Stryker_1.1.0_en_221006.pdf"
  910. size="344KB" >
  911. </productMenu>
  912. <productMenu id="userGuide"
  913. type="1"
  914. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Stryker_1.2.0_en_221006.pdf"
  915. size="3.41MB" >
  916. </productMenu>
  917. <productMenu id="volume"
  918. type="11" >
  919. </productMenu>
  920. <productMenu id="battery"
  921. type="1" >
  922. </productMenu>
  923. <productID id="3154"
  924. />
  925. <productGroupable type="0"
  926. />
  927. </product>
  928. <product id="FURY"
  929. name="FURY"
  930. series="Helmet"
  931. latestVersion="1.0"
  932. show = "0" >
  933. <productMenu id="protocol"
  934. type="2" >
  935. </productMenu>
  936. <productMenu id="alexa"
  937. type="0" >
  938. </productMenu>
  939. <productMenu id="ota"
  940. type="0" >
  941. </productMenu>
  942. <productMenu id="wa"
  943. type="0" >
  944. </productMenu>
  945. <productMenu id="meshIntercom"
  946. type="20" >
  947. </productMenu>
  948. <productMenu id="phone"
  949. type="1" >
  950. </productMenu>
  951. <productMenu id="music"
  952. type="1" >
  953. </productMenu>
  954. <productMenu id="fmradio"
  955. type="1" >
  956. </productMenu>
  957. <productMenu id="deviceSetting"
  958. type="1"
  959. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  960. </productMenu>
  961. <productMenu id="quickGuide"
  962. type="1"
  963. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  964. size="1.12MB" >
  965. </productMenu>
  966. <productMenu id="userGuide"
  967. type="1"
  968. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  969. size="2.0MB" >
  970. </productMenu>
  971. <productMenu id="volume"
  972. type="13" >
  973. </productMenu>
  974. <productMenu id="battery"
  975. type="1" >
  976. </productMenu>
  977. <productID id="5552"
  978. />
  979. <productGroupable type="0"
  980. />
  981. </product>
  982. <product id="HD50S"
  983. name="FURY N04"
  984. series="Helmet"
  985. latestVersion="1.0"
  986. show = "0" >
  987. <productMenu id="protocol"
  988. type="2" >
  989. </productMenu>
  990. <productMenu id="alexa"
  991. type="0" >
  992. </productMenu>
  993. <productMenu id="ota"
  994. type="0" >
  995. </productMenu>
  996. <productMenu id="wa"
  997. type="0" >
  998. </productMenu>
  999. <productMenu id="meshIntercom"
  1000. type="20" >
  1001. </productMenu>
  1002. <productMenu id="phone"
  1003. type="1" >
  1004. </productMenu>
  1005. <productMenu id="music"
  1006. type="1" >
  1007. </productMenu>
  1008. <productMenu id="fmradio"
  1009. type="1" >
  1010. </productMenu>
  1011. <productMenu id="deviceSetting"
  1012. type="1"
  1013. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  1014. </productMenu>
  1015. <productMenu id="quickGuide"
  1016. type="1"
  1017. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.0_en_220831.pdf"
  1018. size="1.12MB" >
  1019. </productMenu>
  1020. <productMenu id="userGuide"
  1021. type="1"
  1022. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  1023. size="2.0MB" >
  1024. </productMenu>
  1025. <productMenu id="volume"
  1026. type="13" >
  1027. </productMenu>
  1028. <productMenu id="battery"
  1029. type="1" >
  1030. </productMenu>
  1031. <productID id="5553"
  1032. />
  1033. <productGroupable type="0"
  1034. />
  1035. </product>
  1036. <product id="SRL_Mesh"
  1037. name="SRL-Mesh"
  1038. series="SRL"
  1039. latestVersion="1.1"
  1040. show = "1" >
  1041. <productMenu id="protocol"
  1042. type="2" >
  1043. </productMenu>
  1044. <productMenu id="alexa"
  1045. type="0" >
  1046. </productMenu>
  1047. <productMenu id="ota"
  1048. type="0" >
  1049. </productMenu>
  1050. <productMenu id="wa"
  1051. type="1" >
  1052. </productMenu>
  1053. <productMenu id="sip"
  1054. type="1" >
  1055. </productMenu>
  1056. <productMenu id="meshIntercom"
  1057. type="20" >
  1058. </productMenu>
  1059. <productMenu id="bluetoothIntercom"
  1060. type="1" >
  1061. </productMenu>
  1062. <productMenu id="phone"
  1063. type="1" >
  1064. </productMenu>
  1065. <productMenu id="music"
  1066. type="1" >
  1067. </productMenu>
  1068. <productMenu id="fmradio"
  1069. type="1" >
  1070. </productMenu>
  1071. <productMenu id="deviceSetting"
  1072. type="1"
  1073. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_05_HKAudio.xml" >
  1074. <productMenuURL version="1.0.3"
  1075. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1076. />
  1077. </productMenu>
  1078. <productMenu id="quickGuide"
  1079. type="1"
  1080. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_SRL-Mesh_1.0.0_en_220401.pdf"
  1081. size="344KB" >
  1082. </productMenu>
  1083. <productMenu id="userGuide"
  1084. type="1"
  1085. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_SRL-Mesh_1.1.0_en_220805.pdf"
  1086. size="3.41MB" >
  1087. </productMenu>
  1088. <productMenu id="volume"
  1089. type="11" >
  1090. </productMenu>
  1091. <productMenu id="battery"
  1092. type="1" >
  1093. </productMenu>
  1094. <productID id="3216"
  1095. />
  1096. <productGroupable type="0"
  1097. />
  1098. </product>
  1099. <product id="SRL_EXT"
  1100. name="SRL-EXT"
  1101. series="SRL"
  1102. latestVersion="1.1"
  1103. show = "1" >
  1104. <productMenu id="protocol"
  1105. type="2" >
  1106. </productMenu>
  1107. <productMenu id="alexa"
  1108. type="0" >
  1109. </productMenu>
  1110. <productMenu id="ota"
  1111. type="0" >
  1112. </productMenu>
  1113. <productMenu id="wa"
  1114. type="0" >
  1115. </productMenu>
  1116. <productMenu id="sip"
  1117. type="1" >
  1118. </productMenu>
  1119. <productMenu id="meshIntercom"
  1120. type="20" >
  1121. </productMenu>
  1122. <productMenu id="bluetoothIntercom"
  1123. type="1" >
  1124. </productMenu>
  1125. <productMenu id="phone"
  1126. type="1" >
  1127. </productMenu>
  1128. <productMenu id="music"
  1129. type="1" >
  1130. </productMenu>
  1131. <productMenu id="fmradio"
  1132. type="1" >
  1133. </productMenu>
  1134. <productMenu id="deviceSetting"
  1135. type="1"
  1136. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_05_HKAudio.xml" >
  1137. <productMenuURL version="1.0.3"
  1138. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1139. />
  1140. </productMenu>
  1141. <productMenu id="quickGuide"
  1142. type="1"
  1143. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_SRL-EXT_1.0.0_en_220401.pdf"
  1144. size="344KB" >
  1145. </productMenu>
  1146. <productMenu id="userGuide"
  1147. type="1"
  1148. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_SRL-EXT_1.1.0_en_220805.pdf"
  1149. size="3.41MB" >
  1150. </productMenu>
  1151. <productMenu id="volume"
  1152. type="11" >
  1153. </productMenu>
  1154. <productMenu id="battery"
  1155. type="1" >
  1156. </productMenu>
  1157. <productID id="3212"
  1158. />
  1159. <productGroupable type="0"
  1160. />
  1161. </product>
  1162. <product id="SRL2"
  1163. name="SRL2"
  1164. series="SRL"
  1165. latestVersion="1.0.7"
  1166. show = "1" >
  1167. <productMenu id="protocol"
  1168. type="0">
  1169. </productMenu>
  1170. <productMenu id="sip"
  1171. type="1" >
  1172. </productMenu>
  1173. <productMenu id="bluetoothIntercom"
  1174. type="1" >
  1175. </productMenu>
  1176. <productMenu id="intercomSetting"
  1177. type="1" >
  1178. </productMenu>
  1179. <productMenu id="phone"
  1180. type="2" >
  1181. </productMenu>
  1182. <productMenu id="fmradio"
  1183. type="3" >
  1184. </productMenu>
  1185. <productMenu id="deviceSetting"
  1186. type="1"
  1187. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  1188. </productMenu>
  1189. <productMenu id="quickGuide"
  1190. type="1"
  1191. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.1.0_en_220922.pdf"
  1192. size="846KB" >
  1193. </productMenu>
  1194. <productMenu id="userGuide"
  1195. type="1"
  1196. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  1197. size="1.18MB" >
  1198. </productMenu>
  1199. <productID id="4530"
  1200. />
  1201. <productGroupable type="1"
  1202. />
  1203. </product>
  1204. <product id="Neotec2"
  1205. name="SRL Neotec2"
  1206. series="SRL"
  1207. latestVersion="1.1.3"
  1208. show = "1" >
  1209. <productMenu id="protocol"
  1210. type="0">
  1211. </productMenu>
  1212. <productMenu id="sip"
  1213. type="1" >
  1214. </productMenu>
  1215. <productMenu id="bluetoothIntercom"
  1216. type="1" >
  1217. </productMenu>
  1218. <productMenu id="intercomSetting"
  1219. type="1" >
  1220. </productMenu>
  1221. <productMenu id="phone"
  1222. type="2" >
  1223. </productMenu>
  1224. <productMenu id="fmradio"
  1225. type="3" >
  1226. </productMenu>
  1227. <productMenu id="deviceSetting"
  1228. type="1"
  1229. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  1230. </productMenu>
  1231. <productMenu id="quickGuide"
  1232. type="1"
  1233. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL_for_Shoei_Neotec2_1.1.0_en_220922.pdf"
  1234. size="796KB" >
  1235. </productMenu>
  1236. <productMenu id="userGuide"
  1237. type="1"
  1238. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.0_en_220922.pdf"
  1239. size="1.90MB" >
  1240. </productMenu>
  1241. <productID id="4510"
  1242. />
  1243. <productGroupable type="1"
  1244. />
  1245. </product>
  1246. <product id="X-COM2"
  1247. name="X-COM2"
  1248. series="20"
  1249. latestVersion="1.0.5"
  1250. show = "0" >
  1251. <productMenu id="protocol"
  1252. type="0">
  1253. </productMenu>
  1254. <productMenu id="sip"
  1255. type="1" >
  1256. </productMenu>
  1257. <productMenu id="bluetoothIntercom"
  1258. type="1" >
  1259. </productMenu>
  1260. <productMenu id="intercomSetting"
  1261. type="1" >
  1262. </productMenu>
  1263. <productMenu id="phone"
  1264. type="2" >
  1265. </productMenu>
  1266. <productMenu id="fmradio"
  1267. type="3" >
  1268. </productMenu>
  1269. <productMenu id="deviceSetting"
  1270. type="1"
  1271. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  1272. </productMenu>
  1273. <productMenu id="quickGuide"
  1274. type="1"
  1275. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  1276. size="796KB" >
  1277. </productMenu>
  1278. <productMenu id="userGuide"
  1279. type="1"
  1280. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  1281. size="1.90MB" >
  1282. </productMenu>
  1283. <productID id="2030"
  1284. />
  1285. <productGroupable type="1"
  1286. />
  1287. </product>
  1288. <product id="SPIDER_ST1"
  1289. name="SPIDER ST1"
  1290. nameGuide="SPIDER ST1 (2022~)"
  1291. series="SPIDER"
  1292. latestVersion="2.0.8"
  1293. show = "1" >
  1294. <productMenu id="protocol"
  1295. type="2" >
  1296. </productMenu>
  1297. <productMenu id="alexa"
  1298. type="0" >
  1299. </productMenu>
  1300. <productMenu id="ota"
  1301. type="0" >
  1302. </productMenu>
  1303. <productMenu id="wa"
  1304. type="0" >
  1305. </productMenu>
  1306. <productMenu id="meshIntercom"
  1307. type="20" >
  1308. </productMenu>
  1309. <productMenu id="phone"
  1310. type="1" >
  1311. </productMenu>
  1312. <productMenu id="music"
  1313. type="1" >
  1314. </productMenu>
  1315. <productMenu id="musicSharing"
  1316. type="0" >
  1317. </productMenu>
  1318. <productMenu id="deviceSetting"
  1319. type="1"
  1320. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA.xml" >
  1321. </productMenu>
  1322. <productMenu id="quickGuide"
  1323. type="1"
  1324. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_SPIDER_ST1_2.0.0_en_220303.pdf"
  1325. size="1.12MB" >
  1326. </productMenu>
  1327. <productMenu id="userGuide"
  1328. type="1"
  1329. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.2.0_en_220923.pdf"
  1330. size="2.0MB" >
  1331. </productMenu>
  1332. <productMenu id="videoGuide"
  1333. type="1"
  1334. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  1335. size="3.41MB" >
  1336. </productMenu>
  1337. <productMenu id="volume"
  1338. type="12" >
  1339. </productMenu>
  1340. <productMenu id="battery"
  1341. type="1" >
  1342. </productMenu>
  1343. <productID id="6800"
  1344. />
  1345. <productGroupable type="0"
  1346. />
  1347. </product>
  1348. <product id="SPIDER_ST1"
  1349. name="SPIDER ST1"
  1350. nameGuide="SPIDER ST1 (~2021)"
  1351. series="SPIDER"
  1352. latestVersion="1.1.7"
  1353. show = "1" >
  1354. <productMenu id="protocol"
  1355. type="2" >
  1356. </productMenu>
  1357. <productMenu id="alexa"
  1358. type="0" >
  1359. </productMenu>
  1360. <productMenu id="ota"
  1361. type="0" >
  1362. </productMenu>
  1363. <productMenu id="wa"
  1364. type="0" >
  1365. </productMenu>
  1366. <productMenu id="meshIntercom"
  1367. type="20" >
  1368. </productMenu>
  1369. <productMenu id="phone"
  1370. type="1" >
  1371. </productMenu>
  1372. <productMenu id="music"
  1373. type="1" >
  1374. </productMenu>
  1375. <productMenu id="deviceSetting"
  1376. type="1"
  1377. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  1378. </productMenu>
  1379. <productMenu id="quickGuide"
  1380. type="1"
  1381. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_SPIDER_ST1_1.1.0_en_210531.pdf"
  1382. size="1.12MB" >
  1383. </productMenu>
  1384. <productMenu id="userGuide"
  1385. type="1"
  1386. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_SPIDER_ST1_1.1.0_en_210531.pdf"
  1387. size="2.0MB" >
  1388. </productMenu>
  1389. <productMenu id="videoGuide"
  1390. type="1"
  1391. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  1392. size="3.41MB" >
  1393. </productMenu>
  1394. <productMenu id="volume"
  1395. type="11" >
  1396. <productMenuType version="1.1.6"
  1397. type="14"/>
  1398. </productMenu>
  1399. <productMenu id="battery"
  1400. type="1" >
  1401. </productMenu>
  1402. <productID id="6510"
  1403. />
  1404. <productGroupable type="0"
  1405. />
  1406. </product>
  1407. <product id="SPIDER_RT1"
  1408. name="SPIDER RT1"
  1409. nameGuide="SPIDER RT1 (2022~)"
  1410. series="SPIDER"
  1411. latestVersion="2.0"
  1412. show = "1" >
  1413. <productMenu id="protocol"
  1414. type="2" >
  1415. </productMenu>
  1416. <productMenu id="alexa"
  1417. type="0" >
  1418. </productMenu>
  1419. <productMenu id="ota"
  1420. type="0" >
  1421. </productMenu>
  1422. <productMenu id="wa"
  1423. type="0" >
  1424. </productMenu>
  1425. <productMenu id="meshIntercom"
  1426. type="20" >
  1427. </productMenu>
  1428. <productMenu id="phone"
  1429. type="1" >
  1430. </productMenu>
  1431. <productMenu id="music"
  1432. type="1" >
  1433. </productMenu>
  1434. <productMenu id="musicSharing"
  1435. type="0" >
  1436. </productMenu>
  1437. <productMenu id="deviceSetting"
  1438. type="1"
  1439. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA.xml" >
  1440. </productMenu>
  1441. <productMenu id="quickGuide"
  1442. type="1"
  1443. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_SPIDER_RT1_2.0.0_en_220613.pdf"
  1444. size="1.12MB" >
  1445. </productMenu>
  1446. <productMenu id="userGuide"
  1447. type="1"
  1448. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_2.1.0_en_220923.pdf"
  1449. size="2.0MB" >
  1450. </productMenu>
  1451. <productMenu id="videoGuide"
  1452. type="1"
  1453. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  1454. size="3.41MB" >
  1455. </productMenu>
  1456. <productMenu id="volume"
  1457. type="12" >
  1458. </productMenu>
  1459. <productMenu id="battery"
  1460. type="1" >
  1461. </productMenu>
  1462. <productID id="6810"
  1463. />
  1464. <productGroupable type="0"
  1465. />
  1466. </product>
  1467. <product id="SPIDER_RT1"
  1468. name="SPIDER RT1"
  1469. nameGuide="SPIDER RT1 (~2021)"
  1470. series="SPIDER"
  1471. latestVersion="1.1.7"
  1472. show = "1" >
  1473. <productMenu id="protocol"
  1474. type="2" >
  1475. </productMenu>
  1476. <productMenu id="alexa"
  1477. type="0" >
  1478. </productMenu>
  1479. <productMenu id="ota"
  1480. type="0" >
  1481. </productMenu>
  1482. <productMenu id="wa"
  1483. type="0" >
  1484. </productMenu>
  1485. <productMenu id="meshIntercom"
  1486. type="20" >
  1487. </productMenu>
  1488. <productMenu id="phone"
  1489. type="1" >
  1490. </productMenu>
  1491. <productMenu id="music"
  1492. type="1" >
  1493. </productMenu>
  1494. <productMenu id="deviceSetting"
  1495. type="1"
  1496. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  1497. </productMenu>
  1498. <productMenu id="quickGuide"
  1499. type="1"
  1500. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_SPIDER_RT1_1.1.0_en_210528.pdf"
  1501. size="1.32MB" >
  1502. </productMenu>
  1503. <productMenu id="userGuide"
  1504. type="1"
  1505. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_SPIDER_RT1_1.1.0_en_210528.pdf"
  1506. size="1.79MB" >
  1507. </productMenu>
  1508. <productMenu id="videoGuide"
  1509. type="1"
  1510. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  1511. size="3.41MB" >
  1512. </productMenu>
  1513. <productMenu id="volume"
  1514. type="11" >
  1515. <productMenuType version="1.1.6"
  1516. type="14"/>
  1517. </productMenu>
  1518. <productMenu id="battery"
  1519. type="1" >
  1520. </productMenu>
  1521. <productID id="6500"
  1522. />
  1523. <productGroupable type="0"
  1524. />
  1525. </product>
  1526. <product id="Triumph_50S"
  1527. name="Triumph 50S"
  1528. series="50"
  1529. latestVersion="1.2"
  1530. show = "0" >
  1531. <productMenu id="protocol"
  1532. type="2" >
  1533. </productMenu>
  1534. <productMenu id="alexa"
  1535. type="0" >
  1536. </productMenu>
  1537. <productMenu id="ota"
  1538. type="0"
  1539. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1540. size="1150234" >
  1541. </productMenu>
  1542. <productMenu id="wa"
  1543. type="1" >
  1544. </productMenu>
  1545. <productMenu id="sip"
  1546. type="1" >
  1547. </productMenu>
  1548. <productMenu id="meshIntercom"
  1549. type="20" >
  1550. </productMenu>
  1551. <productMenu id="bluetoothIntercom"
  1552. type="1" >
  1553. </productMenu>
  1554. <productMenu id="phone"
  1555. type="1" >
  1556. </productMenu>
  1557. <productMenu id="music"
  1558. type="1" >
  1559. </productMenu>
  1560. <productMenu id="fmradio"
  1561. type="1" >
  1562. </productMenu>
  1563. <productMenu id="deviceSetting"
  1564. type="1"
  1565. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_05_HKAudio.xml" >
  1566. <productMenuURL version="1.0"
  1567. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1568. />
  1569. </productMenu>
  1570. <productMenu id="quickGuide"
  1571. type="1"
  1572. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  1573. size="934KB" >
  1574. </productMenu>
  1575. <productMenu id="userGuide"
  1576. type="1"
  1577. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Triumph_50S_1.5.0_us_220111.pdf"
  1578. size="1.14MB" >
  1579. </productMenu>
  1580. <productMenu id="volume"
  1581. type="11" >
  1582. </productMenu>
  1583. <productMenu id="battery"
  1584. type="1" >
  1585. </productMenu>
  1586. <productID id="3264"
  1587. />
  1588. <productGroupable type="0"
  1589. />
  1590. </product>
  1591. <product id="BMW_HELMET_II_U1"
  1592. name="BMW HELMET II U1"
  1593. series="50"
  1594. latestVersion="1.0"
  1595. show = "0" >
  1596. <productMenu id="protocol"
  1597. type="2" >
  1598. </productMenu>
  1599. <productMenu id="alexa"
  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="bluetoothIntercom2"
  1612. type="1" >
  1613. </productMenu>
  1614. <productMenu id="phone"
  1615. type="1" >
  1616. </productMenu>
  1617. <productMenu id="music"
  1618. type="1" >
  1619. </productMenu>
  1620. <productMenu id="fmradio"
  1621. type="1" >
  1622. </productMenu>
  1623. <productMenu id="deviceSetting"
  1624. type="1"
  1625. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  1626. </productMenu>
  1627. <productMenu id="quickGuide"
  1628. type="1"
  1629. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  1630. size="934KB" >
  1631. </productMenu>
  1632. <productMenu id="userGuide"
  1633. type="1"
  1634. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  1635. size="1.14MB" >
  1636. </productMenu>
  1637. <productMenu id="volume"
  1638. type="11" >
  1639. </productMenu>
  1640. <productMenu id="battery"
  1641. type="1" >
  1642. </productMenu>
  1643. <productID id="3260"
  1644. />
  1645. <productGroupable type="0"
  1646. />
  1647. </product>
  1648. <product id="30K"
  1649. name="30K"
  1650. nameGuide="30K (2022~)"
  1651. series="30"
  1652. latestVersion="4.0.3"
  1653. show = "1" >
  1654. <productMenu id="protocol"
  1655. type="2" >
  1656. </productMenu>
  1657. <productMenu id="alexa"
  1658. type="0" >
  1659. </productMenu>
  1660. <productMenu id="ota"
  1661. type="0"
  1662. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1663. size="1150234" >
  1664. </productMenu>
  1665. <productMenu id="wa"
  1666. type="0" >
  1667. </productMenu>
  1668. <productMenu id="sip"
  1669. type="1" >
  1670. </productMenu>
  1671. <productMenu id="meshIntercom"
  1672. type="20" >
  1673. </productMenu>
  1674. <productMenu id="bluetoothIntercom"
  1675. type="1" >
  1676. </productMenu>
  1677. <productMenu id="phone"
  1678. type="1" >
  1679. </productMenu>
  1680. <productMenu id="music"
  1681. type="1" >
  1682. </productMenu>
  1683. <productMenu id="fmradio"
  1684. type="1" >
  1685. </productMenu>
  1686. <productMenu id="deviceSetting"
  1687. type="1"
  1688. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml" >
  1689. </productMenu>
  1690. <productMenu id="quickGuide"
  1691. type="1"
  1692. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_30K_3.0.0_en_220414.pdf"
  1693. size="934KB" >
  1694. </productMenu>
  1695. <productMenu id="userGuide"
  1696. type="1"
  1697. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_30K_4.1.0_en_220726.pdf"
  1698. size="1.14MB" >
  1699. </productMenu>
  1700. <productMenu id="volume"
  1701. type="11" >
  1702. </productMenu>
  1703. <productMenu id="battery"
  1704. type="1" >
  1705. </productMenu>
  1706. <productID id="3211"
  1707. />
  1708. <productGroupable type="0"
  1709. />
  1710. </product>
  1711. <product id="30K"
  1712. name="30K"
  1713. nameGuide="30K (~2021)"
  1714. series="30"
  1715. latestVersion="3.3.1"
  1716. show = "1" >
  1717. <productMenu id="protocol"
  1718. type="1"
  1719. url="0">
  1720. </productMenu>
  1721. <productMenu id="wa"
  1722. type="1" >
  1723. </productMenu>
  1724. <productMenu id="sip"
  1725. type="1" >
  1726. </productMenu>
  1727. <productMenu id="meshIntercom"
  1728. type="20" >
  1729. <productMenuType version="2.9.9"
  1730. type="10"
  1731. />
  1732. </productMenu>
  1733. <productMenu id="bluetoothIntercom"
  1734. type="1" >
  1735. </productMenu>
  1736. <productMenu id="phone"
  1737. type="1" >
  1738. </productMenu>
  1739. <productMenu id="music"
  1740. type="1" >
  1741. </productMenu>
  1742. <productMenu id="fmradio"
  1743. type="1" >
  1744. </productMenu>
  1745. <productMenu id="deviceSetting"
  1746. type="1"
  1747. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml">
  1748. <productMenuURL version="3.0.1"
  1749. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  1750. />
  1751. <productMenuURL version="2.3.1"
  1752. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  1753. />
  1754. <productMenuURL version="2.0"
  1755. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  1756. />
  1757. <productMenuURL version="1.0.3"
  1758. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  1759. />
  1760. </productMenu>
  1761. <productMenu id="quickGuide"
  1762. type="1"
  1763. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_30k_2.1.0_en_210414.pdf"
  1764. size="1.06MB" >
  1765. </productMenu>
  1766. <productMenu id="userGuide"
  1767. type="1"
  1768. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_30K_3.1.0_en_210526.pdf"
  1769. size="3.15MB" >
  1770. </productMenu>
  1771. <productMenu id="volume"
  1772. type="1" >
  1773. </productMenu>
  1774. <productID id="3110"
  1775. />
  1776. <productGroupable type="0"
  1777. />
  1778. </product>
  1779. <product id="MomentumM"
  1780. name="Momentum EVO"
  1781. series="Helmet"
  1782. latestVersion="2.1.2"
  1783. show = "1" >
  1784. <productMenu id="protocol"
  1785. type="1"
  1786. url="0">
  1787. </productMenu>
  1788. <productMenu id="wa"
  1789. type="1" >
  1790. </productMenu>
  1791. <productMenu id="sip"
  1792. type="1" >
  1793. </productMenu>
  1794. <productMenu id="meshIntercom"
  1795. type="20" >
  1796. <productMenuType version="1.9.9"
  1797. type="10"
  1798. />
  1799. </productMenu>
  1800. <productMenu id="bluetoothIntercom"
  1801. type="1" >
  1802. </productMenu>
  1803. <productMenu id="phone"
  1804. type="1" >
  1805. </productMenu>
  1806. <productMenu id="music"
  1807. type="1" >
  1808. </productMenu>
  1809. <productMenu id="fmradio"
  1810. type="1" >
  1811. </productMenu>
  1812. <productMenu id="deviceSetting"
  1813. type="1"
  1814. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  1815. <productMenuURL version="1.0.1"
  1816. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  1817. />
  1818. </productMenu>
  1819. <productMenu id="quickGuide"
  1820. type="1"
  1821. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  1822. size="1.06MB" >
  1823. </productMenu>
  1824. <productMenu id="userGuide"
  1825. type="1"
  1826. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  1827. size="3.15MB" >
  1828. </productMenu>
  1829. <productMenu id="volume"
  1830. type="2" >
  1831. </productMenu>
  1832. <productID id="3116"
  1833. />
  1834. <productGroupable type="0"
  1835. />
  1836. </product>
  1837. <product id="Momentum"
  1838. name="Momentum"
  1839. series="Helmet"
  1840. latestVersion="1.0.9"
  1841. show = "1" >
  1842. <productMenu id="protocol"
  1843. type="0">
  1844. </productMenu>
  1845. <productMenu id="sip"
  1846. type="1" >
  1847. </productMenu>
  1848. <productMenu id="bluetoothIntercom"
  1849. type="1" >
  1850. </productMenu>
  1851. <productMenu id="intercomSetting"
  1852. type="1" >
  1853. </productMenu>
  1854. <productMenu id="phone"
  1855. type="2" >
  1856. </productMenu>
  1857. <productMenu id="fmradio"
  1858. type="3" >
  1859. </productMenu>
  1860. <productMenu id="deviceSetting"
  1861. type="1"
  1862. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  1863. </productMenu>
  1864. <productMenu id="quickGuide"
  1865. type="1"
  1866. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  1867. size="796KB" >
  1868. </productMenu>
  1869. <productMenu id="userGuide"
  1870. type="1"
  1871. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  1872. size="1.90MB" >
  1873. </productMenu>
  1874. <productID id="4310"
  1875. />
  1876. <productGroupable type="1"
  1877. />
  1878. </product>
  1879. <product id="Momentum_Pro"
  1880. name="Momentum Pro"
  1881. series="Helmet"
  1882. latestVersion="1.0.6"
  1883. show = "1" >
  1884. <productMenu id="protocol"
  1885. type="0">
  1886. </productMenu>
  1887. <productMenu id="sip"
  1888. type="1" >
  1889. </productMenu>
  1890. <productMenu id="bluetoothIntercom"
  1891. type="1" >
  1892. </productMenu>
  1893. <productMenu id="intercomSetting"
  1894. type="1" >
  1895. </productMenu>
  1896. <productMenu id="phone"
  1897. type="2" >
  1898. </productMenu>
  1899. <productMenu id="fmradio"
  1900. type="3" >
  1901. </productMenu>
  1902. <productMenu id="deviceSetting"
  1903. type="1"
  1904. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  1905. </productMenu>
  1906. <productMenu id="quickGuide"
  1907. type="1"
  1908. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  1909. size="796KB" >
  1910. </productMenu>
  1911. <productMenu id="userGuide"
  1912. type="1"
  1913. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  1914. size="1.90MB" >
  1915. </productMenu>
  1916. <productID id="4330"
  1917. />
  1918. <productGroupable type="1"
  1919. />
  1920. </product>
  1921. <product id="Momentum_INC"
  1922. name="Momentum INC"
  1923. series="Helmet"
  1924. latestVersion="1.0.7"
  1925. show = "1" >
  1926. <productMenu id="protocol"
  1927. type="0">
  1928. </productMenu>
  1929. <productMenu id="sip"
  1930. type="1" >
  1931. </productMenu>
  1932. <productMenu id="bluetoothIntercom"
  1933. type="1" >
  1934. </productMenu>
  1935. <productMenu id="intercomSetting"
  1936. type="1" >
  1937. </productMenu>
  1938. <productMenu id="phone"
  1939. type="2" >
  1940. </productMenu>
  1941. <productMenu id="fmradio"
  1942. type="3" >
  1943. </productMenu>
  1944. <productMenu id="deviceSetting"
  1945. type="1"
  1946. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  1947. </productMenu>
  1948. <productMenu id="quickGuide"
  1949. type="1"
  1950. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  1951. size="794KB" >
  1952. </productMenu>
  1953. <productMenu id="userGuide"
  1954. type="1"
  1955. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  1956. size="1.53MB" >
  1957. </productMenu>
  1958. <productID id="4410"
  1959. />
  1960. <productGroupable type="1"
  1961. />
  1962. </product>
  1963. <product id="Momentum_INCP"
  1964. name="Momentum INC Pro"
  1965. series="Helmet"
  1966. latestVersion="1.0.4"
  1967. show = "1" >
  1968. <productMenu id="protocol"
  1969. type="0">
  1970. </productMenu>
  1971. <productMenu id="sip"
  1972. type="1" >
  1973. </productMenu>
  1974. <productMenu id="bluetoothIntercom"
  1975. type="1" >
  1976. </productMenu>
  1977. <productMenu id="intercomSetting"
  1978. type="1" >
  1979. </productMenu>
  1980. <productMenu id="phone"
  1981. type="2" >
  1982. </productMenu>
  1983. <productMenu id="fmradio"
  1984. type="3" >
  1985. </productMenu>
  1986. <productMenu id="deviceSetting"
  1987. type="1"
  1988. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  1989. </productMenu>
  1990. <productMenu id="quickGuide"
  1991. type="1"
  1992. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  1993. size="794KB" >
  1994. </productMenu>
  1995. <productMenu id="userGuide"
  1996. type="1"
  1997. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  1998. size="1.53MB" >
  1999. </productMenu>
  2000. <productID id="4430"
  2001. />
  2002. <productGroupable type="1"
  2003. />
  2004. </product>
  2005. <product id="Momentum_Lite"
  2006. name="Momentum Lite"
  2007. series="Helmet"
  2008. latestVersion="2.0.3"
  2009. show = "1" >
  2010. <productMenu id="protocol"
  2011. type="0">
  2012. </productMenu>
  2013. <productMenu id="sip"
  2014. type="1" >
  2015. </productMenu>
  2016. <productMenu id="bluetoothIntercom"
  2017. type="1" >
  2018. </productMenu>
  2019. <productMenu id="phone"
  2020. type="2" >
  2021. </productMenu>
  2022. <productMenu id="fmradio"
  2023. type="3" >
  2024. </productMenu>
  2025. <productMenu id="deviceSetting"
  2026. type="1"
  2027. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  2028. <productMenuURL version="1.1"
  2029. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  2030. />
  2031. </productMenu>
  2032. <productMenu id="quickGuide"
  2033. type="1"
  2034. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  2035. size="790KB" >
  2036. </productMenu>
  2037. <productMenu id="userGuide"
  2038. type="1"
  2039. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  2040. size="1.42MB" >
  2041. </productMenu>
  2042. <productID id="5526"
  2043. />
  2044. <productGroupable type="0"
  2045. />
  2046. </product>
  2047. <product id="Cavalry"
  2048. name="Cavalry"
  2049. series="Helmet"
  2050. latestVersion="1.2.2"
  2051. show = "1" >
  2052. <productMenu id="protocol"
  2053. type="0">
  2054. </productMenu>
  2055. <productMenu id="sip"
  2056. type="1" >
  2057. </productMenu>
  2058. <productMenu id="bluetoothIntercom"
  2059. type="1" >
  2060. </productMenu>
  2061. <productMenu id="phone"
  2062. type="2" >
  2063. </productMenu>
  2064. <productMenu id="fmradio"
  2065. type="3" >
  2066. </productMenu>
  2067. <productMenu id="deviceSetting"
  2068. type="1"
  2069. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  2070. <productMenuURL version="1.9"
  2071. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  2072. />
  2073. <productMenuURL version="1.0.1"
  2074. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  2075. />
  2076. </productMenu>
  2077. <productMenu id="quickGuide"
  2078. type="1"
  2079. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  2080. size="795KB" >
  2081. </productMenu>
  2082. <productMenu id="userGuide"
  2083. type="1"
  2084. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  2085. size="1.87MB" >
  2086. </productMenu>
  2087. <productID id="5524"
  2088. />
  2089. <productGroupable type="0"
  2090. />
  2091. </product>
  2092. <product id="Cavalry_Lite"
  2093. name="Cavalry Lite"
  2094. series="Helmet"
  2095. latestVersion="1.0.2"
  2096. show = "1" >
  2097. <productMenu id="protocol"
  2098. type="0">
  2099. </productMenu>
  2100. <productMenu id="sip"
  2101. type="1" >
  2102. </productMenu>
  2103. <productMenu id="bluetoothIntercom"
  2104. type="1" >
  2105. </productMenu>
  2106. <productMenu id="phone"
  2107. type="2" >
  2108. </productMenu>
  2109. <productMenu id="fmradio"
  2110. type="3" >
  2111. </productMenu>
  2112. <productMenu id="deviceSetting"
  2113. type="1"
  2114. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  2115. </productMenu>
  2116. <productMenu id="userGuide"
  2117. type="1"
  2118. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  2119. size="1.74MB" >
  2120. </productMenu>
  2121. <productID id="5536"
  2122. />
  2123. <productGroupable type="0"
  2124. />
  2125. </product>
  2126. <product id="ProRideEVO"
  2127. name="ProRide EVO"
  2128. series="Helmet"
  2129. latestVersion="1.1.2"
  2130. show = "0" >
  2131. <productMenu id="protocol"
  2132. type="0">
  2133. </productMenu>
  2134. <productMenu id="sip"
  2135. type="1" >
  2136. </productMenu>
  2137. <productMenu id="bluetoothIntercom"
  2138. type="1" >
  2139. </productMenu>
  2140. <productMenu id="phone"
  2141. type="2" >
  2142. </productMenu>
  2143. <productMenu id="fmradio"
  2144. type="3" >
  2145. </productMenu>
  2146. <productMenu id="deviceSetting"
  2147. type="1"
  2148. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  2149. </productMenu>
  2150. <productMenu id="userGuide"
  2151. type="1"
  2152. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  2153. size="778KB" >
  2154. </productMenu>
  2155. <productID id="5426"
  2156. />
  2157. <productGroupable type="0"
  2158. />
  2159. </product>
  2160. <product id="OUTRUSHR"
  2161. name="OUTRUSH R"
  2162. series="Helmet"
  2163. latestVersion="1.1.2"
  2164. show = "0" >
  2165. <productMenu id="protocol"
  2166. type="0">
  2167. </productMenu>
  2168. <productMenu id="sip"
  2169. type="1" >
  2170. </productMenu>
  2171. <productMenu id="bluetoothIntercom"
  2172. type="1" >
  2173. </productMenu>
  2174. <productMenu id="phone"
  2175. type="2" >
  2176. </productMenu>
  2177. <productMenu id="fmradio"
  2178. type="3" >
  2179. </productMenu>
  2180. <productMenu id="deviceSetting"
  2181. type="1"
  2182. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  2183. </productMenu>
  2184. <productMenu id="userGuide"
  2185. type="1"
  2186. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTRUSH_R_1.0.0_en_201019.pdf"
  2187. size="660KB" >
  2188. </productMenu>
  2189. <productID id="5424"
  2190. />
  2191. <productGroupable type="0"
  2192. />
  2193. </product>
  2194. <product id="OUTSTARS"
  2195. name="OUTSTAR S"
  2196. series="Helmet"
  2197. latestVersion="1.1.2"
  2198. show = "0" >
  2199. <productMenu id="protocol"
  2200. type="0">
  2201. </productMenu>
  2202. <productMenu id="sip"
  2203. type="1" >
  2204. </productMenu>
  2205. <productMenu id="bluetoothIntercom"
  2206. type="1" >
  2207. </productMenu>
  2208. <productMenu id="phone"
  2209. type="2" >
  2210. </productMenu>
  2211. <productMenu id="fmradio"
  2212. type="3" >
  2213. </productMenu>
  2214. <productMenu id="deviceSetting"
  2215. type="1"
  2216. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  2217. </productMenu>
  2218. <productMenu id="quickGuide"
  2219. type="1"
  2220. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_OUTSTAR%20S_1.1.0_en_211019.pdf"
  2221. size="643KB" >
  2222. </productMenu>
  2223. <productMenu id="userGuide"
  2224. type="1"
  2225. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTSTAR_S_1.1.0_en_211019.pdf"
  2226. size="1.15MB" >
  2227. </productMenu>
  2228. <productID id="5428"
  2229. />
  2230. <productGroupable type="0"
  2231. />
  2232. </product>
  2233. <product id="OUTRIDE"
  2234. name="OUTRIDE"
  2235. series="Helmet"
  2236. latestVersion="1.0.1"
  2237. show = "0" >
  2238. <productMenu id="protocol"
  2239. type="0">
  2240. </productMenu>
  2241. <productMenu id="sip"
  2242. type="1" >
  2243. </productMenu>
  2244. <productMenu id="bluetoothIntercom"
  2245. type="1" >
  2246. </productMenu>
  2247. <productMenu id="phone"
  2248. type="2" >
  2249. </productMenu>
  2250. <productMenu id="fmradio"
  2251. type="3" >
  2252. </productMenu>
  2253. <productMenu id="deviceSetting"
  2254. type="1"
  2255. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  2256. </productMenu>
  2257. <productMenu id="quickGuide"
  2258. type="1"
  2259. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_OUTRIDE_1.0.0_en_210915.pdf"
  2260. size="643KB" >
  2261. </productMenu>
  2262. <productMenu id="userGuide"
  2263. type="1"
  2264. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTRIDE_1.0.0_en_210917.pdf"
  2265. size="660KB" >
  2266. </productMenu>
  2267. <productID id="5432"
  2268. />
  2269. <productGroupable type="0"
  2270. />
  2271. </product>
  2272. <product id="OUTFORCE"
  2273. name="OUTFORCE"
  2274. series="Helmet"
  2275. latestVersion="1.0.1"
  2276. show = "0" >
  2277. <productMenu id="protocol"
  2278. type="0">
  2279. </productMenu>
  2280. <productMenu id="sip"
  2281. type="1" >
  2282. </productMenu>
  2283. <productMenu id="bluetoothIntercom"
  2284. type="1" >
  2285. </productMenu>
  2286. <productMenu id="phone"
  2287. type="2" >
  2288. </productMenu>
  2289. <productMenu id="fmradio"
  2290. type="3" >
  2291. </productMenu>
  2292. <productMenu id="deviceSetting"
  2293. type="1"
  2294. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  2295. </productMenu>
  2296. <productMenu id="quickGuide"
  2297. type="1"
  2298. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_OUTFORCE_1.0.0_en_220121.pdf"
  2299. size="643KB" >
  2300. </productMenu>
  2301. <productMenu id="userGuide"
  2302. type="1"
  2303. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTFORCE_1.0.0_en_220121.pdf"
  2304. size="660KB" >
  2305. </productMenu>
  2306. <productID id="5430"
  2307. />
  2308. <productGroupable type="0"
  2309. />
  2310. </product>
  2311. <product id="Savage"
  2312. name="Savage"
  2313. series="Helmet"
  2314. latestVersion="1.2.2"
  2315. show = "0" >
  2316. <productMenu id="protocol"
  2317. type="0">
  2318. </productMenu>
  2319. <productMenu id="sip"
  2320. type="1" >
  2321. </productMenu>
  2322. <productMenu id="bluetoothIntercom"
  2323. type="1" >
  2324. </productMenu>
  2325. <productMenu id="phone"
  2326. type="2" >
  2327. </productMenu>
  2328. <productMenu id="fmradio"
  2329. type="3" >
  2330. </productMenu>
  2331. <productMenu id="deviceSetting"
  2332. type="1"
  2333. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  2334. <productMenuURL version="1.9"
  2335. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  2336. />
  2337. <productMenuURL version="1.1"
  2338. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  2339. />
  2340. </productMenu>
  2341. <productMenu id="quickGuide"
  2342. type="1"
  2343. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  2344. size="796KB" >
  2345. </productMenu>
  2346. <productMenu id="userGuide"
  2347. type="1"
  2348. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  2349. size="910KB" >
  2350. </productMenu>
  2351. <productID id="5550"
  2352. />
  2353. <productGroupable type="0"
  2354. />
  2355. </product>
  2356. <product id="SF4"
  2357. name="SF4"
  2358. series="SF"
  2359. latestVersion="1.1.5"
  2360. show = "1" >
  2361. <productMenu id="protocol"
  2362. type="1"
  2363. url="3">
  2364. </productMenu>
  2365. <productMenu id="sip"
  2366. type="1" >
  2367. </productMenu>
  2368. <productMenu id="bluetoothIntercom"
  2369. type="1" >
  2370. </productMenu>
  2371. <productMenu id="phone"
  2372. type="1" >
  2373. </productMenu>
  2374. <productMenu id="music"
  2375. type="1" >
  2376. </productMenu>
  2377. <productMenu id="fmradio"
  2378. type="1" >
  2379. </productMenu>
  2380. <productMenu id="deviceSetting"
  2381. type="1"
  2382. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  2383. <productMenuURL version="1.0.1"
  2384. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  2385. />
  2386. </productMenu>
  2387. <productMenu id="quickGuide"
  2388. type="1"
  2389. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.1.0_en_220908.pdf"
  2390. size="607KB" >
  2391. </productMenu>
  2392. <productMenu id="userGuide"
  2393. type="1"
  2394. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.2.0_en_220908.pdf"
  2395. size="1.91MB" >
  2396. </productMenu>
  2397. <productMenu id="volume"
  2398. type="4" >
  2399. </productMenu>
  2400. <productID id="5414"
  2401. />
  2402. <productGroupable type="0"
  2403. />
  2404. </product>
  2405. <product id="SF2"
  2406. name="SF2"
  2407. series="SF"
  2408. latestVersion="1.2.1"
  2409. show = "1" >
  2410. <productMenu id="protocol"
  2411. type="1"
  2412. url="2">
  2413. </productMenu>
  2414. <productMenu id="sip"
  2415. type="1" >
  2416. </productMenu>
  2417. <productMenu id="bluetoothIntercom"
  2418. type="1" >
  2419. </productMenu>
  2420. <productMenu id="phone"
  2421. type="1" >
  2422. </productMenu>
  2423. <productMenu id="music"
  2424. type="1" >
  2425. </productMenu>
  2426. <productMenu id="fmradio"
  2427. type="1" >
  2428. </productMenu>
  2429. <productMenu id="deviceSetting"
  2430. type="1"
  2431. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  2432. <productMenuURL version="1.0.1"
  2433. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  2434. />
  2435. </productMenu>
  2436. <productMenu id="quickGuide"
  2437. type="1"
  2438. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.2.0_en_220908.pdf"
  2439. size="607KB" >
  2440. </productMenu>
  2441. <productMenu id="userGuide"
  2442. type="1"
  2443. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.2.0_en_220908.pdf"
  2444. size="1.91MB" >
  2445. </productMenu>
  2446. <productMenu id="volume"
  2447. type="4" >
  2448. </productMenu>
  2449. <productID id="5412"
  2450. />
  2451. <productGroupable type="0"
  2452. />
  2453. </product>
  2454. <product id="SF1"
  2455. name="SF1"
  2456. series="SF"
  2457. latestVersion="2.0.5"
  2458. show = "1" >
  2459. <productMenu id="protocol"
  2460. type="1"
  2461. url="1">
  2462. </productMenu>
  2463. <productMenu id="sip"
  2464. type="1" >
  2465. </productMenu>
  2466. <productMenu id="bluetoothIntercom"
  2467. type="1" >
  2468. <productMenuType version="1.1"
  2469. type="0"
  2470. />
  2471. </productMenu>
  2472. <productMenu id="phone"
  2473. type="1" >
  2474. </productMenu>
  2475. <productMenu id="music"
  2476. type="1" >
  2477. </productMenu>
  2478. <productMenu id="deviceSetting"
  2479. type="1"
  2480. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  2481. <productMenuURL version="1.1"
  2482. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  2483. />
  2484. <productMenuURL version="1.0"
  2485. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  2486. />
  2487. </productMenu>
  2488. <productMenu id="quickGuide"
  2489. type="1"
  2490. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.1.0_en_220908.pdf"
  2491. size="401KB" >
  2492. </productMenu>
  2493. <productMenu id="userGuide"
  2494. type="1"
  2495. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.2.0_en_220908.pdf"
  2496. size="1.91MB" >
  2497. </productMenu>
  2498. <productMenu id="volume"
  2499. type="3" >
  2500. </productMenu>
  2501. <productID id="5410"
  2502. />
  2503. <productGroupable type="0"
  2504. />
  2505. </product>
  2506. <product id="SFR"
  2507. name="SFR"
  2508. series="SF"
  2509. latestVersion="1.1.1"
  2510. show = "1" >
  2511. <productMenu id="protocol"
  2512. type="1"
  2513. url="3">
  2514. </productMenu>
  2515. <productMenu id="sip"
  2516. type="1" >
  2517. </productMenu>
  2518. <productMenu id="bluetoothIntercom"
  2519. type="1" >
  2520. </productMenu>
  2521. <productMenu id="phone"
  2522. type="1" >
  2523. </productMenu>
  2524. <productMenu id="music"
  2525. type="1" >
  2526. </productMenu>
  2527. <productMenu id="fmradio"
  2528. type="1" >
  2529. </productMenu>
  2530. <productMenu id="deviceSetting"
  2531. type="1"
  2532. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  2533. </productMenu>
  2534. <productMenu id="quickGuide"
  2535. type="1"
  2536. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.2.0_en_220908.pdf"
  2537. size="607KB" >
  2538. </productMenu>
  2539. <productMenu id="userGuide"
  2540. type="1"
  2541. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.2.0_en_220908.pdf"
  2542. size="1.91MB" >
  2543. </productMenu>
  2544. <productMenu id="volume"
  2545. type="4" >
  2546. </productMenu>
  2547. <productID id="5418"
  2548. />
  2549. <productGroupable type="0"
  2550. />
  2551. </product>
  2552. <product id="LSE-01"
  2553. name="LSE-01"
  2554. series="SF"
  2555. latestVersion="1.2.3"
  2556. show = "0" >
  2557. <productMenu id="protocol"
  2558. type="1"
  2559. url="3">
  2560. </productMenu>
  2561. <productMenu id="sip"
  2562. type="1" >
  2563. </productMenu>
  2564. <productMenu id="bluetoothIntercom"
  2565. type="1" >
  2566. </productMenu>
  2567. <productMenu id="phone"
  2568. type="1" >
  2569. </productMenu>
  2570. <productMenu id="music"
  2571. type="1" >
  2572. </productMenu>
  2573. <productMenu id="fmradio"
  2574. type="1" >
  2575. </productMenu>
  2576. <productMenu id="deviceSetting"
  2577. type="1"
  2578. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  2579. <productMenuURL version="1.1"
  2580. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  2581. />
  2582. <productMenuURL version="1.0"
  2583. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  2584. />
  2585. </productMenu>
  2586. <productMenu id="quickGuide"
  2587. type="1"
  2588. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Louis_LSE-01_01.pdf"
  2589. size="607KB" >
  2590. </productMenu>
  2591. <productMenu id="userGuide"
  2592. type="1"
  2593. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Louis_LSE-01_v1.1_03.pdf"
  2594. size="1.91MB" >
  2595. </productMenu>
  2596. <productMenu id="volume"
  2597. type="4" >
  2598. </productMenu>
  2599. <productID id="5416"
  2600. />
  2601. <productGroupable type="0"
  2602. />
  2603. </product>
  2604. <product id="AGV_ARK"
  2605. name="AGV ARK"
  2606. series="SF"
  2607. latestVersion="1.0.3"
  2608. show = "0" >
  2609. <productMenu id="protocol"
  2610. type="1"
  2611. url="3">
  2612. </productMenu>
  2613. <productMenu id="sip"
  2614. type="1" >
  2615. </productMenu>
  2616. <productMenu id="bluetoothIntercom"
  2617. type="1" >
  2618. </productMenu>
  2619. <productMenu id="phone"
  2620. type="1" >
  2621. </productMenu>
  2622. <productMenu id="music"
  2623. type="1" >
  2624. </productMenu>
  2625. <productMenu id="fmradio"
  2626. type="1" >
  2627. </productMenu>
  2628. <productMenu id="deviceSetting"
  2629. type="1"
  2630. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  2631. </productMenu>
  2632. <productMenu id="quickGuide"
  2633. type="1"
  2634. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ARK_1.0.1_en_210415_D00131.pdf"
  2635. size="607KB" >
  2636. </productMenu>
  2637. <productMenu id="userGuide"
  2638. type="1"
  2639. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_AGV_ARK_v1.0_02.pdf"
  2640. size="1.91MB" >
  2641. </productMenu>
  2642. <productMenu id="volume"
  2643. type="4" >
  2644. </productMenu>
  2645. <productID id="5420"
  2646. />
  2647. <productGroupable type="0"
  2648. />
  2649. </product>
  2650. <product id="20S"
  2651. name="20S"
  2652. series="20"
  2653. latestVersion="2.2.2"
  2654. show = "1" >
  2655. <productMenu id="protocol"
  2656. type="0">
  2657. </productMenu>
  2658. <productMenu id="sip"
  2659. type="1" >
  2660. <productMenuType version="1.0"
  2661. type="0"
  2662. />
  2663. </productMenu>
  2664. <productMenu id="bluetoothIntercom"
  2665. type="1" >
  2666. <productMenuType version="1.0"
  2667. type="0"
  2668. />
  2669. </productMenu>
  2670. <productMenu id="intercomSetting"
  2671. type="1" >
  2672. </productMenu>
  2673. <productMenu id="phone"
  2674. type="2" >
  2675. </productMenu>
  2676. <productMenu id="fmradio"
  2677. type="3" >
  2678. </productMenu>
  2679. <productMenu id="deviceSetting"
  2680. type="1"
  2681. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  2682. <productMenuURL version="2.0.2"
  2683. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  2684. />
  2685. <productMenuURL version="1.5"
  2686. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  2687. />
  2688. <productMenuURL version="1.4.1"
  2689. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  2690. />
  2691. <productMenuURL version="1.1"
  2692. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  2693. />
  2694. <productMenuURL version="1.0"
  2695. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  2696. />
  2697. </productMenu>
  2698. <productMenu id="quickGuide"
  2699. type="1"
  2700. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_20S_EVO_1.4.0_en_220922.pdf"
  2701. size="264KB" >
  2702. </productMenu>
  2703. <productMenu id="userGuide"
  2704. type="1"
  2705. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.0_en_220922.pdf"
  2706. size="3.09MB" >
  2707. </productMenu>
  2708. <productID id="4210"
  2709. />
  2710. <productGroupable type="1"
  2711. />
  2712. </product>
  2713. <product id="20S_EVO"
  2714. name="20S EVO"
  2715. series="20"
  2716. latestVersion="2.2.2"
  2717. show = "1" >
  2718. <productMenu id="protocol"
  2719. type="0">
  2720. </productMenu>
  2721. <productMenu id="sip"
  2722. type="1" >
  2723. <productMenuType version="1.0"
  2724. type="0"
  2725. />
  2726. </productMenu>
  2727. <productMenu id="bluetoothIntercom"
  2728. type="1" >
  2729. <productMenuType version="1.0"
  2730. type="0"
  2731. />
  2732. </productMenu>
  2733. <productMenu id="intercomSetting"
  2734. type="1" >
  2735. </productMenu>
  2736. <productMenu id="phone"
  2737. type="2" >
  2738. </productMenu>
  2739. <productMenu id="fmradio"
  2740. type="3" >
  2741. </productMenu>
  2742. <productMenu id="deviceSetting"
  2743. type="1"
  2744. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  2745. <productMenuURL version="2.0.2"
  2746. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  2747. />
  2748. <productMenuURL version="1.5"
  2749. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  2750. />
  2751. <productMenuURL version="1.4.1"
  2752. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  2753. />
  2754. <productMenuURL version="1.1"
  2755. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  2756. />
  2757. <productMenuURL version="1.0"
  2758. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  2759. />
  2760. </productMenu>
  2761. <productMenu id="quickGuide"
  2762. type="1"
  2763. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_20S_EVO_1.4.0_en_220922.pdf"
  2764. size="264KB" >
  2765. </productMenu>
  2766. <productMenu id="userGuide"
  2767. type="1"
  2768. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.0_en_220922.pdf"
  2769. size="3.09MB" >
  2770. </productMenu>
  2771. <productID id="4210"
  2772. />
  2773. <productProductKey key="16"
  2774. />
  2775. <productGroupable type="1"
  2776. />
  2777. </product>
  2778. <product id="10S"
  2779. name="10S"
  2780. series="10"
  2781. latestVersion="2.1.1"
  2782. show = "1" >
  2783. <productMenu id="protocol"
  2784. type="0">
  2785. </productMenu>
  2786. <productMenu id="sip"
  2787. type="1" >
  2788. </productMenu>
  2789. <productMenu id="bluetoothIntercom"
  2790. type="1" >
  2791. </productMenu>
  2792. <productMenu id="phone"
  2793. type="2" >
  2794. </productMenu>
  2795. <productMenu id="fmradio"
  2796. type="3" >
  2797. </productMenu>
  2798. <productMenu id="deviceSetting"
  2799. type="1"
  2800. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  2801. <productMenuURL version="1.5"
  2802. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  2803. />
  2804. <productMenuURL version="1.3.1"
  2805. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  2806. />
  2807. </productMenu>
  2808. <productMenu id="quickGuide"
  2809. type="1"
  2810. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.3.0_en_221006.pdf"
  2811. size="310KB" >
  2812. </productMenu>
  2813. <productMenu id="userGuide"
  2814. type="1"
  2815. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.2.0_en_221006.pdf"
  2816. size="1.57MB" >
  2817. </productMenu>
  2818. <productID id="5530"
  2819. />
  2820. <productGroupable type="0"
  2821. />
  2822. </product>
  2823. <product id="10R"
  2824. name="10R"
  2825. series="10"
  2826. latestVersion="2.1.1"
  2827. show = "1" >
  2828. <productMenu id="protocol"
  2829. type="0">
  2830. </productMenu>
  2831. <productMenu id="sip"
  2832. type="1" >
  2833. <productMenuType version="1.0.2"
  2834. type="0"
  2835. />
  2836. </productMenu>
  2837. <productMenu id="bluetoothIntercom"
  2838. type="1" >
  2839. <productMenuType version="1.0.2"
  2840. type="0"
  2841. />
  2842. </productMenu>
  2843. <productMenu id="phone"
  2844. type="2" >
  2845. </productMenu>
  2846. <productMenu id="fmradio"
  2847. type="3" >
  2848. </productMenu>
  2849. <productMenu id="deviceSetting"
  2850. type="1"
  2851. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  2852. <productMenuURL version="1.4"
  2853. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  2854. />
  2855. <productMenuURL version="1.2.1"
  2856. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  2857. />
  2858. <productMenuURL version="1.0.2"
  2859. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  2860. />
  2861. <productMenuURL version="1.0"
  2862. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  2863. />
  2864. </productMenu>
  2865. <productMenu id="quickGuide"
  2866. type="1"
  2867. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  2868. size="400KB" >
  2869. </productMenu>
  2870. <productMenu id="userGuide"
  2871. type="1"
  2872. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  2873. size="2.75MB" >
  2874. </productMenu>
  2875. <productID id="5520"
  2876. />
  2877. <productGroupable type="0"
  2878. />
  2879. </product>
  2880. <product id="10C_EVO"
  2881. name="10C EVO"
  2882. series="10"
  2883. latestVersion="1.7"
  2884. show = "1" >
  2885. <productMenu id="protocol"
  2886. type="0">
  2887. </productMenu>
  2888. <productMenu id="sip"
  2889. type="1" >
  2890. </productMenu>
  2891. <productMenu id="bluetoothIntercom"
  2892. type="1" >
  2893. </productMenu>
  2894. <productMenu id="phone"
  2895. type="2" >
  2896. </productMenu>
  2897. <productMenu id="fmradio"
  2898. type="3" >
  2899. </productMenu>
  2900. <productMenu id="deviceSetting"
  2901. type="1"
  2902. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  2903. <productMenuURL version="1.3.1"
  2904. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  2905. />
  2906. </productMenu>
  2907. <productMenu id="quickGuide"
  2908. type="1"
  2909. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  2910. size="1.32MB" >
  2911. </productMenu>
  2912. <productMenu id="userGuide"
  2913. type="1"
  2914. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  2915. size="1.68MB" >
  2916. </productMenu>
  2917. <productID id="5570"
  2918. />
  2919. <productGroupable type="0"
  2920. />
  2921. </product>
  2922. <product id="10C_Pro"
  2923. name="10C Pro"
  2924. series="10"
  2925. latestVersion="2.7.1"
  2926. show = "1" >
  2927. <productMenu id="protocol"
  2928. type="0">
  2929. </productMenu>
  2930. <productMenu id="sip"
  2931. type="1" >
  2932. </productMenu>
  2933. <productMenu id="bluetoothIntercom"
  2934. type="1" >
  2935. </productMenu>
  2936. <productMenu id="phone"
  2937. type="2" >
  2938. </productMenu>
  2939. <productMenu id="fmradio"
  2940. type="3" >
  2941. </productMenu>
  2942. <productMenu id="deviceSetting"
  2943. type="1"
  2944. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  2945. <productMenuURL version="2.5.1"
  2946. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  2947. />
  2948. <productMenuURL version="1.0"
  2949. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  2950. />
  2951. </productMenu>
  2952. <productMenu id="quickGuide"
  2953. type="1"
  2954. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  2955. size="651KB" >
  2956. </productMenu>
  2957. <productMenu id="userGuide"
  2958. type="1"
  2959. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  2960. size="2.34MB" >
  2961. </productMenu>
  2962. <productID id="5580"
  2963. />
  2964. <productGroupable type="0"
  2965. />
  2966. </product>
  2967. <product id="10C"
  2968. name="10C"
  2969. series="10"
  2970. latestVersion="3.0.4"
  2971. show = "1" >
  2972. <productMenu id="protocol"
  2973. type="0">
  2974. </productMenu>
  2975. <productMenu id="sip"
  2976. type="1" >
  2977. <productMenuType version="1.0.4"
  2978. type="0"
  2979. />
  2980. </productMenu>
  2981. <productMenu id="bluetoothIntercom"
  2982. type="1" >
  2983. <productMenuType version="1.0.4"
  2984. type="0"
  2985. />
  2986. </productMenu>
  2987. <productMenu id="phone"
  2988. type="2" >
  2989. </productMenu>
  2990. <productMenu id="fmradio"
  2991. type="3" >
  2992. </productMenu>
  2993. <productMenu id="deviceSetting"
  2994. type="1"
  2995. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  2996. <productMenuURL version="2.3"
  2997. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  2998. />
  2999. <productMenuURL version="2.1.1"
  3000. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  3001. />
  3002. <productMenuURL version="1.0.4"
  3003. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  3004. />
  3005. <productMenuURL version="1.0.2"
  3006. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  3007. />
  3008. </productMenu>
  3009. <productMenu id="quickGuide"
  3010. type="1"
  3011. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  3012. size="935KB" >
  3013. </productMenu>
  3014. <productMenu id="userGuide"
  3015. type="1"
  3016. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  3017. size="2.82MB" >
  3018. </productMenu>
  3019. <productID id="5510"
  3020. />
  3021. <productGroupable type="0"
  3022. />
  3023. </product>
  3024. <product id="10U_GT_AIR"
  3025. name="10U GT-Air"
  3026. series="10"
  3027. latestVersion="2.0.4"
  3028. show = "1" >
  3029. <productMenu id="protocol"
  3030. type="0">
  3031. </productMenu>
  3032. <productMenu id="sip"
  3033. type="1" >
  3034. <productMenuType version="1.0.2"
  3035. type="0"
  3036. />
  3037. </productMenu>
  3038. <productMenu id="bluetoothIntercom"
  3039. type="1" >
  3040. <productMenuType version="1.0.2"
  3041. type="0"
  3042. />
  3043. </productMenu>
  3044. <productMenu id="phone"
  3045. type="2" >
  3046. </productMenu>
  3047. <productMenu id="fmradio"
  3048. type="3" >
  3049. </productMenu>
  3050. <productMenu id="deviceSetting"
  3051. type="1"
  3052. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3053. <productMenuURL version="1.3.2"
  3054. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3055. />
  3056. <productMenuURL version="1.0.2"
  3057. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3058. />
  3059. </productMenu>
  3060. <productMenu id="quickGuide"
  3061. type="1"
  3062. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  3063. size="685KB" >
  3064. </productMenu>
  3065. <productMenu id="userGuide"
  3066. type="1"
  3067. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3068. size="684KB" >
  3069. </productMenu>
  3070. <productID id="5610"
  3071. />
  3072. <productGroupable type="0"
  3073. />
  3074. </product>
  3075. <product id="10U_NEOTEC"
  3076. name="10U Neotec"
  3077. series="10"
  3078. latestVersion="2.0.4"
  3079. show = "1" >
  3080. <productMenu id="protocol"
  3081. type="0">
  3082. </productMenu>
  3083. <productMenu id="sip"
  3084. type="1" >
  3085. <productMenuType version="1.0.2"
  3086. type="0"
  3087. />
  3088. </productMenu>
  3089. <productMenu id="bluetoothIntercom"
  3090. type="1" >
  3091. <productMenuType version="1.0.2"
  3092. type="0"
  3093. />
  3094. </productMenu>
  3095. <productMenu id="phone"
  3096. type="2" >
  3097. </productMenu>
  3098. <productMenu id="fmradio"
  3099. type="3" >
  3100. </productMenu>
  3101. <productMenu id="deviceSetting"
  3102. type="1"
  3103. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3104. <productMenuURL version="1.3.2"
  3105. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3106. />
  3107. <productMenuURL version="1.0.2"
  3108. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3109. />
  3110. </productMenu>
  3111. <productMenu id="quickGuide"
  3112. type="1"
  3113. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  3114. size="689KB" >
  3115. </productMenu>
  3116. <productMenu id="userGuide"
  3117. type="1"
  3118. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3119. size="684KB" >
  3120. </productMenu>
  3121. <productID id="5611"
  3122. />
  3123. <productGroupable type="0"
  3124. />
  3125. </product>
  3126. <product id="10U_J_CRUISE"
  3127. name="10U J-Cruise"
  3128. series="10"
  3129. latestVersion="2.0.4"
  3130. show = "1" >
  3131. <productMenu id="protocol"
  3132. type="0">
  3133. </productMenu>
  3134. <productMenu id="sip"
  3135. type="1" >
  3136. <productMenuType version="1.0.2"
  3137. type="0"
  3138. />
  3139. </productMenu>
  3140. <productMenu id="bluetoothIntercom"
  3141. type="1" >
  3142. <productMenuType version="1.0.2"
  3143. type="0"
  3144. />
  3145. </productMenu>
  3146. <productMenu id="phone"
  3147. type="2" >
  3148. </productMenu>
  3149. <productMenu id="fmradio"
  3150. type="3" >
  3151. </productMenu>
  3152. <productMenu id="deviceSetting"
  3153. type="1"
  3154. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3155. <productMenuURL version="1.3.2"
  3156. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3157. />
  3158. <productMenuURL version="1.0.2"
  3159. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3160. />
  3161. </productMenu>
  3162. <productMenu id="quickGuide"
  3163. type="1"
  3164. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  3165. size="686KB" >
  3166. </productMenu>
  3167. <productMenu id="userGuide"
  3168. type="1"
  3169. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3170. size="684KB" >
  3171. </productMenu>
  3172. <productID id="5612"
  3173. />
  3174. <productGroupable type="0"
  3175. />
  3176. </product>
  3177. <product id="10U_C3"
  3178. name="10U C3/C3Pro"
  3179. series="10"
  3180. latestVersion="2.0.4"
  3181. show = "1" >
  3182. <productMenu id="protocol"
  3183. type="0">
  3184. </productMenu>
  3185. <productMenu id="sip"
  3186. type="1" >
  3187. <productMenuType version="1.0.2"
  3188. type="0"
  3189. />
  3190. </productMenu>
  3191. <productMenu id="bluetoothIntercom"
  3192. type="1" >
  3193. <productMenuType version="1.0.2"
  3194. type="0"
  3195. />
  3196. </productMenu>
  3197. <productMenu id="phone"
  3198. type="2" >
  3199. </productMenu>
  3200. <productMenu id="fmradio"
  3201. type="3" >
  3202. </productMenu>
  3203. <productMenu id="deviceSetting"
  3204. type="1"
  3205. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3206. <productMenuURL version="1.3.2"
  3207. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3208. />
  3209. <productMenuURL version="1.0.2"
  3210. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3211. />
  3212. </productMenu>
  3213. <productMenu id="quickGuide"
  3214. type="1"
  3215. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  3216. size="199KB" >
  3217. </productMenu>
  3218. <productMenu id="userGuide"
  3219. type="1"
  3220. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3221. size="684KB" >
  3222. </productMenu>
  3223. <productID id="5620"
  3224. />
  3225. <productGroupable type="0"
  3226. />
  3227. </product>
  3228. <product id="10U_ARAI"
  3229. name="10U Arai"
  3230. series="10"
  3231. latestVersion="2.0.4"
  3232. show = "1" >
  3233. <productMenu id="protocol"
  3234. type="0">
  3235. </productMenu>
  3236. <productMenu id="sip"
  3237. type="1" >
  3238. <productMenuType version="1.0.2"
  3239. type="0"
  3240. />
  3241. </productMenu>
  3242. <productMenu id="bluetoothIntercom"
  3243. type="1" >
  3244. <productMenuType version="1.0.2"
  3245. type="0"
  3246. />
  3247. </productMenu>
  3248. <productMenu id="phone"
  3249. type="2" >
  3250. </productMenu>
  3251. <productMenu id="fmradio"
  3252. type="3" >
  3253. </productMenu>
  3254. <productMenu id="deviceSetting"
  3255. type="1"
  3256. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3257. <productMenuURL version="1.3.2"
  3258. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3259. />
  3260. <productMenuURL version="1.0.2"
  3261. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3262. />
  3263. </productMenu>
  3264. <productMenu id="quickGuide"
  3265. type="1"
  3266. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  3267. size="689KB" >
  3268. </productMenu>
  3269. <productMenu id="userGuide"
  3270. type="1"
  3271. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3272. size="684KB" >
  3273. </productMenu>
  3274. <productID id="5621"
  3275. />
  3276. <productGroupable type="0"
  3277. />
  3278. </product>
  3279. <product id="10Upad"
  3280. name="10Upad"
  3281. series="10"
  3282. latestVersion="2.0.3"
  3283. show = "1" >
  3284. <productMenu id="protocol"
  3285. type="0">
  3286. </productMenu>
  3287. <productMenu id="sip"
  3288. type="1" >
  3289. </productMenu>
  3290. <productMenu id="bluetoothIntercom"
  3291. type="1" >
  3292. </productMenu>
  3293. <productMenu id="phone"
  3294. type="2" >
  3295. </productMenu>
  3296. <productMenu id="fmradio"
  3297. type="3" >
  3298. </productMenu>
  3299. <productMenu id="deviceSetting"
  3300. type="1"
  3301. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  3302. <productMenuURL version="1.0.3"
  3303. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  3304. />
  3305. </productMenu>
  3306. <productMenu id="quickGuide"
  3307. type="1"
  3308. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  3309. size="615KB" >
  3310. </productMenu>
  3311. <productMenu id="userGuide"
  3312. type="1"
  3313. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  3314. size="0.99MB" >
  3315. </productMenu>
  3316. <productID id="6210"
  3317. />
  3318. <productGroupable type="0"
  3319. />
  3320. </product>
  3321. <product id="KLIM_KRIOS"
  3322. name="KLIM Krios"
  3323. series="10"
  3324. latestVersion="1.1.2"
  3325. show = "0" >
  3326. <productMenu id="protocol"
  3327. type="0">
  3328. </productMenu>
  3329. <productMenu id="sip"
  3330. type="1" >
  3331. </productMenu>
  3332. <productMenu id="bluetoothIntercom"
  3333. type="1" >
  3334. </productMenu>
  3335. <productMenu id="phone"
  3336. type="2" >
  3337. </productMenu>
  3338. <productMenu id="fmradio"
  3339. type="3" >
  3340. </productMenu>
  3341. <productMenu id="deviceSetting"
  3342. type="1"
  3343. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  3344. <productMenuURL version="1.0"
  3345. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  3346. />
  3347. </productMenu>
  3348. <productMenu id="quickGuide"
  3349. type="1"
  3350. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  3351. size="649KB" >
  3352. </productMenu>
  3353. <productMenu id="userGuide"
  3354. type="1"
  3355. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  3356. size="1.43MB" >
  3357. </productMenu>
  3358. <productID id="5910"
  3359. />
  3360. <productGroupable type="0"
  3361. />
  3362. </product>
  3363. <product id="POLARIS_SLINGSHOT"
  3364. name="Polaris Slingshot"
  3365. series="10"
  3366. latestVersion="1.1.2"
  3367. show = "0" >
  3368. <productMenu id="protocol"
  3369. type="0">
  3370. </productMenu>
  3371. <productMenu id="sip"
  3372. type="1" >
  3373. </productMenu>
  3374. <productMenu id="bluetoothIntercom"
  3375. type="1" >
  3376. </productMenu>
  3377. <productMenu id="phone"
  3378. type="2" >
  3379. </productMenu>
  3380. <productMenu id="fmradio"
  3381. type="3" >
  3382. </productMenu>
  3383. <productMenu id="deviceSetting"
  3384. type="1"
  3385. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  3386. <productMenuURL version="1.0"
  3387. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  3388. />
  3389. </productMenu>
  3390. <productMenu id="quickGuide"
  3391. type="1"
  3392. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  3393. size="689KB" >
  3394. </productMenu>
  3395. <productMenu id="userGuide"
  3396. type="1"
  3397. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  3398. size="1.43MB" >
  3399. </productMenu>
  3400. <productID id="5920"
  3401. />
  3402. <productGroupable type="0"
  3403. />
  3404. </product>
  3405. <product id="DWO6"
  3406. name="SEDICI DWO6-PRO"
  3407. series="10"
  3408. latestVersion="1.0.1"
  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/10R/DS_10R_v0200fm.xml" >
  3428. </productMenu>
  3429. <productMenu id="quickGuide"
  3430. type="1"
  3431. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_CG_DWO6P_01.pdf"
  3432. size="529KB" >
  3433. </productMenu>
  3434. <productMenu id="userGuide"
  3435. type="1"
  3436. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_CG_DWO6P_v1.0_01.pdf"
  3437. size="4.09MB" >
  3438. </productMenu>
  3439. <productID id="6112"
  3440. />
  3441. <productGroupable type="0"
  3442. />
  3443. </product>
  3444. <product id="DWO6A"
  3445. name="SEDICI DWO-6"
  3446. series="10"
  3447. latestVersion="1.0"
  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/DWO6/DS_DWO6A.xml" >
  3467. </productMenu>
  3468. <productMenu id="quickGuide"
  3469. type="1"
  3470. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_DWO-6_v1.0_en_200831.pdf"
  3471. size="522KB" >
  3472. </productMenu>
  3473. <productMenu id="userGuide"
  3474. type="1"
  3475. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_DWO-6_v1.0_en_200831.pdf"
  3476. size="2.71MB" >
  3477. </productMenu>
  3478. <productID id="6114"
  3479. />
  3480. <productGroupable type="0"
  3481. />
  3482. </product>
  3483. <product id="5S"
  3484. name="5S"
  3485. nameGuide="5S (2022~)"
  3486. series="5"
  3487. latestVersion="2.1"
  3488. show = "1" >
  3489. <productMenu id="protocol"
  3490. type="3" >
  3491. </productMenu>
  3492. <productMenu id="sip"
  3493. type="1" >
  3494. </productMenu>
  3495. <productMenu id="bluetoothIntercom"
  3496. type="1" >
  3497. </productMenu>
  3498. <productMenu id="phone"
  3499. type="1" >
  3500. </productMenu>
  3501. <productMenu id="fmradio"
  3502. type="1" >
  3503. </productMenu>
  3504. <productMenu id="deviceSetting"
  3505. type="1"
  3506. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  3507. </productMenu>
  3508. <productMenu id="quickGuide"
  3509. type="1"
  3510. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5S_2.0.0_en_220304.pdf"
  3511. size="934KB" >
  3512. </productMenu>
  3513. <productMenu id="userGuide"
  3514. type="1"
  3515. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5S_2.0.0_en_220406.pdf"
  3516. size="1.14MB" >
  3517. </productMenu>
  3518. <productID id="5590"
  3519. />
  3520. <productGroupable type="0"
  3521. />
  3522. </product>
  3523. <product id="5S"
  3524. name="5S"
  3525. nameGuide="5S (~2021)"
  3526. series="5"
  3527. latestVersion="1.2"
  3528. show = "1" >
  3529. <productMenu id="protocol"
  3530. type="0">
  3531. </productMenu>
  3532. <productMenu id="sip"
  3533. type="1" >
  3534. </productMenu>
  3535. <productMenu id="bluetoothIntercom"
  3536. type="1" >
  3537. </productMenu>
  3538. <productMenu id="phone"
  3539. type="2" >
  3540. </productMenu>
  3541. <productMenu id="fmradio"
  3542. type="3" >
  3543. </productMenu>
  3544. <productMenu id="deviceSetting"
  3545. type="1"
  3546. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  3547. </productMenu>
  3548. <productMenu id="quickGuide"
  3549. type="1"
  3550. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5S_1.1.0_en_211012.pdf"
  3551. size="970KB" >
  3552. </productMenu>
  3553. <productMenu id="userGuide"
  3554. type="1"
  3555. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5S_1.1.0_en_211012.pdf"
  3556. size="1.26MB" >
  3557. </productMenu>
  3558. <productID id="5534"
  3559. />
  3560. <productGroupable type="0"
  3561. />
  3562. </product>
  3563. <product id="3SPLUS"
  3564. name="3S PLUS"
  3565. series="3"
  3566. latestVersion="1.0.5"
  3567. show = "1" >
  3568. <productMenu id="protocol"
  3569. type="0">
  3570. </productMenu>
  3571. <productMenu id="sip"
  3572. type="1" >
  3573. </productMenu>
  3574. <productMenu id="bluetoothIntercom"
  3575. type="1" >
  3576. </productMenu>
  3577. <productMenu id="deviceSetting"
  3578. type="1"
  3579. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  3580. </productMenu>
  3581. <productMenu id="quickGuide"
  3582. type="1"
  3583. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_3S_PLUS_1.0.0_en_200813.pdf"
  3584. size="842KB" >
  3585. </productMenu>
  3586. <productMenu id="userGuide"
  3587. type="1"
  3588. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_app_3S_PLUS_1.0.1_en_210521.pdf"
  3589. size="1.02MB" >
  3590. </productMenu>
  3591. <productID id="6320"
  3592. />
  3593. <productGroupable type="0"
  3594. />
  3595. </product>
  3596. <product id="3SPLUS"
  3597. name="ZILL"
  3598. series="3"
  3599. latestVersion="1.0.4"
  3600. show = "0" >
  3601. <productMenu id="protocol"
  3602. type="0">
  3603. </productMenu>
  3604. <productMenu id="sip"
  3605. type="1" >
  3606. </productMenu>
  3607. <productMenu id="bluetoothIntercom"
  3608. type="1" >
  3609. </productMenu>
  3610. <productMenu id="deviceSetting"
  3611. type="1"
  3612. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  3613. </productMenu>
  3614. <productMenu id="quickGuide"
  3615. type="1"
  3616. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_3S_PLUS_1.0.0_en_200813.pdf"
  3617. size="842KB" >
  3618. </productMenu>
  3619. <productMenu id="userGuide"
  3620. type="1"
  3621. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_app_3S_PLUS_1.0.1_en_210521.pdf"
  3622. size="1.02MB" >
  3623. </productMenu>
  3624. <productID id="6335"
  3625. />
  3626. <productGroupable type="0"
  3627. />
  3628. </product>
  3629. <product id="33i"
  3630. name="33i"
  3631. series="50"
  3632. latestVersion="4.0"
  3633. show = "0" >
  3634. <productMenu id="protocol"
  3635. type="2" >
  3636. </productMenu>
  3637. <productMenu id="alexa"
  3638. type="0" >
  3639. </productMenu>
  3640. <productMenu id="ota"
  3641. type="0" >
  3642. </productMenu>
  3643. <productMenu id="wa"
  3644. type="0" >
  3645. </productMenu>
  3646. <productMenu id="sip"
  3647. type="1" >
  3648. </productMenu>
  3649. <productMenu id="meshIntercom"
  3650. type="20" >
  3651. </productMenu>
  3652. <productMenu id="bluetoothIntercom"
  3653. type="1" >
  3654. </productMenu>
  3655. <productMenu id="phone"
  3656. type="1" >
  3657. </productMenu>
  3658. <productMenu id="music"
  3659. type="1" >
  3660. </productMenu>
  3661. <productMenu id="fmradio"
  3662. type="1" >
  3663. </productMenu>
  3664. <productMenu id="deviceSetting"
  3665. type="1"
  3666. url="https://api.sena.com/support/SenaNeoApp/33i/NS_33iV2.xml" >
  3667. </productMenu>
  3668. <productMenu id="quickGuide"
  3669. type="1"
  3670. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_30k_2.1.0_en_210414.pdf"
  3671. size="934KB" >
  3672. </productMenu>
  3673. <productMenu id="userGuide"
  3674. type="1"
  3675. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_30K_3.1.0_en_210526.pdf"
  3676. size="1.14MB" >
  3677. </productMenu>
  3678. <productMenu id="volume"
  3679. type="11" >
  3680. </productMenu>
  3681. <productMenu id="battery"
  3682. type="1" >
  3683. </productMenu>
  3684. <productID id="3215"
  3685. />
  3686. <productGroupable type="0"
  3687. />
  3688. </product>
  3689. <product id="HD50S"
  3690. name="Boom! Audio 30K"
  3691. series="30"
  3692. latestVersion="3.3"
  3693. show = "0" >
  3694. <productMenu id="protocol"
  3695. type="1"
  3696. url="0">
  3697. </productMenu>
  3698. <productMenu id="wa"
  3699. type="0" >
  3700. </productMenu>
  3701. <productMenu id="sip"
  3702. type="1" >
  3703. </productMenu>
  3704. <productMenu id="meshIntercom"
  3705. type="20" >
  3706. <productMenuType version="2.9.9"
  3707. type="10"
  3708. />
  3709. </productMenu>
  3710. <productMenu id="bluetoothIntercom"
  3711. type="1" >
  3712. </productMenu>
  3713. <productMenu id="phone"
  3714. type="1" >
  3715. </productMenu>
  3716. <productMenu id="music"
  3717. type="1" >
  3718. </productMenu>
  3719. <productMenu id="fmradio"
  3720. type="1" >
  3721. </productMenu>
  3722. <productMenu id="deviceSetting"
  3723. type="1"
  3724. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  3725. <productMenuURL version="3.2"
  3726. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  3727. />
  3728. <productMenuURL version="3.0"
  3729. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  3730. />
  3731. <productMenuURL version="2.2"
  3732. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  3733. />
  3734. </productMenu>
  3735. <productMenu id="quickGuide"
  3736. type="1"
  3737. url="http://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  3738. size="1.06MB" >
  3739. </productMenu>
  3740. <productMenu id="userGuide"
  3741. type="1"
  3742. url="http://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  3743. size="3.15MB" >
  3744. </productMenu>
  3745. <productMenu id="volume"
  3746. type="1" >
  3747. </productMenu>
  3748. <productID id="3112"
  3749. />
  3750. <productGroupable type="0"
  3751. />
  3752. </product>
  3753. <product id="HD50S"
  3754. name="Boom! Audio N02"
  3755. series="30"
  3756. latestVersion="3.0"
  3757. show = "0" >
  3758. <productMenu id="protocol"
  3759. type="1"
  3760. url="0">
  3761. </productMenu>
  3762. <productMenu id="wa"
  3763. type="0" >
  3764. </productMenu>
  3765. <productMenu id="sip"
  3766. type="1" >
  3767. </productMenu>
  3768. <productMenu id="meshIntercom"
  3769. type="20" >
  3770. <productMenuType version="2.9.9"
  3771. type="10"
  3772. />
  3773. </productMenu>
  3774. <productMenu id="bluetoothIntercom"
  3775. type="1" >
  3776. </productMenu>
  3777. <productMenu id="phone"
  3778. type="1" >
  3779. </productMenu>
  3780. <productMenu id="music"
  3781. type="1" >
  3782. </productMenu>
  3783. <productMenu id="fmradio"
  3784. type="1" >
  3785. </productMenu>
  3786. <productMenu id="deviceSetting"
  3787. type="1"
  3788. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  3789. <productMenuURL version="2.2"
  3790. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  3791. />
  3792. </productMenu>
  3793. <productMenu id="quickGuide"
  3794. type="1"
  3795. url="http://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  3796. size="1.06MB" >
  3797. </productMenu>
  3798. <productMenu id="userGuide"
  3799. type="1"
  3800. url="http://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  3801. size="3.15MB" >
  3802. </productMenu>
  3803. <productMenu id="volume"
  3804. type="2" >
  3805. </productMenu>
  3806. <productID id="3114"
  3807. />
  3808. <productGroupable type="0"
  3809. />
  3810. </product>
  3811. <product id="HD50S"
  3812. name="Boom Audio 20S"
  3813. series="50"
  3814. latestVersion="2.5.1"
  3815. show = "0" >
  3816. <productMenu id="protocol"
  3817. type="0">
  3818. </productMenu>
  3819. <productMenu id="sip"
  3820. type="1" >
  3821. <productMenuType version="1.0"
  3822. type="0"
  3823. />
  3824. </productMenu>
  3825. <productMenu id="bluetoothIntercom"
  3826. type="1" >
  3827. <productMenuType version="1.0"
  3828. type="0"
  3829. />
  3830. </productMenu>
  3831. <productMenu id="intercomSetting"
  3832. type="1" >
  3833. </productMenu>
  3834. <productMenu id="phone"
  3835. type="2" >
  3836. </productMenu>
  3837. <productMenu id="fmradio"
  3838. type="3" >
  3839. </productMenu>
  3840. <productMenu id="deviceSetting"
  3841. type="1"
  3842. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  3843. <productMenuURL version="2.4"
  3844. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  3845. />
  3846. <productMenuURL version="1.5"
  3847. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  3848. />
  3849. <productMenuURL version="1.4.1"
  3850. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  3851. />
  3852. <productMenuURL version="1.1"
  3853. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  3854. />
  3855. <productMenuURL version="1.0"
  3856. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  3857. />
  3858. </productMenu>
  3859. <productMenu id="quickGuide"
  3860. type="1"
  3861. url="http://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  3862. size="264KB" >
  3863. </productMenu>
  3864. <productMenu id="userGuide"
  3865. type="1"
  3866. url="http://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  3867. size="3.09MB" >
  3868. </productMenu>
  3869. <productID id="4210"
  3870. />
  3871. <productProductKey key="11"
  3872. />
  3873. <productID id="4230"
  3874. />
  3875. <productProductKey key="11"
  3876. />
  3877. <productGroupable type="1"
  3878. />
  3879. </product>
  3880. <product id="HD50S"
  3881. name="Boom Audio 20S EVO"
  3882. series="50"
  3883. latestVersion="2.5.1"
  3884. show = "0" >
  3885. <productMenu id="protocol"
  3886. type="0">
  3887. </productMenu>
  3888. <productMenu id="sip"
  3889. type="1" >
  3890. <productMenuType version="1.0"
  3891. type="0"
  3892. />
  3893. </productMenu>
  3894. <productMenu id="bluetoothIntercom"
  3895. type="1" >
  3896. <productMenuType version="1.0"
  3897. type="0"
  3898. />
  3899. </productMenu>
  3900. <productMenu id="intercomSetting"
  3901. type="1" >
  3902. </productMenu>
  3903. <productMenu id="phone"
  3904. type="2" >
  3905. </productMenu>
  3906. <productMenu id="fmradio"
  3907. type="3" >
  3908. </productMenu>
  3909. <productMenu id="deviceSetting"
  3910. type="1"
  3911. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  3912. <productMenuURL version="2.4"
  3913. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  3914. />
  3915. <productMenuURL version="1.5"
  3916. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  3917. />
  3918. <productMenuURL version="1.4.1"
  3919. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  3920. />
  3921. <productMenuURL version="1.1"
  3922. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  3923. />
  3924. <productMenuURL version="1.0"
  3925. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  3926. />
  3927. </productMenu>
  3928. <productMenu id="quickGuide"
  3929. type="1"
  3930. url="http://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  3931. size="321KB" >
  3932. </productMenu>
  3933. <productMenu id="userGuide"
  3934. type="1"
  3935. url="http://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  3936. size="2.46MB" >
  3937. </productMenu>
  3938. <productID id="4230"
  3939. />
  3940. <productProductKey key="27"
  3941. />
  3942. <productGroupable type="1"
  3943. />
  3944. </product>
  3945. <product id="HD50S"
  3946. name="Boom! Audio 10S"
  3947. series="50"
  3948. latestVersion="1.1.2"
  3949. show = "0" >
  3950. <productMenu id="protocol"
  3951. type="0">
  3952. </productMenu>
  3953. <productMenu id="sip"
  3954. type="1" >
  3955. </productMenu>
  3956. <productMenu id="bluetoothIntercom"
  3957. type="1" >
  3958. </productMenu>
  3959. <productMenu id="phone"
  3960. type="2" >
  3961. </productMenu>
  3962. <productMenu id="fmradio"
  3963. type="3" >
  3964. </productMenu>
  3965. <productMenu id="deviceSetting"
  3966. type="1"
  3967. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  3968. </productMenu>
  3969. <productMenu id="quickGuide"
  3970. type="1"
  3971. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  3972. size="538KB" >
  3973. </productMenu>
  3974. <productMenu id="userGuide"
  3975. type="1"
  3976. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  3977. size="1.55MB" >
  3978. </productMenu>
  3979. <productID id="5532"
  3980. />
  3981. <productGroupable type="0"
  3982. />
  3983. </product>
  3984. <product id="HD50S"
  3985. name="Boom! Audio N01 10R"
  3986. series="50"
  3987. latestVersion="1.1.2"
  3988. show = "0" >
  3989. <productMenu id="protocol"
  3990. type="0">
  3991. </productMenu>
  3992. <productMenu id="sip"
  3993. type="1" >
  3994. </productMenu>
  3995. <productMenu id="bluetoothIntercom"
  3996. type="1" >
  3997. </productMenu>
  3998. <productMenu id="phone"
  3999. type="2" >
  4000. </productMenu>
  4001. <productMenu id="fmradio"
  4002. type="3" >
  4003. </productMenu>
  4004. <productMenu id="deviceSetting"
  4005. type="1"
  4006. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  4007. </productMenu>
  4008. <productMenu id="quickGuide"
  4009. type="1"
  4010. url="http://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  4011. size="766KB" >
  4012. </productMenu>
  4013. <productMenu id="userGuide"
  4014. type="1"
  4015. url="http://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  4016. size="1.45MB" >
  4017. </productMenu>
  4018. <productID id="5522"
  4019. />
  4020. <productGroupable type="0"
  4021. />
  4022. </product>
  4023. <product id="HD50S"
  4024. name="OUTRUSH-R N03"
  4025. series="50"
  4026. latestVersion="1.2"
  4027. show = "0" >
  4028. <productMenu id="protocol"
  4029. type="0">
  4030. </productMenu>
  4031. <productMenu id="sip"
  4032. type="1" >
  4033. </productMenu>
  4034. <productMenu id="bluetoothIntercom"
  4035. type="1" >
  4036. </productMenu>
  4037. <productMenu id="phone"
  4038. type="2" >
  4039. </productMenu>
  4040. <productMenu id="fmradio"
  4041. type="3" >
  4042. </productMenu>
  4043. <productMenu id="deviceSetting"
  4044. type="1"
  4045. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  4046. </productMenu>
  4047. <productMenu id="userGuide"
  4048. type="1"
  4049. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  4050. size="660KB" >
  4051. </productMenu>
  4052. <productID id="5434"
  4053. />
  4054. <productGroupable type="0"
  4055. />
  4056. </product>
  4057. <product id="5R"
  4058. name="5R"
  4059. series="5"
  4060. latestVersion="1.0"
  4061. show = "1" >
  4062. <productMenu id="protocol"
  4063. type="3" >
  4064. </productMenu>
  4065. <productMenu id="sip"
  4066. type="1" >
  4067. </productMenu>
  4068. <productMenu id="bluetoothIntercom"
  4069. type="1" >
  4070. </productMenu>
  4071. <productMenu id="phone"
  4072. type="1" >
  4073. </productMenu>
  4074. <productMenu id="fmradio"
  4075. type="1" >
  4076. </productMenu>
  4077. <productMenu id="deviceSetting"
  4078. type="1"
  4079. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  4080. </productMenu>
  4081. <productMenu id="quickGuide"
  4082. type="1"
  4083. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  4084. size="934KB" >
  4085. </productMenu>
  4086. <productMenu id="userGuide"
  4087. type="1"
  4088. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5R_1.0.0_en_220519.pdf"
  4089. size="1.14MB" >
  4090. </productMenu>
  4091. <productID id="5591"
  4092. />
  4093. <productGroupable type="0"
  4094. />
  4095. </product>
  4096. <product id="5R"
  4097. name="5R LITE"
  4098. series="5"
  4099. latestVersion="1.0"
  4100. show = "1" >
  4101. <productMenu id="protocol"
  4102. type="3" >
  4103. </productMenu>
  4104. <productMenu id="sip"
  4105. type="1" >
  4106. </productMenu>
  4107. <productMenu id="bluetoothIntercom"
  4108. type="1" >
  4109. </productMenu>
  4110. <productMenu id="phone"
  4111. type="1" >
  4112. </productMenu>
  4113. <productMenu id="fmradio"
  4114. type="1" >
  4115. </productMenu>
  4116. <productMenu id="deviceSetting"
  4117. type="1"
  4118. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE.xml" >
  4119. </productMenu>
  4120. <productMenu id="quickGuide"
  4121. type="1"
  4122. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_LITE_1.0.0_en_220511.pdf"
  4123. size="934KB" >
  4124. </productMenu>
  4125. <productMenu id="userGuide"
  4126. type="1"
  4127. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5R_LITE_1.0.0_en_220519.pdf"
  4128. size="1.14MB" >
  4129. </productMenu>
  4130. <productID id="5592"
  4131. />
  4132. <productGroupable type="0"
  4133. />
  4134. </product>
  4135. <product id="5R"
  4136. name="Ridekont 5R"
  4137. series="5"
  4138. latestVersion="1.0"
  4139. show = "0" >
  4140. <productMenu id="protocol"
  4141. type="3" >
  4142. </productMenu>
  4143. <productMenu id="sip"
  4144. type="1" >
  4145. </productMenu>
  4146. <productMenu id="bluetoothIntercom"
  4147. type="1" >
  4148. </productMenu>
  4149. <productMenu id="phone"
  4150. type="1" >
  4151. </productMenu>
  4152. <productMenu id="fmradio"
  4153. type="1" >
  4154. </productMenu>
  4155. <productMenu id="deviceSetting"
  4156. type="1"
  4157. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  4158. </productMenu>
  4159. <productMenu id="quickGuide"
  4160. type="1"
  4161. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  4162. size="934KB" >
  4163. </productMenu>
  4164. <productMenu id="userGuide"
  4165. type="1"
  4166. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5R_1.0.0_en_220519.pdf"
  4167. size="1.14MB" >
  4168. </productMenu>
  4169. <productID id="5593"
  4170. />
  4171. <productGroupable type="0"
  4172. />
  4173. </product>
  4174. <product id="5R"
  4175. name="Ridekont 5R LITE"
  4176. series="5"
  4177. latestVersion="1.0"
  4178. show = "0" >
  4179. <productMenu id="protocol"
  4180. type="3" >
  4181. </productMenu>
  4182. <productMenu id="sip"
  4183. type="1" >
  4184. </productMenu>
  4185. <productMenu id="bluetoothIntercom"
  4186. type="1" >
  4187. </productMenu>
  4188. <productMenu id="phone"
  4189. type="1" >
  4190. </productMenu>
  4191. <productMenu id="fmradio"
  4192. type="1" >
  4193. </productMenu>
  4194. <productMenu id="deviceSetting"
  4195. type="1"
  4196. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE.xml" >
  4197. </productMenu>
  4198. <productMenu id="quickGuide"
  4199. type="1"
  4200. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_LITE_1.0.0_en_220511.pdf"
  4201. size="934KB" >
  4202. </productMenu>
  4203. <productMenu id="userGuide"
  4204. type="1"
  4205. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5R_LITE_1.0.0_en_220519.pdf"
  4206. size="1.14MB" >
  4207. </productMenu>
  4208. <productID id="5594"
  4209. />
  4210. <productGroupable type="0"
  4211. />
  4212. </product>
  4213. <product id="3SPLUS"
  4214. name="3S PLUS"
  4215. series="30"
  4216. latestVersion="2.0"
  4217. show = "0" >
  4218. <productMenu id="protocol"
  4219. type="3" >
  4220. </productMenu>
  4221. <productMenu id="sip"
  4222. type="1" >
  4223. </productMenu>
  4224. <productMenu id="bluetoothIntercom"
  4225. type="1" >
  4226. </productMenu>
  4227. <productMenu id="deviceSetting"
  4228. type="1"
  4229. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  4230. </productMenu>
  4231. <productMenu id="userGuide"
  4232. type="1"
  4233. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_app_3S_PLUS_1.0.1_en_210521.pdf"
  4234. size="1.14MB" >
  4235. </productMenu>
  4236. <productID id="4023"
  4237. />
  4238. <productGroupable type="0"
  4239. />
  4240. </product>
  4241. <product id="ACSRAM"
  4242. name="ACS-RAM"
  4243. series="50"
  4244. latestVersion="1.0"
  4245. show = "0" >
  4246. <productMenu id="protocol"
  4247. type="3" >
  4248. </productMenu>
  4249. <productMenu id="sip"
  4250. type="1" >
  4251. </productMenu>
  4252. <productMenu id="bluetoothIntercom"
  4253. type="1" >
  4254. </productMenu>
  4255. <productMenu id="deviceSetting"
  4256. type="1"
  4257. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  4258. </productMenu>
  4259. <productMenu id="quickGuide"
  4260. type="1"
  4261. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  4262. size="344KB" >
  4263. </productMenu>
  4264. <productMenu id="userGuide"
  4265. type="1"
  4266. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  4267. size="1.14MB" >
  4268. </productMenu>
  4269. <productID id="3400"
  4270. />
  4271. <productGroupable type="0"
  4272. />
  4273. </product>
  4274. <product id="ACS10"
  4275. name="ACS10"
  4276. series="50"
  4277. latestVersion="1.0.1"
  4278. show = "0" >
  4279. <productMenu id="protocol"
  4280. type="0">
  4281. </productMenu>
  4282. <productMenu id="sip"
  4283. type="1" >
  4284. </productMenu>
  4285. <productMenu id="bluetoothIntercom"
  4286. type="1" >
  4287. </productMenu>
  4288. <productMenu id="phone"
  4289. type="2" >
  4290. </productMenu>
  4291. <productMenu id="deviceSetting"
  4292. type="1"
  4293. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  4294. </productMenu>
  4295. <productMenu id="quickGuide"
  4296. type="1"
  4297. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS10_1.0.0_en_210629.pdf"
  4298. size="970KB" >
  4299. </productMenu>
  4300. <productMenu id="userGuide"
  4301. type="1"
  4302. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS10_1.0.1_en_220314.pdf"
  4303. size="1.26MB" >
  4304. </productMenu>
  4305. <productID id="3300"
  4306. />
  4307. <productGroupable type="0"
  4308. />
  4309. </product>
  4310. <product id="Rumba"
  4311. name="Rumba"
  4312. series="30"
  4313. latestVersion="2.0"
  4314. show = "0" >
  4315. <productMenu id="protocol"
  4316. type="3" >
  4317. </productMenu>
  4318. <productMenu id="sip"
  4319. type="1" >
  4320. </productMenu>
  4321. <productMenu id="bluetoothIntercom"
  4322. type="1" >
  4323. </productMenu>
  4324. <productMenu id="deviceSetting"
  4325. type="1"
  4326. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  4327. </productMenu>
  4328. <productMenu id="quickGuide"
  4329. type="1"
  4330. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  4331. size="344KB" >
  4332. </productMenu>
  4333. <productMenu id="userGuide"
  4334. type="1"
  4335. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  4336. size="1.14MB" >
  4337. </productMenu>
  4338. <productID id="6322"
  4339. />
  4340. <productGroupable type="0"
  4341. />
  4342. </product>
  4343. <product id="DWO_7_Pro_Mesh"
  4344. name="DWO 7 Pro Mesh"
  4345. series="50"
  4346. latestVersion="1.0"
  4347. show = "0" >
  4348. <productMenu id="protocol"
  4349. type="2" >
  4350. </productMenu>
  4351. <productMenu id="alexa"
  4352. type="0" >
  4353. </productMenu>
  4354. <productMenu id="ota"
  4355. type="0" >
  4356. </productMenu>
  4357. <productMenu id="wa"
  4358. type="0" >
  4359. </productMenu>
  4360. <productMenu id="meshIntercom"
  4361. type="20" >
  4362. </productMenu>
  4363. <productMenu id="phone"
  4364. type="1" >
  4365. </productMenu>
  4366. <productMenu id="music"
  4367. type="1" >
  4368. </productMenu>
  4369. <productMenu id="fmradio"
  4370. type="1" >
  4371. </productMenu>
  4372. <productMenu id="musicSharing"
  4373. type="0" >
  4374. </productMenu>
  4375. <productMenu id="deviceSetting"
  4376. type="1"
  4377. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml" >
  4378. </productMenu>
  4379. <productMenu id="quickGuide"
  4380. type="1"
  4381. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_SPIDER_RT1_2.0.0_en_220613.pdf"
  4382. size="1.12MB" >
  4383. </productMenu>
  4384. <productMenu id="userGuide"
  4385. type="1"
  4386. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_SPIDER_RT1_2.0.0_en_220615.pdf"
  4387. size="2.0MB" >
  4388. </productMenu>
  4389. <productMenu id="volume"
  4390. type="12" >
  4391. </productMenu>
  4392. <productMenu id="battery"
  4393. type="1" >
  4394. </productMenu>
  4395. <productID id="6806"
  4396. />
  4397. <productGroupable type="0"
  4398. />
  4399. </product>
  4400. <product id="50B"
  4401. name="SMART HJC 50B"
  4402. series="50"
  4403. latestVersion="1.0"
  4404. show = "0" >
  4405. <productMenu id="protocol"
  4406. type="2" >
  4407. </productMenu>
  4408. <productMenu id="alexa"
  4409. type="0" >
  4410. </productMenu>
  4411. <productMenu id="ota"
  4412. type="0" >
  4413. </productMenu>
  4414. <productMenu id="wa"
  4415. type="0" >
  4416. </productMenu>
  4417. <productMenu id="sip"
  4418. type="1" >
  4419. </productMenu>
  4420. <productMenu id="meshIntercom"
  4421. type="20" >
  4422. </productMenu>
  4423. <productMenu id="bluetoothIntercom"
  4424. type="1" >
  4425. </productMenu>
  4426. <productMenu id="phone"
  4427. type="1" >
  4428. </productMenu>
  4429. <productMenu id="music"
  4430. type="1" >
  4431. </productMenu>
  4432. <productMenu id="fmradio"
  4433. type="1" >
  4434. </productMenu>
  4435. <productMenu id="deviceSetting"
  4436. type="1"
  4437. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml" >
  4438. </productMenu>
  4439. <productMenu id="quickGuide"
  4440. type="1"
  4441. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50R_03.pdf"
  4442. size="344KB" >
  4443. </productMenu>
  4444. <productMenu id="userGuide"
  4445. type="1"
  4446. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50R_1.2.0_en_200910.pdf"
  4447. size="3.41MB" >
  4448. </productMenu>
  4449. <productMenu id="volume"
  4450. type="11" >
  4451. </productMenu>
  4452. <productMenu id="battery"
  4453. type="1" >
  4454. </productMenu>
  4455. <productID id="3214"
  4456. />
  4457. <productGroupable type="0"
  4458. />
  4459. </product>
  4460. <product id="MeshStation"
  4461. name="Mesh Station"
  4462. series="50"
  4463. latestVersion="0.9"
  4464. show = "0" >
  4465. <productMenu id="protocol"
  4466. type="2" >
  4467. </productMenu>
  4468. <productMenu id="meshIntercom"
  4469. type="20"
  4470. url="99" >
  4471. </productMenu>
  4472. <productID id="3161"
  4473. />
  4474. <productGroupable type="0"
  4475. />
  4476. </product>
  4477. <!--
  4478. <product id="20S"
  4479. name="20S"
  4480. series="20"
  4481. latestVersion="2.1"
  4482. show = "1" >
  4483. <productMenu id="protocol"
  4484. type="0">
  4485. </productMenu>
  4486. <productMenu id="wa"
  4487. type="1" >
  4488. </productMenu>
  4489. <productMenu id="sip"
  4490. type="1" >
  4491. </productMenu>
  4492. <productMenu id="bluetoothIntercom"
  4493. type="1" >
  4494. </productMenu>
  4495. <productMenu id="intercomSetting"
  4496. type="1" >
  4497. </productMenu>
  4498. <productMenu id="phone"
  4499. type="2" >
  4500. </productMenu>
  4501. <productMenu id="fmradio"
  4502. type="3" >
  4503. </productMenu>
  4504. <productMenu id="deviceSetting"
  4505. type="1"
  4506. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  4507. <productMenuURL version="2.0.2"
  4508. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  4509. />
  4510. <productMenuURL version="1.5"
  4511. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  4512. />
  4513. <productMenuURL version="1.4.1"
  4514. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  4515. />
  4516. <productMenuURL version="1.1"
  4517. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  4518. />
  4519. <productMenuURL version="1.0"
  4520. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  4521. />
  4522. </productMenu>
  4523. <productMenu id="quickGuide"
  4524. type="1"
  4525. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_20S_EVO_en_1.1.0_210413.pdf"
  4526. size="1.13MB" >
  4527. </productMenu>
  4528. <productMenu id="userGuide"
  4529. type="1"
  4530. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_20S_EVO_1.1.0_en_210527.pdf"
  4531. size="2.03MB" >
  4532. </productMenu>
  4533. <productID id="4210"
  4534. />
  4535. <productGroupable type="1"
  4536. />
  4537. </product>
  4538. <product id="20S_EVO"
  4539. name="20S EVO"
  4540. series="20"
  4541. latestVersion="2.1"
  4542. show = "1" >
  4543. <productMenu id="protocol"
  4544. type="0" >
  4545. </productMenu>
  4546. <productMenu id="wa"
  4547. type="1" >
  4548. </productMenu>
  4549. <productMenu id="sip"
  4550. type="1" >
  4551. </productMenu>
  4552. <productMenu id="bluetoothIntercom"
  4553. type="1" >
  4554. </productMenu>
  4555. <productMenu id="intercomSetting"
  4556. type="1" >
  4557. </productMenu>
  4558. <productMenu id="phone"
  4559. type="2" >
  4560. </productMenu>
  4561. <productMenu id="fmradio"
  4562. type="3" >
  4563. </productMenu>
  4564. <productMenu id="deviceSetting"
  4565. type="1"
  4566. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  4567. <productMenuURL version="2.0.2"
  4568. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  4569. />
  4570. <productMenuURL version="1.5"
  4571. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  4572. />
  4573. <productMenuURL version="1.4.1"
  4574. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  4575. />
  4576. <productMenuURL version="1.1"
  4577. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  4578. />
  4579. <productMenuURL version="1.0"
  4580. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  4581. />
  4582. </productMenu>
  4583. <productMenu id="quickGuide"
  4584. type="1"
  4585. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_20S_EVO_en_1.1.0_210413.pdf"
  4586. size="1.13MB" >
  4587. </productMenu>
  4588. <productMenu id="userGuide"
  4589. type="1"
  4590. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_20S_EVO_1.1.0_en_210527.pdf"
  4591. size="2.03MB" >
  4592. </productMenu>
  4593. <productID id="4210"
  4594. />
  4595. <productProductKey key="16"
  4596. />
  4597. <productGroupable type="1"
  4598. />
  4599. </product>
  4600. <product id="10C_Pro"
  4601. name="10C Pro"
  4602. series="10"
  4603. latestVersion="2.6"
  4604. show = "1" >
  4605. <productMenu id="protocol"
  4606. type="0">
  4607. </productMenu>
  4608. <productMenu id="sip"
  4609. type="1" >
  4610. </productMenu>
  4611. <productMenu id="bluetoothIntercom"
  4612. type="1" >
  4613. </productMenu>
  4614. <productMenu id="phone"
  4615. type="2" >
  4616. </productMenu>
  4617. <productMenu id="fmradio"
  4618. type="3" >
  4619. </productMenu>
  4620. <productMenu id="deviceSetting"
  4621. type="1"
  4622. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  4623. <productMenuURL version="2.5.1"
  4624. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  4625. />
  4626. <productMenuURL version="1.0"
  4627. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  4628. />
  4629. </productMenu>
  4630. <productMenu id="quickGuide"
  4631. type="1"
  4632. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  4633. size="651KB" >
  4634. </productMenu>
  4635. <productMenu id="userGuide"
  4636. type="1"
  4637. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  4638. size="2.34MB" >
  4639. </productMenu>
  4640. <productID id="5580"
  4641. />
  4642. <productGroupable type="0"
  4643. />
  4644. </product>
  4645. <product id="10C_EVO"
  4646. name="10C EVO"
  4647. series="10"
  4648. latestVersion="1.5.1"
  4649. show = "1" >
  4650. <productMenu id="protocol"
  4651. type="0">
  4652. </productMenu>
  4653. <productMenu id="sip"
  4654. type="1" >
  4655. </productMenu>
  4656. <productMenu id="bluetoothIntercom"
  4657. type="1" >
  4658. </productMenu>
  4659. <productMenu id="phone"
  4660. type="2" >
  4661. </productMenu>
  4662. <productMenu id="fmradio"
  4663. type="3" >
  4664. </productMenu>
  4665. <productMenu id="deviceSetting"
  4666. type="1"
  4667. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  4668. <productMenuURL version="1.3.1"
  4669. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  4670. />
  4671. </productMenu>
  4672. <productMenu id="quickGuide"
  4673. type="1"
  4674. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_EVO_02.pdf"
  4675. size="1.32MB" >
  4676. </productMenu>
  4677. <productMenu id="userGuide"
  4678. type="1"
  4679. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_EVO_v1.0_04.pdf"
  4680. size="1.68MB" >
  4681. </productMenu>
  4682. <productID id="5570"
  4683. />
  4684. <productGroupable type="0"
  4685. />
  4686. </product>
  4687. <product id="10U_GT_AIR"
  4688. name="10U GT-Air"
  4689. series="10"
  4690. latestVersion="2.0.3"
  4691. show = "1" >
  4692. <productMenu id="protocol"
  4693. type="0">
  4694. </productMenu>
  4695. <productMenu id="sip"
  4696. type="1" >
  4697. <productMenuType version="1.0.2"
  4698. type="0"
  4699. />
  4700. </productMenu>
  4701. <productMenu id="bluetoothIntercom"
  4702. type="1" >
  4703. <productMenuType version="1.0.2"
  4704. type="0"
  4705. />
  4706. </productMenu>
  4707. <productMenu id="phone"
  4708. type="2" >
  4709. </productMenu>
  4710. <productMenu id="fmradio"
  4711. type="3" >
  4712. </productMenu>
  4713. <productMenu id="deviceSetting"
  4714. type="1"
  4715. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4716. <productMenuURL version="1.3.2"
  4717. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4718. />
  4719. <productMenuURL version="1.0.2"
  4720. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4721. />
  4722. </productMenu>
  4723. <productMenu id="quickGuide"
  4724. type="1"
  4725. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  4726. size="685KB" >
  4727. </productMenu>
  4728. <productMenu id="userGuide"
  4729. type="1"
  4730. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_10U(RC4)_2.1.0_en_201203.pdf"
  4731. size="684KB" >
  4732. </productMenu>
  4733. <productID id="5610"
  4734. />
  4735. <productGroupable type="0"
  4736. />
  4737. </product>
  4738. <product id="10U_NEOTEC"
  4739. name="10U Neotec"
  4740. series="10"
  4741. latestVersion="2.0.3"
  4742. show = "1" >
  4743. <productMenu id="protocol"
  4744. type="0">
  4745. </productMenu>
  4746. <productMenu id="sip"
  4747. type="1" >
  4748. <productMenuType version="1.0.2"
  4749. type="0"
  4750. />
  4751. </productMenu>
  4752. <productMenu id="bluetoothIntercom"
  4753. type="1" >
  4754. <productMenuType version="1.0.2"
  4755. type="0"
  4756. />
  4757. </productMenu>
  4758. <productMenu id="phone"
  4759. type="2" >
  4760. </productMenu>
  4761. <productMenu id="fmradio"
  4762. type="3" >
  4763. </productMenu>
  4764. <productMenu id="deviceSetting"
  4765. type="1"
  4766. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4767. <productMenuURL version="1.3.2"
  4768. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4769. />
  4770. <productMenuURL version="1.0.2"
  4771. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4772. />
  4773. </productMenu>
  4774. <productMenu id="quickGuide"
  4775. type="1"
  4776. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  4777. size="689KB" >
  4778. </productMenu>
  4779. <productMenu id="userGuide"
  4780. type="1"
  4781. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_10U(RC4)_2.1.0_en_201203.pdf"
  4782. size="684KB" >
  4783. </productMenu>
  4784. <productID id="5611"
  4785. />
  4786. <productGroupable type="0"
  4787. />
  4788. </product>
  4789. <product id="10U_J_CRUISE"
  4790. name="10U J-Cruise"
  4791. series="10"
  4792. latestVersion="2.0.3"
  4793. show = "1" >
  4794. <productMenu id="protocol"
  4795. type="0">
  4796. </productMenu>
  4797. <productMenu id="sip"
  4798. type="1" >
  4799. <productMenuType version="1.0.2"
  4800. type="0"
  4801. />
  4802. </productMenu>
  4803. <productMenu id="bluetoothIntercom"
  4804. type="1" >
  4805. <productMenuType version="1.0.2"
  4806. type="0"
  4807. />
  4808. </productMenu>
  4809. <productMenu id="phone"
  4810. type="2" >
  4811. </productMenu>
  4812. <productMenu id="fmradio"
  4813. type="3" >
  4814. </productMenu>
  4815. <productMenu id="deviceSetting"
  4816. type="1"
  4817. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4818. <productMenuURL version="1.3.2"
  4819. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4820. />
  4821. <productMenuURL version="1.0.2"
  4822. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4823. />
  4824. </productMenu>
  4825. <productMenu id="quickGuide"
  4826. type="1"
  4827. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  4828. size="686KB" >
  4829. </productMenu>
  4830. <productMenu id="userGuide"
  4831. type="1"
  4832. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_10U(RC4)_2.1.0_en_201203.pdf"
  4833. size="684KB" >
  4834. </productMenu>
  4835. <productID id="5612"
  4836. />
  4837. <productGroupable type="0"
  4838. />
  4839. </product>
  4840. <product id="10U_C3"
  4841. name="10U C3/C3Pro"
  4842. series="10"
  4843. latestVersion="2.0.3"
  4844. show = "1" >
  4845. <productMenu id="protocol"
  4846. type="0">
  4847. </productMenu>
  4848. <productMenu id="sip"
  4849. type="1" >
  4850. <productMenuType version="1.0.2"
  4851. type="0"
  4852. />
  4853. </productMenu>
  4854. <productMenu id="bluetoothIntercom"
  4855. type="1" >
  4856. <productMenuType version="1.0.2"
  4857. type="0"
  4858. />
  4859. </productMenu>
  4860. <productMenu id="phone"
  4861. type="2" >
  4862. </productMenu>
  4863. <productMenu id="fmradio"
  4864. type="3" >
  4865. </productMenu>
  4866. <productMenu id="deviceSetting"
  4867. type="1"
  4868. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4869. <productMenuURL version="1.3.2"
  4870. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4871. />
  4872. <productMenuURL version="1.0.2"
  4873. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4874. />
  4875. </productMenu>
  4876. <productMenu id="quickGuide"
  4877. type="1"
  4878. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  4879. size="199KB" >
  4880. </productMenu>
  4881. <productMenu id="userGuide"
  4882. type="1"
  4883. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_10U(RC4)_2.1.0_en_201203.pdf"
  4884. size="684KB" >
  4885. </productMenu>
  4886. <productID id="5620"
  4887. />
  4888. <productGroupable type="0"
  4889. />
  4890. </product>
  4891. <product id="10U_ARAI"
  4892. name="10U Arai"
  4893. series="10"
  4894. latestVersion="2.0.3"
  4895. show = "1" >
  4896. <productMenu id="protocol"
  4897. type="0">
  4898. </productMenu>
  4899. <productMenu id="sip"
  4900. type="1" >
  4901. <productMenuType version="1.0.2"
  4902. type="0"
  4903. />
  4904. </productMenu>
  4905. <productMenu id="bluetoothIntercom"
  4906. type="1" >
  4907. <productMenuType version="1.0.2"
  4908. type="0"
  4909. />
  4910. </productMenu>
  4911. <productMenu id="phone"
  4912. type="2" >
  4913. </productMenu>
  4914. <productMenu id="fmradio"
  4915. type="3" >
  4916. </productMenu>
  4917. <productMenu id="deviceSetting"
  4918. type="1"
  4919. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4920. <productMenuURL version="1.3.2"
  4921. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4922. />
  4923. <productMenuURL version="1.0.2"
  4924. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4925. />
  4926. </productMenu>
  4927. <productMenu id="quickGuide"
  4928. type="1"
  4929. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Arai_04.pdf"
  4930. size="689KB" >
  4931. </productMenu>
  4932. <productMenu id="userGuide"
  4933. type="1"
  4934. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_10U(RC4)_2.1.0_en_201203.pdf"
  4935. size="684KB" >
  4936. </productMenu>
  4937. <productID id="5621"
  4938. />
  4939. <productGroupable type="0"
  4940. />
  4941. </product>
  4942. <product id="10Upad"
  4943. name="10Upad"
  4944. series="10"
  4945. latestVersion="2.0.2"
  4946. show = "1" >
  4947. <productMenu id="protocol"
  4948. type="0">
  4949. </productMenu>
  4950. <productMenu id="sip"
  4951. type="1" >
  4952. </productMenu>
  4953. <productMenu id="bluetoothIntercom"
  4954. type="1" >
  4955. </productMenu>
  4956. <productMenu id="phone"
  4957. type="2" >
  4958. </productMenu>
  4959. <productMenu id="fmradio"
  4960. type="3" >
  4961. </productMenu>
  4962. <productMenu id="deviceSetting"
  4963. type="1"
  4964. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  4965. <productMenuURL version="1.0.3"
  4966. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  4967. />
  4968. </productMenu>
  4969. <productMenu id="quickGuide"
  4970. type="1"
  4971. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  4972. size="615KB" >
  4973. </productMenu>
  4974. <productMenu id="userGuide"
  4975. type="1"
  4976. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  4977. size="0.99MB" >
  4978. </productMenu>
  4979. <productID id="6210"
  4980. />
  4981. <productGroupable type="0"
  4982. />
  4983. </product>
  4984. <product id="10S"
  4985. name="10S"
  4986. series="10"
  4987. latestVersion="2.0.3"
  4988. show = "1" >
  4989. <productMenu id="protocol"
  4990. type="0">
  4991. </productMenu>
  4992. <productMenu id="sip"
  4993. type="1" >
  4994. </productMenu>
  4995. <productMenu id="bluetoothIntercom"
  4996. type="1" >
  4997. </productMenu>
  4998. <productMenu id="phone"
  4999. type="2" >
  5000. </productMenu>
  5001. <productMenu id="fmradio"
  5002. type="3" >
  5003. </productMenu>
  5004. <productMenu id="deviceSetting"
  5005. type="1"
  5006. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  5007. <productMenuURL version="1.5"
  5008. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  5009. />
  5010. <productMenuURL version="1.3.1"
  5011. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  5012. />
  5013. </productMenu>
  5014. <productMenu id="quickGuide"
  5015. type="1"
  5016. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10S_03.pdf"
  5017. size="310KB" >
  5018. </productMenu>
  5019. <productMenu id="userGuide"
  5020. type="1"
  5021. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10S_v2.0_01.pdf"
  5022. size="1.57MB" >
  5023. </productMenu>
  5024. <productID id="5530"
  5025. />
  5026. <productGroupable type="0"
  5027. />
  5028. </product>
  5029. <product id="10C"
  5030. name="10C"
  5031. series="10"
  5032. latestVersion="3.0.4"
  5033. show = "1" >
  5034. <productMenu id="protocol"
  5035. type="0">
  5036. </productMenu>
  5037. <productMenu id="sip"
  5038. type="1" >
  5039. <productMenuType version="1.0.4"
  5040. type="0"
  5041. />
  5042. </productMenu>
  5043. <productMenu id="bluetoothIntercom"
  5044. type="1" >
  5045. <productMenuType version="1.0.4"
  5046. type="0"
  5047. />
  5048. </productMenu>
  5049. <productMenu id="phone"
  5050. type="2" >
  5051. </productMenu>
  5052. <productMenu id="fmradio"
  5053. type="3" >
  5054. </productMenu>
  5055. <productMenu id="deviceSetting"
  5056. type="1"
  5057. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300.xml" >
  5058. <productMenuURL version="2.3"
  5059. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  5060. />
  5061. <productMenuURL version="2.1.1"
  5062. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  5063. />
  5064. <productMenuURL version="1.0.4"
  5065. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  5066. />
  5067. <productMenuURL version="1.0.2"
  5068. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  5069. />
  5070. </productMenu>
  5071. <productMenu id="quickGuide"
  5072. type="1"
  5073. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  5074. size="935KB" >
  5075. </productMenu>
  5076. <productMenu id="userGuide"
  5077. type="1"
  5078. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  5079. size="2.82MB" >
  5080. </productMenu>
  5081. <productID id="5510"
  5082. />
  5083. <productGroupable type="0"
  5084. />
  5085. </product>
  5086. <product id="5S"
  5087. name="5S"
  5088. series="10"
  5089. latestVersion="1.0.4"
  5090. show = "1" >
  5091. <productMenu id="protocol"
  5092. type="0">
  5093. </productMenu>
  5094. <productMenu id="sip"
  5095. type="1" >
  5096. </productMenu>
  5097. <productMenu id="bluetoothIntercom"
  5098. type="1" >
  5099. </productMenu>
  5100. <productMenu id="phone"
  5101. type="2" >
  5102. </productMenu>
  5103. <productMenu id="fmradio"
  5104. type="3" >
  5105. </productMenu>
  5106. <productMenu id="deviceSetting"
  5107. type="1"
  5108. url="https://api.sena.com/support/SenaNeoApp/5S/NS_5S.xml" >
  5109. </productMenu>
  5110. <productMenu id="quickGuide"
  5111. type="1"
  5112. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5S_1.0.0_en_200410.pdf"
  5113. size="970KB" >
  5114. </productMenu>
  5115. <productMenu id="userGuide"
  5116. type="1"
  5117. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5S_1.0.0_en_200330.pdf"
  5118. size="1.26MB" >
  5119. </productMenu>
  5120. <productID id="5534"
  5121. />
  5122. <productGroupable type="0"
  5123. />
  5124. </product>
  5125. <product id="3SPLUS"
  5126. name="3S PLUS"
  5127. series="10"
  5128. latestVersion="1.0.3"
  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/3SPLUS/DS_3SPLUS_2.xml" >
  5142. </productMenu>
  5143. <productMenu id="quickGuide"
  5144. type="1"
  5145. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_3S_PLUS_1.0.0_en_200813.pdf"
  5146. size="842KB" >
  5147. </productMenu>
  5148. <productMenu id="userGuide"
  5149. type="1"
  5150. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_app_3S_PLUS_1.0.1_en_210521.pdf"
  5151. size="1.02MB" >
  5152. </productMenu>
  5153. <productID id="6320"
  5154. />
  5155. <productGroupable type="0"
  5156. />
  5157. </product>
  5158. <product id="Neotec2"
  5159. name="SRL Neotec2"
  5160. series="momentum"
  5161. latestVersion="1.1.2"
  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="intercomSetting"
  5173. type="1" >
  5174. </productMenu>
  5175. <productMenu id="phone"
  5176. type="2" >
  5177. </productMenu>
  5178. <productMenu id="fmradio"
  5179. type="3" >
  5180. </productMenu>
  5181. <productMenu id="deviceSetting"
  5182. type="1"
  5183. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5184. </productMenu>
  5185. <productMenu id="quickGuide"
  5186. type="1"
  5187. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_SRL_for_Shoei_Neotec_II_01.pdf"
  5188. size="796KB" >
  5189. </productMenu>
  5190. <productMenu id="userGuide"
  5191. type="1"
  5192. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_SRL_for_Shoei_Neotec_II_v1.0_01.pdf"
  5193. size="1.90MB" >
  5194. </productMenu>
  5195. <productID id="4510"
  5196. />
  5197. <productGroupable type="1"
  5198. />
  5199. </product>
  5200. <product id="SRL2"
  5201. name="SRL2"
  5202. series="momentum"
  5203. latestVersion="1.0.6"
  5204. show = "1" >
  5205. <productMenu id="protocol"
  5206. type="0">
  5207. </productMenu>
  5208. <productMenu id="sip"
  5209. type="1" >
  5210. </productMenu>
  5211. <productMenu id="bluetoothIntercom"
  5212. type="1" >
  5213. </productMenu>
  5214. <productMenu id="intercomSetting"
  5215. type="1" >
  5216. </productMenu>
  5217. <productMenu id="phone"
  5218. type="2" >
  5219. </productMenu>
  5220. <productMenu id="fmradio"
  5221. type="3" >
  5222. </productMenu>
  5223. <productMenu id="deviceSetting"
  5224. type="1"
  5225. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5226. </productMenu>
  5227. <productMenu id="quickGuide"
  5228. type="1"
  5229. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_SRL2_01.pdf"
  5230. size="846KB" >
  5231. </productMenu>
  5232. <productMenu id="userGuide"
  5233. type="1"
  5234. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_SRL2_v1.0_01.pdf"
  5235. size="1.18MB" >
  5236. </productMenu>
  5237. <productID id="4530"
  5238. />
  5239. <productGroupable type="1"
  5240. />
  5241. </product>
  5242. <product id="10R"
  5243. name="10R"
  5244. series="10"
  5245. latestVersion="2.0.3"
  5246. show = "1" >
  5247. <productMenu id="protocol"
  5248. type="0">
  5249. </productMenu>
  5250. <productMenu id="sip"
  5251. type="1" >
  5252. <productMenuType version="1.0.2"
  5253. type="0"
  5254. />
  5255. </productMenu>
  5256. <productMenu id="bluetoothIntercom"
  5257. type="1" >
  5258. <productMenuType version="1.0.2"
  5259. type="0"
  5260. />
  5261. </productMenu>
  5262. <productMenu id="phone"
  5263. type="2" >
  5264. </productMenu>
  5265. <productMenu id="fmradio"
  5266. type="3" >
  5267. </productMenu>
  5268. <productMenu id="deviceSetting"
  5269. type="1"
  5270. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  5271. <productMenuURL version="1.4"
  5272. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  5273. />
  5274. <productMenuURL version="1.2.1"
  5275. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  5276. />
  5277. <productMenuURL version="1.0.2"
  5278. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  5279. />
  5280. <productMenuURL version="1.0"
  5281. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  5282. />
  5283. </productMenu>
  5284. <productMenu id="quickGuide"
  5285. type="1"
  5286. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10R_04.pdf"
  5287. size="400KB" >
  5288. </productMenu>
  5289. <productMenu id="userGuide"
  5290. type="1"
  5291. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10R_v2.0_01.pdf"
  5292. size="2.75MB" >
  5293. </productMenu>
  5294. <productID id="5520"
  5295. />
  5296. <productGroupable type="0"
  5297. />
  5298. </product>
  5299. <product id="Cavalry"
  5300. name="Cavalry"
  5301. series="cavalry"
  5302. latestVersion="1.1.2"
  5303. show = "1" >
  5304. <productMenu id="protocol"
  5305. type="0">
  5306. </productMenu>
  5307. <productMenu id="sip"
  5308. type="1" >
  5309. </productMenu>
  5310. <productMenu id="bluetoothIntercom"
  5311. type="1" >
  5312. </productMenu>
  5313. <productMenu id="phone"
  5314. type="2" >
  5315. </productMenu>
  5316. <productMenu id="fmradio"
  5317. type="3" >
  5318. </productMenu>
  5319. <productMenu id="deviceSetting"
  5320. type="1"
  5321. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  5322. <productMenuURL version="1.9"
  5323. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  5324. />
  5325. <productMenuURL version="1.0.1"
  5326. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  5327. />
  5328. </productMenu>
  5329. <productMenu id="quickGuide"
  5330. type="1"
  5331. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  5332. size="795KB" >
  5333. </productMenu>
  5334. <productMenu id="userGuide"
  5335. type="1"
  5336. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  5337. size="1.87MB" >
  5338. </productMenu>
  5339. <productID id="5524"
  5340. />
  5341. <productGroupable type="0"
  5342. />
  5343. </product>
  5344. <product id="Cavalry_Lite"
  5345. name="Cavalry Lite"
  5346. series="cavalry"
  5347. latestVersion="1.0.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/Cavalry/DS_Cavalry.xml" >
  5367. </productMenu>
  5368. <productMenu id="userGuide"
  5369. type="1"
  5370. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  5371. size="1.74MB" >
  5372. </productMenu>
  5373. <productID id="5536"
  5374. />
  5375. <productGroupable type="0"
  5376. />
  5377. </product>
  5378. <product id="Momentum"
  5379. name="Momentum"
  5380. series="momentum"
  5381. latestVersion="1.0.8"
  5382. show = "1" >
  5383. <productMenu id="protocol"
  5384. type="0">
  5385. </productMenu>
  5386. <productMenu id="sip"
  5387. type="1" >
  5388. </productMenu>
  5389. <productMenu id="bluetoothIntercom"
  5390. type="1" >
  5391. </productMenu>
  5392. <productMenu id="intercomSetting"
  5393. type="1" >
  5394. </productMenu>
  5395. <productMenu id="phone"
  5396. type="2" >
  5397. </productMenu>
  5398. <productMenu id="fmradio"
  5399. type="3" >
  5400. </productMenu>
  5401. <productMenu id="deviceSetting"
  5402. type="1"
  5403. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5404. </productMenu>
  5405. <productMenu id="quickGuide"
  5406. type="1"
  5407. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  5408. size="795KB" >
  5409. </productMenu>
  5410. <productMenu id="userGuide"
  5411. type="1"
  5412. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  5413. size="1.44MB" >
  5414. </productMenu>
  5415. <productID id="4310"
  5416. />
  5417. <productGroupable type="1"
  5418. />
  5419. </product>
  5420. <product id="Momentum_Pro"
  5421. name="Momentum Pro"
  5422. series="momentum"
  5423. latestVersion="1.0.5"
  5424. show = "1" >
  5425. <productMenu id="protocol"
  5426. type="0">
  5427. </productMenu>
  5428. <productMenu id="sip"
  5429. type="1" >
  5430. </productMenu>
  5431. <productMenu id="bluetoothIntercom"
  5432. type="1" >
  5433. </productMenu>
  5434. <productMenu id="intercomSetting"
  5435. type="1" >
  5436. </productMenu>
  5437. <productMenu id="phone"
  5438. type="2" >
  5439. </productMenu>
  5440. <productMenu id="fmradio"
  5441. type="3" >
  5442. </productMenu>
  5443. <productMenu id="deviceSetting"
  5444. type="1"
  5445. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5446. </productMenu>
  5447. <productMenu id="quickGuide"
  5448. type="1"
  5449. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  5450. size="839KB" >
  5451. </productMenu>
  5452. <productMenu id="userGuide"
  5453. type="1"
  5454. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  5455. size="1.08MB" >
  5456. </productMenu>
  5457. <productID id="4330"
  5458. />
  5459. <productGroupable type="1"
  5460. />
  5461. </product>
  5462. <product id="Momentum_INC"
  5463. name="Momentum INC"
  5464. series="momentum"
  5465. latestVersion="1.0.6"
  5466. show = "1" >
  5467. <productMenu id="protocol"
  5468. type="0">
  5469. </productMenu>
  5470. <productMenu id="sip"
  5471. type="1" >
  5472. </productMenu>
  5473. <productMenu id="bluetoothIntercom"
  5474. type="1" >
  5475. </productMenu>
  5476. <productMenu id="intercomSetting"
  5477. type="1" >
  5478. </productMenu>
  5479. <productMenu id="phone"
  5480. type="2" >
  5481. </productMenu>
  5482. <productMenu id="fmradio"
  5483. type="3" >
  5484. </productMenu>
  5485. <productMenu id="deviceSetting"
  5486. type="1"
  5487. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  5488. </productMenu>
  5489. <productMenu id="quickGuide"
  5490. type="1"
  5491. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  5492. size="794KB" >
  5493. </productMenu>
  5494. <productMenu id="userGuide"
  5495. type="1"
  5496. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  5497. size="1.53MB" >
  5498. </productMenu>
  5499. <productID id="4410"
  5500. />
  5501. <productGroupable type="1"
  5502. />
  5503. </product>
  5504. <product id="Momentum_INCP"
  5505. name="Momentum INC Pro"
  5506. series="momentum"
  5507. latestVersion="1.0.3"
  5508. show = "1" >
  5509. <productMenu id="protocol"
  5510. type="0">
  5511. </productMenu>
  5512. <productMenu id="sip"
  5513. type="1" >
  5514. </productMenu>
  5515. <productMenu id="bluetoothIntercom"
  5516. type="1" >
  5517. </productMenu>
  5518. <productMenu id="intercomSetting"
  5519. type="1" >
  5520. </productMenu>
  5521. <productMenu id="phone"
  5522. type="2" >
  5523. </productMenu>
  5524. <productMenu id="fmradio"
  5525. type="3" >
  5526. </productMenu>
  5527. <productMenu id="deviceSetting"
  5528. type="1"
  5529. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  5530. </productMenu>
  5531. <productMenu id="quickGuide"
  5532. type="1"
  5533. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  5534. size="794KB" >
  5535. </productMenu>
  5536. <productMenu id="userGuide"
  5537. type="1"
  5538. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  5539. size="1.53MB" >
  5540. </productMenu>
  5541. <productID id="4430"
  5542. />
  5543. <productGroupable type="1"
  5544. />
  5545. </product>
  5546. <product id="Momentum_Lite"
  5547. name="Momentum Lite"
  5548. series="momentum"
  5549. latestVersion="2.0.2"
  5550. show = "1" >
  5551. <productMenu id="protocol"
  5552. type="0">
  5553. </productMenu>
  5554. <productMenu id="sip"
  5555. type="1" >
  5556. </productMenu>
  5557. <productMenu id="bluetoothIntercom"
  5558. type="1" >
  5559. </productMenu>
  5560. <productMenu id="phone"
  5561. type="2" >
  5562. </productMenu>
  5563. <productMenu id="fmradio"
  5564. type="3" >
  5565. </productMenu>
  5566. <productMenu id="deviceSetting"
  5567. type="1"
  5568. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  5569. <productMenuURL version="1.1"
  5570. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  5571. />
  5572. </productMenu>
  5573. <productMenu id="quickGuide"
  5574. type="1"
  5575. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  5576. size="790KB" >
  5577. </productMenu>
  5578. <productMenu id="userGuide"
  5579. type="1"
  5580. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  5581. size="1.42MB" >
  5582. </productMenu>
  5583. <productID id="5526"
  5584. />
  5585. <productGroupable type="0"
  5586. />
  5587. </product>
  5588. <product id="Savage"
  5589. name="Savage"
  5590. series="10"
  5591. latestVersion="1.2.2"
  5592. show = "1" >
  5593. <productMenu id="protocol"
  5594. type="0">
  5595. </productMenu>
  5596. <productMenu id="sip"
  5597. type="1" >
  5598. </productMenu>
  5599. <productMenu id="bluetoothIntercom"
  5600. type="1" >
  5601. </productMenu>
  5602. <productMenu id="phone"
  5603. type="2" >
  5604. </productMenu>
  5605. <productMenu id="fmradio"
  5606. type="3" >
  5607. </productMenu>
  5608. <productMenu id="deviceSetting"
  5609. type="1"
  5610. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  5611. <productMenuURL version="1.9"
  5612. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  5613. />
  5614. <productMenuURL version="1.1"
  5615. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  5616. />
  5617. </productMenu>
  5618. <productMenu id="quickGuide"
  5619. type="1"
  5620. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  5621. size="796KB" >
  5622. </productMenu>
  5623. <productMenu id="userGuide"
  5624. type="1"
  5625. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  5626. size="910KB" >
  5627. </productMenu>
  5628. <productID id="5550"
  5629. />
  5630. <productGroupable type="0"
  5631. />
  5632. </product>
  5633. <product id="OUTRUSHR"
  5634. name="OUTRUSH R"
  5635. series="10"
  5636. latestVersion="1.0"
  5637. show = "1" >
  5638. <productMenu id="protocol"
  5639. type="0">
  5640. </productMenu>
  5641. <productMenu id="sip"
  5642. type="1" >
  5643. </productMenu>
  5644. <productMenu id="bluetoothIntercom"
  5645. type="1" >
  5646. </productMenu>
  5647. <productMenu id="phone"
  5648. type="2" >
  5649. </productMenu>
  5650. <productMenu id="fmradio"
  5651. type="3" >
  5652. </productMenu>
  5653. <productMenu id="deviceSetting"
  5654. type="1"
  5655. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  5656. </productMenu>
  5657. <productMenu id="userGuide"
  5658. type="1"
  5659. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTRUSH_R_1.0.0_en_201019.pdf"
  5660. size="660KB" >
  5661. </productMenu>
  5662. <productID id="5424"
  5663. />
  5664. <productGroupable type="0"
  5665. />
  5666. </product>
  5667. <product id="OUTSTARS"
  5668. name="OUTSTAR S"
  5669. series="10"
  5670. latestVersion="1.1.1"
  5671. show = "1" >
  5672. <productMenu id="protocol"
  5673. type="0">
  5674. </productMenu>
  5675. <productMenu id="sip"
  5676. type="1" >
  5677. </productMenu>
  5678. <productMenu id="bluetoothIntercom"
  5679. type="1" >
  5680. </productMenu>
  5681. <productMenu id="phone"
  5682. type="2" >
  5683. </productMenu>
  5684. <productMenu id="fmradio"
  5685. type="3" >
  5686. </productMenu>
  5687. <productMenu id="deviceSetting"
  5688. type="1"
  5689. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  5690. </productMenu>
  5691. <productMenu id="quickGuide"
  5692. type="1"
  5693. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_OUTSTAR%20S_1.1.0_en_211019.pdf"
  5694. size="643KB" >
  5695. </productMenu>
  5696. <productMenu id="userGuide"
  5697. type="1"
  5698. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTSTAR_S_1.1.0_en_211019.pdf"
  5699. size="1.15MB" >
  5700. </productMenu>
  5701. <productID id="5428"
  5702. />
  5703. <productGroupable type="0"
  5704. />
  5705. </product>
  5706. <product id="ProRideEVO"
  5707. name="ProRide EVO"
  5708. series="10"
  5709. latestVersion="1.0"
  5710. show = "1" >
  5711. <productMenu id="protocol"
  5712. type="0">
  5713. </productMenu>
  5714. <productMenu id="sip"
  5715. type="1" >
  5716. </productMenu>
  5717. <productMenu id="bluetoothIntercom"
  5718. type="1" >
  5719. </productMenu>
  5720. <productMenu id="phone"
  5721. type="2" >
  5722. </productMenu>
  5723. <productMenu id="fmradio"
  5724. type="3" >
  5725. </productMenu>
  5726. <productMenu id="deviceSetting"
  5727. type="1"
  5728. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  5729. </productMenu>
  5730. <productMenu id="userGuide"
  5731. type="1"
  5732. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  5733. size="778KB" >
  5734. </productMenu>
  5735. <productID id="5426"
  5736. />
  5737. <productGroupable type="0"
  5738. />
  5739. </product>
  5740. <product id="PI"
  5741. name="pi"
  5742. series="10"
  5743. latestVersion="1.0"
  5744. show = "1" >
  5745. <productMenu id="protocol"
  5746. type="0">
  5747. </productMenu>
  5748. <productMenu id="sip"
  5749. type="1" >
  5750. </productMenu>
  5751. <productMenu id="bluetoothIntercom"
  5752. type="1" >
  5753. </productMenu>
  5754. <productMenu id="deviceSetting"
  5755. type="1"
  5756. url="https://api.sena.com/support/SenaUtility/PI/DS_PI.xml" >
  5757. </productMenu>
  5758. <productMenu id="quickGuide"
  5759. type="1"
  5760. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_pi_1.0.0_en_210305.pdf"
  5761. size="640KB" >
  5762. </productMenu>
  5763. <productMenu id="userGuide"
  5764. type="1"
  5765. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_pi_1.0.0_en_210315.pdf"
  5766. size="478KB" >
  5767. </productMenu>
  5768. <productID id="6310"
  5769. />
  5770. <productGroupable type="0"
  5771. />
  5772. </product>
  5773. <product id="X1"
  5774. name="X1"
  5775. series="10"
  5776. latestVersion="1.1"
  5777. show = "1" >
  5778. <productMenu id="protocol"
  5779. type="0">
  5780. </productMenu>
  5781. <productMenu id="sip"
  5782. type="1" >
  5783. </productMenu>
  5784. <productMenu id="bluetoothIntercom"
  5785. type="1" >
  5786. </productMenu>
  5787. <productMenu id="phone"
  5788. type="2" >
  5789. </productMenu>
  5790. <productMenu id="fmradio"
  5791. type="3" >
  5792. </productMenu>
  5793. <productMenu id="deviceSetting"
  5794. type="1"
  5795. url="https://api.sena.com/support/SenaUtility/X1/DS_X1_2.xml" >
  5796. </productMenu>
  5797. <productMenu id="quickGuide"
  5798. type="1"
  5799. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_X1_01.pdf"
  5800. size="784KB" >
  5801. </productMenu>
  5802. <productMenu id="userGuide"
  5803. type="1"
  5804. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_X1_v1.0_01.pdf"
  5805. size="2.86MB" >
  5806. </productMenu>
  5807. <productID id="3030"
  5808. />
  5809. <productGroupable type="0"
  5810. />
  5811. </product>
  5812. <product id="X1S"
  5813. name="X1S"
  5814. series="10"
  5815. latestVersion="1.1"
  5816. show = "1" >
  5817. <productMenu id="protocol"
  5818. type="0">
  5819. </productMenu>
  5820. <productMenu id="sip"
  5821. type="1" >
  5822. </productMenu>
  5823. <productMenu id="bluetoothIntercom"
  5824. type="1" >
  5825. </productMenu>
  5826. <productMenu id="phone"
  5827. type="2" >
  5828. </productMenu>
  5829. <productMenu id="fmradio"
  5830. type="3" >
  5831. </productMenu>
  5832. <productMenu id="deviceSetting"
  5833. type="1"
  5834. url="https://api.sena.com/support/SenaUtility/X1/DS_X1_v0102.xml" >
  5835. </productMenu>
  5836. <productMenu id="quickGuide"
  5837. type="1"
  5838. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_X1S_1.0.0_en_200630.pdf"
  5839. size="933KB" >
  5840. </productMenu>
  5841. <productMenu id="userGuide"
  5842. type="1"
  5843. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_X1S_1.0.0_en_200630.pdf"
  5844. size="1.16MB" >
  5845. </productMenu>
  5846. <productID id="3032"
  5847. />
  5848. <productGroupable type="0"
  5849. />
  5850. </product>
  5851. <product id="R1"
  5852. name="R1"
  5853. series="10"
  5854. latestVersion="1.4"
  5855. show = "1" >
  5856. <productMenu id="protocol"
  5857. type="0">
  5858. </productMenu>
  5859. <productMenu id="sip"
  5860. type="1" >
  5861. </productMenu>
  5862. <productMenu id="bluetoothIntercom"
  5863. type="1" >
  5864. </productMenu>
  5865. <productMenu id="phone"
  5866. type="2" >
  5867. </productMenu>
  5868. <productMenu id="fmradio"
  5869. type="3" >
  5870. </productMenu>
  5871. <productMenu id="deviceSetting"
  5872. type="1"
  5873. url="https://api.sena.com/support/SenaUtility/R1/DS_R1_v0104.xml" >
  5874. </productMenu>
  5875. <productMenu id="quickGuide"
  5876. type="1"
  5877. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_R1_1.3.0_en_210224_MP0501648.pdf"
  5878. size="788KB" >
  5879. </productMenu>
  5880. <productMenu id="userGuide"
  5881. type="1"
  5882. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_R1_1.5.0_en_210428.pdf"
  5883. size="1.25MB" >
  5884. </productMenu>
  5885. <productID id="3050"
  5886. />
  5887. <productGroupable type="0"
  5888. />
  5889. </product>
  5890. <product id="M1"
  5891. name="M1"
  5892. series="10"
  5893. latestVersion="1.0.2"
  5894. show = "1" >
  5895. <productMenu id="protocol"
  5896. type="0">
  5897. </productMenu>
  5898. <productMenu id="sip"
  5899. type="1" >
  5900. </productMenu>
  5901. <productMenu id="bluetoothIntercom"
  5902. type="1" >
  5903. </productMenu>
  5904. <productMenu id="fmradio"
  5905. type="2" >
  5906. </productMenu>
  5907. <productMenu id="deviceSetting"
  5908. type="1"
  5909. url="https://api.sena.com/support/SenaUtility/M1/DS_M1_v010002.xml" >
  5910. </productMenu>
  5911. <productMenu id="quickGuide"
  5912. type="1"
  5913. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_M1_1.2.0_en_210625.pdf"
  5914. size="767KB" >
  5915. </productMenu>
  5916. <productMenu id="userGuide"
  5917. type="1"
  5918. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_M1_1.2.0_en_210625.pdf"
  5919. size="820KB" >
  5920. </productMenu>
  5921. <productID id="3070"
  5922. />
  5923. <productGroupable type="0"
  5924. />
  5925. </product>
  5926. <product id="Rumba"
  5927. name="Rumba"
  5928. series="10"
  5929. latestVersion="1.0.4"
  5930. show = "1" >
  5931. <productMenu id="protocol"
  5932. type="0">
  5933. </productMenu>
  5934. <productMenu id="sip"
  5935. type="1" >
  5936. </productMenu>
  5937. <productMenu id="bluetoothIntercom"
  5938. type="1" >
  5939. </productMenu>
  5940. <productMenu id="deviceSetting"
  5941. type="1"
  5942. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  5943. </productMenu>
  5944. <productMenu id="quickGuide"
  5945. type="1"
  5946. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.1.0_en_210302.pdf"
  5947. size="722KB" >
  5948. </productMenu>
  5949. <productMenu id="userGuide"
  5950. type="1"
  5951. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_RUMBA_1.1.0_en_210302.pdf"
  5952. size="693KB" >
  5953. </productMenu>
  5954. <productID id="6330"
  5955. />
  5956. <productGroupable type="0"
  5957. />
  5958. </product>
  5959. <product id="Tufftalk"
  5960. name="Tufftalk"
  5961. series="10"
  5962. latestVersion="1.2.2"
  5963. show = "1" >
  5964. <productMenu id="protocol"
  5965. type="0">
  5966. </productMenu>
  5967. <productMenu id="sip"
  5968. type="1" >
  5969. </productMenu>
  5970. <productMenu id="bluetoothIntercom"
  5971. type="1" >
  5972. </productMenu>
  5973. <productMenu id="phone"
  5974. type="2" >
  5975. </productMenu>
  5976. <productMenu id="fmradio"
  5977. type="3" >
  5978. </productMenu>
  5979. <productMenu id="deviceSetting"
  5980. type="1"
  5981. url="https://api.sena.com/support/SenaUtility/Tufftalk/DS_Tufftalk_v0102.xml" >
  5982. <productMenuURL version="1.1.1"
  5983. url="https://api.sena.com/support/SenaUtility/Tufftalk/DeviceSetting_Tufftalk.xml"
  5984. />
  5985. </productMenu>
  5986. <productMenu id="quickGuide"
  5987. type="1"
  5988. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Tufftalk_01.pdf"
  5989. size="922KB" >
  5990. </productMenu>
  5991. <productMenu id="userGuide"
  5992. type="1"
  5993. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Tufftalk_v1.2_01.pdf"
  5994. size="1.76MB" >
  5995. </productMenu>
  5996. <productID id="5710"
  5997. />
  5998. <productGroupable type="0"
  5999. />
  6000. </product>
  6001. <product id="Tufftalk_Lite"
  6002. name="Tufftalk Lite"
  6003. series="10"
  6004. latestVersion="1.0.2"
  6005. show = "1" >
  6006. <productMenu id="protocol"
  6007. type="0">
  6008. </productMenu>
  6009. <productMenu id="sip"
  6010. type="1" >
  6011. </productMenu>
  6012. <productMenu id="bluetoothIntercom"
  6013. type="1" >
  6014. </productMenu>
  6015. <productMenu id="phone"
  6016. type="2" >
  6017. </productMenu>
  6018. <productMenu id="fmradio"
  6019. type="3" >
  6020. </productMenu>
  6021. <productMenu id="deviceSetting"
  6022. type="1"
  6023. url="https://api.sena.com/support/SenaUtility/Tufftalk_Lite/DS_Tufftalk_Lite.xml" >
  6024. </productMenu>
  6025. <productMenu id="quickGuide"
  6026. type="1"
  6027. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Tufftalk_Lite_01.pdf"
  6028. size="725KB" >
  6029. </productMenu>
  6030. <productMenu id="userGuide"
  6031. type="1"
  6032. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Tufftalk_Lite_v1.0_01.pdf"
  6033. size="1.17MB" >
  6034. </productMenu>
  6035. <productID id="5720"
  6036. />
  6037. <productGroupable type="0"
  6038. />
  6039. </product>
  6040. <product id="TufftalkM"
  6041. name="Tufftalk M"
  6042. series="10"
  6043. latestVersion="1.1.1"
  6044. show = "1" >
  6045. <productMenu id="protocol"
  6046. type="0">
  6047. </productMenu>
  6048. <productMenu id="sip"
  6049. type="1" >
  6050. </productMenu>
  6051. <productMenu id="bluetoothIntercom"
  6052. type="1" >
  6053. </productMenu>
  6054. <productMenu id="phone"
  6055. type="2" >
  6056. </productMenu>
  6057. <productMenu id="fmradio"
  6058. type="3" >
  6059. </productMenu>
  6060. <productMenu id="deviceSetting"
  6061. type="1"
  6062. url="https://api.sena.com/support/SenaUtility/Tufftalk/DS_TufftalkM_v0101.xml" >
  6063. </productMenu>
  6064. <productMenu id="quickGuide"
  6065. type="1"
  6066. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Tufftalk_M_02.pdf"
  6067. size="265KB" >
  6068. </productMenu>
  6069. <productMenu id="userGuide"
  6070. type="1"
  6071. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Tufftalk_M_1.1.0_en_200521.pdf"
  6072. size="769KB" >
  6073. </productMenu>
  6074. <productID id="3118"
  6075. />
  6076. <productGroupable type="0"
  6077. />
  6078. </product>
  6079. <product id="HD10S"
  6080. name="Boom! Audio 10S"
  6081. series="10"
  6082. latestVersion="1.1.2"
  6083. show = "0" >
  6084. <productMenu id="protocol"
  6085. type="0">
  6086. </productMenu>
  6087. <productMenu id="sip"
  6088. type="1" >
  6089. </productMenu>
  6090. <productMenu id="bluetoothIntercom"
  6091. type="1" >
  6092. </productMenu>
  6093. <productMenu id="phone"
  6094. type="2" >
  6095. </productMenu>
  6096. <productMenu id="fmradio"
  6097. type="3" >
  6098. </productMenu>
  6099. <productMenu id="deviceSetting"
  6100. type="1"
  6101. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  6102. </productMenu>
  6103. <productMenu id="quickGuide"
  6104. type="1"
  6105. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_H-D_10S_01.pdf"
  6106. size="538KB" >
  6107. </productMenu>
  6108. <productMenu id="userGuide"
  6109. type="1"
  6110. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_H-D_10S_v1.0_01.pdf"
  6111. size="1.55MB" >
  6112. </productMenu>
  6113. <productID id="5532"
  6114. />
  6115. <productGroupable type="0"
  6116. />
  6117. </product>
  6118. <product id="HDCavalry"
  6119. name="Boom! Audio N01 10R"
  6120. series="10"
  6121. latestVersion="1.1.2"
  6122. show = "0" >
  6123. <productMenu id="protocol"
  6124. type="0">
  6125. </productMenu>
  6126. <productMenu id="sip"
  6127. type="1" >
  6128. </productMenu>
  6129. <productMenu id="bluetoothIntercom"
  6130. type="1" >
  6131. </productMenu>
  6132. <productMenu id="phone"
  6133. type="2" >
  6134. </productMenu>
  6135. <productMenu id="fmradio"
  6136. type="3" >
  6137. </productMenu>
  6138. <productMenu id="deviceSetting"
  6139. type="1"
  6140. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  6141. </productMenu>
  6142. <productMenu id="quickGuide"
  6143. type="1"
  6144. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_H-D_N01_01.pdf"
  6145. size="766KB" >
  6146. </productMenu>
  6147. <productMenu id="userGuide"
  6148. type="1"
  6149. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_H-D_N01_v1.0_02.pdf"
  6150. size="1.45MB" >
  6151. </productMenu>
  6152. <productID id="5522"
  6153. />
  6154. <productGroupable type="0"
  6155. />
  6156. </product>
  6157. <product id="HDOUTRUSHR"
  6158. name="OUTRUSH R"
  6159. series="10"
  6160. latestVersion="1.0"
  6161. show = "0" >
  6162. <productMenu id="protocol"
  6163. type="0">
  6164. </productMenu>
  6165. <productMenu id="sip"
  6166. type="1" >
  6167. </productMenu>
  6168. <productMenu id="bluetoothIntercom"
  6169. type="1" >
  6170. </productMenu>
  6171. <productMenu id="phone"
  6172. type="2" >
  6173. </productMenu>
  6174. <productMenu id="fmradio"
  6175. type="3" >
  6176. </productMenu>
  6177. <productMenu id="deviceSetting"
  6178. type="1"
  6179. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6180. </productMenu>
  6181. <productMenu id="userGuide"
  6182. type="1"
  6183. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTRUSH_R_1.0.0_en_201019.pdf"
  6184. size="660KB" >
  6185. </productMenu>
  6186. <productID id="5434"
  6187. />
  6188. <productGroupable type="0"
  6189. />
  6190. </product>
  6191. <product id="KLIM_KRIOS"
  6192. name="KLIM Krios"
  6193. series="10"
  6194. latestVersion="1.1.2"
  6195. show = "0" >
  6196. <productMenu id="protocol"
  6197. type="0">
  6198. </productMenu>
  6199. <productMenu id="sip"
  6200. type="1" >
  6201. </productMenu>
  6202. <productMenu id="bluetoothIntercom"
  6203. type="1" >
  6204. </productMenu>
  6205. <productMenu id="phone"
  6206. type="2" >
  6207. </productMenu>
  6208. <productMenu id="fmradio"
  6209. type="3" >
  6210. </productMenu>
  6211. <productMenu id="deviceSetting"
  6212. type="1"
  6213. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  6214. <productMenuURL version="1.0"
  6215. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  6216. />
  6217. </productMenu>
  6218. <productMenu id="quickGuide"
  6219. type="1"
  6220. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  6221. size="649KB" >
  6222. </productMenu>
  6223. <productMenu id="userGuide"
  6224. type="1"
  6225. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  6226. size="1.43MB" >
  6227. </productMenu>
  6228. <productID id="5910"
  6229. />
  6230. <productGroupable type="0"
  6231. />
  6232. </product>
  6233. <product id="POLARIS_SLINGSHOT"
  6234. name="Polaris Slingshot"
  6235. series="10"
  6236. latestVersion="1.1.2"
  6237. show = "0" >
  6238. <productMenu id="protocol"
  6239. type="0">
  6240. </productMenu>
  6241. <productMenu id="sip"
  6242. type="1" >
  6243. </productMenu>
  6244. <productMenu id="bluetoothIntercom"
  6245. type="1" >
  6246. </productMenu>
  6247. <productMenu id="phone"
  6248. type="2" >
  6249. </productMenu>
  6250. <productMenu id="fmradio"
  6251. type="3" >
  6252. </productMenu>
  6253. <productMenu id="deviceSetting"
  6254. type="1"
  6255. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  6256. <productMenuURL version="1.0"
  6257. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  6258. />
  6259. </productMenu>
  6260. <productMenu id="quickGuide"
  6261. type="1"
  6262. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  6263. size="689KB" >
  6264. </productMenu>
  6265. <productMenu id="userGuide"
  6266. type="1"
  6267. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  6268. size="1.43MB" >
  6269. </productMenu>
  6270. <productID id="5920"
  6271. />
  6272. <productGroupable type="0"
  6273. />
  6274. </product>
  6275. <product id="R1_Pro"
  6276. name="R1 Pro"
  6277. series="10"
  6278. latestVersion="1.0"
  6279. show = "0" >
  6280. <productMenu id="protocol"
  6281. type="0">
  6282. </productMenu>
  6283. <productMenu id="sip"
  6284. type="1" >
  6285. </productMenu>
  6286. <productMenu id="bluetoothIntercom"
  6287. type="1" >
  6288. </productMenu>
  6289. <productMenu id="phone"
  6290. type="2" >
  6291. </productMenu>
  6292. <productMenu id="fmradio"
  6293. type="3" >
  6294. </productMenu>
  6295. <productMenu id="deviceSetting"
  6296. type="1"
  6297. url="https://api.sena.com/support/SenaUtility/X1/DS_X1_2.xml" >
  6298. </productMenu>
  6299. <productMenu id="quickGuide"
  6300. type="1"
  6301. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_R1_01.pdf"
  6302. size="810KB" >
  6303. </productMenu>
  6304. <productMenu id="userGuide"
  6305. type="1"
  6306. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_R1_v1.0_01.pdf"
  6307. size="1.18MB" >
  6308. </productMenu>
  6309. <productID id="3060"
  6310. />
  6311. <productGroupable type="0"
  6312. />
  6313. </product>
  6314. <product id="X_COM2"
  6315. name="X-COM2"
  6316. series="10"
  6317. latestVersion="1.0.4"
  6318. show = "0" >
  6319. <productMenu id="protocol"
  6320. type="0">
  6321. </productMenu>
  6322. <productMenu id="sip"
  6323. type="1" >
  6324. </productMenu>
  6325. <productMenu id="bluetoothIntercom"
  6326. type="1" >
  6327. </productMenu>
  6328. <productMenu id="intercomSetting"
  6329. type="1" >
  6330. </productMenu>
  6331. <productMenu id="phone"
  6332. type="2" >
  6333. </productMenu>
  6334. <productMenu id="fmradio"
  6335. type="3" >
  6336. </productMenu>
  6337. <productMenu id="deviceSetting"
  6338. type="1"
  6339. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6340. </productMenu>
  6341. <productMenu id="quickGuide"
  6342. type="1"
  6343. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  6344. size="963KB" >
  6345. </productMenu>
  6346. <productMenu id="userGuide"
  6347. type="1"
  6348. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  6349. size="1.73MB" >
  6350. </productMenu>
  6351. <productID id="2030"
  6352. />
  6353. <productGroupable type="1"
  6354. />
  6355. </product>
  6356. <product id="DWO6"
  6357. name="SEDICI DWO6-PRO"
  6358. series="10"
  6359. latestVersion="1.0.1"
  6360. show = "0" >
  6361. <productMenu id="protocol"
  6362. type="0">
  6363. </productMenu>
  6364. <productMenu id="sip"
  6365. type="1" >
  6366. </productMenu>
  6367. <productMenu id="bluetoothIntercom"
  6368. type="1" >
  6369. </productMenu>
  6370. <productMenu id="phone"
  6371. type="2" >
  6372. </productMenu>
  6373. <productMenu id="fmradio"
  6374. type="3" >
  6375. </productMenu>
  6376. <productMenu id="deviceSetting"
  6377. type="1"
  6378. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6379. </productMenu>
  6380. <productMenu id="quickGuide"
  6381. type="1"
  6382. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_CG_DWO6P_01.pdf"
  6383. size="529KB" >
  6384. </productMenu>
  6385. <productMenu id="userGuide"
  6386. type="1"
  6387. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_CG_DWO6P_v1.0_01.pdf"
  6388. size="4.09MB" >
  6389. </productMenu>
  6390. <productID id="6112"
  6391. />
  6392. <productGroupable type="0"
  6393. />
  6394. </product>
  6395. <product id="DWO6A"
  6396. name="SEDICI DWO-6"
  6397. series="10"
  6398. latestVersion="1.0"
  6399. show = "0" >
  6400. <productMenu id="protocol"
  6401. type="0">
  6402. </productMenu>
  6403. <productMenu id="sip"
  6404. type="1" >
  6405. </productMenu>
  6406. <productMenu id="bluetoothIntercom"
  6407. type="1" >
  6408. </productMenu>
  6409. <productMenu id="phone"
  6410. type="2" >
  6411. </productMenu>
  6412. <productMenu id="fmradio"
  6413. type="3" >
  6414. </productMenu>
  6415. <productMenu id="deviceSetting"
  6416. type="1"
  6417. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  6418. </productMenu>
  6419. <productMenu id="quickGuide"
  6420. type="1"
  6421. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_DWO-6_v1.0_en_200831.pdf"
  6422. size="522KB" >
  6423. </productMenu>
  6424. <productMenu id="userGuide"
  6425. type="1"
  6426. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_DWO-6_v1.0_en_200831.pdf"
  6427. size="2.71MB" >
  6428. </productMenu>
  6429. <productID id="6114"
  6430. />
  6431. <productGroupable type="0"
  6432. />
  6433. </product>
  6434. <product id="X1_Pro"
  6435. name="X1 Pro"
  6436. series="10"
  6437. latestVersion="1.0.2"
  6438. show = "0" >
  6439. <productMenu id="protocol"
  6440. type="0">
  6441. </productMenu>
  6442. <productMenu id="sip"
  6443. type="1" >
  6444. </productMenu>
  6445. <productMenu id="bluetoothIntercom"
  6446. type="1" >
  6447. </productMenu>
  6448. <productMenu id="phone"
  6449. type="2" >
  6450. </productMenu>
  6451. <productMenu id="fmradio"
  6452. type="3" >
  6453. </productMenu>
  6454. <productMenu id="deviceSetting"
  6455. type="1"
  6456. url="https://api.sena.com/support/SenaUtility/X1/DS_X1_2.xml" >
  6457. </productMenu>
  6458. <productMenu id="quickGuide"
  6459. type="1"
  6460. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_X1-Pro_01.pdf"
  6461. size="935KB" >
  6462. </productMenu>
  6463. <productMenu id="userGuide"
  6464. type="1"
  6465. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_X1-Pro_v1.0_01.pdf"
  6466. size="1.71MB" >
  6467. </productMenu>
  6468. <productID id="3040"
  6469. />
  6470. <productGroupable type="0"
  6471. />
  6472. </product>
  6473. <product id="ZXV01"
  6474. name="ZILL"
  6475. series="10"
  6476. latestVersion="1.0.2"
  6477. show = "0" >
  6478. <productMenu id="protocol"
  6479. type="0">
  6480. </productMenu>
  6481. <productMenu id="sip"
  6482. type="1" >
  6483. </productMenu>
  6484. <productMenu id="bluetoothIntercom"
  6485. type="1" >
  6486. </productMenu>
  6487. <productMenu id="deviceSetting"
  6488. type="1"
  6489. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  6490. </productMenu>
  6491. <productMenu id="quickGuide"
  6492. type="1"
  6493. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_3S_PLUS_1.0.0_en_200813.pdf"
  6494. size="842KB" >
  6495. </productMenu>
  6496. <productMenu id="userGuide"
  6497. type="1"
  6498. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_app_3S_PLUS_1.0.1_en_210521.pdf"
  6499. size="1.02MB" >
  6500. </productMenu>
  6501. <productID id="6335"
  6502. />
  6503. <productGroupable type="0"
  6504. />
  6505. </product>
  6506. <product id="R2"
  6507. name="R2"
  6508. series="10"
  6509. latestVersion="1.0"
  6510. show = "0" >
  6511. <productMenu id="protocol"
  6512. type="0">
  6513. </productMenu>
  6514. <productMenu id="sip"
  6515. type="1" >
  6516. </productMenu>
  6517. <productMenu id="bluetoothIntercom"
  6518. type="1" >
  6519. </productMenu>
  6520. <productMenu id="deviceSetting"
  6521. type="1"
  6522. url="https://api.sena.com/support/SenaUtility/R2/DS_R2.xml" >
  6523. </productMenu>
  6524. <productMenu id="quickGuide"
  6525. type="1"
  6526. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_M1_1.1.0_en_210224.pdf"
  6527. size="773KB" >
  6528. </productMenu>
  6529. <productMenu id="userGuide"
  6530. type="1"
  6531. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_M1_1.1.0_en_210223.pdf"
  6532. size="848KB" >
  6533. </productMenu>
  6534. <productID id="3080"
  6535. />
  6536. <productGroupable type="0"
  6537. />
  6538. </product>
  6539. <product id="OUTFORCE"
  6540. name="OUTFORCE"
  6541. series="10"
  6542. latestVersion="1.0"
  6543. show = "0" >
  6544. <productMenu id="protocol"
  6545. type="0">
  6546. </productMenu>
  6547. <productMenu id="sip"
  6548. type="1" >
  6549. </productMenu>
  6550. <productMenu id="bluetoothIntercom"
  6551. type="1" >
  6552. </productMenu>
  6553. <productMenu id="phone"
  6554. type="2" >
  6555. </productMenu>
  6556. <productMenu id="fmradio"
  6557. type="3" >
  6558. </productMenu>
  6559. <productMenu id="deviceSetting"
  6560. type="1"
  6561. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6562. </productMenu>
  6563. <productMenu id="userGuide"
  6564. type="1"
  6565. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTRUSH_R_1.0.0_en_201019.pdf"
  6566. size="660KB" >
  6567. </productMenu>
  6568. <productID id="5430"
  6569. />
  6570. <productGroupable type="0"
  6571. />
  6572. </product>
  6573. <product id="OUTRIDE"
  6574. name="OUTRIDE"
  6575. series="10"
  6576. latestVersion="1.0"
  6577. show = "0" >
  6578. <productMenu id="protocol"
  6579. type="0">
  6580. </productMenu>
  6581. <productMenu id="sip"
  6582. type="1" >
  6583. </productMenu>
  6584. <productMenu id="bluetoothIntercom"
  6585. type="1" >
  6586. </productMenu>
  6587. <productMenu id="phone"
  6588. type="2" >
  6589. </productMenu>
  6590. <productMenu id="fmradio"
  6591. type="3" >
  6592. </productMenu>
  6593. <productMenu id="deviceSetting"
  6594. type="1"
  6595. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6596. </productMenu>
  6597. <productMenu id="userGuide"
  6598. type="1"
  6599. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTRUSH_R_1.0.0_en_201019.pdf"
  6600. size="660KB" >
  6601. </productMenu>
  6602. <productID id="5432"
  6603. />
  6604. <productGroupable type="0"
  6605. />
  6606. </product>
  6607. <product id="ACS10"
  6608. name="ACS10"
  6609. series="10"
  6610. latestVersion="1.0"
  6611. show = "0" >
  6612. <productMenu id="protocol"
  6613. type="0">
  6614. </productMenu>
  6615. <productMenu id="sip"
  6616. type="1" >
  6617. </productMenu>
  6618. <productMenu id="bluetoothIntercom"
  6619. type="1" >
  6620. </productMenu>
  6621. <productMenu id="phone"
  6622. type="2" >
  6623. </productMenu>
  6624. <productMenu id="deviceSetting"
  6625. type="1"
  6626. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  6627. </productMenu>
  6628. <productMenu id="quickGuide"
  6629. type="1"
  6630. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5S_1.0.0_en_200410.pdf"
  6631. size="970KB" >
  6632. </productMenu>
  6633. <productMenu id="userGuide"
  6634. type="1"
  6635. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5S_1.0.0_en_200330.pdf"
  6636. size="1.26MB" >
  6637. </productMenu>
  6638. <productID id="3300"
  6639. />
  6640. <productGroupable type="0"
  6641. />
  6642. </product>
  6643. -->
  6644. </products>
  6645. </sna>