snm.xml 222 KB

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