snm.xml 239 KB

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