snm.xml 237 KB

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