snm.xml 219 KB

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