snm.xml 229 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20221101" appVer="2.10" iosAppVer="2.10" central="1">
  3. <tu url="https://www.sena.com/terms-of-use/"
  4. />
  5. <pp url="https://www.sena.com/privacy"
  6. />
  7. <profile url="https://www.sena.com/mobile-subscribe/"
  8. />
  9. <wa url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_WA_01.pdf"
  10. />
  11. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  12. />
  13. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  14. />
  15. <wim url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_IMPULSE_1.2.0_en_220114.pdf"
  16. />
  17. <wst url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Stryker_1.0.0_en_220114.pdf"
  18. />
  19. <support url="https://www.sena.com/support"
  20. />
  21. <forum url="https://community.sena.com/hc/en-us"
  22. />
  23. <sip url="https://community.sena.com/hc/en-us"
  24. />
  25. <productKeys>
  26. <productKey id="4210"
  27. userPSKey="5"
  28. valueLength="1"
  29. />
  30. <productKey id="4230"
  31. userPSKey="5"
  32. valueLength="1"
  33. />
  34. </productKeys>
  35. <!--
  36. <menus>
  37. <menu id="protocol" />
  38. <menu id="alexa" />
  39. <menu id="ota" />
  40. <menu id="wa" />
  41. <menu id="manager" />
  42. <menu id="sip" />
  43. <menu id="meshIntercom" />
  44. <menu id="bluetoothIntercom" />
  45. <menu id="music" />
  46. <menu id="musicSharing" />
  47. <menu id="fmradio" />
  48. <menu id="phone" />
  49. <menu id="led" />
  50. <menu id="volume" />
  51. <menu id="battery" />
  52. <menu id="deviceSetting" />
  53. <menu id="quickGuide" />
  54. <menu id="userGuide" />
  55. </menus>
  56. -->
  57. <serieses>
  58. <series id="50"
  59. name="50"
  60. show="1"
  61. />
  62. <series id="Helmet"
  63. name="Helmet"
  64. show="1"
  65. />
  66. <series id="30"
  67. name="30"
  68. show="1"
  69. />
  70. <series id="SF"
  71. name="SF"
  72. show="1"
  73. />
  74. <series id="SPIDER"
  75. name="SPIDER"
  76. show="1"
  77. />
  78. <series id="20"
  79. name="20"
  80. show="1"
  81. />
  82. <series id="SRL"
  83. name="SRL"
  84. show="1"
  85. />
  86. <series id="10"
  87. name="10"
  88. show="1"
  89. />
  90. <series id="5"
  91. name="5"
  92. show="1"
  93. />
  94. <series id="3"
  95. name="3"
  96. show="1"
  97. />
  98. <!--
  99. <series id="Cycling"
  100. name="Cycling"
  101. />
  102. <series id="sf"
  103. name="SF"
  104. />
  105. <series id="20"
  106. name="20"
  107. />
  108. <series id="smh"
  109. name="SMH"
  110. />
  111. <series id="10"
  112. name="10"
  113. />
  114. <series id="cavalry"
  115. name="CAVALRY"
  116. show="0"
  117. />
  118. <series id="5"
  119. name="5"
  120. />
  121. <series id="3"
  122. name="3"
  123. />
  124. -->
  125. </serieses>
  126. <products>
  127. <product id="50S"
  128. name="50S"
  129. nameGuide="50S (2022~)"
  130. series="50"
  131. latestVersion="2.1"
  132. show = "1" >
  133. <productMenu id="protocol"
  134. type="2" >
  135. </productMenu>
  136. <productMenu id="alexa"
  137. type="0" >
  138. </productMenu>
  139. <productMenu id="ota"
  140. type="0"
  141. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  142. size="1150234" >
  143. </productMenu>
  144. <productMenu id="wa"
  145. type="1" >
  146. </productMenu>
  147. <productMenu id="sip"
  148. type="1" >
  149. </productMenu>
  150. <productMenu id="meshIntercom"
  151. type="20" >
  152. </productMenu>
  153. <productMenu id="bluetoothIntercom"
  154. type="1" >
  155. </productMenu>
  156. <productMenu id="phone"
  157. type="1" >
  158. </productMenu>
  159. <productMenu id="music"
  160. type="1" >
  161. </productMenu>
  162. <productMenu id="fmradio"
  163. type="1" >
  164. </productMenu>
  165. <productMenu id="deviceSetting"
  166. type="1"
  167. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_04_HKAudio.xml" >
  168. <productMenuURL version="2.0.3"
  169. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  170. />
  171. </productMenu>
  172. <productMenu id="quickGuide"
  173. type="1"
  174. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_50S_2.1.0_en_220414.pdf"
  175. size="934KB" >
  176. </productMenu>
  177. <productMenu id="userGuide"
  178. type="1"
  179. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_2.2.0_en_220804.pdf"
  180. size="1.14MB" >
  181. </productMenu>
  182. <productMenu id="videoGuide"
  183. type="1"
  184. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  185. size="3.41MB" >
  186. </productMenu>
  187. <productMenu id="volume"
  188. type="11" >
  189. </productMenu>
  190. <productMenu id="battery"
  191. type="1" >
  192. </productMenu>
  193. <productID id="3210"
  194. />
  195. <productGroupable type="0"
  196. />
  197. </product>
  198. <product id="50S"
  199. name="50S"
  200. nameGuide="50S (~2021)"
  201. series="50"
  202. latestVersion="1.2"
  203. show = "1" >
  204. <productMenu id="protocol"
  205. type="2" >
  206. </productMenu>
  207. <productMenu id="alexa"
  208. type="0" >
  209. </productMenu>
  210. <productMenu id="ota"
  211. type="0"
  212. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  213. size="1150234" >
  214. </productMenu>
  215. <productMenu id="wa"
  216. type="1" >
  217. </productMenu>
  218. <productMenu id="sip"
  219. type="1" >
  220. </productMenu>
  221. <productMenu id="meshIntercom"
  222. type="20" >
  223. </productMenu>
  224. <productMenu id="bluetoothIntercom"
  225. type="1" >
  226. </productMenu>
  227. <productMenu id="phone"
  228. type="1" >
  229. </productMenu>
  230. <productMenu id="music"
  231. type="1" >
  232. </productMenu>
  233. <productMenu id="fmradio"
  234. type="1" >
  235. </productMenu>
  236. <productMenu id="deviceSetting"
  237. type="1"
  238. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_04_HKAudio.xml" >
  239. <productMenuURL version="1.1.1"
  240. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  241. />
  242. </productMenu>
  243. <productMenu id="quickGuide"
  244. type="1"
  245. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  246. size="934KB" >
  247. </productMenu>
  248. <productMenu id="userGuide"
  249. type="1"
  250. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  251. size="1.14MB" >
  252. </productMenu>
  253. <productMenu id="videoGuide"
  254. type="1"
  255. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  256. size="3.41MB" >
  257. </productMenu>
  258. <productMenu id="volume"
  259. type="11" >
  260. </productMenu>
  261. <productMenu id="battery"
  262. type="1" >
  263. </productMenu>
  264. <productID id="3132"
  265. />
  266. <productGroupable type="0"
  267. />
  268. </product>
  269. <product id="50R"
  270. name="50R"
  271. nameGuide="50R (2022~)"
  272. series="50"
  273. latestVersion="2.1"
  274. show = "1" >
  275. <productMenu id="protocol"
  276. type="2" >
  277. </productMenu>
  278. <productMenu id="alexa"
  279. type="0" >
  280. </productMenu>
  281. <productMenu id="ota"
  282. type="0"
  283. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  284. size="1150234" >
  285. </productMenu>
  286. <productMenu id="wa"
  287. type="1" >
  288. </productMenu>
  289. <productMenu id="sip"
  290. type="1" >
  291. </productMenu>
  292. <productMenu id="meshIntercom"
  293. type="20" >
  294. </productMenu>
  295. <productMenu id="bluetoothIntercom"
  296. type="1" >
  297. </productMenu>
  298. <productMenu id="phone"
  299. type="1" >
  300. </productMenu>
  301. <productMenu id="music"
  302. type="1" >
  303. </productMenu>
  304. <productMenu id="fmradio"
  305. type="1" >
  306. </productMenu>
  307. <productMenu id="deviceSetting"
  308. type="1"
  309. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_04_HKAudio.xml" >
  310. <productMenuURL version="2.0"
  311. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  312. />
  313. </productMenu>
  314. <productMenu id="quickGuide"
  315. type="1"
  316. url="https://firmware.sena.com/senabluetoothmanager/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_04_HKAudio.xml" >
  381. <productMenuURL version="1.1.1"
  382. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  383. />
  384. </productMenu>
  385. <productMenu id="quickGuide"
  386. type="1"
  387. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50R_03.pdf"
  388. size="344KB" >
  389. </productMenu>
  390. <productMenu id="userGuide"
  391. type="1"
  392. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50R_1.2.0_en_200910.pdf"
  393. size="3.41MB" >
  394. </productMenu>
  395. <productMenu id="videoGuide"
  396. type="1"
  397. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  398. size="3.41MB" >
  399. </productMenu>
  400. <productMenu id="volume"
  401. type="11" >
  402. </productMenu>
  403. <productMenu id="battery"
  404. type="1" >
  405. </productMenu>
  406. <productID id="3134"
  407. />
  408. <productGroupable type="0"
  409. />
  410. </product>
  411. <product id="iCon"
  412. name="iCon"
  413. series="50"
  414. latestVersion="1.0.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_04_HKAudio.xml" >
  506. <productMenuURL version="1.0.1"
  507. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  508. />
  509. </productMenu>
  510. <productMenu id="quickGuide"
  511. type="1"
  512. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_50C_1.1.1_en_220325.pdf"
  513. size="344KB" >
  514. </productMenu>
  515. <productMenu id="userGuide"
  516. type="1"
  517. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50C_1.2.0_en_220804.pdf"
  518. size="3.41MB" >
  519. </productMenu>
  520. <productMenu id="volume"
  521. type="11" >
  522. </productMenu>
  523. <productMenu id="battery"
  524. type="1" >
  525. </productMenu>
  526. <productID id="3232"
  527. />
  528. <productGroupable type="0"
  529. />
  530. </product>
  531. <product id="HD50S"
  532. name="H-D Audio 50S"
  533. series="50"
  534. latestVersion="1.0"
  535. show = "0" >
  536. <productMenu id="protocol"
  537. type="2" >
  538. </productMenu>
  539. <productMenu id="alexa"
  540. type="0" >
  541. </productMenu>
  542. <productMenu id="ota"
  543. type="0"
  544. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  545. size="1150234" >
  546. </productMenu>
  547. <productMenu id="wa"
  548. type="1" >
  549. </productMenu>
  550. <productMenu id="sip"
  551. type="1" >
  552. </productMenu>
  553. <productMenu id="meshIntercom"
  554. type="20" >
  555. </productMenu>
  556. <productMenu id="bluetoothIntercom"
  557. type="1" >
  558. </productMenu>
  559. <productMenu id="phone"
  560. type="1" >
  561. </productMenu>
  562. <productMenu id="music"
  563. type="1" >
  564. </productMenu>
  565. <productMenu id="fmradio"
  566. type="1" >
  567. </productMenu>
  568. <productMenu id="deviceSetting"
  569. type="1"
  570. url="https://api.sena.com/support/SenaNeoApp/50/NS_HD50_01.xml" >
  571. </productMenu>
  572. <productMenu id="quickGuide"
  573. type="1"
  574. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.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_04_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_04_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_04_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="SF4"
  2312. name="SF4"
  2313. series="SF"
  2314. latestVersion="1.1.5"
  2315. show = "1" >
  2316. <productMenu id="protocol"
  2317. type="1"
  2318. url="3">
  2319. </productMenu>
  2320. <productMenu id="sip"
  2321. type="1" >
  2322. </productMenu>
  2323. <productMenu id="bluetoothIntercom"
  2324. type="1" >
  2325. </productMenu>
  2326. <productMenu id="phone"
  2327. type="1" >
  2328. </productMenu>
  2329. <productMenu id="music"
  2330. type="1" >
  2331. </productMenu>
  2332. <productMenu id="fmradio"
  2333. type="1" >
  2334. </productMenu>
  2335. <productMenu id="deviceSetting"
  2336. type="1"
  2337. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  2338. <productMenuURL version="1.0.1"
  2339. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  2340. />
  2341. </productMenu>
  2342. <productMenu id="quickGuide"
  2343. type="1"
  2344. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.1.0_en_220908.pdf"
  2345. size="607KB" >
  2346. </productMenu>
  2347. <productMenu id="userGuide"
  2348. type="1"
  2349. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.2.0_en_220908.pdf"
  2350. size="1.91MB" >
  2351. </productMenu>
  2352. <productMenu id="volume"
  2353. type="4" >
  2354. </productMenu>
  2355. <productID id="5414"
  2356. />
  2357. <productGroupable type="0"
  2358. />
  2359. </product>
  2360. <product id="SF2"
  2361. name="SF2"
  2362. series="SF"
  2363. latestVersion="1.2.1"
  2364. show = "1" >
  2365. <productMenu id="protocol"
  2366. type="1"
  2367. url="2">
  2368. </productMenu>
  2369. <productMenu id="sip"
  2370. type="1" >
  2371. </productMenu>
  2372. <productMenu id="bluetoothIntercom"
  2373. type="1" >
  2374. </productMenu>
  2375. <productMenu id="phone"
  2376. type="1" >
  2377. </productMenu>
  2378. <productMenu id="music"
  2379. type="1" >
  2380. </productMenu>
  2381. <productMenu id="fmradio"
  2382. type="1" >
  2383. </productMenu>
  2384. <productMenu id="deviceSetting"
  2385. type="1"
  2386. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  2387. <productMenuURL version="1.0.1"
  2388. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  2389. />
  2390. </productMenu>
  2391. <productMenu id="quickGuide"
  2392. type="1"
  2393. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.2.0_en_220908.pdf"
  2394. size="607KB" >
  2395. </productMenu>
  2396. <productMenu id="userGuide"
  2397. type="1"
  2398. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.2.0_en_220908.pdf"
  2399. size="1.91MB" >
  2400. </productMenu>
  2401. <productMenu id="volume"
  2402. type="4" >
  2403. </productMenu>
  2404. <productID id="5412"
  2405. />
  2406. <productGroupable type="0"
  2407. />
  2408. </product>
  2409. <product id="SF1"
  2410. name="SF1"
  2411. series="SF"
  2412. latestVersion="2.0.5"
  2413. show = "1" >
  2414. <productMenu id="protocol"
  2415. type="1"
  2416. url="1">
  2417. </productMenu>
  2418. <productMenu id="sip"
  2419. type="1" >
  2420. </productMenu>
  2421. <productMenu id="bluetoothIntercom"
  2422. type="1" >
  2423. <productMenuType version="1.1"
  2424. type="0"
  2425. />
  2426. </productMenu>
  2427. <productMenu id="phone"
  2428. type="1" >
  2429. </productMenu>
  2430. <productMenu id="music"
  2431. type="1" >
  2432. </productMenu>
  2433. <productMenu id="deviceSetting"
  2434. type="1"
  2435. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  2436. <productMenuURL version="1.1"
  2437. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  2438. />
  2439. <productMenuURL version="1.0"
  2440. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  2441. />
  2442. </productMenu>
  2443. <productMenu id="quickGuide"
  2444. type="1"
  2445. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.1.0_en_220908.pdf"
  2446. size="401KB" >
  2447. </productMenu>
  2448. <productMenu id="userGuide"
  2449. type="1"
  2450. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.2.0_en_220908.pdf"
  2451. size="1.91MB" >
  2452. </productMenu>
  2453. <productMenu id="volume"
  2454. type="3" >
  2455. </productMenu>
  2456. <productID id="5410"
  2457. />
  2458. <productGroupable type="0"
  2459. />
  2460. </product>
  2461. <product id="SFR"
  2462. name="SFR"
  2463. series="SF"
  2464. latestVersion="1.1.1"
  2465. show = "1" >
  2466. <productMenu id="protocol"
  2467. type="1"
  2468. url="3">
  2469. </productMenu>
  2470. <productMenu id="sip"
  2471. type="1" >
  2472. </productMenu>
  2473. <productMenu id="bluetoothIntercom"
  2474. type="1" >
  2475. </productMenu>
  2476. <productMenu id="phone"
  2477. type="1" >
  2478. </productMenu>
  2479. <productMenu id="music"
  2480. type="1" >
  2481. </productMenu>
  2482. <productMenu id="fmradio"
  2483. type="1" >
  2484. </productMenu>
  2485. <productMenu id="deviceSetting"
  2486. type="1"
  2487. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  2488. </productMenu>
  2489. <productMenu id="quickGuide"
  2490. type="1"
  2491. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.2.0_en_220908.pdf"
  2492. size="607KB" >
  2493. </productMenu>
  2494. <productMenu id="userGuide"
  2495. type="1"
  2496. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.2.0_en_220908.pdf"
  2497. size="1.91MB" >
  2498. </productMenu>
  2499. <productMenu id="volume"
  2500. type="4" >
  2501. </productMenu>
  2502. <productID id="5418"
  2503. />
  2504. <productGroupable type="0"
  2505. />
  2506. </product>
  2507. <product id="LSE-01"
  2508. name="LSE-01"
  2509. series="SF"
  2510. latestVersion="1.2.3"
  2511. show = "0" >
  2512. <productMenu id="protocol"
  2513. type="1"
  2514. url="3">
  2515. </productMenu>
  2516. <productMenu id="sip"
  2517. type="1" >
  2518. </productMenu>
  2519. <productMenu id="bluetoothIntercom"
  2520. type="1" >
  2521. </productMenu>
  2522. <productMenu id="phone"
  2523. type="1" >
  2524. </productMenu>
  2525. <productMenu id="music"
  2526. type="1" >
  2527. </productMenu>
  2528. <productMenu id="fmradio"
  2529. type="1" >
  2530. </productMenu>
  2531. <productMenu id="deviceSetting"
  2532. type="1"
  2533. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  2534. <productMenuURL version="1.1"
  2535. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  2536. />
  2537. <productMenuURL version="1.0"
  2538. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  2539. />
  2540. </productMenu>
  2541. <productMenu id="quickGuide"
  2542. type="1"
  2543. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Louis_LSE-01_01.pdf"
  2544. size="607KB" >
  2545. </productMenu>
  2546. <productMenu id="userGuide"
  2547. type="1"
  2548. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Louis_LSE-01_v1.1_03.pdf"
  2549. size="1.91MB" >
  2550. </productMenu>
  2551. <productMenu id="volume"
  2552. type="4" >
  2553. </productMenu>
  2554. <productID id="5416"
  2555. />
  2556. <productGroupable type="0"
  2557. />
  2558. </product>
  2559. <product id="AGV_ARK"
  2560. name="AGV ARK"
  2561. series="SF"
  2562. latestVersion="1.0.3"
  2563. show = "0" >
  2564. <productMenu id="protocol"
  2565. type="1"
  2566. url="3">
  2567. </productMenu>
  2568. <productMenu id="sip"
  2569. type="1" >
  2570. </productMenu>
  2571. <productMenu id="bluetoothIntercom"
  2572. type="1" >
  2573. </productMenu>
  2574. <productMenu id="phone"
  2575. type="1" >
  2576. </productMenu>
  2577. <productMenu id="music"
  2578. type="1" >
  2579. </productMenu>
  2580. <productMenu id="fmradio"
  2581. type="1" >
  2582. </productMenu>
  2583. <productMenu id="deviceSetting"
  2584. type="1"
  2585. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  2586. </productMenu>
  2587. <productMenu id="quickGuide"
  2588. type="1"
  2589. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ARK_1.0.1_en_210415_D00131.pdf"
  2590. size="607KB" >
  2591. </productMenu>
  2592. <productMenu id="userGuide"
  2593. type="1"
  2594. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_AGV_ARK_v1.0_02.pdf"
  2595. size="1.91MB" >
  2596. </productMenu>
  2597. <productMenu id="volume"
  2598. type="4" >
  2599. </productMenu>
  2600. <productID id="5420"
  2601. />
  2602. <productGroupable type="0"
  2603. />
  2604. </product>
  2605. <product id="20S"
  2606. name="20S"
  2607. series="20"
  2608. latestVersion="2.2.2"
  2609. show = "1" >
  2610. <productMenu id="protocol"
  2611. type="0">
  2612. </productMenu>
  2613. <productMenu id="sip"
  2614. type="1" >
  2615. <productMenuType version="1.0"
  2616. type="0"
  2617. />
  2618. </productMenu>
  2619. <productMenu id="bluetoothIntercom"
  2620. type="1" >
  2621. <productMenuType version="1.0"
  2622. type="0"
  2623. />
  2624. </productMenu>
  2625. <productMenu id="intercomSetting"
  2626. type="1" >
  2627. </productMenu>
  2628. <productMenu id="phone"
  2629. type="2" >
  2630. </productMenu>
  2631. <productMenu id="fmradio"
  2632. type="3" >
  2633. </productMenu>
  2634. <productMenu id="deviceSetting"
  2635. type="1"
  2636. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  2637. <productMenuURL version="2.0.2"
  2638. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  2639. />
  2640. <productMenuURL version="1.5"
  2641. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  2642. />
  2643. <productMenuURL version="1.4.1"
  2644. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  2645. />
  2646. <productMenuURL version="1.1"
  2647. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  2648. />
  2649. <productMenuURL version="1.0"
  2650. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  2651. />
  2652. </productMenu>
  2653. <productMenu id="quickGuide"
  2654. type="1"
  2655. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_20S_EVO_1.4.0_en_220922.pdf"
  2656. size="264KB" >
  2657. </productMenu>
  2658. <productMenu id="userGuide"
  2659. type="1"
  2660. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.0_en_220922.pdf"
  2661. size="3.09MB" >
  2662. </productMenu>
  2663. <productID id="4210"
  2664. />
  2665. <productGroupable type="1"
  2666. />
  2667. </product>
  2668. <product id="20S_EVO"
  2669. name="20S EVO"
  2670. series="20"
  2671. latestVersion="2.2.2"
  2672. show = "1" >
  2673. <productMenu id="protocol"
  2674. type="0">
  2675. </productMenu>
  2676. <productMenu id="sip"
  2677. type="1" >
  2678. <productMenuType version="1.0"
  2679. type="0"
  2680. />
  2681. </productMenu>
  2682. <productMenu id="bluetoothIntercom"
  2683. type="1" >
  2684. <productMenuType version="1.0"
  2685. type="0"
  2686. />
  2687. </productMenu>
  2688. <productMenu id="intercomSetting"
  2689. type="1" >
  2690. </productMenu>
  2691. <productMenu id="phone"
  2692. type="2" >
  2693. </productMenu>
  2694. <productMenu id="fmradio"
  2695. type="3" >
  2696. </productMenu>
  2697. <productMenu id="deviceSetting"
  2698. type="1"
  2699. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  2700. <productMenuURL version="2.0.2"
  2701. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  2702. />
  2703. <productMenuURL version="1.5"
  2704. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  2705. />
  2706. <productMenuURL version="1.4.1"
  2707. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  2708. />
  2709. <productMenuURL version="1.1"
  2710. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  2711. />
  2712. <productMenuURL version="1.0"
  2713. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  2714. />
  2715. </productMenu>
  2716. <productMenu id="quickGuide"
  2717. type="1"
  2718. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_20S_EVO_1.4.0_en_220922.pdf"
  2719. size="264KB" >
  2720. </productMenu>
  2721. <productMenu id="userGuide"
  2722. type="1"
  2723. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.0_en_220922.pdf"
  2724. size="3.09MB" >
  2725. </productMenu>
  2726. <productID id="4210"
  2727. />
  2728. <productProductKey key="16"
  2729. />
  2730. <productGroupable type="1"
  2731. />
  2732. </product>
  2733. <product id="10S"
  2734. name="10S"
  2735. series="10"
  2736. latestVersion="2.1.1"
  2737. show = "1" >
  2738. <productMenu id="protocol"
  2739. type="0">
  2740. </productMenu>
  2741. <productMenu id="sip"
  2742. type="1" >
  2743. </productMenu>
  2744. <productMenu id="bluetoothIntercom"
  2745. type="1" >
  2746. </productMenu>
  2747. <productMenu id="phone"
  2748. type="2" >
  2749. </productMenu>
  2750. <productMenu id="fmradio"
  2751. type="3" >
  2752. </productMenu>
  2753. <productMenu id="deviceSetting"
  2754. type="1"
  2755. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  2756. <productMenuURL version="1.5"
  2757. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  2758. />
  2759. <productMenuURL version="1.3.1"
  2760. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  2761. />
  2762. </productMenu>
  2763. <productMenu id="quickGuide"
  2764. type="1"
  2765. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.3.0_en_221006.pdf"
  2766. size="310KB" >
  2767. </productMenu>
  2768. <productMenu id="userGuide"
  2769. type="1"
  2770. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.2.0_en_221006.pdf"
  2771. size="1.57MB" >
  2772. </productMenu>
  2773. <productID id="5530"
  2774. />
  2775. <productGroupable type="0"
  2776. />
  2777. </product>
  2778. <product id="10R"
  2779. name="10R"
  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. <productMenuType version="1.0.2"
  2789. type="0"
  2790. />
  2791. </productMenu>
  2792. <productMenu id="bluetoothIntercom"
  2793. type="1" >
  2794. <productMenuType version="1.0.2"
  2795. type="0"
  2796. />
  2797. </productMenu>
  2798. <productMenu id="phone"
  2799. type="2" >
  2800. </productMenu>
  2801. <productMenu id="fmradio"
  2802. type="3" >
  2803. </productMenu>
  2804. <productMenu id="deviceSetting"
  2805. type="1"
  2806. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  2807. <productMenuURL version="1.4"
  2808. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  2809. />
  2810. <productMenuURL version="1.2.1"
  2811. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  2812. />
  2813. <productMenuURL version="1.0.2"
  2814. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  2815. />
  2816. <productMenuURL version="1.0"
  2817. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  2818. />
  2819. </productMenu>
  2820. <productMenu id="quickGuide"
  2821. type="1"
  2822. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  2823. size="400KB" >
  2824. </productMenu>
  2825. <productMenu id="userGuide"
  2826. type="1"
  2827. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  2828. size="2.75MB" >
  2829. </productMenu>
  2830. <productID id="5520"
  2831. />
  2832. <productGroupable type="0"
  2833. />
  2834. </product>
  2835. <product id="10C_EVO"
  2836. name="10C EVO"
  2837. series="10"
  2838. latestVersion="1.7"
  2839. show = "1" >
  2840. <productMenu id="protocol"
  2841. type="0">
  2842. </productMenu>
  2843. <productMenu id="sip"
  2844. type="1" >
  2845. </productMenu>
  2846. <productMenu id="bluetoothIntercom"
  2847. type="1" >
  2848. </productMenu>
  2849. <productMenu id="phone"
  2850. type="2" >
  2851. </productMenu>
  2852. <productMenu id="fmradio"
  2853. type="3" >
  2854. </productMenu>
  2855. <productMenu id="deviceSetting"
  2856. type="1"
  2857. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  2858. <productMenuURL version="1.3.1"
  2859. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  2860. />
  2861. </productMenu>
  2862. <productMenu id="quickGuide"
  2863. type="1"
  2864. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  2865. size="1.32MB" >
  2866. </productMenu>
  2867. <productMenu id="userGuide"
  2868. type="1"
  2869. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  2870. size="1.68MB" >
  2871. </productMenu>
  2872. <productID id="5570"
  2873. />
  2874. <productGroupable type="0"
  2875. />
  2876. </product>
  2877. <product id="10C_Pro"
  2878. name="10C Pro"
  2879. series="10"
  2880. latestVersion="2.7.1"
  2881. show = "1" >
  2882. <productMenu id="protocol"
  2883. type="0">
  2884. </productMenu>
  2885. <productMenu id="sip"
  2886. type="1" >
  2887. </productMenu>
  2888. <productMenu id="bluetoothIntercom"
  2889. type="1" >
  2890. </productMenu>
  2891. <productMenu id="phone"
  2892. type="2" >
  2893. </productMenu>
  2894. <productMenu id="fmradio"
  2895. type="3" >
  2896. </productMenu>
  2897. <productMenu id="deviceSetting"
  2898. type="1"
  2899. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  2900. <productMenuURL version="2.5.1"
  2901. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  2902. />
  2903. <productMenuURL version="1.0"
  2904. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  2905. />
  2906. </productMenu>
  2907. <productMenu id="quickGuide"
  2908. type="1"
  2909. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  2910. size="651KB" >
  2911. </productMenu>
  2912. <productMenu id="userGuide"
  2913. type="1"
  2914. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  2915. size="2.34MB" >
  2916. </productMenu>
  2917. <productID id="5580"
  2918. />
  2919. <productGroupable type="0"
  2920. />
  2921. </product>
  2922. <product id="10C"
  2923. name="10C"
  2924. series="10"
  2925. latestVersion="3.0.4"
  2926. show = "1" >
  2927. <productMenu id="protocol"
  2928. type="0">
  2929. </productMenu>
  2930. <productMenu id="sip"
  2931. type="1" >
  2932. <productMenuType version="1.0.4"
  2933. type="0"
  2934. />
  2935. </productMenu>
  2936. <productMenu id="bluetoothIntercom"
  2937. type="1" >
  2938. <productMenuType version="1.0.4"
  2939. type="0"
  2940. />
  2941. </productMenu>
  2942. <productMenu id="phone"
  2943. type="2" >
  2944. </productMenu>
  2945. <productMenu id="fmradio"
  2946. type="3" >
  2947. </productMenu>
  2948. <productMenu id="deviceSetting"
  2949. type="1"
  2950. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  2951. <productMenuURL version="2.3"
  2952. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  2953. />
  2954. <productMenuURL version="2.1.1"
  2955. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  2956. />
  2957. <productMenuURL version="1.0.4"
  2958. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  2959. />
  2960. <productMenuURL version="1.0.2"
  2961. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  2962. />
  2963. </productMenu>
  2964. <productMenu id="quickGuide"
  2965. type="1"
  2966. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  2967. size="935KB" >
  2968. </productMenu>
  2969. <productMenu id="userGuide"
  2970. type="1"
  2971. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  2972. size="2.82MB" >
  2973. </productMenu>
  2974. <productID id="5510"
  2975. />
  2976. <productGroupable type="0"
  2977. />
  2978. </product>
  2979. <product id="10U_GT_AIR"
  2980. name="10U GT-Air"
  2981. series="10"
  2982. latestVersion="2.0.4"
  2983. show = "1" >
  2984. <productMenu id="protocol"
  2985. type="0">
  2986. </productMenu>
  2987. <productMenu id="sip"
  2988. type="1" >
  2989. <productMenuType version="1.0.2"
  2990. type="0"
  2991. />
  2992. </productMenu>
  2993. <productMenu id="bluetoothIntercom"
  2994. type="1" >
  2995. <productMenuType version="1.0.2"
  2996. type="0"
  2997. />
  2998. </productMenu>
  2999. <productMenu id="phone"
  3000. type="2" >
  3001. </productMenu>
  3002. <productMenu id="fmradio"
  3003. type="3" >
  3004. </productMenu>
  3005. <productMenu id="deviceSetting"
  3006. type="1"
  3007. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3008. <productMenuURL version="1.3.2"
  3009. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3010. />
  3011. <productMenuURL version="1.0.2"
  3012. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3013. />
  3014. </productMenu>
  3015. <productMenu id="quickGuide"
  3016. type="1"
  3017. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  3018. size="685KB" >
  3019. </productMenu>
  3020. <productMenu id="userGuide"
  3021. type="1"
  3022. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3023. size="684KB" >
  3024. </productMenu>
  3025. <productID id="5610"
  3026. />
  3027. <productGroupable type="0"
  3028. />
  3029. </product>
  3030. <product id="10U_NEOTEC"
  3031. name="10U Neotec"
  3032. series="10"
  3033. latestVersion="2.0.4"
  3034. show = "1" >
  3035. <productMenu id="protocol"
  3036. type="0">
  3037. </productMenu>
  3038. <productMenu id="sip"
  3039. type="1" >
  3040. <productMenuType version="1.0.2"
  3041. type="0"
  3042. />
  3043. </productMenu>
  3044. <productMenu id="bluetoothIntercom"
  3045. type="1" >
  3046. <productMenuType version="1.0.2"
  3047. type="0"
  3048. />
  3049. </productMenu>
  3050. <productMenu id="phone"
  3051. type="2" >
  3052. </productMenu>
  3053. <productMenu id="fmradio"
  3054. type="3" >
  3055. </productMenu>
  3056. <productMenu id="deviceSetting"
  3057. type="1"
  3058. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3059. <productMenuURL version="1.3.2"
  3060. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3061. />
  3062. <productMenuURL version="1.0.2"
  3063. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3064. />
  3065. </productMenu>
  3066. <productMenu id="quickGuide"
  3067. type="1"
  3068. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  3069. size="689KB" >
  3070. </productMenu>
  3071. <productMenu id="userGuide"
  3072. type="1"
  3073. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3074. size="684KB" >
  3075. </productMenu>
  3076. <productID id="5611"
  3077. />
  3078. <productGroupable type="0"
  3079. />
  3080. </product>
  3081. <product id="10U_J_CRUISE"
  3082. name="10U J-Cruise"
  3083. series="10"
  3084. latestVersion="2.0.4"
  3085. show = "1" >
  3086. <productMenu id="protocol"
  3087. type="0">
  3088. </productMenu>
  3089. <productMenu id="sip"
  3090. type="1" >
  3091. <productMenuType version="1.0.2"
  3092. type="0"
  3093. />
  3094. </productMenu>
  3095. <productMenu id="bluetoothIntercom"
  3096. type="1" >
  3097. <productMenuType version="1.0.2"
  3098. type="0"
  3099. />
  3100. </productMenu>
  3101. <productMenu id="phone"
  3102. type="2" >
  3103. </productMenu>
  3104. <productMenu id="fmradio"
  3105. type="3" >
  3106. </productMenu>
  3107. <productMenu id="deviceSetting"
  3108. type="1"
  3109. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3110. <productMenuURL version="1.3.2"
  3111. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3112. />
  3113. <productMenuURL version="1.0.2"
  3114. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3115. />
  3116. </productMenu>
  3117. <productMenu id="quickGuide"
  3118. type="1"
  3119. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  3120. size="686KB" >
  3121. </productMenu>
  3122. <productMenu id="userGuide"
  3123. type="1"
  3124. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3125. size="684KB" >
  3126. </productMenu>
  3127. <productID id="5612"
  3128. />
  3129. <productGroupable type="0"
  3130. />
  3131. </product>
  3132. <product id="10U_C3"
  3133. name="10U C3/C3Pro"
  3134. series="10"
  3135. latestVersion="2.0.4"
  3136. show = "1" >
  3137. <productMenu id="protocol"
  3138. type="0">
  3139. </productMenu>
  3140. <productMenu id="sip"
  3141. type="1" >
  3142. <productMenuType version="1.0.2"
  3143. type="0"
  3144. />
  3145. </productMenu>
  3146. <productMenu id="bluetoothIntercom"
  3147. type="1" >
  3148. <productMenuType version="1.0.2"
  3149. type="0"
  3150. />
  3151. </productMenu>
  3152. <productMenu id="phone"
  3153. type="2" >
  3154. </productMenu>
  3155. <productMenu id="fmradio"
  3156. type="3" >
  3157. </productMenu>
  3158. <productMenu id="deviceSetting"
  3159. type="1"
  3160. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3161. <productMenuURL version="1.3.2"
  3162. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3163. />
  3164. <productMenuURL version="1.0.2"
  3165. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3166. />
  3167. </productMenu>
  3168. <productMenu id="quickGuide"
  3169. type="1"
  3170. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  3171. size="199KB" >
  3172. </productMenu>
  3173. <productMenu id="userGuide"
  3174. type="1"
  3175. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3176. size="684KB" >
  3177. </productMenu>
  3178. <productID id="5620"
  3179. />
  3180. <productGroupable type="0"
  3181. />
  3182. </product>
  3183. <product id="10U_ARAI"
  3184. name="10U Arai"
  3185. series="10"
  3186. latestVersion="2.0.4"
  3187. show = "1" >
  3188. <productMenu id="protocol"
  3189. type="0">
  3190. </productMenu>
  3191. <productMenu id="sip"
  3192. type="1" >
  3193. <productMenuType version="1.0.2"
  3194. type="0"
  3195. />
  3196. </productMenu>
  3197. <productMenu id="bluetoothIntercom"
  3198. type="1" >
  3199. <productMenuType version="1.0.2"
  3200. type="0"
  3201. />
  3202. </productMenu>
  3203. <productMenu id="phone"
  3204. type="2" >
  3205. </productMenu>
  3206. <productMenu id="fmradio"
  3207. type="3" >
  3208. </productMenu>
  3209. <productMenu id="deviceSetting"
  3210. type="1"
  3211. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3212. <productMenuURL version="1.3.2"
  3213. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3214. />
  3215. <productMenuURL version="1.0.2"
  3216. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3217. />
  3218. </productMenu>
  3219. <productMenu id="quickGuide"
  3220. type="1"
  3221. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  3222. size="689KB" >
  3223. </productMenu>
  3224. <productMenu id="userGuide"
  3225. type="1"
  3226. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3227. size="684KB" >
  3228. </productMenu>
  3229. <productID id="5621"
  3230. />
  3231. <productGroupable type="0"
  3232. />
  3233. </product>
  3234. <product id="10Upad"
  3235. name="10Upad"
  3236. series="10"
  3237. latestVersion="2.0.3"
  3238. show = "1" >
  3239. <productMenu id="protocol"
  3240. type="0">
  3241. </productMenu>
  3242. <productMenu id="sip"
  3243. type="1" >
  3244. </productMenu>
  3245. <productMenu id="bluetoothIntercom"
  3246. type="1" >
  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/10Upad/DS_10Upad_v0200.xml" >
  3257. <productMenuURL version="1.0.3"
  3258. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  3259. />
  3260. </productMenu>
  3261. <productMenu id="quickGuide"
  3262. type="1"
  3263. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  3264. size="615KB" >
  3265. </productMenu>
  3266. <productMenu id="userGuide"
  3267. type="1"
  3268. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  3269. size="0.99MB" >
  3270. </productMenu>
  3271. <productID id="6210"
  3272. />
  3273. <productGroupable type="0"
  3274. />
  3275. </product>
  3276. <product id="KLIM_KRIOS"
  3277. name="KLIM Krios"
  3278. series="10"
  3279. latestVersion="1.1.2"
  3280. show = "0" >
  3281. <productMenu id="protocol"
  3282. type="0">
  3283. </productMenu>
  3284. <productMenu id="sip"
  3285. type="1" >
  3286. </productMenu>
  3287. <productMenu id="bluetoothIntercom"
  3288. type="1" >
  3289. </productMenu>
  3290. <productMenu id="phone"
  3291. type="2" >
  3292. </productMenu>
  3293. <productMenu id="fmradio"
  3294. type="3" >
  3295. </productMenu>
  3296. <productMenu id="deviceSetting"
  3297. type="1"
  3298. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  3299. <productMenuURL version="1.0"
  3300. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  3301. />
  3302. </productMenu>
  3303. <productMenu id="quickGuide"
  3304. type="1"
  3305. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  3306. size="649KB" >
  3307. </productMenu>
  3308. <productMenu id="userGuide"
  3309. type="1"
  3310. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  3311. size="1.43MB" >
  3312. </productMenu>
  3313. <productID id="5910"
  3314. />
  3315. <productGroupable type="0"
  3316. />
  3317. </product>
  3318. <product id="POLARIS_SLINGSHOT"
  3319. name="Polaris Slingshot"
  3320. series="10"
  3321. latestVersion="1.1.2"
  3322. show = "0" >
  3323. <productMenu id="protocol"
  3324. type="0">
  3325. </productMenu>
  3326. <productMenu id="sip"
  3327. type="1" >
  3328. </productMenu>
  3329. <productMenu id="bluetoothIntercom"
  3330. type="1" >
  3331. </productMenu>
  3332. <productMenu id="phone"
  3333. type="2" >
  3334. </productMenu>
  3335. <productMenu id="fmradio"
  3336. type="3" >
  3337. </productMenu>
  3338. <productMenu id="deviceSetting"
  3339. type="1"
  3340. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  3341. <productMenuURL version="1.0"
  3342. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  3343. />
  3344. </productMenu>
  3345. <productMenu id="quickGuide"
  3346. type="1"
  3347. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  3348. size="689KB" >
  3349. </productMenu>
  3350. <productMenu id="userGuide"
  3351. type="1"
  3352. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  3353. size="1.43MB" >
  3354. </productMenu>
  3355. <productID id="5920"
  3356. />
  3357. <productGroupable type="0"
  3358. />
  3359. </product>
  3360. <product id="DWO6"
  3361. name="SEDICI DWO6-PRO"
  3362. series="10"
  3363. latestVersion="1.0.1"
  3364. show = "0" >
  3365. <productMenu id="protocol"
  3366. type="0">
  3367. </productMenu>
  3368. <productMenu id="sip"
  3369. type="1" >
  3370. </productMenu>
  3371. <productMenu id="bluetoothIntercom"
  3372. type="1" >
  3373. </productMenu>
  3374. <productMenu id="phone"
  3375. type="2" >
  3376. </productMenu>
  3377. <productMenu id="fmradio"
  3378. type="3" >
  3379. </productMenu>
  3380. <productMenu id="deviceSetting"
  3381. type="1"
  3382. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  3383. </productMenu>
  3384. <productMenu id="quickGuide"
  3385. type="1"
  3386. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_CG_DWO6P_01.pdf"
  3387. size="529KB" >
  3388. </productMenu>
  3389. <productMenu id="userGuide"
  3390. type="1"
  3391. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_CG_DWO6P_v1.0_01.pdf"
  3392. size="4.09MB" >
  3393. </productMenu>
  3394. <productID id="6112"
  3395. />
  3396. <productGroupable type="0"
  3397. />
  3398. </product>
  3399. <product id="DWO6A"
  3400. name="SEDICI DWO-6"
  3401. series="10"
  3402. latestVersion="1.0"
  3403. show = "0" >
  3404. <productMenu id="protocol"
  3405. type="0">
  3406. </productMenu>
  3407. <productMenu id="sip"
  3408. type="1" >
  3409. </productMenu>
  3410. <productMenu id="bluetoothIntercom"
  3411. type="1" >
  3412. </productMenu>
  3413. <productMenu id="phone"
  3414. type="2" >
  3415. </productMenu>
  3416. <productMenu id="fmradio"
  3417. type="3" >
  3418. </productMenu>
  3419. <productMenu id="deviceSetting"
  3420. type="1"
  3421. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  3422. </productMenu>
  3423. <productMenu id="quickGuide"
  3424. type="1"
  3425. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_DWO-6_v1.0_en_200831.pdf"
  3426. size="522KB" >
  3427. </productMenu>
  3428. <productMenu id="userGuide"
  3429. type="1"
  3430. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_DWO-6_v1.0_en_200831.pdf"
  3431. size="2.71MB" >
  3432. </productMenu>
  3433. <productID id="6114"
  3434. />
  3435. <productGroupable type="0"
  3436. />
  3437. </product>
  3438. <product id="5S"
  3439. name="5S"
  3440. nameGuide="5S (2022~)"
  3441. series="5"
  3442. latestVersion="2.1"
  3443. show = "1" >
  3444. <productMenu id="protocol"
  3445. type="3" >
  3446. </productMenu>
  3447. <productMenu id="sip"
  3448. type="1" >
  3449. </productMenu>
  3450. <productMenu id="bluetoothIntercom"
  3451. type="1" >
  3452. </productMenu>
  3453. <productMenu id="phone"
  3454. type="1" >
  3455. </productMenu>
  3456. <productMenu id="fmradio"
  3457. type="1" >
  3458. </productMenu>
  3459. <productMenu id="deviceSetting"
  3460. type="1"
  3461. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  3462. </productMenu>
  3463. <productMenu id="quickGuide"
  3464. type="1"
  3465. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5S_2.0.0_en_220304.pdf"
  3466. size="934KB" >
  3467. </productMenu>
  3468. <productMenu id="userGuide"
  3469. type="1"
  3470. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5S_2.0.0_en_220406.pdf"
  3471. size="1.14MB" >
  3472. </productMenu>
  3473. <productID id="5590"
  3474. />
  3475. <productGroupable type="0"
  3476. />
  3477. </product>
  3478. <product id="5S"
  3479. name="5S"
  3480. nameGuide="5S (~2021)"
  3481. series="5"
  3482. latestVersion="1.2"
  3483. show = "1" >
  3484. <productMenu id="protocol"
  3485. type="0">
  3486. </productMenu>
  3487. <productMenu id="sip"
  3488. type="1" >
  3489. </productMenu>
  3490. <productMenu id="bluetoothIntercom"
  3491. type="1" >
  3492. </productMenu>
  3493. <productMenu id="phone"
  3494. type="2" >
  3495. </productMenu>
  3496. <productMenu id="fmradio"
  3497. type="3" >
  3498. </productMenu>
  3499. <productMenu id="deviceSetting"
  3500. type="1"
  3501. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  3502. </productMenu>
  3503. <productMenu id="quickGuide"
  3504. type="1"
  3505. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5S_1.1.0_en_211012.pdf"
  3506. size="970KB" >
  3507. </productMenu>
  3508. <productMenu id="userGuide"
  3509. type="1"
  3510. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5S_1.1.0_en_211012.pdf"
  3511. size="1.26MB" >
  3512. </productMenu>
  3513. <productID id="5534"
  3514. />
  3515. <productGroupable type="0"
  3516. />
  3517. </product>
  3518. <product id="3SPLUS"
  3519. name="3S PLUS"
  3520. series="3"
  3521. latestVersion="1.0.5"
  3522. show = "1" >
  3523. <productMenu id="protocol"
  3524. type="0">
  3525. </productMenu>
  3526. <productMenu id="sip"
  3527. type="1" >
  3528. </productMenu>
  3529. <productMenu id="bluetoothIntercom"
  3530. type="1" >
  3531. </productMenu>
  3532. <productMenu id="deviceSetting"
  3533. type="1"
  3534. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  3535. </productMenu>
  3536. <productMenu id="quickGuide"
  3537. type="1"
  3538. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_3S_PLUS_1.0.0_en_200813.pdf"
  3539. size="842KB" >
  3540. </productMenu>
  3541. <productMenu id="userGuide"
  3542. type="1"
  3543. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_app_3S_PLUS_1.0.1_en_210521.pdf"
  3544. size="1.02MB" >
  3545. </productMenu>
  3546. <productID id="6320"
  3547. />
  3548. <productGroupable type="0"
  3549. />
  3550. </product>
  3551. <product id="3SPLUS"
  3552. name="ZILL"
  3553. series="3"
  3554. latestVersion="1.0.4"
  3555. show = "0" >
  3556. <productMenu id="protocol"
  3557. type="0">
  3558. </productMenu>
  3559. <productMenu id="sip"
  3560. type="1" >
  3561. </productMenu>
  3562. <productMenu id="bluetoothIntercom"
  3563. type="1" >
  3564. </productMenu>
  3565. <productMenu id="deviceSetting"
  3566. type="1"
  3567. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  3568. </productMenu>
  3569. <productMenu id="quickGuide"
  3570. type="1"
  3571. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_3S_PLUS_1.0.0_en_200813.pdf"
  3572. size="842KB" >
  3573. </productMenu>
  3574. <productMenu id="userGuide"
  3575. type="1"
  3576. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_app_3S_PLUS_1.0.1_en_210521.pdf"
  3577. size="1.02MB" >
  3578. </productMenu>
  3579. <productID id="6335"
  3580. />
  3581. <productGroupable type="0"
  3582. />
  3583. </product>
  3584. <product id="33i"
  3585. name="33i"
  3586. series="50"
  3587. latestVersion="4.0"
  3588. show = "0" >
  3589. <productMenu id="protocol"
  3590. type="2" >
  3591. </productMenu>
  3592. <productMenu id="alexa"
  3593. type="0" >
  3594. </productMenu>
  3595. <productMenu id="ota"
  3596. type="0" >
  3597. </productMenu>
  3598. <productMenu id="wa"
  3599. type="0" >
  3600. </productMenu>
  3601. <productMenu id="sip"
  3602. type="1" >
  3603. </productMenu>
  3604. <productMenu id="meshIntercom"
  3605. type="20" >
  3606. </productMenu>
  3607. <productMenu id="bluetoothIntercom"
  3608. type="1" >
  3609. </productMenu>
  3610. <productMenu id="phone"
  3611. type="1" >
  3612. </productMenu>
  3613. <productMenu id="music"
  3614. type="1" >
  3615. </productMenu>
  3616. <productMenu id="fmradio"
  3617. type="1" >
  3618. </productMenu>
  3619. <productMenu id="deviceSetting"
  3620. type="1"
  3621. url="https://api.sena.com/support/SenaNeoApp/33i/NS_33iV2.xml" >
  3622. </productMenu>
  3623. <productMenu id="quickGuide"
  3624. type="1"
  3625. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_30k_2.1.0_en_210414.pdf"
  3626. size="934KB" >
  3627. </productMenu>
  3628. <productMenu id="userGuide"
  3629. type="1"
  3630. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_30K_3.1.0_en_210526.pdf"
  3631. size="1.14MB" >
  3632. </productMenu>
  3633. <productMenu id="volume"
  3634. type="11" >
  3635. </productMenu>
  3636. <productMenu id="battery"
  3637. type="1" >
  3638. </productMenu>
  3639. <productID id="3215"
  3640. />
  3641. <productGroupable type="0"
  3642. />
  3643. </product>
  3644. <product id="HD50S"
  3645. name="Boom! Audio 30K"
  3646. series="30"
  3647. latestVersion="3.3"
  3648. show = "0" >
  3649. <productMenu id="protocol"
  3650. type="1"
  3651. url="0">
  3652. </productMenu>
  3653. <productMenu id="wa"
  3654. type="0" >
  3655. </productMenu>
  3656. <productMenu id="sip"
  3657. type="1" >
  3658. </productMenu>
  3659. <productMenu id="meshIntercom"
  3660. type="20" >
  3661. <productMenuType version="2.9.9"
  3662. type="10"
  3663. />
  3664. </productMenu>
  3665. <productMenu id="bluetoothIntercom"
  3666. type="1" >
  3667. </productMenu>
  3668. <productMenu id="phone"
  3669. type="1" >
  3670. </productMenu>
  3671. <productMenu id="music"
  3672. type="1" >
  3673. </productMenu>
  3674. <productMenu id="fmradio"
  3675. type="1" >
  3676. </productMenu>
  3677. <productMenu id="deviceSetting"
  3678. type="1"
  3679. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  3680. <productMenuURL version="3.2"
  3681. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  3682. />
  3683. <productMenuURL version="3.0"
  3684. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  3685. />
  3686. <productMenuURL version="2.2"
  3687. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  3688. />
  3689. </productMenu>
  3690. <productMenu id="quickGuide"
  3691. type="1"
  3692. url="http://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  3693. size="1.06MB" >
  3694. </productMenu>
  3695. <productMenu id="userGuide"
  3696. type="1"
  3697. url="http://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  3698. size="3.15MB" >
  3699. </productMenu>
  3700. <productMenu id="volume"
  3701. type="1" >
  3702. </productMenu>
  3703. <productID id="3112"
  3704. />
  3705. <productGroupable type="0"
  3706. />
  3707. </product>
  3708. <product id="HD50S"
  3709. name="Boom! Audio N02"
  3710. series="30"
  3711. latestVersion="3.0"
  3712. show = "0" >
  3713. <productMenu id="protocol"
  3714. type="1"
  3715. url="0">
  3716. </productMenu>
  3717. <productMenu id="wa"
  3718. type="0" >
  3719. </productMenu>
  3720. <productMenu id="sip"
  3721. type="1" >
  3722. </productMenu>
  3723. <productMenu id="meshIntercom"
  3724. type="20" >
  3725. <productMenuType version="2.9.9"
  3726. type="10"
  3727. />
  3728. </productMenu>
  3729. <productMenu id="bluetoothIntercom"
  3730. type="1" >
  3731. </productMenu>
  3732. <productMenu id="phone"
  3733. type="1" >
  3734. </productMenu>
  3735. <productMenu id="music"
  3736. type="1" >
  3737. </productMenu>
  3738. <productMenu id="fmradio"
  3739. type="1" >
  3740. </productMenu>
  3741. <productMenu id="deviceSetting"
  3742. type="1"
  3743. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  3744. <productMenuURL version="2.2"
  3745. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  3746. />
  3747. </productMenu>
  3748. <productMenu id="quickGuide"
  3749. type="1"
  3750. url="http://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  3751. size="1.06MB" >
  3752. </productMenu>
  3753. <productMenu id="userGuide"
  3754. type="1"
  3755. url="http://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  3756. size="3.15MB" >
  3757. </productMenu>
  3758. <productMenu id="volume"
  3759. type="2" >
  3760. </productMenu>
  3761. <productID id="3114"
  3762. />
  3763. <productGroupable type="0"
  3764. />
  3765. </product>
  3766. <product id="HD50S"
  3767. name="Boom Audio 20S"
  3768. series="50"
  3769. latestVersion="2.5.1"
  3770. show = "0" >
  3771. <productMenu id="protocol"
  3772. type="0">
  3773. </productMenu>
  3774. <productMenu id="sip"
  3775. type="1" >
  3776. <productMenuType version="1.0"
  3777. type="0"
  3778. />
  3779. </productMenu>
  3780. <productMenu id="bluetoothIntercom"
  3781. type="1" >
  3782. <productMenuType version="1.0"
  3783. type="0"
  3784. />
  3785. </productMenu>
  3786. <productMenu id="intercomSetting"
  3787. type="1" >
  3788. </productMenu>
  3789. <productMenu id="phone"
  3790. type="2" >
  3791. </productMenu>
  3792. <productMenu id="fmradio"
  3793. type="3" >
  3794. </productMenu>
  3795. <productMenu id="deviceSetting"
  3796. type="1"
  3797. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  3798. <productMenuURL version="2.4"
  3799. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  3800. />
  3801. <productMenuURL version="1.5"
  3802. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  3803. />
  3804. <productMenuURL version="1.4.1"
  3805. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  3806. />
  3807. <productMenuURL version="1.1"
  3808. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  3809. />
  3810. <productMenuURL version="1.0"
  3811. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  3812. />
  3813. </productMenu>
  3814. <productMenu id="quickGuide"
  3815. type="1"
  3816. url="http://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  3817. size="264KB" >
  3818. </productMenu>
  3819. <productMenu id="userGuide"
  3820. type="1"
  3821. url="http://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  3822. size="3.09MB" >
  3823. </productMenu>
  3824. <productID id="4210"
  3825. />
  3826. <productProductKey key="11"
  3827. />
  3828. <productID id="4230"
  3829. />
  3830. <productProductKey key="11"
  3831. />
  3832. <productGroupable type="1"
  3833. />
  3834. </product>
  3835. <product id="HD50S"
  3836. name="Boom Audio 20S EVO"
  3837. series="50"
  3838. latestVersion="2.5.1"
  3839. show = "0" >
  3840. <productMenu id="protocol"
  3841. type="0">
  3842. </productMenu>
  3843. <productMenu id="sip"
  3844. type="1" >
  3845. <productMenuType version="1.0"
  3846. type="0"
  3847. />
  3848. </productMenu>
  3849. <productMenu id="bluetoothIntercom"
  3850. type="1" >
  3851. <productMenuType version="1.0"
  3852. type="0"
  3853. />
  3854. </productMenu>
  3855. <productMenu id="intercomSetting"
  3856. type="1" >
  3857. </productMenu>
  3858. <productMenu id="phone"
  3859. type="2" >
  3860. </productMenu>
  3861. <productMenu id="fmradio"
  3862. type="3" >
  3863. </productMenu>
  3864. <productMenu id="deviceSetting"
  3865. type="1"
  3866. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  3867. <productMenuURL version="2.4"
  3868. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  3869. />
  3870. <productMenuURL version="1.5"
  3871. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  3872. />
  3873. <productMenuURL version="1.4.1"
  3874. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  3875. />
  3876. <productMenuURL version="1.1"
  3877. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  3878. />
  3879. <productMenuURL version="1.0"
  3880. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  3881. />
  3882. </productMenu>
  3883. <productMenu id="quickGuide"
  3884. type="1"
  3885. url="http://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  3886. size="321KB" >
  3887. </productMenu>
  3888. <productMenu id="userGuide"
  3889. type="1"
  3890. url="http://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  3891. size="2.46MB" >
  3892. </productMenu>
  3893. <productID id="4230"
  3894. />
  3895. <productProductKey key="27"
  3896. />
  3897. <productGroupable type="1"
  3898. />
  3899. </product>
  3900. <product id="HD50S"
  3901. name="Boom! Audio 10S"
  3902. series="50"
  3903. latestVersion="1.1.2"
  3904. show = "0" >
  3905. <productMenu id="protocol"
  3906. type="0">
  3907. </productMenu>
  3908. <productMenu id="sip"
  3909. type="1" >
  3910. </productMenu>
  3911. <productMenu id="bluetoothIntercom"
  3912. type="1" >
  3913. </productMenu>
  3914. <productMenu id="phone"
  3915. type="2" >
  3916. </productMenu>
  3917. <productMenu id="fmradio"
  3918. type="3" >
  3919. </productMenu>
  3920. <productMenu id="deviceSetting"
  3921. type="1"
  3922. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  3923. </productMenu>
  3924. <productMenu id="quickGuide"
  3925. type="1"
  3926. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  3927. size="538KB" >
  3928. </productMenu>
  3929. <productMenu id="userGuide"
  3930. type="1"
  3931. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  3932. size="1.55MB" >
  3933. </productMenu>
  3934. <productID id="5532"
  3935. />
  3936. <productGroupable type="0"
  3937. />
  3938. </product>
  3939. <product id="HD50S"
  3940. name="Boom! Audio N01 10R"
  3941. series="50"
  3942. latestVersion="1.1.2"
  3943. show = "0" >
  3944. <productMenu id="protocol"
  3945. type="0">
  3946. </productMenu>
  3947. <productMenu id="sip"
  3948. type="1" >
  3949. </productMenu>
  3950. <productMenu id="bluetoothIntercom"
  3951. type="1" >
  3952. </productMenu>
  3953. <productMenu id="phone"
  3954. type="2" >
  3955. </productMenu>
  3956. <productMenu id="fmradio"
  3957. type="3" >
  3958. </productMenu>
  3959. <productMenu id="deviceSetting"
  3960. type="1"
  3961. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  3962. </productMenu>
  3963. <productMenu id="quickGuide"
  3964. type="1"
  3965. url="http://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  3966. size="766KB" >
  3967. </productMenu>
  3968. <productMenu id="userGuide"
  3969. type="1"
  3970. url="http://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  3971. size="1.45MB" >
  3972. </productMenu>
  3973. <productID id="5522"
  3974. />
  3975. <productGroupable type="0"
  3976. />
  3977. </product>
  3978. <product id="HD50S"
  3979. name="OUTRUSH-R N03"
  3980. series="50"
  3981. latestVersion="1.2"
  3982. show = "0" >
  3983. <productMenu id="protocol"
  3984. type="0">
  3985. </productMenu>
  3986. <productMenu id="sip"
  3987. type="1" >
  3988. </productMenu>
  3989. <productMenu id="bluetoothIntercom"
  3990. type="1" >
  3991. </productMenu>
  3992. <productMenu id="phone"
  3993. type="2" >
  3994. </productMenu>
  3995. <productMenu id="fmradio"
  3996. type="3" >
  3997. </productMenu>
  3998. <productMenu id="deviceSetting"
  3999. type="1"
  4000. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  4001. </productMenu>
  4002. <productMenu id="userGuide"
  4003. type="1"
  4004. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  4005. size="660KB" >
  4006. </productMenu>
  4007. <productID id="5434"
  4008. />
  4009. <productGroupable type="0"
  4010. />
  4011. </product>
  4012. <product id="5R"
  4013. name="5R"
  4014. series="5"
  4015. latestVersion="1.0"
  4016. show = "1" >
  4017. <productMenu id="protocol"
  4018. type="3" >
  4019. </productMenu>
  4020. <productMenu id="sip"
  4021. type="1" >
  4022. </productMenu>
  4023. <productMenu id="bluetoothIntercom"
  4024. type="1" >
  4025. </productMenu>
  4026. <productMenu id="phone"
  4027. type="1" >
  4028. </productMenu>
  4029. <productMenu id="fmradio"
  4030. type="1" >
  4031. </productMenu>
  4032. <productMenu id="deviceSetting"
  4033. type="1"
  4034. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  4035. </productMenu>
  4036. <productMenu id="quickGuide"
  4037. type="1"
  4038. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  4039. size="934KB" >
  4040. </productMenu>
  4041. <productMenu id="userGuide"
  4042. type="1"
  4043. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5R_1.0.0_en_220519.pdf"
  4044. size="1.14MB" >
  4045. </productMenu>
  4046. <productID id="5591"
  4047. />
  4048. <productGroupable type="0"
  4049. />
  4050. </product>
  4051. <product id="5R"
  4052. name="5R LITE"
  4053. series="5"
  4054. latestVersion="1.0"
  4055. show = "1" >
  4056. <productMenu id="protocol"
  4057. type="3" >
  4058. </productMenu>
  4059. <productMenu id="sip"
  4060. type="1" >
  4061. </productMenu>
  4062. <productMenu id="bluetoothIntercom"
  4063. type="1" >
  4064. </productMenu>
  4065. <productMenu id="phone"
  4066. type="1" >
  4067. </productMenu>
  4068. <productMenu id="fmradio"
  4069. type="1" >
  4070. </productMenu>
  4071. <productMenu id="deviceSetting"
  4072. type="1"
  4073. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE.xml" >
  4074. </productMenu>
  4075. <productMenu id="quickGuide"
  4076. type="1"
  4077. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_LITE_1.0.0_en_220511.pdf"
  4078. size="934KB" >
  4079. </productMenu>
  4080. <productMenu id="userGuide"
  4081. type="1"
  4082. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5R_LITE_1.0.0_en_220519.pdf"
  4083. size="1.14MB" >
  4084. </productMenu>
  4085. <productID id="5592"
  4086. />
  4087. <productGroupable type="0"
  4088. />
  4089. </product>
  4090. <product id="5R"
  4091. name="Ridekont 5R"
  4092. series="5"
  4093. latestVersion="1.0"
  4094. show = "0" >
  4095. <productMenu id="protocol"
  4096. type="3" >
  4097. </productMenu>
  4098. <productMenu id="sip"
  4099. type="1" >
  4100. </productMenu>
  4101. <productMenu id="bluetoothIntercom"
  4102. type="1" >
  4103. </productMenu>
  4104. <productMenu id="phone"
  4105. type="1" >
  4106. </productMenu>
  4107. <productMenu id="fmradio"
  4108. type="1" >
  4109. </productMenu>
  4110. <productMenu id="deviceSetting"
  4111. type="1"
  4112. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  4113. </productMenu>
  4114. <productMenu id="quickGuide"
  4115. type="1"
  4116. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  4117. size="934KB" >
  4118. </productMenu>
  4119. <productMenu id="userGuide"
  4120. type="1"
  4121. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5R_1.0.0_en_220519.pdf"
  4122. size="1.14MB" >
  4123. </productMenu>
  4124. <productID id="5593"
  4125. />
  4126. <productGroupable type="0"
  4127. />
  4128. </product>
  4129. <product id="5R"
  4130. name="Ridekont 5R LITE"
  4131. series="5"
  4132. latestVersion="1.0"
  4133. show = "0" >
  4134. <productMenu id="protocol"
  4135. type="3" >
  4136. </productMenu>
  4137. <productMenu id="sip"
  4138. type="1" >
  4139. </productMenu>
  4140. <productMenu id="bluetoothIntercom"
  4141. type="1" >
  4142. </productMenu>
  4143. <productMenu id="phone"
  4144. type="1" >
  4145. </productMenu>
  4146. <productMenu id="fmradio"
  4147. type="1" >
  4148. </productMenu>
  4149. <productMenu id="deviceSetting"
  4150. type="1"
  4151. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE.xml" >
  4152. </productMenu>
  4153. <productMenu id="quickGuide"
  4154. type="1"
  4155. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_LITE_1.0.0_en_220511.pdf"
  4156. size="934KB" >
  4157. </productMenu>
  4158. <productMenu id="userGuide"
  4159. type="1"
  4160. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5R_LITE_1.0.0_en_220519.pdf"
  4161. size="1.14MB" >
  4162. </productMenu>
  4163. <productID id="5594"
  4164. />
  4165. <productGroupable type="0"
  4166. />
  4167. </product>
  4168. <product id="3SPLUS"
  4169. name="3S PLUS"
  4170. series="30"
  4171. latestVersion="2.0"
  4172. show = "0" >
  4173. <productMenu id="protocol"
  4174. type="3" >
  4175. </productMenu>
  4176. <productMenu id="sip"
  4177. type="1" >
  4178. </productMenu>
  4179. <productMenu id="bluetoothIntercom"
  4180. type="1" >
  4181. </productMenu>
  4182. <productMenu id="deviceSetting"
  4183. type="1"
  4184. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  4185. </productMenu>
  4186. <productMenu id="userGuide"
  4187. type="1"
  4188. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_app_3S_PLUS_1.0.1_en_210521.pdf"
  4189. size="1.14MB" >
  4190. </productMenu>
  4191. <productID id="4023"
  4192. />
  4193. <productGroupable type="0"
  4194. />
  4195. </product>
  4196. <product id="ACSRAM"
  4197. name="ACS-RAM"
  4198. series="50"
  4199. latestVersion="1.0"
  4200. show = "0" >
  4201. <productMenu id="protocol"
  4202. type="3" >
  4203. </productMenu>
  4204. <productMenu id="sip"
  4205. type="1" >
  4206. </productMenu>
  4207. <productMenu id="bluetoothIntercom"
  4208. type="1" >
  4209. </productMenu>
  4210. <productMenu id="deviceSetting"
  4211. type="1"
  4212. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  4213. </productMenu>
  4214. <productMenu id="quickGuide"
  4215. type="1"
  4216. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  4217. size="344KB" >
  4218. </productMenu>
  4219. <productMenu id="userGuide"
  4220. type="1"
  4221. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  4222. size="1.14MB" >
  4223. </productMenu>
  4224. <productID id="3400"
  4225. />
  4226. <productGroupable type="0"
  4227. />
  4228. </product>
  4229. <product id="ACS10"
  4230. name="ACS10"
  4231. series="50"
  4232. latestVersion="1.0.1"
  4233. show = "0" >
  4234. <productMenu id="protocol"
  4235. type="0">
  4236. </productMenu>
  4237. <productMenu id="sip"
  4238. type="1" >
  4239. </productMenu>
  4240. <productMenu id="bluetoothIntercom"
  4241. type="1" >
  4242. </productMenu>
  4243. <productMenu id="phone"
  4244. type="2" >
  4245. </productMenu>
  4246. <productMenu id="deviceSetting"
  4247. type="1"
  4248. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  4249. </productMenu>
  4250. <productMenu id="quickGuide"
  4251. type="1"
  4252. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS10_1.0.0_en_210629.pdf"
  4253. size="970KB" >
  4254. </productMenu>
  4255. <productMenu id="userGuide"
  4256. type="1"
  4257. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS10_1.0.1_en_220314.pdf"
  4258. size="1.26MB" >
  4259. </productMenu>
  4260. <productID id="3300"
  4261. />
  4262. <productGroupable type="0"
  4263. />
  4264. </product>
  4265. <product id="Rumba"
  4266. name="Rumba"
  4267. series="30"
  4268. latestVersion="2.0"
  4269. show = "0" >
  4270. <productMenu id="protocol"
  4271. type="3" >
  4272. </productMenu>
  4273. <productMenu id="sip"
  4274. type="1" >
  4275. </productMenu>
  4276. <productMenu id="bluetoothIntercom"
  4277. type="1" >
  4278. </productMenu>
  4279. <productMenu id="deviceSetting"
  4280. type="1"
  4281. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  4282. </productMenu>
  4283. <productMenu id="quickGuide"
  4284. type="1"
  4285. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  4286. size="344KB" >
  4287. </productMenu>
  4288. <productMenu id="userGuide"
  4289. type="1"
  4290. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  4291. size="1.14MB" >
  4292. </productMenu>
  4293. <productID id="6322"
  4294. />
  4295. <productGroupable type="0"
  4296. />
  4297. </product>
  4298. <product id="DWO_7_Pro_Mesh"
  4299. name="DWO 7 Pro Mesh"
  4300. series="50"
  4301. latestVersion="1.0"
  4302. show = "0" >
  4303. <productMenu id="protocol"
  4304. type="2" >
  4305. </productMenu>
  4306. <productMenu id="alexa"
  4307. type="0" >
  4308. </productMenu>
  4309. <productMenu id="ota"
  4310. type="0" >
  4311. </productMenu>
  4312. <productMenu id="wa"
  4313. type="0" >
  4314. </productMenu>
  4315. <productMenu id="meshIntercom"
  4316. type="20" >
  4317. </productMenu>
  4318. <productMenu id="phone"
  4319. type="1" >
  4320. </productMenu>
  4321. <productMenu id="music"
  4322. type="1" >
  4323. </productMenu>
  4324. <productMenu id="fmradio"
  4325. type="1" >
  4326. </productMenu>
  4327. <productMenu id="musicSharing"
  4328. type="0" >
  4329. </productMenu>
  4330. <productMenu id="deviceSetting"
  4331. type="1"
  4332. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml" >
  4333. </productMenu>
  4334. <productMenu id="quickGuide"
  4335. type="1"
  4336. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_SPIDER_RT1_2.0.0_en_220613.pdf"
  4337. size="1.12MB" >
  4338. </productMenu>
  4339. <productMenu id="userGuide"
  4340. type="1"
  4341. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_SPIDER_RT1_2.0.0_en_220615.pdf"
  4342. size="2.0MB" >
  4343. </productMenu>
  4344. <productMenu id="volume"
  4345. type="12" >
  4346. </productMenu>
  4347. <productMenu id="battery"
  4348. type="1" >
  4349. </productMenu>
  4350. <productID id="6806"
  4351. />
  4352. <productGroupable type="0"
  4353. />
  4354. </product>
  4355. <product id="50B"
  4356. name="SMART HJC 50B"
  4357. series="50"
  4358. latestVersion="1.0"
  4359. show = "0" >
  4360. <productMenu id="protocol"
  4361. type="2" >
  4362. </productMenu>
  4363. <productMenu id="alexa"
  4364. type="0" >
  4365. </productMenu>
  4366. <productMenu id="ota"
  4367. type="0" >
  4368. </productMenu>
  4369. <productMenu id="wa"
  4370. type="0" >
  4371. </productMenu>
  4372. <productMenu id="sip"
  4373. type="1" >
  4374. </productMenu>
  4375. <productMenu id="meshIntercom"
  4376. type="20" >
  4377. </productMenu>
  4378. <productMenu id="bluetoothIntercom"
  4379. type="1" >
  4380. </productMenu>
  4381. <productMenu id="phone"
  4382. type="1" >
  4383. </productMenu>
  4384. <productMenu id="music"
  4385. type="1" >
  4386. </productMenu>
  4387. <productMenu id="fmradio"
  4388. type="1" >
  4389. </productMenu>
  4390. <productMenu id="deviceSetting"
  4391. type="1"
  4392. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml" >
  4393. </productMenu>
  4394. <productMenu id="quickGuide"
  4395. type="1"
  4396. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50R_03.pdf"
  4397. size="344KB" >
  4398. </productMenu>
  4399. <productMenu id="userGuide"
  4400. type="1"
  4401. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50R_1.2.0_en_200910.pdf"
  4402. size="3.41MB" >
  4403. </productMenu>
  4404. <productMenu id="volume"
  4405. type="11" >
  4406. </productMenu>
  4407. <productMenu id="battery"
  4408. type="1" >
  4409. </productMenu>
  4410. <productID id="3214"
  4411. />
  4412. <productGroupable type="0"
  4413. />
  4414. </product>
  4415. <product id="MeshStation"
  4416. name="Mesh Station"
  4417. series="50"
  4418. latestVersion="0.9"
  4419. show = "0" >
  4420. <productMenu id="protocol"
  4421. type="2" >
  4422. </productMenu>
  4423. <productMenu id="meshIntercom"
  4424. type="20"
  4425. url="99" >
  4426. </productMenu>
  4427. <productID id="3161"
  4428. />
  4429. <productGroupable type="0"
  4430. />
  4431. </product>
  4432. <!--
  4433. <product id="20S"
  4434. name="20S"
  4435. series="20"
  4436. latestVersion="2.1"
  4437. show = "1" >
  4438. <productMenu id="protocol"
  4439. type="0">
  4440. </productMenu>
  4441. <productMenu id="wa"
  4442. type="1" >
  4443. </productMenu>
  4444. <productMenu id="sip"
  4445. type="1" >
  4446. </productMenu>
  4447. <productMenu id="bluetoothIntercom"
  4448. type="1" >
  4449. </productMenu>
  4450. <productMenu id="intercomSetting"
  4451. type="1" >
  4452. </productMenu>
  4453. <productMenu id="phone"
  4454. type="2" >
  4455. </productMenu>
  4456. <productMenu id="fmradio"
  4457. type="3" >
  4458. </productMenu>
  4459. <productMenu id="deviceSetting"
  4460. type="1"
  4461. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  4462. <productMenuURL version="2.0.2"
  4463. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  4464. />
  4465. <productMenuURL version="1.5"
  4466. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  4467. />
  4468. <productMenuURL version="1.4.1"
  4469. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  4470. />
  4471. <productMenuURL version="1.1"
  4472. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  4473. />
  4474. <productMenuURL version="1.0"
  4475. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  4476. />
  4477. </productMenu>
  4478. <productMenu id="quickGuide"
  4479. type="1"
  4480. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_20S_EVO_en_1.1.0_210413.pdf"
  4481. size="1.13MB" >
  4482. </productMenu>
  4483. <productMenu id="userGuide"
  4484. type="1"
  4485. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_20S_EVO_1.1.0_en_210527.pdf"
  4486. size="2.03MB" >
  4487. </productMenu>
  4488. <productID id="4210"
  4489. />
  4490. <productGroupable type="1"
  4491. />
  4492. </product>
  4493. <product id="20S_EVO"
  4494. name="20S EVO"
  4495. series="20"
  4496. latestVersion="2.1"
  4497. show = "1" >
  4498. <productMenu id="protocol"
  4499. type="0" >
  4500. </productMenu>
  4501. <productMenu id="wa"
  4502. type="1" >
  4503. </productMenu>
  4504. <productMenu id="sip"
  4505. type="1" >
  4506. </productMenu>
  4507. <productMenu id="bluetoothIntercom"
  4508. type="1" >
  4509. </productMenu>
  4510. <productMenu id="intercomSetting"
  4511. type="1" >
  4512. </productMenu>
  4513. <productMenu id="phone"
  4514. type="2" >
  4515. </productMenu>
  4516. <productMenu id="fmradio"
  4517. type="3" >
  4518. </productMenu>
  4519. <productMenu id="deviceSetting"
  4520. type="1"
  4521. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  4522. <productMenuURL version="2.0.2"
  4523. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  4524. />
  4525. <productMenuURL version="1.5"
  4526. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  4527. />
  4528. <productMenuURL version="1.4.1"
  4529. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  4530. />
  4531. <productMenuURL version="1.1"
  4532. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  4533. />
  4534. <productMenuURL version="1.0"
  4535. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  4536. />
  4537. </productMenu>
  4538. <productMenu id="quickGuide"
  4539. type="1"
  4540. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_20S_EVO_en_1.1.0_210413.pdf"
  4541. size="1.13MB" >
  4542. </productMenu>
  4543. <productMenu id="userGuide"
  4544. type="1"
  4545. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_20S_EVO_1.1.0_en_210527.pdf"
  4546. size="2.03MB" >
  4547. </productMenu>
  4548. <productID id="4210"
  4549. />
  4550. <productProductKey key="16"
  4551. />
  4552. <productGroupable type="1"
  4553. />
  4554. </product>
  4555. <product id="10C_Pro"
  4556. name="10C Pro"
  4557. series="10"
  4558. latestVersion="2.6"
  4559. show = "1" >
  4560. <productMenu id="protocol"
  4561. type="0">
  4562. </productMenu>
  4563. <productMenu id="sip"
  4564. type="1" >
  4565. </productMenu>
  4566. <productMenu id="bluetoothIntercom"
  4567. type="1" >
  4568. </productMenu>
  4569. <productMenu id="phone"
  4570. type="2" >
  4571. </productMenu>
  4572. <productMenu id="fmradio"
  4573. type="3" >
  4574. </productMenu>
  4575. <productMenu id="deviceSetting"
  4576. type="1"
  4577. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  4578. <productMenuURL version="2.5.1"
  4579. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  4580. />
  4581. <productMenuURL version="1.0"
  4582. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  4583. />
  4584. </productMenu>
  4585. <productMenu id="quickGuide"
  4586. type="1"
  4587. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  4588. size="651KB" >
  4589. </productMenu>
  4590. <productMenu id="userGuide"
  4591. type="1"
  4592. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  4593. size="2.34MB" >
  4594. </productMenu>
  4595. <productID id="5580"
  4596. />
  4597. <productGroupable type="0"
  4598. />
  4599. </product>
  4600. <product id="10C_EVO"
  4601. name="10C EVO"
  4602. series="10"
  4603. latestVersion="1.5.1"
  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_EVO_v0105fm.xml" >
  4623. <productMenuURL version="1.3.1"
  4624. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  4625. />
  4626. </productMenu>
  4627. <productMenu id="quickGuide"
  4628. type="1"
  4629. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_EVO_02.pdf"
  4630. size="1.32MB" >
  4631. </productMenu>
  4632. <productMenu id="userGuide"
  4633. type="1"
  4634. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_EVO_v1.0_04.pdf"
  4635. size="1.68MB" >
  4636. </productMenu>
  4637. <productID id="5570"
  4638. />
  4639. <productGroupable type="0"
  4640. />
  4641. </product>
  4642. <product id="10U_GT_AIR"
  4643. name="10U GT-Air"
  4644. series="10"
  4645. latestVersion="2.0.3"
  4646. show = "1" >
  4647. <productMenu id="protocol"
  4648. type="0">
  4649. </productMenu>
  4650. <productMenu id="sip"
  4651. type="1" >
  4652. <productMenuType version="1.0.2"
  4653. type="0"
  4654. />
  4655. </productMenu>
  4656. <productMenu id="bluetoothIntercom"
  4657. type="1" >
  4658. <productMenuType version="1.0.2"
  4659. type="0"
  4660. />
  4661. </productMenu>
  4662. <productMenu id="phone"
  4663. type="2" >
  4664. </productMenu>
  4665. <productMenu id="fmradio"
  4666. type="3" >
  4667. </productMenu>
  4668. <productMenu id="deviceSetting"
  4669. type="1"
  4670. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4671. <productMenuURL version="1.3.2"
  4672. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4673. />
  4674. <productMenuURL version="1.0.2"
  4675. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4676. />
  4677. </productMenu>
  4678. <productMenu id="quickGuide"
  4679. type="1"
  4680. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  4681. size="685KB" >
  4682. </productMenu>
  4683. <productMenu id="userGuide"
  4684. type="1"
  4685. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_10U(RC4)_2.1.0_en_201203.pdf"
  4686. size="684KB" >
  4687. </productMenu>
  4688. <productID id="5610"
  4689. />
  4690. <productGroupable type="0"
  4691. />
  4692. </product>
  4693. <product id="10U_NEOTEC"
  4694. name="10U Neotec"
  4695. series="10"
  4696. latestVersion="2.0.3"
  4697. show = "1" >
  4698. <productMenu id="protocol"
  4699. type="0">
  4700. </productMenu>
  4701. <productMenu id="sip"
  4702. type="1" >
  4703. <productMenuType version="1.0.2"
  4704. type="0"
  4705. />
  4706. </productMenu>
  4707. <productMenu id="bluetoothIntercom"
  4708. type="1" >
  4709. <productMenuType version="1.0.2"
  4710. type="0"
  4711. />
  4712. </productMenu>
  4713. <productMenu id="phone"
  4714. type="2" >
  4715. </productMenu>
  4716. <productMenu id="fmradio"
  4717. type="3" >
  4718. </productMenu>
  4719. <productMenu id="deviceSetting"
  4720. type="1"
  4721. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4722. <productMenuURL version="1.3.2"
  4723. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4724. />
  4725. <productMenuURL version="1.0.2"
  4726. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4727. />
  4728. </productMenu>
  4729. <productMenu id="quickGuide"
  4730. type="1"
  4731. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  4732. size="689KB" >
  4733. </productMenu>
  4734. <productMenu id="userGuide"
  4735. type="1"
  4736. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_10U(RC4)_2.1.0_en_201203.pdf"
  4737. size="684KB" >
  4738. </productMenu>
  4739. <productID id="5611"
  4740. />
  4741. <productGroupable type="0"
  4742. />
  4743. </product>
  4744. <product id="10U_J_CRUISE"
  4745. name="10U J-Cruise"
  4746. series="10"
  4747. latestVersion="2.0.3"
  4748. show = "1" >
  4749. <productMenu id="protocol"
  4750. type="0">
  4751. </productMenu>
  4752. <productMenu id="sip"
  4753. type="1" >
  4754. <productMenuType version="1.0.2"
  4755. type="0"
  4756. />
  4757. </productMenu>
  4758. <productMenu id="bluetoothIntercom"
  4759. type="1" >
  4760. <productMenuType version="1.0.2"
  4761. type="0"
  4762. />
  4763. </productMenu>
  4764. <productMenu id="phone"
  4765. type="2" >
  4766. </productMenu>
  4767. <productMenu id="fmradio"
  4768. type="3" >
  4769. </productMenu>
  4770. <productMenu id="deviceSetting"
  4771. type="1"
  4772. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4773. <productMenuURL version="1.3.2"
  4774. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4775. />
  4776. <productMenuURL version="1.0.2"
  4777. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4778. />
  4779. </productMenu>
  4780. <productMenu id="quickGuide"
  4781. type="1"
  4782. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  4783. size="686KB" >
  4784. </productMenu>
  4785. <productMenu id="userGuide"
  4786. type="1"
  4787. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_10U(RC4)_2.1.0_en_201203.pdf"
  4788. size="684KB" >
  4789. </productMenu>
  4790. <productID id="5612"
  4791. />
  4792. <productGroupable type="0"
  4793. />
  4794. </product>
  4795. <product id="10U_C3"
  4796. name="10U C3/C3Pro"
  4797. series="10"
  4798. latestVersion="2.0.3"
  4799. show = "1" >
  4800. <productMenu id="protocol"
  4801. type="0">
  4802. </productMenu>
  4803. <productMenu id="sip"
  4804. type="1" >
  4805. <productMenuType version="1.0.2"
  4806. type="0"
  4807. />
  4808. </productMenu>
  4809. <productMenu id="bluetoothIntercom"
  4810. type="1" >
  4811. <productMenuType version="1.0.2"
  4812. type="0"
  4813. />
  4814. </productMenu>
  4815. <productMenu id="phone"
  4816. type="2" >
  4817. </productMenu>
  4818. <productMenu id="fmradio"
  4819. type="3" >
  4820. </productMenu>
  4821. <productMenu id="deviceSetting"
  4822. type="1"
  4823. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4824. <productMenuURL version="1.3.2"
  4825. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4826. />
  4827. <productMenuURL version="1.0.2"
  4828. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4829. />
  4830. </productMenu>
  4831. <productMenu id="quickGuide"
  4832. type="1"
  4833. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  4834. size="199KB" >
  4835. </productMenu>
  4836. <productMenu id="userGuide"
  4837. type="1"
  4838. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_10U(RC4)_2.1.0_en_201203.pdf"
  4839. size="684KB" >
  4840. </productMenu>
  4841. <productID id="5620"
  4842. />
  4843. <productGroupable type="0"
  4844. />
  4845. </product>
  4846. <product id="10U_ARAI"
  4847. name="10U Arai"
  4848. series="10"
  4849. latestVersion="2.0.3"
  4850. show = "1" >
  4851. <productMenu id="protocol"
  4852. type="0">
  4853. </productMenu>
  4854. <productMenu id="sip"
  4855. type="1" >
  4856. <productMenuType version="1.0.2"
  4857. type="0"
  4858. />
  4859. </productMenu>
  4860. <productMenu id="bluetoothIntercom"
  4861. type="1" >
  4862. <productMenuType version="1.0.2"
  4863. type="0"
  4864. />
  4865. </productMenu>
  4866. <productMenu id="phone"
  4867. type="2" >
  4868. </productMenu>
  4869. <productMenu id="fmradio"
  4870. type="3" >
  4871. </productMenu>
  4872. <productMenu id="deviceSetting"
  4873. type="1"
  4874. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4875. <productMenuURL version="1.3.2"
  4876. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4877. />
  4878. <productMenuURL version="1.0.2"
  4879. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4880. />
  4881. </productMenu>
  4882. <productMenu id="quickGuide"
  4883. type="1"
  4884. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Arai_04.pdf"
  4885. size="689KB" >
  4886. </productMenu>
  4887. <productMenu id="userGuide"
  4888. type="1"
  4889. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_10U(RC4)_2.1.0_en_201203.pdf"
  4890. size="684KB" >
  4891. </productMenu>
  4892. <productID id="5621"
  4893. />
  4894. <productGroupable type="0"
  4895. />
  4896. </product>
  4897. <product id="10Upad"
  4898. name="10Upad"
  4899. series="10"
  4900. latestVersion="2.0.2"
  4901. show = "1" >
  4902. <productMenu id="protocol"
  4903. type="0">
  4904. </productMenu>
  4905. <productMenu id="sip"
  4906. type="1" >
  4907. </productMenu>
  4908. <productMenu id="bluetoothIntercom"
  4909. type="1" >
  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/10Upad/DS_10Upad_v0200.xml" >
  4920. <productMenuURL version="1.0.3"
  4921. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  4922. />
  4923. </productMenu>
  4924. <productMenu id="quickGuide"
  4925. type="1"
  4926. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  4927. size="615KB" >
  4928. </productMenu>
  4929. <productMenu id="userGuide"
  4930. type="1"
  4931. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  4932. size="0.99MB" >
  4933. </productMenu>
  4934. <productID id="6210"
  4935. />
  4936. <productGroupable type="0"
  4937. />
  4938. </product>
  4939. <product id="10S"
  4940. name="10S"
  4941. series="10"
  4942. latestVersion="2.0.3"
  4943. show = "1" >
  4944. <productMenu id="protocol"
  4945. type="0">
  4946. </productMenu>
  4947. <productMenu id="sip"
  4948. type="1" >
  4949. </productMenu>
  4950. <productMenu id="bluetoothIntercom"
  4951. type="1" >
  4952. </productMenu>
  4953. <productMenu id="phone"
  4954. type="2" >
  4955. </productMenu>
  4956. <productMenu id="fmradio"
  4957. type="3" >
  4958. </productMenu>
  4959. <productMenu id="deviceSetting"
  4960. type="1"
  4961. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  4962. <productMenuURL version="1.5"
  4963. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  4964. />
  4965. <productMenuURL version="1.3.1"
  4966. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  4967. />
  4968. </productMenu>
  4969. <productMenu id="quickGuide"
  4970. type="1"
  4971. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10S_03.pdf"
  4972. size="310KB" >
  4973. </productMenu>
  4974. <productMenu id="userGuide"
  4975. type="1"
  4976. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10S_v2.0_01.pdf"
  4977. size="1.57MB" >
  4978. </productMenu>
  4979. <productID id="5530"
  4980. />
  4981. <productGroupable type="0"
  4982. />
  4983. </product>
  4984. <product id="10C"
  4985. name="10C"
  4986. series="10"
  4987. latestVersion="3.0.4"
  4988. show = "1" >
  4989. <productMenu id="protocol"
  4990. type="0">
  4991. </productMenu>
  4992. <productMenu id="sip"
  4993. type="1" >
  4994. <productMenuType version="1.0.4"
  4995. type="0"
  4996. />
  4997. </productMenu>
  4998. <productMenu id="bluetoothIntercom"
  4999. type="1" >
  5000. <productMenuType version="1.0.4"
  5001. type="0"
  5002. />
  5003. </productMenu>
  5004. <productMenu id="phone"
  5005. type="2" >
  5006. </productMenu>
  5007. <productMenu id="fmradio"
  5008. type="3" >
  5009. </productMenu>
  5010. <productMenu id="deviceSetting"
  5011. type="1"
  5012. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300.xml" >
  5013. <productMenuURL version="2.3"
  5014. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  5015. />
  5016. <productMenuURL version="2.1.1"
  5017. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  5018. />
  5019. <productMenuURL version="1.0.4"
  5020. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  5021. />
  5022. <productMenuURL version="1.0.2"
  5023. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  5024. />
  5025. </productMenu>
  5026. <productMenu id="quickGuide"
  5027. type="1"
  5028. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  5029. size="935KB" >
  5030. </productMenu>
  5031. <productMenu id="userGuide"
  5032. type="1"
  5033. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  5034. size="2.82MB" >
  5035. </productMenu>
  5036. <productID id="5510"
  5037. />
  5038. <productGroupable type="0"
  5039. />
  5040. </product>
  5041. <product id="5S"
  5042. name="5S"
  5043. series="10"
  5044. latestVersion="1.0.4"
  5045. show = "1" >
  5046. <productMenu id="protocol"
  5047. type="0">
  5048. </productMenu>
  5049. <productMenu id="sip"
  5050. type="1" >
  5051. </productMenu>
  5052. <productMenu id="bluetoothIntercom"
  5053. type="1" >
  5054. </productMenu>
  5055. <productMenu id="phone"
  5056. type="2" >
  5057. </productMenu>
  5058. <productMenu id="fmradio"
  5059. type="3" >
  5060. </productMenu>
  5061. <productMenu id="deviceSetting"
  5062. type="1"
  5063. url="https://api.sena.com/support/SenaNeoApp/5S/NS_5S.xml" >
  5064. </productMenu>
  5065. <productMenu id="quickGuide"
  5066. type="1"
  5067. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5S_1.0.0_en_200410.pdf"
  5068. size="970KB" >
  5069. </productMenu>
  5070. <productMenu id="userGuide"
  5071. type="1"
  5072. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5S_1.0.0_en_200330.pdf"
  5073. size="1.26MB" >
  5074. </productMenu>
  5075. <productID id="5534"
  5076. />
  5077. <productGroupable type="0"
  5078. />
  5079. </product>
  5080. <product id="3SPLUS"
  5081. name="3S PLUS"
  5082. series="10"
  5083. latestVersion="1.0.3"
  5084. show = "1" >
  5085. <productMenu id="protocol"
  5086. type="0">
  5087. </productMenu>
  5088. <productMenu id="sip"
  5089. type="1" >
  5090. </productMenu>
  5091. <productMenu id="bluetoothIntercom"
  5092. type="1" >
  5093. </productMenu>
  5094. <productMenu id="deviceSetting"
  5095. type="1"
  5096. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  5097. </productMenu>
  5098. <productMenu id="quickGuide"
  5099. type="1"
  5100. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_3S_PLUS_1.0.0_en_200813.pdf"
  5101. size="842KB" >
  5102. </productMenu>
  5103. <productMenu id="userGuide"
  5104. type="1"
  5105. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_app_3S_PLUS_1.0.1_en_210521.pdf"
  5106. size="1.02MB" >
  5107. </productMenu>
  5108. <productID id="6320"
  5109. />
  5110. <productGroupable type="0"
  5111. />
  5112. </product>
  5113. <product id="Neotec2"
  5114. name="SRL Neotec2"
  5115. series="momentum"
  5116. latestVersion="1.1.2"
  5117. show = "1" >
  5118. <productMenu id="protocol"
  5119. type="0">
  5120. </productMenu>
  5121. <productMenu id="sip"
  5122. type="1" >
  5123. </productMenu>
  5124. <productMenu id="bluetoothIntercom"
  5125. type="1" >
  5126. </productMenu>
  5127. <productMenu id="intercomSetting"
  5128. type="1" >
  5129. </productMenu>
  5130. <productMenu id="phone"
  5131. type="2" >
  5132. </productMenu>
  5133. <productMenu id="fmradio"
  5134. type="3" >
  5135. </productMenu>
  5136. <productMenu id="deviceSetting"
  5137. type="1"
  5138. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5139. </productMenu>
  5140. <productMenu id="quickGuide"
  5141. type="1"
  5142. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_SRL_for_Shoei_Neotec_II_01.pdf"
  5143. size="796KB" >
  5144. </productMenu>
  5145. <productMenu id="userGuide"
  5146. type="1"
  5147. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_SRL_for_Shoei_Neotec_II_v1.0_01.pdf"
  5148. size="1.90MB" >
  5149. </productMenu>
  5150. <productID id="4510"
  5151. />
  5152. <productGroupable type="1"
  5153. />
  5154. </product>
  5155. <product id="SRL2"
  5156. name="SRL2"
  5157. series="momentum"
  5158. latestVersion="1.0.6"
  5159. show = "1" >
  5160. <productMenu id="protocol"
  5161. type="0">
  5162. </productMenu>
  5163. <productMenu id="sip"
  5164. type="1" >
  5165. </productMenu>
  5166. <productMenu id="bluetoothIntercom"
  5167. type="1" >
  5168. </productMenu>
  5169. <productMenu id="intercomSetting"
  5170. type="1" >
  5171. </productMenu>
  5172. <productMenu id="phone"
  5173. type="2" >
  5174. </productMenu>
  5175. <productMenu id="fmradio"
  5176. type="3" >
  5177. </productMenu>
  5178. <productMenu id="deviceSetting"
  5179. type="1"
  5180. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5181. </productMenu>
  5182. <productMenu id="quickGuide"
  5183. type="1"
  5184. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_SRL2_01.pdf"
  5185. size="846KB" >
  5186. </productMenu>
  5187. <productMenu id="userGuide"
  5188. type="1"
  5189. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_SRL2_v1.0_01.pdf"
  5190. size="1.18MB" >
  5191. </productMenu>
  5192. <productID id="4530"
  5193. />
  5194. <productGroupable type="1"
  5195. />
  5196. </product>
  5197. <product id="10R"
  5198. name="10R"
  5199. series="10"
  5200. latestVersion="2.0.3"
  5201. show = "1" >
  5202. <productMenu id="protocol"
  5203. type="0">
  5204. </productMenu>
  5205. <productMenu id="sip"
  5206. type="1" >
  5207. <productMenuType version="1.0.2"
  5208. type="0"
  5209. />
  5210. </productMenu>
  5211. <productMenu id="bluetoothIntercom"
  5212. type="1" >
  5213. <productMenuType version="1.0.2"
  5214. type="0"
  5215. />
  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/10R/DS_10R_v0200fm.xml" >
  5226. <productMenuURL version="1.4"
  5227. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  5228. />
  5229. <productMenuURL version="1.2.1"
  5230. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  5231. />
  5232. <productMenuURL version="1.0.2"
  5233. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  5234. />
  5235. <productMenuURL version="1.0"
  5236. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  5237. />
  5238. </productMenu>
  5239. <productMenu id="quickGuide"
  5240. type="1"
  5241. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10R_04.pdf"
  5242. size="400KB" >
  5243. </productMenu>
  5244. <productMenu id="userGuide"
  5245. type="1"
  5246. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10R_v2.0_01.pdf"
  5247. size="2.75MB" >
  5248. </productMenu>
  5249. <productID id="5520"
  5250. />
  5251. <productGroupable type="0"
  5252. />
  5253. </product>
  5254. <product id="Cavalry"
  5255. name="Cavalry"
  5256. series="cavalry"
  5257. latestVersion="1.1.2"
  5258. show = "1" >
  5259. <productMenu id="protocol"
  5260. type="0">
  5261. </productMenu>
  5262. <productMenu id="sip"
  5263. type="1" >
  5264. </productMenu>
  5265. <productMenu id="bluetoothIntercom"
  5266. type="1" >
  5267. </productMenu>
  5268. <productMenu id="phone"
  5269. type="2" >
  5270. </productMenu>
  5271. <productMenu id="fmradio"
  5272. type="3" >
  5273. </productMenu>
  5274. <productMenu id="deviceSetting"
  5275. type="1"
  5276. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  5277. <productMenuURL version="1.9"
  5278. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  5279. />
  5280. <productMenuURL version="1.0.1"
  5281. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  5282. />
  5283. </productMenu>
  5284. <productMenu id="quickGuide"
  5285. type="1"
  5286. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  5287. size="795KB" >
  5288. </productMenu>
  5289. <productMenu id="userGuide"
  5290. type="1"
  5291. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  5292. size="1.87MB" >
  5293. </productMenu>
  5294. <productID id="5524"
  5295. />
  5296. <productGroupable type="0"
  5297. />
  5298. </product>
  5299. <product id="Cavalry_Lite"
  5300. name="Cavalry Lite"
  5301. series="cavalry"
  5302. latestVersion="1.0.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.xml" >
  5322. </productMenu>
  5323. <productMenu id="userGuide"
  5324. type="1"
  5325. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  5326. size="1.74MB" >
  5327. </productMenu>
  5328. <productID id="5536"
  5329. />
  5330. <productGroupable type="0"
  5331. />
  5332. </product>
  5333. <product id="Momentum"
  5334. name="Momentum"
  5335. series="momentum"
  5336. latestVersion="1.0.8"
  5337. show = "1" >
  5338. <productMenu id="protocol"
  5339. type="0">
  5340. </productMenu>
  5341. <productMenu id="sip"
  5342. type="1" >
  5343. </productMenu>
  5344. <productMenu id="bluetoothIntercom"
  5345. type="1" >
  5346. </productMenu>
  5347. <productMenu id="intercomSetting"
  5348. type="1" >
  5349. </productMenu>
  5350. <productMenu id="phone"
  5351. type="2" >
  5352. </productMenu>
  5353. <productMenu id="fmradio"
  5354. type="3" >
  5355. </productMenu>
  5356. <productMenu id="deviceSetting"
  5357. type="1"
  5358. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5359. </productMenu>
  5360. <productMenu id="quickGuide"
  5361. type="1"
  5362. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  5363. size="795KB" >
  5364. </productMenu>
  5365. <productMenu id="userGuide"
  5366. type="1"
  5367. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  5368. size="1.44MB" >
  5369. </productMenu>
  5370. <productID id="4310"
  5371. />
  5372. <productGroupable type="1"
  5373. />
  5374. </product>
  5375. <product id="Momentum_Pro"
  5376. name="Momentum Pro"
  5377. series="momentum"
  5378. latestVersion="1.0.5"
  5379. show = "1" >
  5380. <productMenu id="protocol"
  5381. type="0">
  5382. </productMenu>
  5383. <productMenu id="sip"
  5384. type="1" >
  5385. </productMenu>
  5386. <productMenu id="bluetoothIntercom"
  5387. type="1" >
  5388. </productMenu>
  5389. <productMenu id="intercomSetting"
  5390. type="1" >
  5391. </productMenu>
  5392. <productMenu id="phone"
  5393. type="2" >
  5394. </productMenu>
  5395. <productMenu id="fmradio"
  5396. type="3" >
  5397. </productMenu>
  5398. <productMenu id="deviceSetting"
  5399. type="1"
  5400. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5401. </productMenu>
  5402. <productMenu id="quickGuide"
  5403. type="1"
  5404. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  5405. size="839KB" >
  5406. </productMenu>
  5407. <productMenu id="userGuide"
  5408. type="1"
  5409. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  5410. size="1.08MB" >
  5411. </productMenu>
  5412. <productID id="4330"
  5413. />
  5414. <productGroupable type="1"
  5415. />
  5416. </product>
  5417. <product id="Momentum_INC"
  5418. name="Momentum INC"
  5419. series="momentum"
  5420. latestVersion="1.0.6"
  5421. show = "1" >
  5422. <productMenu id="protocol"
  5423. type="0">
  5424. </productMenu>
  5425. <productMenu id="sip"
  5426. type="1" >
  5427. </productMenu>
  5428. <productMenu id="bluetoothIntercom"
  5429. type="1" >
  5430. </productMenu>
  5431. <productMenu id="intercomSetting"
  5432. type="1" >
  5433. </productMenu>
  5434. <productMenu id="phone"
  5435. type="2" >
  5436. </productMenu>
  5437. <productMenu id="fmradio"
  5438. type="3" >
  5439. </productMenu>
  5440. <productMenu id="deviceSetting"
  5441. type="1"
  5442. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  5443. </productMenu>
  5444. <productMenu id="quickGuide"
  5445. type="1"
  5446. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  5447. size="794KB" >
  5448. </productMenu>
  5449. <productMenu id="userGuide"
  5450. type="1"
  5451. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  5452. size="1.53MB" >
  5453. </productMenu>
  5454. <productID id="4410"
  5455. />
  5456. <productGroupable type="1"
  5457. />
  5458. </product>
  5459. <product id="Momentum_INCP"
  5460. name="Momentum INC Pro"
  5461. series="momentum"
  5462. latestVersion="1.0.3"
  5463. show = "1" >
  5464. <productMenu id="protocol"
  5465. type="0">
  5466. </productMenu>
  5467. <productMenu id="sip"
  5468. type="1" >
  5469. </productMenu>
  5470. <productMenu id="bluetoothIntercom"
  5471. type="1" >
  5472. </productMenu>
  5473. <productMenu id="intercomSetting"
  5474. type="1" >
  5475. </productMenu>
  5476. <productMenu id="phone"
  5477. type="2" >
  5478. </productMenu>
  5479. <productMenu id="fmradio"
  5480. type="3" >
  5481. </productMenu>
  5482. <productMenu id="deviceSetting"
  5483. type="1"
  5484. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  5485. </productMenu>
  5486. <productMenu id="quickGuide"
  5487. type="1"
  5488. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  5489. size="794KB" >
  5490. </productMenu>
  5491. <productMenu id="userGuide"
  5492. type="1"
  5493. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  5494. size="1.53MB" >
  5495. </productMenu>
  5496. <productID id="4430"
  5497. />
  5498. <productGroupable type="1"
  5499. />
  5500. </product>
  5501. <product id="Momentum_Lite"
  5502. name="Momentum Lite"
  5503. series="momentum"
  5504. latestVersion="2.0.2"
  5505. show = "1" >
  5506. <productMenu id="protocol"
  5507. type="0">
  5508. </productMenu>
  5509. <productMenu id="sip"
  5510. type="1" >
  5511. </productMenu>
  5512. <productMenu id="bluetoothIntercom"
  5513. type="1" >
  5514. </productMenu>
  5515. <productMenu id="phone"
  5516. type="2" >
  5517. </productMenu>
  5518. <productMenu id="fmradio"
  5519. type="3" >
  5520. </productMenu>
  5521. <productMenu id="deviceSetting"
  5522. type="1"
  5523. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  5524. <productMenuURL version="1.1"
  5525. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  5526. />
  5527. </productMenu>
  5528. <productMenu id="quickGuide"
  5529. type="1"
  5530. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  5531. size="790KB" >
  5532. </productMenu>
  5533. <productMenu id="userGuide"
  5534. type="1"
  5535. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  5536. size="1.42MB" >
  5537. </productMenu>
  5538. <productID id="5526"
  5539. />
  5540. <productGroupable type="0"
  5541. />
  5542. </product>
  5543. <product id="Savage"
  5544. name="Savage"
  5545. series="10"
  5546. latestVersion="1.2.2"
  5547. show = "1" >
  5548. <productMenu id="protocol"
  5549. type="0">
  5550. </productMenu>
  5551. <productMenu id="sip"
  5552. type="1" >
  5553. </productMenu>
  5554. <productMenu id="bluetoothIntercom"
  5555. type="1" >
  5556. </productMenu>
  5557. <productMenu id="phone"
  5558. type="2" >
  5559. </productMenu>
  5560. <productMenu id="fmradio"
  5561. type="3" >
  5562. </productMenu>
  5563. <productMenu id="deviceSetting"
  5564. type="1"
  5565. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  5566. <productMenuURL version="1.9"
  5567. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  5568. />
  5569. <productMenuURL version="1.1"
  5570. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  5571. />
  5572. </productMenu>
  5573. <productMenu id="quickGuide"
  5574. type="1"
  5575. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  5576. size="796KB" >
  5577. </productMenu>
  5578. <productMenu id="userGuide"
  5579. type="1"
  5580. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  5581. size="910KB" >
  5582. </productMenu>
  5583. <productID id="5550"
  5584. />
  5585. <productGroupable type="0"
  5586. />
  5587. </product>
  5588. <product id="OUTRUSHR"
  5589. name="OUTRUSH R"
  5590. series="10"
  5591. latestVersion="1.0"
  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/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  5611. </productMenu>
  5612. <productMenu id="userGuide"
  5613. type="1"
  5614. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTRUSH_R_1.0.0_en_201019.pdf"
  5615. size="660KB" >
  5616. </productMenu>
  5617. <productID id="5424"
  5618. />
  5619. <productGroupable type="0"
  5620. />
  5621. </product>
  5622. <product id="OUTSTARS"
  5623. name="OUTSTAR S"
  5624. series="10"
  5625. latestVersion="1.1.1"
  5626. show = "1" >
  5627. <productMenu id="protocol"
  5628. type="0">
  5629. </productMenu>
  5630. <productMenu id="sip"
  5631. type="1" >
  5632. </productMenu>
  5633. <productMenu id="bluetoothIntercom"
  5634. type="1" >
  5635. </productMenu>
  5636. <productMenu id="phone"
  5637. type="2" >
  5638. </productMenu>
  5639. <productMenu id="fmradio"
  5640. type="3" >
  5641. </productMenu>
  5642. <productMenu id="deviceSetting"
  5643. type="1"
  5644. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  5645. </productMenu>
  5646. <productMenu id="quickGuide"
  5647. type="1"
  5648. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_OUTSTAR%20S_1.1.0_en_211019.pdf"
  5649. size="643KB" >
  5650. </productMenu>
  5651. <productMenu id="userGuide"
  5652. type="1"
  5653. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTSTAR_S_1.1.0_en_211019.pdf"
  5654. size="1.15MB" >
  5655. </productMenu>
  5656. <productID id="5428"
  5657. />
  5658. <productGroupable type="0"
  5659. />
  5660. </product>
  5661. <product id="ProRideEVO"
  5662. name="ProRide EVO"
  5663. series="10"
  5664. latestVersion="1.0"
  5665. show = "1" >
  5666. <productMenu id="protocol"
  5667. type="0">
  5668. </productMenu>
  5669. <productMenu id="sip"
  5670. type="1" >
  5671. </productMenu>
  5672. <productMenu id="bluetoothIntercom"
  5673. type="1" >
  5674. </productMenu>
  5675. <productMenu id="phone"
  5676. type="2" >
  5677. </productMenu>
  5678. <productMenu id="fmradio"
  5679. type="3" >
  5680. </productMenu>
  5681. <productMenu id="deviceSetting"
  5682. type="1"
  5683. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  5684. </productMenu>
  5685. <productMenu id="userGuide"
  5686. type="1"
  5687. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  5688. size="778KB" >
  5689. </productMenu>
  5690. <productID id="5426"
  5691. />
  5692. <productGroupable type="0"
  5693. />
  5694. </product>
  5695. <product id="PI"
  5696. name="pi"
  5697. series="10"
  5698. latestVersion="1.0"
  5699. show = "1" >
  5700. <productMenu id="protocol"
  5701. type="0">
  5702. </productMenu>
  5703. <productMenu id="sip"
  5704. type="1" >
  5705. </productMenu>
  5706. <productMenu id="bluetoothIntercom"
  5707. type="1" >
  5708. </productMenu>
  5709. <productMenu id="deviceSetting"
  5710. type="1"
  5711. url="https://api.sena.com/support/SenaUtility/PI/DS_PI.xml" >
  5712. </productMenu>
  5713. <productMenu id="quickGuide"
  5714. type="1"
  5715. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_pi_1.0.0_en_210305.pdf"
  5716. size="640KB" >
  5717. </productMenu>
  5718. <productMenu id="userGuide"
  5719. type="1"
  5720. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_pi_1.0.0_en_210315.pdf"
  5721. size="478KB" >
  5722. </productMenu>
  5723. <productID id="6310"
  5724. />
  5725. <productGroupable type="0"
  5726. />
  5727. </product>
  5728. <product id="X1"
  5729. name="X1"
  5730. series="10"
  5731. latestVersion="1.1"
  5732. show = "1" >
  5733. <productMenu id="protocol"
  5734. type="0">
  5735. </productMenu>
  5736. <productMenu id="sip"
  5737. type="1" >
  5738. </productMenu>
  5739. <productMenu id="bluetoothIntercom"
  5740. type="1" >
  5741. </productMenu>
  5742. <productMenu id="phone"
  5743. type="2" >
  5744. </productMenu>
  5745. <productMenu id="fmradio"
  5746. type="3" >
  5747. </productMenu>
  5748. <productMenu id="deviceSetting"
  5749. type="1"
  5750. url="https://api.sena.com/support/SenaUtility/X1/DS_X1_2.xml" >
  5751. </productMenu>
  5752. <productMenu id="quickGuide"
  5753. type="1"
  5754. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_X1_01.pdf"
  5755. size="784KB" >
  5756. </productMenu>
  5757. <productMenu id="userGuide"
  5758. type="1"
  5759. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_X1_v1.0_01.pdf"
  5760. size="2.86MB" >
  5761. </productMenu>
  5762. <productID id="3030"
  5763. />
  5764. <productGroupable type="0"
  5765. />
  5766. </product>
  5767. <product id="X1S"
  5768. name="X1S"
  5769. series="10"
  5770. latestVersion="1.1"
  5771. show = "1" >
  5772. <productMenu id="protocol"
  5773. type="0">
  5774. </productMenu>
  5775. <productMenu id="sip"
  5776. type="1" >
  5777. </productMenu>
  5778. <productMenu id="bluetoothIntercom"
  5779. type="1" >
  5780. </productMenu>
  5781. <productMenu id="phone"
  5782. type="2" >
  5783. </productMenu>
  5784. <productMenu id="fmradio"
  5785. type="3" >
  5786. </productMenu>
  5787. <productMenu id="deviceSetting"
  5788. type="1"
  5789. url="https://api.sena.com/support/SenaUtility/X1/DS_X1_v0102.xml" >
  5790. </productMenu>
  5791. <productMenu id="quickGuide"
  5792. type="1"
  5793. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_X1S_1.0.0_en_200630.pdf"
  5794. size="933KB" >
  5795. </productMenu>
  5796. <productMenu id="userGuide"
  5797. type="1"
  5798. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_X1S_1.0.0_en_200630.pdf"
  5799. size="1.16MB" >
  5800. </productMenu>
  5801. <productID id="3032"
  5802. />
  5803. <productGroupable type="0"
  5804. />
  5805. </product>
  5806. <product id="R1"
  5807. name="R1"
  5808. series="10"
  5809. latestVersion="1.4"
  5810. show = "1" >
  5811. <productMenu id="protocol"
  5812. type="0">
  5813. </productMenu>
  5814. <productMenu id="sip"
  5815. type="1" >
  5816. </productMenu>
  5817. <productMenu id="bluetoothIntercom"
  5818. type="1" >
  5819. </productMenu>
  5820. <productMenu id="phone"
  5821. type="2" >
  5822. </productMenu>
  5823. <productMenu id="fmradio"
  5824. type="3" >
  5825. </productMenu>
  5826. <productMenu id="deviceSetting"
  5827. type="1"
  5828. url="https://api.sena.com/support/SenaUtility/R1/DS_R1_v0104.xml" >
  5829. </productMenu>
  5830. <productMenu id="quickGuide"
  5831. type="1"
  5832. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_R1_1.3.0_en_210224_MP0501648.pdf"
  5833. size="788KB" >
  5834. </productMenu>
  5835. <productMenu id="userGuide"
  5836. type="1"
  5837. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_R1_1.5.0_en_210428.pdf"
  5838. size="1.25MB" >
  5839. </productMenu>
  5840. <productID id="3050"
  5841. />
  5842. <productGroupable type="0"
  5843. />
  5844. </product>
  5845. <product id="M1"
  5846. name="M1"
  5847. series="10"
  5848. latestVersion="1.0.2"
  5849. show = "1" >
  5850. <productMenu id="protocol"
  5851. type="0">
  5852. </productMenu>
  5853. <productMenu id="sip"
  5854. type="1" >
  5855. </productMenu>
  5856. <productMenu id="bluetoothIntercom"
  5857. type="1" >
  5858. </productMenu>
  5859. <productMenu id="fmradio"
  5860. type="2" >
  5861. </productMenu>
  5862. <productMenu id="deviceSetting"
  5863. type="1"
  5864. url="https://api.sena.com/support/SenaUtility/M1/DS_M1_v010002.xml" >
  5865. </productMenu>
  5866. <productMenu id="quickGuide"
  5867. type="1"
  5868. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_M1_1.2.0_en_210625.pdf"
  5869. size="767KB" >
  5870. </productMenu>
  5871. <productMenu id="userGuide"
  5872. type="1"
  5873. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_M1_1.2.0_en_210625.pdf"
  5874. size="820KB" >
  5875. </productMenu>
  5876. <productID id="3070"
  5877. />
  5878. <productGroupable type="0"
  5879. />
  5880. </product>
  5881. <product id="Rumba"
  5882. name="Rumba"
  5883. series="10"
  5884. latestVersion="1.0.4"
  5885. show = "1" >
  5886. <productMenu id="protocol"
  5887. type="0">
  5888. </productMenu>
  5889. <productMenu id="sip"
  5890. type="1" >
  5891. </productMenu>
  5892. <productMenu id="bluetoothIntercom"
  5893. type="1" >
  5894. </productMenu>
  5895. <productMenu id="deviceSetting"
  5896. type="1"
  5897. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  5898. </productMenu>
  5899. <productMenu id="quickGuide"
  5900. type="1"
  5901. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.1.0_en_210302.pdf"
  5902. size="722KB" >
  5903. </productMenu>
  5904. <productMenu id="userGuide"
  5905. type="1"
  5906. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_RUMBA_1.1.0_en_210302.pdf"
  5907. size="693KB" >
  5908. </productMenu>
  5909. <productID id="6330"
  5910. />
  5911. <productGroupable type="0"
  5912. />
  5913. </product>
  5914. <product id="Tufftalk"
  5915. name="Tufftalk"
  5916. series="10"
  5917. latestVersion="1.2.2"
  5918. show = "1" >
  5919. <productMenu id="protocol"
  5920. type="0">
  5921. </productMenu>
  5922. <productMenu id="sip"
  5923. type="1" >
  5924. </productMenu>
  5925. <productMenu id="bluetoothIntercom"
  5926. type="1" >
  5927. </productMenu>
  5928. <productMenu id="phone"
  5929. type="2" >
  5930. </productMenu>
  5931. <productMenu id="fmradio"
  5932. type="3" >
  5933. </productMenu>
  5934. <productMenu id="deviceSetting"
  5935. type="1"
  5936. url="https://api.sena.com/support/SenaUtility/Tufftalk/DS_Tufftalk_v0102.xml" >
  5937. <productMenuURL version="1.1.1"
  5938. url="https://api.sena.com/support/SenaUtility/Tufftalk/DeviceSetting_Tufftalk.xml"
  5939. />
  5940. </productMenu>
  5941. <productMenu id="quickGuide"
  5942. type="1"
  5943. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Tufftalk_01.pdf"
  5944. size="922KB" >
  5945. </productMenu>
  5946. <productMenu id="userGuide"
  5947. type="1"
  5948. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Tufftalk_v1.2_01.pdf"
  5949. size="1.76MB" >
  5950. </productMenu>
  5951. <productID id="5710"
  5952. />
  5953. <productGroupable type="0"
  5954. />
  5955. </product>
  5956. <product id="Tufftalk_Lite"
  5957. name="Tufftalk Lite"
  5958. series="10"
  5959. latestVersion="1.0.2"
  5960. show = "1" >
  5961. <productMenu id="protocol"
  5962. type="0">
  5963. </productMenu>
  5964. <productMenu id="sip"
  5965. type="1" >
  5966. </productMenu>
  5967. <productMenu id="bluetoothIntercom"
  5968. type="1" >
  5969. </productMenu>
  5970. <productMenu id="phone"
  5971. type="2" >
  5972. </productMenu>
  5973. <productMenu id="fmradio"
  5974. type="3" >
  5975. </productMenu>
  5976. <productMenu id="deviceSetting"
  5977. type="1"
  5978. url="https://api.sena.com/support/SenaUtility/Tufftalk_Lite/DS_Tufftalk_Lite.xml" >
  5979. </productMenu>
  5980. <productMenu id="quickGuide"
  5981. type="1"
  5982. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Tufftalk_Lite_01.pdf"
  5983. size="725KB" >
  5984. </productMenu>
  5985. <productMenu id="userGuide"
  5986. type="1"
  5987. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Tufftalk_Lite_v1.0_01.pdf"
  5988. size="1.17MB" >
  5989. </productMenu>
  5990. <productID id="5720"
  5991. />
  5992. <productGroupable type="0"
  5993. />
  5994. </product>
  5995. <product id="TufftalkM"
  5996. name="Tufftalk M"
  5997. series="10"
  5998. latestVersion="1.1.1"
  5999. show = "1" >
  6000. <productMenu id="protocol"
  6001. type="0">
  6002. </productMenu>
  6003. <productMenu id="sip"
  6004. type="1" >
  6005. </productMenu>
  6006. <productMenu id="bluetoothIntercom"
  6007. type="1" >
  6008. </productMenu>
  6009. <productMenu id="phone"
  6010. type="2" >
  6011. </productMenu>
  6012. <productMenu id="fmradio"
  6013. type="3" >
  6014. </productMenu>
  6015. <productMenu id="deviceSetting"
  6016. type="1"
  6017. url="https://api.sena.com/support/SenaUtility/Tufftalk/DS_TufftalkM_v0101.xml" >
  6018. </productMenu>
  6019. <productMenu id="quickGuide"
  6020. type="1"
  6021. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Tufftalk_M_02.pdf"
  6022. size="265KB" >
  6023. </productMenu>
  6024. <productMenu id="userGuide"
  6025. type="1"
  6026. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Tufftalk_M_1.1.0_en_200521.pdf"
  6027. size="769KB" >
  6028. </productMenu>
  6029. <productID id="3118"
  6030. />
  6031. <productGroupable type="0"
  6032. />
  6033. </product>
  6034. <product id="HD10S"
  6035. name="Boom! Audio 10S"
  6036. series="10"
  6037. latestVersion="1.1.2"
  6038. show = "0" >
  6039. <productMenu id="protocol"
  6040. type="0">
  6041. </productMenu>
  6042. <productMenu id="sip"
  6043. type="1" >
  6044. </productMenu>
  6045. <productMenu id="bluetoothIntercom"
  6046. type="1" >
  6047. </productMenu>
  6048. <productMenu id="phone"
  6049. type="2" >
  6050. </productMenu>
  6051. <productMenu id="fmradio"
  6052. type="3" >
  6053. </productMenu>
  6054. <productMenu id="deviceSetting"
  6055. type="1"
  6056. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  6057. </productMenu>
  6058. <productMenu id="quickGuide"
  6059. type="1"
  6060. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_H-D_10S_01.pdf"
  6061. size="538KB" >
  6062. </productMenu>
  6063. <productMenu id="userGuide"
  6064. type="1"
  6065. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_H-D_10S_v1.0_01.pdf"
  6066. size="1.55MB" >
  6067. </productMenu>
  6068. <productID id="5532"
  6069. />
  6070. <productGroupable type="0"
  6071. />
  6072. </product>
  6073. <product id="HDCavalry"
  6074. name="Boom! Audio N01 10R"
  6075. series="10"
  6076. latestVersion="1.1.2"
  6077. show = "0" >
  6078. <productMenu id="protocol"
  6079. type="0">
  6080. </productMenu>
  6081. <productMenu id="sip"
  6082. type="1" >
  6083. </productMenu>
  6084. <productMenu id="bluetoothIntercom"
  6085. type="1" >
  6086. </productMenu>
  6087. <productMenu id="phone"
  6088. type="2" >
  6089. </productMenu>
  6090. <productMenu id="fmradio"
  6091. type="3" >
  6092. </productMenu>
  6093. <productMenu id="deviceSetting"
  6094. type="1"
  6095. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  6096. </productMenu>
  6097. <productMenu id="quickGuide"
  6098. type="1"
  6099. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_H-D_N01_01.pdf"
  6100. size="766KB" >
  6101. </productMenu>
  6102. <productMenu id="userGuide"
  6103. type="1"
  6104. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_H-D_N01_v1.0_02.pdf"
  6105. size="1.45MB" >
  6106. </productMenu>
  6107. <productID id="5522"
  6108. />
  6109. <productGroupable type="0"
  6110. />
  6111. </product>
  6112. <product id="HDOUTRUSHR"
  6113. name="OUTRUSH R"
  6114. series="10"
  6115. latestVersion="1.0"
  6116. show = "0" >
  6117. <productMenu id="protocol"
  6118. type="0">
  6119. </productMenu>
  6120. <productMenu id="sip"
  6121. type="1" >
  6122. </productMenu>
  6123. <productMenu id="bluetoothIntercom"
  6124. type="1" >
  6125. </productMenu>
  6126. <productMenu id="phone"
  6127. type="2" >
  6128. </productMenu>
  6129. <productMenu id="fmradio"
  6130. type="3" >
  6131. </productMenu>
  6132. <productMenu id="deviceSetting"
  6133. type="1"
  6134. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6135. </productMenu>
  6136. <productMenu id="userGuide"
  6137. type="1"
  6138. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTRUSH_R_1.0.0_en_201019.pdf"
  6139. size="660KB" >
  6140. </productMenu>
  6141. <productID id="5434"
  6142. />
  6143. <productGroupable type="0"
  6144. />
  6145. </product>
  6146. <product id="KLIM_KRIOS"
  6147. name="KLIM Krios"
  6148. series="10"
  6149. latestVersion="1.1.2"
  6150. show = "0" >
  6151. <productMenu id="protocol"
  6152. type="0">
  6153. </productMenu>
  6154. <productMenu id="sip"
  6155. type="1" >
  6156. </productMenu>
  6157. <productMenu id="bluetoothIntercom"
  6158. type="1" >
  6159. </productMenu>
  6160. <productMenu id="phone"
  6161. type="2" >
  6162. </productMenu>
  6163. <productMenu id="fmradio"
  6164. type="3" >
  6165. </productMenu>
  6166. <productMenu id="deviceSetting"
  6167. type="1"
  6168. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  6169. <productMenuURL version="1.0"
  6170. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  6171. />
  6172. </productMenu>
  6173. <productMenu id="quickGuide"
  6174. type="1"
  6175. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  6176. size="649KB" >
  6177. </productMenu>
  6178. <productMenu id="userGuide"
  6179. type="1"
  6180. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  6181. size="1.43MB" >
  6182. </productMenu>
  6183. <productID id="5910"
  6184. />
  6185. <productGroupable type="0"
  6186. />
  6187. </product>
  6188. <product id="POLARIS_SLINGSHOT"
  6189. name="Polaris Slingshot"
  6190. series="10"
  6191. latestVersion="1.1.2"
  6192. show = "0" >
  6193. <productMenu id="protocol"
  6194. type="0">
  6195. </productMenu>
  6196. <productMenu id="sip"
  6197. type="1" >
  6198. </productMenu>
  6199. <productMenu id="bluetoothIntercom"
  6200. type="1" >
  6201. </productMenu>
  6202. <productMenu id="phone"
  6203. type="2" >
  6204. </productMenu>
  6205. <productMenu id="fmradio"
  6206. type="3" >
  6207. </productMenu>
  6208. <productMenu id="deviceSetting"
  6209. type="1"
  6210. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  6211. <productMenuURL version="1.0"
  6212. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  6213. />
  6214. </productMenu>
  6215. <productMenu id="quickGuide"
  6216. type="1"
  6217. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  6218. size="689KB" >
  6219. </productMenu>
  6220. <productMenu id="userGuide"
  6221. type="1"
  6222. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  6223. size="1.43MB" >
  6224. </productMenu>
  6225. <productID id="5920"
  6226. />
  6227. <productGroupable type="0"
  6228. />
  6229. </product>
  6230. <product id="R1_Pro"
  6231. name="R1 Pro"
  6232. series="10"
  6233. latestVersion="1.0"
  6234. show = "0" >
  6235. <productMenu id="protocol"
  6236. type="0">
  6237. </productMenu>
  6238. <productMenu id="sip"
  6239. type="1" >
  6240. </productMenu>
  6241. <productMenu id="bluetoothIntercom"
  6242. type="1" >
  6243. </productMenu>
  6244. <productMenu id="phone"
  6245. type="2" >
  6246. </productMenu>
  6247. <productMenu id="fmradio"
  6248. type="3" >
  6249. </productMenu>
  6250. <productMenu id="deviceSetting"
  6251. type="1"
  6252. url="https://api.sena.com/support/SenaUtility/X1/DS_X1_2.xml" >
  6253. </productMenu>
  6254. <productMenu id="quickGuide"
  6255. type="1"
  6256. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_R1_01.pdf"
  6257. size="810KB" >
  6258. </productMenu>
  6259. <productMenu id="userGuide"
  6260. type="1"
  6261. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_R1_v1.0_01.pdf"
  6262. size="1.18MB" >
  6263. </productMenu>
  6264. <productID id="3060"
  6265. />
  6266. <productGroupable type="0"
  6267. />
  6268. </product>
  6269. <product id="X_COM2"
  6270. name="X-COM2"
  6271. series="10"
  6272. latestVersion="1.0.4"
  6273. show = "0" >
  6274. <productMenu id="protocol"
  6275. type="0">
  6276. </productMenu>
  6277. <productMenu id="sip"
  6278. type="1" >
  6279. </productMenu>
  6280. <productMenu id="bluetoothIntercom"
  6281. type="1" >
  6282. </productMenu>
  6283. <productMenu id="intercomSetting"
  6284. type="1" >
  6285. </productMenu>
  6286. <productMenu id="phone"
  6287. type="2" >
  6288. </productMenu>
  6289. <productMenu id="fmradio"
  6290. type="3" >
  6291. </productMenu>
  6292. <productMenu id="deviceSetting"
  6293. type="1"
  6294. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6295. </productMenu>
  6296. <productMenu id="quickGuide"
  6297. type="1"
  6298. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  6299. size="963KB" >
  6300. </productMenu>
  6301. <productMenu id="userGuide"
  6302. type="1"
  6303. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  6304. size="1.73MB" >
  6305. </productMenu>
  6306. <productID id="2030"
  6307. />
  6308. <productGroupable type="1"
  6309. />
  6310. </product>
  6311. <product id="DWO6"
  6312. name="SEDICI DWO6-PRO"
  6313. series="10"
  6314. latestVersion="1.0.1"
  6315. show = "0" >
  6316. <productMenu id="protocol"
  6317. type="0">
  6318. </productMenu>
  6319. <productMenu id="sip"
  6320. type="1" >
  6321. </productMenu>
  6322. <productMenu id="bluetoothIntercom"
  6323. type="1" >
  6324. </productMenu>
  6325. <productMenu id="phone"
  6326. type="2" >
  6327. </productMenu>
  6328. <productMenu id="fmradio"
  6329. type="3" >
  6330. </productMenu>
  6331. <productMenu id="deviceSetting"
  6332. type="1"
  6333. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6334. </productMenu>
  6335. <productMenu id="quickGuide"
  6336. type="1"
  6337. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_CG_DWO6P_01.pdf"
  6338. size="529KB" >
  6339. </productMenu>
  6340. <productMenu id="userGuide"
  6341. type="1"
  6342. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_CG_DWO6P_v1.0_01.pdf"
  6343. size="4.09MB" >
  6344. </productMenu>
  6345. <productID id="6112"
  6346. />
  6347. <productGroupable type="0"
  6348. />
  6349. </product>
  6350. <product id="DWO6A"
  6351. name="SEDICI DWO-6"
  6352. series="10"
  6353. latestVersion="1.0"
  6354. show = "0" >
  6355. <productMenu id="protocol"
  6356. type="0">
  6357. </productMenu>
  6358. <productMenu id="sip"
  6359. type="1" >
  6360. </productMenu>
  6361. <productMenu id="bluetoothIntercom"
  6362. type="1" >
  6363. </productMenu>
  6364. <productMenu id="phone"
  6365. type="2" >
  6366. </productMenu>
  6367. <productMenu id="fmradio"
  6368. type="3" >
  6369. </productMenu>
  6370. <productMenu id="deviceSetting"
  6371. type="1"
  6372. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  6373. </productMenu>
  6374. <productMenu id="quickGuide"
  6375. type="1"
  6376. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_DWO-6_v1.0_en_200831.pdf"
  6377. size="522KB" >
  6378. </productMenu>
  6379. <productMenu id="userGuide"
  6380. type="1"
  6381. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_DWO-6_v1.0_en_200831.pdf"
  6382. size="2.71MB" >
  6383. </productMenu>
  6384. <productID id="6114"
  6385. />
  6386. <productGroupable type="0"
  6387. />
  6388. </product>
  6389. <product id="X1_Pro"
  6390. name="X1 Pro"
  6391. series="10"
  6392. latestVersion="1.0.2"
  6393. show = "0" >
  6394. <productMenu id="protocol"
  6395. type="0">
  6396. </productMenu>
  6397. <productMenu id="sip"
  6398. type="1" >
  6399. </productMenu>
  6400. <productMenu id="bluetoothIntercom"
  6401. type="1" >
  6402. </productMenu>
  6403. <productMenu id="phone"
  6404. type="2" >
  6405. </productMenu>
  6406. <productMenu id="fmradio"
  6407. type="3" >
  6408. </productMenu>
  6409. <productMenu id="deviceSetting"
  6410. type="1"
  6411. url="https://api.sena.com/support/SenaUtility/X1/DS_X1_2.xml" >
  6412. </productMenu>
  6413. <productMenu id="quickGuide"
  6414. type="1"
  6415. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_X1-Pro_01.pdf"
  6416. size="935KB" >
  6417. </productMenu>
  6418. <productMenu id="userGuide"
  6419. type="1"
  6420. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_X1-Pro_v1.0_01.pdf"
  6421. size="1.71MB" >
  6422. </productMenu>
  6423. <productID id="3040"
  6424. />
  6425. <productGroupable type="0"
  6426. />
  6427. </product>
  6428. <product id="ZXV01"
  6429. name="ZILL"
  6430. series="10"
  6431. latestVersion="1.0.2"
  6432. show = "0" >
  6433. <productMenu id="protocol"
  6434. type="0">
  6435. </productMenu>
  6436. <productMenu id="sip"
  6437. type="1" >
  6438. </productMenu>
  6439. <productMenu id="bluetoothIntercom"
  6440. type="1" >
  6441. </productMenu>
  6442. <productMenu id="deviceSetting"
  6443. type="1"
  6444. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  6445. </productMenu>
  6446. <productMenu id="quickGuide"
  6447. type="1"
  6448. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_3S_PLUS_1.0.0_en_200813.pdf"
  6449. size="842KB" >
  6450. </productMenu>
  6451. <productMenu id="userGuide"
  6452. type="1"
  6453. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_app_3S_PLUS_1.0.1_en_210521.pdf"
  6454. size="1.02MB" >
  6455. </productMenu>
  6456. <productID id="6335"
  6457. />
  6458. <productGroupable type="0"
  6459. />
  6460. </product>
  6461. <product id="R2"
  6462. name="R2"
  6463. series="10"
  6464. latestVersion="1.0"
  6465. show = "0" >
  6466. <productMenu id="protocol"
  6467. type="0">
  6468. </productMenu>
  6469. <productMenu id="sip"
  6470. type="1" >
  6471. </productMenu>
  6472. <productMenu id="bluetoothIntercom"
  6473. type="1" >
  6474. </productMenu>
  6475. <productMenu id="deviceSetting"
  6476. type="1"
  6477. url="https://api.sena.com/support/SenaUtility/R2/DS_R2.xml" >
  6478. </productMenu>
  6479. <productMenu id="quickGuide"
  6480. type="1"
  6481. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_M1_1.1.0_en_210224.pdf"
  6482. size="773KB" >
  6483. </productMenu>
  6484. <productMenu id="userGuide"
  6485. type="1"
  6486. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_M1_1.1.0_en_210223.pdf"
  6487. size="848KB" >
  6488. </productMenu>
  6489. <productID id="3080"
  6490. />
  6491. <productGroupable type="0"
  6492. />
  6493. </product>
  6494. <product id="OUTFORCE"
  6495. name="OUTFORCE"
  6496. series="10"
  6497. latestVersion="1.0"
  6498. show = "0" >
  6499. <productMenu id="protocol"
  6500. type="0">
  6501. </productMenu>
  6502. <productMenu id="sip"
  6503. type="1" >
  6504. </productMenu>
  6505. <productMenu id="bluetoothIntercom"
  6506. type="1" >
  6507. </productMenu>
  6508. <productMenu id="phone"
  6509. type="2" >
  6510. </productMenu>
  6511. <productMenu id="fmradio"
  6512. type="3" >
  6513. </productMenu>
  6514. <productMenu id="deviceSetting"
  6515. type="1"
  6516. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6517. </productMenu>
  6518. <productMenu id="userGuide"
  6519. type="1"
  6520. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTRUSH_R_1.0.0_en_201019.pdf"
  6521. size="660KB" >
  6522. </productMenu>
  6523. <productID id="5430"
  6524. />
  6525. <productGroupable type="0"
  6526. />
  6527. </product>
  6528. <product id="OUTRIDE"
  6529. name="OUTRIDE"
  6530. series="10"
  6531. latestVersion="1.0"
  6532. show = "0" >
  6533. <productMenu id="protocol"
  6534. type="0">
  6535. </productMenu>
  6536. <productMenu id="sip"
  6537. type="1" >
  6538. </productMenu>
  6539. <productMenu id="bluetoothIntercom"
  6540. type="1" >
  6541. </productMenu>
  6542. <productMenu id="phone"
  6543. type="2" >
  6544. </productMenu>
  6545. <productMenu id="fmradio"
  6546. type="3" >
  6547. </productMenu>
  6548. <productMenu id="deviceSetting"
  6549. type="1"
  6550. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6551. </productMenu>
  6552. <productMenu id="userGuide"
  6553. type="1"
  6554. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTRUSH_R_1.0.0_en_201019.pdf"
  6555. size="660KB" >
  6556. </productMenu>
  6557. <productID id="5432"
  6558. />
  6559. <productGroupable type="0"
  6560. />
  6561. </product>
  6562. <product id="ACS10"
  6563. name="ACS10"
  6564. series="10"
  6565. latestVersion="1.0"
  6566. show = "0" >
  6567. <productMenu id="protocol"
  6568. type="0">
  6569. </productMenu>
  6570. <productMenu id="sip"
  6571. type="1" >
  6572. </productMenu>
  6573. <productMenu id="bluetoothIntercom"
  6574. type="1" >
  6575. </productMenu>
  6576. <productMenu id="phone"
  6577. type="2" >
  6578. </productMenu>
  6579. <productMenu id="deviceSetting"
  6580. type="1"
  6581. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  6582. </productMenu>
  6583. <productMenu id="quickGuide"
  6584. type="1"
  6585. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5S_1.0.0_en_200410.pdf"
  6586. size="970KB" >
  6587. </productMenu>
  6588. <productMenu id="userGuide"
  6589. type="1"
  6590. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5S_1.0.0_en_200330.pdf"
  6591. size="1.26MB" >
  6592. </productMenu>
  6593. <productID id="3300"
  6594. />
  6595. <productGroupable type="0"
  6596. />
  6597. </product>
  6598. -->
  6599. </products>
  6600. </sna>