snm.xml 239 KB

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