snm.xml 237 KB

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