snm.xml 232 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20221205" appVer="2.10" iosAppVer="2.10" central="1">
  3. <tu url="https://www.sena.com/terms-of-use/"
  4. />
  5. <pp url="https://www.sena.com/privacy"
  6. />
  7. <profile url="https://www.sena.com/mobile-subscribe/"
  8. />
  9. <wa url="https://firmware.sena.com/senabluetoothmanager/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="SF2"
  2410. name="SF2"
  2411. series="SF"
  2412. latestVersion="1.2.1"
  2413. show = "1" >
  2414. <productMenu id="protocol"
  2415. type="1"
  2416. url="2">
  2417. </productMenu>
  2418. <productMenu id="sip"
  2419. type="1" >
  2420. </productMenu>
  2421. <productMenu id="bluetoothIntercom"
  2422. type="1" >
  2423. </productMenu>
  2424. <productMenu id="phone"
  2425. type="1" >
  2426. </productMenu>
  2427. <productMenu id="music"
  2428. type="1" >
  2429. </productMenu>
  2430. <productMenu id="fmradio"
  2431. type="1" >
  2432. </productMenu>
  2433. <productMenu id="deviceSetting"
  2434. type="1"
  2435. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  2436. <productMenuURL version="1.0.1"
  2437. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  2438. />
  2439. </productMenu>
  2440. <productMenu id="quickGuide"
  2441. type="1"
  2442. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.2.0_en_220908.pdf"
  2443. size="607KB" >
  2444. </productMenu>
  2445. <productMenu id="userGuide"
  2446. type="1"
  2447. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.2.0_en_220908.pdf"
  2448. size="1.91MB" >
  2449. </productMenu>
  2450. <productMenu id="volume"
  2451. type="4" >
  2452. </productMenu>
  2453. <productID id="5412"
  2454. />
  2455. <productGroupable type="0"
  2456. />
  2457. </product>
  2458. <product id="SF1"
  2459. name="SF1"
  2460. series="SF"
  2461. latestVersion="2.0.5"
  2462. show = "1" >
  2463. <productMenu id="protocol"
  2464. type="1"
  2465. url="1">
  2466. </productMenu>
  2467. <productMenu id="sip"
  2468. type="1" >
  2469. </productMenu>
  2470. <productMenu id="bluetoothIntercom"
  2471. type="1" >
  2472. <productMenuType version="1.1"
  2473. type="0"
  2474. />
  2475. </productMenu>
  2476. <productMenu id="phone"
  2477. type="1" >
  2478. </productMenu>
  2479. <productMenu id="music"
  2480. type="1" >
  2481. </productMenu>
  2482. <productMenu id="deviceSetting"
  2483. type="1"
  2484. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  2485. <productMenuURL version="1.1"
  2486. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  2487. />
  2488. <productMenuURL version="1.0"
  2489. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  2490. />
  2491. </productMenu>
  2492. <productMenu id="quickGuide"
  2493. type="1"
  2494. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.1.0_en_220908.pdf"
  2495. size="401KB" >
  2496. </productMenu>
  2497. <productMenu id="userGuide"
  2498. type="1"
  2499. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.2.0_en_220908.pdf"
  2500. size="1.91MB" >
  2501. </productMenu>
  2502. <productMenu id="volume"
  2503. type="3" >
  2504. </productMenu>
  2505. <productID id="5410"
  2506. />
  2507. <productGroupable type="0"
  2508. />
  2509. </product>
  2510. <product id="SFR"
  2511. name="SFR"
  2512. series="SF"
  2513. latestVersion="1.1.1"
  2514. show = "1" >
  2515. <productMenu id="protocol"
  2516. type="1"
  2517. url="3">
  2518. </productMenu>
  2519. <productMenu id="sip"
  2520. type="1" >
  2521. </productMenu>
  2522. <productMenu id="bluetoothIntercom"
  2523. type="1" >
  2524. </productMenu>
  2525. <productMenu id="phone"
  2526. type="1" >
  2527. </productMenu>
  2528. <productMenu id="music"
  2529. type="1" >
  2530. </productMenu>
  2531. <productMenu id="fmradio"
  2532. type="1" >
  2533. </productMenu>
  2534. <productMenu id="deviceSetting"
  2535. type="1"
  2536. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  2537. </productMenu>
  2538. <productMenu id="quickGuide"
  2539. type="1"
  2540. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.2.0_en_220908.pdf"
  2541. size="607KB" >
  2542. </productMenu>
  2543. <productMenu id="userGuide"
  2544. type="1"
  2545. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.2.0_en_220908.pdf"
  2546. size="1.91MB" >
  2547. </productMenu>
  2548. <productMenu id="volume"
  2549. type="4" >
  2550. </productMenu>
  2551. <productID id="5418"
  2552. />
  2553. <productGroupable type="0"
  2554. />
  2555. </product>
  2556. <product id="LSE-01"
  2557. name="LSE-01"
  2558. series="SF"
  2559. latestVersion="1.2.3"
  2560. show = "0" >
  2561. <productMenu id="protocol"
  2562. type="1"
  2563. url="3">
  2564. </productMenu>
  2565. <productMenu id="sip"
  2566. type="1" >
  2567. </productMenu>
  2568. <productMenu id="bluetoothIntercom"
  2569. type="1" >
  2570. </productMenu>
  2571. <productMenu id="phone"
  2572. type="1" >
  2573. </productMenu>
  2574. <productMenu id="music"
  2575. type="1" >
  2576. </productMenu>
  2577. <productMenu id="fmradio"
  2578. type="1" >
  2579. </productMenu>
  2580. <productMenu id="deviceSetting"
  2581. type="1"
  2582. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  2583. <productMenuURL version="1.1"
  2584. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  2585. />
  2586. <productMenuURL version="1.0"
  2587. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  2588. />
  2589. </productMenu>
  2590. <productMenu id="quickGuide"
  2591. type="1"
  2592. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Louis_LSE-01_01.pdf"
  2593. size="607KB" >
  2594. </productMenu>
  2595. <productMenu id="userGuide"
  2596. type="1"
  2597. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Louis_LSE-01_v1.1_03.pdf"
  2598. size="1.91MB" >
  2599. </productMenu>
  2600. <productMenu id="volume"
  2601. type="4" >
  2602. </productMenu>
  2603. <productID id="5416"
  2604. />
  2605. <productGroupable type="0"
  2606. />
  2607. </product>
  2608. <product id="AGV_ARK"
  2609. name="AGV ARK"
  2610. series="SF"
  2611. latestVersion="1.0.3"
  2612. show = "0" >
  2613. <productMenu id="protocol"
  2614. type="1"
  2615. url="3">
  2616. </productMenu>
  2617. <productMenu id="sip"
  2618. type="1" >
  2619. </productMenu>
  2620. <productMenu id="bluetoothIntercom"
  2621. type="1" >
  2622. </productMenu>
  2623. <productMenu id="phone"
  2624. type="1" >
  2625. </productMenu>
  2626. <productMenu id="music"
  2627. type="1" >
  2628. </productMenu>
  2629. <productMenu id="fmradio"
  2630. type="1" >
  2631. </productMenu>
  2632. <productMenu id="deviceSetting"
  2633. type="1"
  2634. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  2635. </productMenu>
  2636. <productMenu id="quickGuide"
  2637. type="1"
  2638. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ARK_1.0.1_en_210415_D00131.pdf"
  2639. size="607KB" >
  2640. </productMenu>
  2641. <productMenu id="userGuide"
  2642. type="1"
  2643. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_AGV_ARK_v1.0_02.pdf"
  2644. size="1.91MB" >
  2645. </productMenu>
  2646. <productMenu id="volume"
  2647. type="4" >
  2648. </productMenu>
  2649. <productID id="5420"
  2650. />
  2651. <productGroupable type="0"
  2652. />
  2653. </product>
  2654. <product id="20S"
  2655. name="20S"
  2656. series="20"
  2657. latestVersion="2.2.2"
  2658. show = "1" >
  2659. <productMenu id="protocol"
  2660. type="0">
  2661. </productMenu>
  2662. <productMenu id="sip"
  2663. type="1" >
  2664. <productMenuType version="1.0"
  2665. type="0"
  2666. />
  2667. </productMenu>
  2668. <productMenu id="bluetoothIntercom"
  2669. type="1" >
  2670. <productMenuType version="1.0"
  2671. type="0"
  2672. />
  2673. </productMenu>
  2674. <productMenu id="intercomSetting"
  2675. type="1" >
  2676. </productMenu>
  2677. <productMenu id="phone"
  2678. type="2" >
  2679. </productMenu>
  2680. <productMenu id="fmradio"
  2681. type="3" >
  2682. </productMenu>
  2683. <productMenu id="deviceSetting"
  2684. type="1"
  2685. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  2686. <productMenuURL version="2.0.2"
  2687. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  2688. />
  2689. <productMenuURL version="1.5"
  2690. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  2691. />
  2692. <productMenuURL version="1.4.1"
  2693. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  2694. />
  2695. <productMenuURL version="1.1"
  2696. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  2697. />
  2698. <productMenuURL version="1.0"
  2699. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  2700. />
  2701. </productMenu>
  2702. <productMenu id="quickGuide"
  2703. type="1"
  2704. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_20S_EVO_1.4.0_en_220922.pdf"
  2705. size="264KB" >
  2706. </productMenu>
  2707. <productMenu id="userGuide"
  2708. type="1"
  2709. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.0_en_220922.pdf"
  2710. size="3.09MB" >
  2711. </productMenu>
  2712. <productID id="4210"
  2713. />
  2714. <productGroupable type="1"
  2715. />
  2716. </product>
  2717. <product id="20S_EVO"
  2718. name="20S EVO"
  2719. series="20"
  2720. latestVersion="2.2.2"
  2721. show = "1" >
  2722. <productMenu id="protocol"
  2723. type="0">
  2724. </productMenu>
  2725. <productMenu id="sip"
  2726. type="1" >
  2727. <productMenuType version="1.0"
  2728. type="0"
  2729. />
  2730. </productMenu>
  2731. <productMenu id="bluetoothIntercom"
  2732. type="1" >
  2733. <productMenuType version="1.0"
  2734. type="0"
  2735. />
  2736. </productMenu>
  2737. <productMenu id="intercomSetting"
  2738. type="1" >
  2739. </productMenu>
  2740. <productMenu id="phone"
  2741. type="2" >
  2742. </productMenu>
  2743. <productMenu id="fmradio"
  2744. type="3" >
  2745. </productMenu>
  2746. <productMenu id="deviceSetting"
  2747. type="1"
  2748. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  2749. <productMenuURL version="2.0.2"
  2750. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  2751. />
  2752. <productMenuURL version="1.5"
  2753. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  2754. />
  2755. <productMenuURL version="1.4.1"
  2756. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  2757. />
  2758. <productMenuURL version="1.1"
  2759. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  2760. />
  2761. <productMenuURL version="1.0"
  2762. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  2763. />
  2764. </productMenu>
  2765. <productMenu id="quickGuide"
  2766. type="1"
  2767. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_20S_EVO_1.4.0_en_220922.pdf"
  2768. size="264KB" >
  2769. </productMenu>
  2770. <productMenu id="userGuide"
  2771. type="1"
  2772. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.0_en_220922.pdf"
  2773. size="3.09MB" >
  2774. </productMenu>
  2775. <productID id="4210"
  2776. />
  2777. <productProductKey key="16"
  2778. />
  2779. <productGroupable type="1"
  2780. />
  2781. </product>
  2782. <product id="10S"
  2783. name="10S"
  2784. series="10"
  2785. latestVersion="2.1.1"
  2786. show = "1" >
  2787. <productMenu id="protocol"
  2788. type="0">
  2789. </productMenu>
  2790. <productMenu id="sip"
  2791. type="1" >
  2792. </productMenu>
  2793. <productMenu id="bluetoothIntercom"
  2794. type="1" >
  2795. </productMenu>
  2796. <productMenu id="phone"
  2797. type="2" >
  2798. </productMenu>
  2799. <productMenu id="fmradio"
  2800. type="3" >
  2801. </productMenu>
  2802. <productMenu id="deviceSetting"
  2803. type="1"
  2804. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  2805. <productMenuURL version="1.5"
  2806. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  2807. />
  2808. <productMenuURL version="1.3.1"
  2809. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  2810. />
  2811. </productMenu>
  2812. <productMenu id="quickGuide"
  2813. type="1"
  2814. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.3.0_en_221006.pdf"
  2815. size="310KB" >
  2816. </productMenu>
  2817. <productMenu id="userGuide"
  2818. type="1"
  2819. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.2.0_en_221006.pdf"
  2820. size="1.57MB" >
  2821. </productMenu>
  2822. <productID id="5530"
  2823. />
  2824. <productGroupable type="0"
  2825. />
  2826. </product>
  2827. <product id="10R"
  2828. name="10R"
  2829. series="10"
  2830. latestVersion="2.1.1"
  2831. show = "1" >
  2832. <productMenu id="protocol"
  2833. type="0">
  2834. </productMenu>
  2835. <productMenu id="sip"
  2836. type="1" >
  2837. <productMenuType version="1.0.2"
  2838. type="0"
  2839. />
  2840. </productMenu>
  2841. <productMenu id="bluetoothIntercom"
  2842. type="1" >
  2843. <productMenuType version="1.0.2"
  2844. type="0"
  2845. />
  2846. </productMenu>
  2847. <productMenu id="phone"
  2848. type="2" >
  2849. </productMenu>
  2850. <productMenu id="fmradio"
  2851. type="3" >
  2852. </productMenu>
  2853. <productMenu id="deviceSetting"
  2854. type="1"
  2855. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  2856. <productMenuURL version="1.4"
  2857. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  2858. />
  2859. <productMenuURL version="1.2.1"
  2860. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  2861. />
  2862. <productMenuURL version="1.0.2"
  2863. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  2864. />
  2865. <productMenuURL version="1.0"
  2866. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  2867. />
  2868. </productMenu>
  2869. <productMenu id="quickGuide"
  2870. type="1"
  2871. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  2872. size="400KB" >
  2873. </productMenu>
  2874. <productMenu id="userGuide"
  2875. type="1"
  2876. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  2877. size="2.75MB" >
  2878. </productMenu>
  2879. <productID id="5520"
  2880. />
  2881. <productGroupable type="0"
  2882. />
  2883. </product>
  2884. <product id="10C_EVO"
  2885. name="10C EVO"
  2886. series="10"
  2887. latestVersion="1.7"
  2888. show = "1" >
  2889. <productMenu id="protocol"
  2890. type="0">
  2891. </productMenu>
  2892. <productMenu id="sip"
  2893. type="1" >
  2894. </productMenu>
  2895. <productMenu id="bluetoothIntercom"
  2896. type="1" >
  2897. </productMenu>
  2898. <productMenu id="phone"
  2899. type="2" >
  2900. </productMenu>
  2901. <productMenu id="fmradio"
  2902. type="3" >
  2903. </productMenu>
  2904. <productMenu id="deviceSetting"
  2905. type="1"
  2906. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  2907. <productMenuURL version="1.3.1"
  2908. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  2909. />
  2910. </productMenu>
  2911. <productMenu id="quickGuide"
  2912. type="1"
  2913. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  2914. size="1.32MB" >
  2915. </productMenu>
  2916. <productMenu id="userGuide"
  2917. type="1"
  2918. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  2919. size="1.68MB" >
  2920. </productMenu>
  2921. <productID id="5570"
  2922. />
  2923. <productGroupable type="0"
  2924. />
  2925. </product>
  2926. <product id="10C_Pro"
  2927. name="10C Pro"
  2928. series="10"
  2929. latestVersion="2.7.1"
  2930. show = "1" >
  2931. <productMenu id="protocol"
  2932. type="0">
  2933. </productMenu>
  2934. <productMenu id="sip"
  2935. type="1" >
  2936. </productMenu>
  2937. <productMenu id="bluetoothIntercom"
  2938. type="1" >
  2939. </productMenu>
  2940. <productMenu id="phone"
  2941. type="2" >
  2942. </productMenu>
  2943. <productMenu id="fmradio"
  2944. type="3" >
  2945. </productMenu>
  2946. <productMenu id="deviceSetting"
  2947. type="1"
  2948. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  2949. <productMenuURL version="2.5.1"
  2950. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  2951. />
  2952. <productMenuURL version="1.0"
  2953. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  2954. />
  2955. </productMenu>
  2956. <productMenu id="quickGuide"
  2957. type="1"
  2958. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  2959. size="651KB" >
  2960. </productMenu>
  2961. <productMenu id="userGuide"
  2962. type="1"
  2963. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  2964. size="2.34MB" >
  2965. </productMenu>
  2966. <productID id="5580"
  2967. />
  2968. <productGroupable type="0"
  2969. />
  2970. </product>
  2971. <product id="10C"
  2972. name="10C"
  2973. series="10"
  2974. latestVersion="3.0.4"
  2975. show = "1" >
  2976. <productMenu id="protocol"
  2977. type="0">
  2978. </productMenu>
  2979. <productMenu id="sip"
  2980. type="1" >
  2981. <productMenuType version="1.0.4"
  2982. type="0"
  2983. />
  2984. </productMenu>
  2985. <productMenu id="bluetoothIntercom"
  2986. type="1" >
  2987. <productMenuType version="1.0.4"
  2988. type="0"
  2989. />
  2990. </productMenu>
  2991. <productMenu id="phone"
  2992. type="2" >
  2993. </productMenu>
  2994. <productMenu id="fmradio"
  2995. type="3" >
  2996. </productMenu>
  2997. <productMenu id="deviceSetting"
  2998. type="1"
  2999. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  3000. <productMenuURL version="2.3"
  3001. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  3002. />
  3003. <productMenuURL version="2.1.1"
  3004. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  3005. />
  3006. <productMenuURL version="1.0.4"
  3007. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  3008. />
  3009. <productMenuURL version="1.0.2"
  3010. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  3011. />
  3012. </productMenu>
  3013. <productMenu id="quickGuide"
  3014. type="1"
  3015. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  3016. size="935KB" >
  3017. </productMenu>
  3018. <productMenu id="userGuide"
  3019. type="1"
  3020. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  3021. size="2.82MB" >
  3022. </productMenu>
  3023. <productID id="5510"
  3024. />
  3025. <productGroupable type="0"
  3026. />
  3027. </product>
  3028. <product id="10U_GT_AIR"
  3029. name="10U GT-Air"
  3030. series="10"
  3031. latestVersion="2.0.4"
  3032. show = "1" >
  3033. <productMenu id="protocol"
  3034. type="0">
  3035. </productMenu>
  3036. <productMenu id="sip"
  3037. type="1" >
  3038. <productMenuType version="1.0.2"
  3039. type="0"
  3040. />
  3041. </productMenu>
  3042. <productMenu id="bluetoothIntercom"
  3043. type="1" >
  3044. <productMenuType version="1.0.2"
  3045. type="0"
  3046. />
  3047. </productMenu>
  3048. <productMenu id="phone"
  3049. type="2" >
  3050. </productMenu>
  3051. <productMenu id="fmradio"
  3052. type="3" >
  3053. </productMenu>
  3054. <productMenu id="deviceSetting"
  3055. type="1"
  3056. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3057. <productMenuURL version="1.3.2"
  3058. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3059. />
  3060. <productMenuURL version="1.0.2"
  3061. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3062. />
  3063. </productMenu>
  3064. <productMenu id="quickGuide"
  3065. type="1"
  3066. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  3067. size="685KB" >
  3068. </productMenu>
  3069. <productMenu id="userGuide"
  3070. type="1"
  3071. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3072. size="684KB" >
  3073. </productMenu>
  3074. <productID id="5610"
  3075. />
  3076. <productGroupable type="0"
  3077. />
  3078. </product>
  3079. <product id="10U_NEOTEC"
  3080. name="10U Neotec"
  3081. series="10"
  3082. latestVersion="2.0.4"
  3083. show = "1" >
  3084. <productMenu id="protocol"
  3085. type="0">
  3086. </productMenu>
  3087. <productMenu id="sip"
  3088. type="1" >
  3089. <productMenuType version="1.0.2"
  3090. type="0"
  3091. />
  3092. </productMenu>
  3093. <productMenu id="bluetoothIntercom"
  3094. type="1" >
  3095. <productMenuType version="1.0.2"
  3096. type="0"
  3097. />
  3098. </productMenu>
  3099. <productMenu id="phone"
  3100. type="2" >
  3101. </productMenu>
  3102. <productMenu id="fmradio"
  3103. type="3" >
  3104. </productMenu>
  3105. <productMenu id="deviceSetting"
  3106. type="1"
  3107. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3108. <productMenuURL version="1.3.2"
  3109. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3110. />
  3111. <productMenuURL version="1.0.2"
  3112. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3113. />
  3114. </productMenu>
  3115. <productMenu id="quickGuide"
  3116. type="1"
  3117. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  3118. size="689KB" >
  3119. </productMenu>
  3120. <productMenu id="userGuide"
  3121. type="1"
  3122. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3123. size="684KB" >
  3124. </productMenu>
  3125. <productID id="5611"
  3126. />
  3127. <productGroupable type="0"
  3128. />
  3129. </product>
  3130. <product id="10U_J_CRUISE"
  3131. name="10U J-Cruise"
  3132. series="10"
  3133. latestVersion="2.0.4"
  3134. show = "1" >
  3135. <productMenu id="protocol"
  3136. type="0">
  3137. </productMenu>
  3138. <productMenu id="sip"
  3139. type="1" >
  3140. <productMenuType version="1.0.2"
  3141. type="0"
  3142. />
  3143. </productMenu>
  3144. <productMenu id="bluetoothIntercom"
  3145. type="1" >
  3146. <productMenuType version="1.0.2"
  3147. type="0"
  3148. />
  3149. </productMenu>
  3150. <productMenu id="phone"
  3151. type="2" >
  3152. </productMenu>
  3153. <productMenu id="fmradio"
  3154. type="3" >
  3155. </productMenu>
  3156. <productMenu id="deviceSetting"
  3157. type="1"
  3158. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3159. <productMenuURL version="1.3.2"
  3160. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3161. />
  3162. <productMenuURL version="1.0.2"
  3163. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3164. />
  3165. </productMenu>
  3166. <productMenu id="quickGuide"
  3167. type="1"
  3168. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  3169. size="686KB" >
  3170. </productMenu>
  3171. <productMenu id="userGuide"
  3172. type="1"
  3173. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3174. size="684KB" >
  3175. </productMenu>
  3176. <productID id="5612"
  3177. />
  3178. <productGroupable type="0"
  3179. />
  3180. </product>
  3181. <product id="10U_C3"
  3182. name="10U C3/C3Pro"
  3183. series="10"
  3184. latestVersion="2.0.4"
  3185. show = "1" >
  3186. <productMenu id="protocol"
  3187. type="0">
  3188. </productMenu>
  3189. <productMenu id="sip"
  3190. type="1" >
  3191. <productMenuType version="1.0.2"
  3192. type="0"
  3193. />
  3194. </productMenu>
  3195. <productMenu id="bluetoothIntercom"
  3196. type="1" >
  3197. <productMenuType version="1.0.2"
  3198. type="0"
  3199. />
  3200. </productMenu>
  3201. <productMenu id="phone"
  3202. type="2" >
  3203. </productMenu>
  3204. <productMenu id="fmradio"
  3205. type="3" >
  3206. </productMenu>
  3207. <productMenu id="deviceSetting"
  3208. type="1"
  3209. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3210. <productMenuURL version="1.3.2"
  3211. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3212. />
  3213. <productMenuURL version="1.0.2"
  3214. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3215. />
  3216. </productMenu>
  3217. <productMenu id="quickGuide"
  3218. type="1"
  3219. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  3220. size="199KB" >
  3221. </productMenu>
  3222. <productMenu id="userGuide"
  3223. type="1"
  3224. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3225. size="684KB" >
  3226. </productMenu>
  3227. <productID id="5620"
  3228. />
  3229. <productGroupable type="0"
  3230. />
  3231. </product>
  3232. <product id="10U_ARAI"
  3233. name="10U Arai"
  3234. series="10"
  3235. latestVersion="2.0.4"
  3236. show = "1" >
  3237. <productMenu id="protocol"
  3238. type="0">
  3239. </productMenu>
  3240. <productMenu id="sip"
  3241. type="1" >
  3242. <productMenuType version="1.0.2"
  3243. type="0"
  3244. />
  3245. </productMenu>
  3246. <productMenu id="bluetoothIntercom"
  3247. type="1" >
  3248. <productMenuType version="1.0.2"
  3249. type="0"
  3250. />
  3251. </productMenu>
  3252. <productMenu id="phone"
  3253. type="2" >
  3254. </productMenu>
  3255. <productMenu id="fmradio"
  3256. type="3" >
  3257. </productMenu>
  3258. <productMenu id="deviceSetting"
  3259. type="1"
  3260. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3261. <productMenuURL version="1.3.2"
  3262. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3263. />
  3264. <productMenuURL version="1.0.2"
  3265. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3266. />
  3267. </productMenu>
  3268. <productMenu id="quickGuide"
  3269. type="1"
  3270. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  3271. size="689KB" >
  3272. </productMenu>
  3273. <productMenu id="userGuide"
  3274. type="1"
  3275. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3276. size="684KB" >
  3277. </productMenu>
  3278. <productID id="5621"
  3279. />
  3280. <productGroupable type="0"
  3281. />
  3282. </product>
  3283. <product id="10Upad"
  3284. name="10Upad"
  3285. series="10"
  3286. latestVersion="2.0.3"
  3287. show = "1" >
  3288. <productMenu id="protocol"
  3289. type="0">
  3290. </productMenu>
  3291. <productMenu id="sip"
  3292. type="1" >
  3293. </productMenu>
  3294. <productMenu id="bluetoothIntercom"
  3295. type="1" >
  3296. </productMenu>
  3297. <productMenu id="phone"
  3298. type="2" >
  3299. </productMenu>
  3300. <productMenu id="fmradio"
  3301. type="3" >
  3302. </productMenu>
  3303. <productMenu id="deviceSetting"
  3304. type="1"
  3305. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  3306. <productMenuURL version="1.0.3"
  3307. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  3308. />
  3309. </productMenu>
  3310. <productMenu id="quickGuide"
  3311. type="1"
  3312. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  3313. size="615KB" >
  3314. </productMenu>
  3315. <productMenu id="userGuide"
  3316. type="1"
  3317. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  3318. size="0.99MB" >
  3319. </productMenu>
  3320. <productID id="6210"
  3321. />
  3322. <productGroupable type="0"
  3323. />
  3324. </product>
  3325. <product id="KLIM_KRIOS"
  3326. name="KLIM Krios"
  3327. series="10"
  3328. latestVersion="1.1.2"
  3329. show = "0" >
  3330. <productMenu id="protocol"
  3331. type="0">
  3332. </productMenu>
  3333. <productMenu id="sip"
  3334. type="1" >
  3335. </productMenu>
  3336. <productMenu id="bluetoothIntercom"
  3337. type="1" >
  3338. </productMenu>
  3339. <productMenu id="phone"
  3340. type="2" >
  3341. </productMenu>
  3342. <productMenu id="fmradio"
  3343. type="3" >
  3344. </productMenu>
  3345. <productMenu id="deviceSetting"
  3346. type="1"
  3347. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  3348. <productMenuURL version="1.0"
  3349. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  3350. />
  3351. </productMenu>
  3352. <productMenu id="quickGuide"
  3353. type="1"
  3354. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  3355. size="649KB" >
  3356. </productMenu>
  3357. <productMenu id="userGuide"
  3358. type="1"
  3359. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  3360. size="1.43MB" >
  3361. </productMenu>
  3362. <productID id="5910"
  3363. />
  3364. <productGroupable type="0"
  3365. />
  3366. </product>
  3367. <product id="POLARIS_SLINGSHOT"
  3368. name="Polaris Slingshot"
  3369. series="10"
  3370. latestVersion="1.1.2"
  3371. show = "0" >
  3372. <productMenu id="protocol"
  3373. type="0">
  3374. </productMenu>
  3375. <productMenu id="sip"
  3376. type="1" >
  3377. </productMenu>
  3378. <productMenu id="bluetoothIntercom"
  3379. type="1" >
  3380. </productMenu>
  3381. <productMenu id="phone"
  3382. type="2" >
  3383. </productMenu>
  3384. <productMenu id="fmradio"
  3385. type="3" >
  3386. </productMenu>
  3387. <productMenu id="deviceSetting"
  3388. type="1"
  3389. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  3390. <productMenuURL version="1.0"
  3391. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  3392. />
  3393. </productMenu>
  3394. <productMenu id="quickGuide"
  3395. type="1"
  3396. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  3397. size="689KB" >
  3398. </productMenu>
  3399. <productMenu id="userGuide"
  3400. type="1"
  3401. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  3402. size="1.43MB" >
  3403. </productMenu>
  3404. <productID id="5920"
  3405. />
  3406. <productGroupable type="0"
  3407. />
  3408. </product>
  3409. <product id="DWO6"
  3410. name="SEDICI DWO6-PRO"
  3411. series="10"
  3412. latestVersion="1.0.1"
  3413. show = "0" >
  3414. <productMenu id="protocol"
  3415. type="0">
  3416. </productMenu>
  3417. <productMenu id="sip"
  3418. type="1" >
  3419. </productMenu>
  3420. <productMenu id="bluetoothIntercom"
  3421. type="1" >
  3422. </productMenu>
  3423. <productMenu id="phone"
  3424. type="2" >
  3425. </productMenu>
  3426. <productMenu id="fmradio"
  3427. type="3" >
  3428. </productMenu>
  3429. <productMenu id="deviceSetting"
  3430. type="1"
  3431. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  3432. </productMenu>
  3433. <productMenu id="quickGuide"
  3434. type="1"
  3435. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_CG_DWO6P_01.pdf"
  3436. size="529KB" >
  3437. </productMenu>
  3438. <productMenu id="userGuide"
  3439. type="1"
  3440. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_CG_DWO6P_v1.0_01.pdf"
  3441. size="4.09MB" >
  3442. </productMenu>
  3443. <productID id="6112"
  3444. />
  3445. <productGroupable type="0"
  3446. />
  3447. </product>
  3448. <product id="DWO6A"
  3449. name="SEDICI DWO-6"
  3450. series="10"
  3451. latestVersion="1.0"
  3452. show = "0" >
  3453. <productMenu id="protocol"
  3454. type="0">
  3455. </productMenu>
  3456. <productMenu id="sip"
  3457. type="1" >
  3458. </productMenu>
  3459. <productMenu id="bluetoothIntercom"
  3460. type="1" >
  3461. </productMenu>
  3462. <productMenu id="phone"
  3463. type="2" >
  3464. </productMenu>
  3465. <productMenu id="fmradio"
  3466. type="3" >
  3467. </productMenu>
  3468. <productMenu id="deviceSetting"
  3469. type="1"
  3470. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  3471. </productMenu>
  3472. <productMenu id="quickGuide"
  3473. type="1"
  3474. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_DWO-6_v1.0_en_200831.pdf"
  3475. size="522KB" >
  3476. </productMenu>
  3477. <productMenu id="userGuide"
  3478. type="1"
  3479. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_DWO-6_v1.0_en_200831.pdf"
  3480. size="2.71MB" >
  3481. </productMenu>
  3482. <productID id="6114"
  3483. />
  3484. <productGroupable type="0"
  3485. />
  3486. </product>
  3487. <product id="5S"
  3488. name="5S"
  3489. nameGuide="5S (2022~)"
  3490. series="5"
  3491. latestVersion="2.1"
  3492. show = "1" >
  3493. <productMenu id="protocol"
  3494. type="3" >
  3495. </productMenu>
  3496. <productMenu id="sip"
  3497. type="1" >
  3498. </productMenu>
  3499. <productMenu id="bluetoothIntercom"
  3500. type="1" >
  3501. </productMenu>
  3502. <productMenu id="phone"
  3503. type="1" >
  3504. </productMenu>
  3505. <productMenu id="fmradio"
  3506. type="1" >
  3507. </productMenu>
  3508. <productMenu id="deviceSetting"
  3509. type="1"
  3510. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  3511. </productMenu>
  3512. <productMenu id="quickGuide"
  3513. type="1"
  3514. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5S_2.0.0_en_220304.pdf"
  3515. size="934KB" >
  3516. </productMenu>
  3517. <productMenu id="userGuide"
  3518. type="1"
  3519. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5S_2.0.0_en_220406.pdf"
  3520. size="1.14MB" >
  3521. </productMenu>
  3522. <productID id="5590"
  3523. />
  3524. <productGroupable type="0"
  3525. />
  3526. </product>
  3527. <product id="5S"
  3528. name="5S"
  3529. nameGuide="5S (~2021)"
  3530. series="5"
  3531. latestVersion="1.2"
  3532. show = "1" >
  3533. <productMenu id="protocol"
  3534. type="0">
  3535. </productMenu>
  3536. <productMenu id="sip"
  3537. type="1" >
  3538. </productMenu>
  3539. <productMenu id="bluetoothIntercom"
  3540. type="1" >
  3541. </productMenu>
  3542. <productMenu id="phone"
  3543. type="2" >
  3544. </productMenu>
  3545. <productMenu id="fmradio"
  3546. type="3" >
  3547. </productMenu>
  3548. <productMenu id="deviceSetting"
  3549. type="1"
  3550. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  3551. </productMenu>
  3552. <productMenu id="quickGuide"
  3553. type="1"
  3554. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5S_1.1.0_en_211012.pdf"
  3555. size="970KB" >
  3556. </productMenu>
  3557. <productMenu id="userGuide"
  3558. type="1"
  3559. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5S_1.1.0_en_211012.pdf"
  3560. size="1.26MB" >
  3561. </productMenu>
  3562. <productID id="5534"
  3563. />
  3564. <productGroupable type="0"
  3565. />
  3566. </product>
  3567. <product id="3SPLUS"
  3568. name="3S PLUS"
  3569. series="3"
  3570. latestVersion="1.0.5"
  3571. show = "1" >
  3572. <productMenu id="protocol"
  3573. type="0">
  3574. </productMenu>
  3575. <productMenu id="sip"
  3576. type="1" >
  3577. </productMenu>
  3578. <productMenu id="bluetoothIntercom"
  3579. type="1" >
  3580. </productMenu>
  3581. <productMenu id="deviceSetting"
  3582. type="1"
  3583. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  3584. </productMenu>
  3585. <productMenu id="quickGuide"
  3586. type="1"
  3587. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_3S_PLUS_1.0.0_en_200813.pdf"
  3588. size="842KB" >
  3589. </productMenu>
  3590. <productMenu id="userGuide"
  3591. type="1"
  3592. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_app_3S_PLUS_1.0.1_en_210521.pdf"
  3593. size="1.02MB" >
  3594. </productMenu>
  3595. <productID id="6320"
  3596. />
  3597. <productGroupable type="0"
  3598. />
  3599. </product>
  3600. <product id="3SPLUS"
  3601. name="ZILL"
  3602. series="3"
  3603. latestVersion="1.0.4"
  3604. show = "0" >
  3605. <productMenu id="protocol"
  3606. type="0">
  3607. </productMenu>
  3608. <productMenu id="sip"
  3609. type="1" >
  3610. </productMenu>
  3611. <productMenu id="bluetoothIntercom"
  3612. type="1" >
  3613. </productMenu>
  3614. <productMenu id="deviceSetting"
  3615. type="1"
  3616. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  3617. </productMenu>
  3618. <productMenu id="quickGuide"
  3619. type="1"
  3620. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_3S_PLUS_1.0.0_en_200813.pdf"
  3621. size="842KB" >
  3622. </productMenu>
  3623. <productMenu id="userGuide"
  3624. type="1"
  3625. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_app_3S_PLUS_1.0.1_en_210521.pdf"
  3626. size="1.02MB" >
  3627. </productMenu>
  3628. <productID id="6335"
  3629. />
  3630. <productGroupable type="0"
  3631. />
  3632. </product>
  3633. <product id="33i"
  3634. name="33i"
  3635. series="50"
  3636. latestVersion="4.0"
  3637. show = "0" >
  3638. <productMenu id="protocol"
  3639. type="2" >
  3640. </productMenu>
  3641. <productMenu id="alexa"
  3642. type="0" >
  3643. </productMenu>
  3644. <productMenu id="ota"
  3645. type="0" >
  3646. </productMenu>
  3647. <productMenu id="wa"
  3648. type="0" >
  3649. </productMenu>
  3650. <productMenu id="sip"
  3651. type="1" >
  3652. </productMenu>
  3653. <productMenu id="meshIntercom"
  3654. type="20" >
  3655. </productMenu>
  3656. <productMenu id="bluetoothIntercom"
  3657. type="1" >
  3658. </productMenu>
  3659. <productMenu id="phone"
  3660. type="1" >
  3661. </productMenu>
  3662. <productMenu id="music"
  3663. type="1" >
  3664. </productMenu>
  3665. <productMenu id="fmradio"
  3666. type="1" >
  3667. </productMenu>
  3668. <productMenu id="deviceSetting"
  3669. type="1"
  3670. url="https://api.sena.com/support/SenaNeoApp/33i/NS_33iV2.xml" >
  3671. </productMenu>
  3672. <productMenu id="quickGuide"
  3673. type="1"
  3674. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_30k_2.1.0_en_210414.pdf"
  3675. size="934KB" >
  3676. </productMenu>
  3677. <productMenu id="userGuide"
  3678. type="1"
  3679. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_30K_3.1.0_en_210526.pdf"
  3680. size="1.14MB" >
  3681. </productMenu>
  3682. <productMenu id="volume"
  3683. type="11" >
  3684. </productMenu>
  3685. <productMenu id="battery"
  3686. type="1" >
  3687. </productMenu>
  3688. <productID id="3215"
  3689. />
  3690. <productGroupable type="0"
  3691. />
  3692. </product>
  3693. <product id="HD50S"
  3694. name="Boom! Audio 30K"
  3695. series="30"
  3696. latestVersion="3.3"
  3697. show = "0" >
  3698. <productMenu id="protocol"
  3699. type="1"
  3700. url="0">
  3701. </productMenu>
  3702. <productMenu id="wa"
  3703. type="0" >
  3704. </productMenu>
  3705. <productMenu id="sip"
  3706. type="1" >
  3707. </productMenu>
  3708. <productMenu id="meshIntercom"
  3709. type="20" >
  3710. <productMenuType version="2.9.9"
  3711. type="10"
  3712. />
  3713. </productMenu>
  3714. <productMenu id="bluetoothIntercom"
  3715. type="1" >
  3716. </productMenu>
  3717. <productMenu id="phone"
  3718. type="1" >
  3719. </productMenu>
  3720. <productMenu id="music"
  3721. type="1" >
  3722. </productMenu>
  3723. <productMenu id="fmradio"
  3724. type="1" >
  3725. </productMenu>
  3726. <productMenu id="deviceSetting"
  3727. type="1"
  3728. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  3729. <productMenuURL version="3.2"
  3730. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  3731. />
  3732. <productMenuURL version="3.0"
  3733. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  3734. />
  3735. <productMenuURL version="2.2"
  3736. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  3737. />
  3738. </productMenu>
  3739. <productMenu id="quickGuide"
  3740. type="1"
  3741. url="http://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  3742. size="1.06MB" >
  3743. </productMenu>
  3744. <productMenu id="userGuide"
  3745. type="1"
  3746. url="http://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  3747. size="3.15MB" >
  3748. </productMenu>
  3749. <productMenu id="volume"
  3750. type="1" >
  3751. </productMenu>
  3752. <productID id="3112"
  3753. />
  3754. <productGroupable type="0"
  3755. />
  3756. </product>
  3757. <product id="HD50S"
  3758. name="Boom! Audio N02"
  3759. series="30"
  3760. latestVersion="3.0"
  3761. show = "0" >
  3762. <productMenu id="protocol"
  3763. type="1"
  3764. url="0">
  3765. </productMenu>
  3766. <productMenu id="wa"
  3767. type="0" >
  3768. </productMenu>
  3769. <productMenu id="sip"
  3770. type="1" >
  3771. </productMenu>
  3772. <productMenu id="meshIntercom"
  3773. type="20" >
  3774. <productMenuType version="2.9.9"
  3775. type="10"
  3776. />
  3777. </productMenu>
  3778. <productMenu id="bluetoothIntercom"
  3779. type="1" >
  3780. </productMenu>
  3781. <productMenu id="phone"
  3782. type="1" >
  3783. </productMenu>
  3784. <productMenu id="music"
  3785. type="1" >
  3786. </productMenu>
  3787. <productMenu id="fmradio"
  3788. type="1" >
  3789. </productMenu>
  3790. <productMenu id="deviceSetting"
  3791. type="1"
  3792. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  3793. <productMenuURL version="2.2"
  3794. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  3795. />
  3796. </productMenu>
  3797. <productMenu id="quickGuide"
  3798. type="1"
  3799. url="http://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  3800. size="1.06MB" >
  3801. </productMenu>
  3802. <productMenu id="userGuide"
  3803. type="1"
  3804. url="http://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  3805. size="3.15MB" >
  3806. </productMenu>
  3807. <productMenu id="volume"
  3808. type="2" >
  3809. </productMenu>
  3810. <productID id="3114"
  3811. />
  3812. <productGroupable type="0"
  3813. />
  3814. </product>
  3815. <product id="HD50S"
  3816. name="Boom Audio 20S"
  3817. series="50"
  3818. latestVersion="2.5.1"
  3819. show = "0" >
  3820. <productMenu id="protocol"
  3821. type="0">
  3822. </productMenu>
  3823. <productMenu id="sip"
  3824. type="1" >
  3825. <productMenuType version="1.0"
  3826. type="0"
  3827. />
  3828. </productMenu>
  3829. <productMenu id="bluetoothIntercom"
  3830. type="1" >
  3831. <productMenuType version="1.0"
  3832. type="0"
  3833. />
  3834. </productMenu>
  3835. <productMenu id="intercomSetting"
  3836. type="1" >
  3837. </productMenu>
  3838. <productMenu id="phone"
  3839. type="2" >
  3840. </productMenu>
  3841. <productMenu id="fmradio"
  3842. type="3" >
  3843. </productMenu>
  3844. <productMenu id="deviceSetting"
  3845. type="1"
  3846. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  3847. <productMenuURL version="2.4"
  3848. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  3849. />
  3850. <productMenuURL version="1.5"
  3851. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  3852. />
  3853. <productMenuURL version="1.4.1"
  3854. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  3855. />
  3856. <productMenuURL version="1.1"
  3857. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  3858. />
  3859. <productMenuURL version="1.0"
  3860. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  3861. />
  3862. </productMenu>
  3863. <productMenu id="quickGuide"
  3864. type="1"
  3865. url="http://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  3866. size="264KB" >
  3867. </productMenu>
  3868. <productMenu id="userGuide"
  3869. type="1"
  3870. url="http://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  3871. size="3.09MB" >
  3872. </productMenu>
  3873. <productID id="4210"
  3874. />
  3875. <productProductKey key="11"
  3876. />
  3877. <productID id="4230"
  3878. />
  3879. <productProductKey key="11"
  3880. />
  3881. <productGroupable type="1"
  3882. />
  3883. </product>
  3884. <product id="HD50S"
  3885. name="Boom Audio 20S EVO"
  3886. series="50"
  3887. latestVersion="2.5.1"
  3888. show = "0" >
  3889. <productMenu id="protocol"
  3890. type="0">
  3891. </productMenu>
  3892. <productMenu id="sip"
  3893. type="1" >
  3894. <productMenuType version="1.0"
  3895. type="0"
  3896. />
  3897. </productMenu>
  3898. <productMenu id="bluetoothIntercom"
  3899. type="1" >
  3900. <productMenuType version="1.0"
  3901. type="0"
  3902. />
  3903. </productMenu>
  3904. <productMenu id="intercomSetting"
  3905. type="1" >
  3906. </productMenu>
  3907. <productMenu id="phone"
  3908. type="2" >
  3909. </productMenu>
  3910. <productMenu id="fmradio"
  3911. type="3" >
  3912. </productMenu>
  3913. <productMenu id="deviceSetting"
  3914. type="1"
  3915. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  3916. <productMenuURL version="2.4"
  3917. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  3918. />
  3919. <productMenuURL version="1.5"
  3920. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  3921. />
  3922. <productMenuURL version="1.4.1"
  3923. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  3924. />
  3925. <productMenuURL version="1.1"
  3926. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  3927. />
  3928. <productMenuURL version="1.0"
  3929. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  3930. />
  3931. </productMenu>
  3932. <productMenu id="quickGuide"
  3933. type="1"
  3934. url="http://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  3935. size="321KB" >
  3936. </productMenu>
  3937. <productMenu id="userGuide"
  3938. type="1"
  3939. url="http://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  3940. size="2.46MB" >
  3941. </productMenu>
  3942. <productID id="4230"
  3943. />
  3944. <productProductKey key="27"
  3945. />
  3946. <productGroupable type="1"
  3947. />
  3948. </product>
  3949. <product id="HD50S"
  3950. name="Boom! Audio 10S"
  3951. series="50"
  3952. latestVersion="1.1.2"
  3953. show = "0" >
  3954. <productMenu id="protocol"
  3955. type="0">
  3956. </productMenu>
  3957. <productMenu id="sip"
  3958. type="1" >
  3959. </productMenu>
  3960. <productMenu id="bluetoothIntercom"
  3961. type="1" >
  3962. </productMenu>
  3963. <productMenu id="phone"
  3964. type="2" >
  3965. </productMenu>
  3966. <productMenu id="fmradio"
  3967. type="3" >
  3968. </productMenu>
  3969. <productMenu id="deviceSetting"
  3970. type="1"
  3971. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  3972. </productMenu>
  3973. <productMenu id="quickGuide"
  3974. type="1"
  3975. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  3976. size="538KB" >
  3977. </productMenu>
  3978. <productMenu id="userGuide"
  3979. type="1"
  3980. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  3981. size="1.55MB" >
  3982. </productMenu>
  3983. <productID id="5532"
  3984. />
  3985. <productGroupable type="0"
  3986. />
  3987. </product>
  3988. <product id="HD50S"
  3989. name="Boom! Audio N01 10R"
  3990. series="50"
  3991. latestVersion="1.1.2"
  3992. show = "0" >
  3993. <productMenu id="protocol"
  3994. type="0">
  3995. </productMenu>
  3996. <productMenu id="sip"
  3997. type="1" >
  3998. </productMenu>
  3999. <productMenu id="bluetoothIntercom"
  4000. type="1" >
  4001. </productMenu>
  4002. <productMenu id="phone"
  4003. type="2" >
  4004. </productMenu>
  4005. <productMenu id="fmradio"
  4006. type="3" >
  4007. </productMenu>
  4008. <productMenu id="deviceSetting"
  4009. type="1"
  4010. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  4011. </productMenu>
  4012. <productMenu id="quickGuide"
  4013. type="1"
  4014. url="http://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  4015. size="766KB" >
  4016. </productMenu>
  4017. <productMenu id="userGuide"
  4018. type="1"
  4019. url="http://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  4020. size="1.45MB" >
  4021. </productMenu>
  4022. <productID id="5522"
  4023. />
  4024. <productGroupable type="0"
  4025. />
  4026. </product>
  4027. <product id="HD50S"
  4028. name="OUTRUSH-R N03"
  4029. series="50"
  4030. latestVersion="1.2"
  4031. show = "0" >
  4032. <productMenu id="protocol"
  4033. type="0">
  4034. </productMenu>
  4035. <productMenu id="sip"
  4036. type="1" >
  4037. </productMenu>
  4038. <productMenu id="bluetoothIntercom"
  4039. type="1" >
  4040. </productMenu>
  4041. <productMenu id="phone"
  4042. type="2" >
  4043. </productMenu>
  4044. <productMenu id="fmradio"
  4045. type="3" >
  4046. </productMenu>
  4047. <productMenu id="deviceSetting"
  4048. type="1"
  4049. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  4050. </productMenu>
  4051. <productMenu id="userGuide"
  4052. type="1"
  4053. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  4054. size="660KB" >
  4055. </productMenu>
  4056. <productID id="5434"
  4057. />
  4058. <productGroupable type="0"
  4059. />
  4060. </product>
  4061. <product id="5R"
  4062. name="5R"
  4063. series="5"
  4064. latestVersion="1.0"
  4065. show = "1" >
  4066. <productMenu id="protocol"
  4067. type="3" >
  4068. </productMenu>
  4069. <productMenu id="sip"
  4070. type="1" >
  4071. </productMenu>
  4072. <productMenu id="bluetoothIntercom"
  4073. type="1" >
  4074. </productMenu>
  4075. <productMenu id="phone"
  4076. type="1" >
  4077. </productMenu>
  4078. <productMenu id="fmradio"
  4079. type="1" >
  4080. </productMenu>
  4081. <productMenu id="deviceSetting"
  4082. type="1"
  4083. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  4084. </productMenu>
  4085. <productMenu id="quickGuide"
  4086. type="1"
  4087. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  4088. size="934KB" >
  4089. </productMenu>
  4090. <productMenu id="userGuide"
  4091. type="1"
  4092. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.1_en_221201.pdf"
  4093. size="1.14MB" >
  4094. </productMenu>
  4095. <productID id="5591"
  4096. />
  4097. <productGroupable type="0"
  4098. />
  4099. </product>
  4100. <product id="5R"
  4101. name="5R LITE"
  4102. series="5"
  4103. latestVersion="1.0"
  4104. show = "1" >
  4105. <productMenu id="protocol"
  4106. type="3" >
  4107. </productMenu>
  4108. <productMenu id="sip"
  4109. type="1" >
  4110. </productMenu>
  4111. <productMenu id="bluetoothIntercom"
  4112. type="1" >
  4113. </productMenu>
  4114. <productMenu id="phone"
  4115. type="1" >
  4116. </productMenu>
  4117. <productMenu id="fmradio"
  4118. type="1" >
  4119. </productMenu>
  4120. <productMenu id="deviceSetting"
  4121. type="1"
  4122. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE.xml" >
  4123. </productMenu>
  4124. <productMenu id="quickGuide"
  4125. type="1"
  4126. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_LITE_1.0.0_en_220511.pdf"
  4127. size="934KB" >
  4128. </productMenu>
  4129. <productMenu id="userGuide"
  4130. type="1"
  4131. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_LITE_1.0.1_en_221201.pdf"
  4132. size="1.14MB" >
  4133. </productMenu>
  4134. <productID id="5592"
  4135. />
  4136. <productGroupable type="0"
  4137. />
  4138. </product>
  4139. <product id="5R"
  4140. name="Ridekont 5R"
  4141. series="5"
  4142. latestVersion="1.0"
  4143. show = "0" >
  4144. <productMenu id="protocol"
  4145. type="3" >
  4146. </productMenu>
  4147. <productMenu id="sip"
  4148. type="1" >
  4149. </productMenu>
  4150. <productMenu id="bluetoothIntercom"
  4151. type="1" >
  4152. </productMenu>
  4153. <productMenu id="phone"
  4154. type="1" >
  4155. </productMenu>
  4156. <productMenu id="fmradio"
  4157. type="1" >
  4158. </productMenu>
  4159. <productMenu id="deviceSetting"
  4160. type="1"
  4161. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  4162. </productMenu>
  4163. <productMenu id="quickGuide"
  4164. type="1"
  4165. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  4166. size="934KB" >
  4167. </productMenu>
  4168. <productMenu id="userGuide"
  4169. type="1"
  4170. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.1_en_221201.pdf"
  4171. size="1.14MB" >
  4172. </productMenu>
  4173. <productID id="5593"
  4174. />
  4175. <productGroupable type="0"
  4176. />
  4177. </product>
  4178. <product id="5R"
  4179. name="Ridekont 5R LITE"
  4180. series="5"
  4181. latestVersion="1.0"
  4182. show = "0" >
  4183. <productMenu id="protocol"
  4184. type="3" >
  4185. </productMenu>
  4186. <productMenu id="sip"
  4187. type="1" >
  4188. </productMenu>
  4189. <productMenu id="bluetoothIntercom"
  4190. type="1" >
  4191. </productMenu>
  4192. <productMenu id="phone"
  4193. type="1" >
  4194. </productMenu>
  4195. <productMenu id="fmradio"
  4196. type="1" >
  4197. </productMenu>
  4198. <productMenu id="deviceSetting"
  4199. type="1"
  4200. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE.xml" >
  4201. </productMenu>
  4202. <productMenu id="quickGuide"
  4203. type="1"
  4204. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_LITE_1.0.0_en_220511.pdf"
  4205. size="934KB" >
  4206. </productMenu>
  4207. <productMenu id="userGuide"
  4208. type="1"
  4209. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_LITE_1.0.1_en_221201.pdf"
  4210. size="1.14MB" >
  4211. </productMenu>
  4212. <productID id="5594"
  4213. />
  4214. <productGroupable type="0"
  4215. />
  4216. </product>
  4217. <product id="C10"
  4218. name="C10"
  4219. series="5"
  4220. latestVersion="1.0"
  4221. show = "0" >
  4222. <productMenu id="protocol"
  4223. type="3" >
  4224. </productMenu>
  4225. <productMenu id="sip"
  4226. type="1" >
  4227. </productMenu>
  4228. <productMenu id="bluetoothIntercom"
  4229. type="1" >
  4230. </productMenu>
  4231. <productMenu id="phone"
  4232. type="1" >
  4233. </productMenu>
  4234. <productMenu id="fmradio"
  4235. type="1" >
  4236. </productMenu>
  4237. <productMenu id="deviceSetting"
  4238. type="1"
  4239. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  4240. </productMenu>
  4241. <productMenu id="quickGuide"
  4242. type="1"
  4243. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  4244. size="934KB" >
  4245. </productMenu>
  4246. <productMenu id="userGuide"
  4247. type="1"
  4248. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.1_en_221201.pdf"
  4249. size="1.14MB" >
  4250. </productMenu>
  4251. <productID id="5595"
  4252. />
  4253. <productGroupable type="0"
  4254. />
  4255. </product>
  4256. <product id="3SPLUS"
  4257. name="3S PLUS"
  4258. series="30"
  4259. latestVersion="2.0"
  4260. show = "0" >
  4261. <productMenu id="protocol"
  4262. type="3" >
  4263. </productMenu>
  4264. <productMenu id="sip"
  4265. type="1" >
  4266. </productMenu>
  4267. <productMenu id="bluetoothIntercom"
  4268. type="1" >
  4269. </productMenu>
  4270. <productMenu id="deviceSetting"
  4271. type="1"
  4272. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  4273. </productMenu>
  4274. <productMenu id="userGuide"
  4275. type="1"
  4276. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_app_3S_PLUS_1.0.1_en_210521.pdf"
  4277. size="1.14MB" >
  4278. </productMenu>
  4279. <productID id="4023"
  4280. />
  4281. <productGroupable type="0"
  4282. />
  4283. </product>
  4284. <product id="ACSRAM"
  4285. name="ACS-RAM"
  4286. series="ACS"
  4287. latestVersion="1.0.1"
  4288. show = "1" >
  4289. <productMenu id="protocol"
  4290. type="3" >
  4291. </productMenu>
  4292. <productMenu id="sip"
  4293. type="1" >
  4294. </productMenu>
  4295. <productMenu id="bluetoothIntercom"
  4296. type="1" >
  4297. </productMenu>
  4298. <productMenu id="deviceSetting"
  4299. type="1"
  4300. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  4301. </productMenu>
  4302. <productMenu id="quickGuide"
  4303. type="1"
  4304. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  4305. size="344KB" >
  4306. </productMenu>
  4307. <productMenu id="userGuide"
  4308. type="1"
  4309. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  4310. size="1.14MB" >
  4311. </productMenu>
  4312. <productID id="3400"
  4313. />
  4314. <productGroupable type="0"
  4315. />
  4316. </product>
  4317. <product id="ACS10"
  4318. name="ACS10"
  4319. series="ACS"
  4320. latestVersion="1.0.1"
  4321. show = "1" >
  4322. <productMenu id="protocol"
  4323. type="0">
  4324. </productMenu>
  4325. <productMenu id="sip"
  4326. type="1" >
  4327. </productMenu>
  4328. <productMenu id="bluetoothIntercom"
  4329. type="1" >
  4330. </productMenu>
  4331. <productMenu id="phone"
  4332. type="2" >
  4333. </productMenu>
  4334. <productMenu id="deviceSetting"
  4335. type="1"
  4336. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  4337. </productMenu>
  4338. <productMenu id="quickGuide"
  4339. type="1"
  4340. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  4341. size="970KB" >
  4342. </productMenu>
  4343. <productMenu id="userGuide"
  4344. type="1"
  4345. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  4346. size="1.26MB" >
  4347. </productMenu>
  4348. <productID id="3300"
  4349. />
  4350. <productGroupable type="0"
  4351. />
  4352. </product>
  4353. <product id="Rumba"
  4354. name="Rumba"
  4355. series="30"
  4356. latestVersion="2.0"
  4357. show = "0" >
  4358. <productMenu id="protocol"
  4359. type="3" >
  4360. </productMenu>
  4361. <productMenu id="sip"
  4362. type="1" >
  4363. </productMenu>
  4364. <productMenu id="bluetoothIntercom"
  4365. type="1" >
  4366. </productMenu>
  4367. <productMenu id="deviceSetting"
  4368. type="1"
  4369. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  4370. </productMenu>
  4371. <productMenu id="quickGuide"
  4372. type="1"
  4373. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  4374. size="344KB" >
  4375. </productMenu>
  4376. <productMenu id="userGuide"
  4377. type="1"
  4378. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  4379. size="1.14MB" >
  4380. </productMenu>
  4381. <productID id="6322"
  4382. />
  4383. <productGroupable type="0"
  4384. />
  4385. </product>
  4386. <product id="DWO_7_Pro_Mesh"
  4387. name="DWO 7 Pro Mesh"
  4388. series="50"
  4389. latestVersion="1.0"
  4390. show = "0" >
  4391. <productMenu id="protocol"
  4392. type="2" >
  4393. </productMenu>
  4394. <productMenu id="alexa"
  4395. type="0" >
  4396. </productMenu>
  4397. <productMenu id="ota"
  4398. type="0" >
  4399. </productMenu>
  4400. <productMenu id="wa"
  4401. type="0" >
  4402. </productMenu>
  4403. <productMenu id="meshIntercom"
  4404. type="20" >
  4405. </productMenu>
  4406. <productMenu id="phone"
  4407. type="1" >
  4408. </productMenu>
  4409. <productMenu id="music"
  4410. type="1" >
  4411. </productMenu>
  4412. <productMenu id="fmradio"
  4413. type="1" >
  4414. </productMenu>
  4415. <productMenu id="musicSharing"
  4416. type="0" >
  4417. </productMenu>
  4418. <productMenu id="deviceSetting"
  4419. type="1"
  4420. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml" >
  4421. </productMenu>
  4422. <productMenu id="quickGuide"
  4423. type="1"
  4424. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_SPIDER_RT1_2.0.0_en_220613.pdf"
  4425. size="1.12MB" >
  4426. </productMenu>
  4427. <productMenu id="userGuide"
  4428. type="1"
  4429. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_SPIDER_RT1_2.0.0_en_220615.pdf"
  4430. size="2.0MB" >
  4431. </productMenu>
  4432. <productMenu id="volume"
  4433. type="12" >
  4434. </productMenu>
  4435. <productMenu id="battery"
  4436. type="1" >
  4437. </productMenu>
  4438. <productID id="6806"
  4439. />
  4440. <productGroupable type="0"
  4441. />
  4442. </product>
  4443. <product id="50B"
  4444. name="SMART HJC 50B"
  4445. series="50"
  4446. latestVersion="1.0"
  4447. show = "0" >
  4448. <productMenu id="protocol"
  4449. type="2" >
  4450. </productMenu>
  4451. <productMenu id="alexa"
  4452. type="0" >
  4453. </productMenu>
  4454. <productMenu id="ota"
  4455. type="0" >
  4456. </productMenu>
  4457. <productMenu id="wa"
  4458. type="0" >
  4459. </productMenu>
  4460. <productMenu id="sip"
  4461. type="1" >
  4462. </productMenu>
  4463. <productMenu id="meshIntercom"
  4464. type="20" >
  4465. </productMenu>
  4466. <productMenu id="bluetoothIntercom"
  4467. type="1" >
  4468. </productMenu>
  4469. <productMenu id="phone"
  4470. type="1" >
  4471. </productMenu>
  4472. <productMenu id="music"
  4473. type="1" >
  4474. </productMenu>
  4475. <productMenu id="fmradio"
  4476. type="1" >
  4477. </productMenu>
  4478. <productMenu id="deviceSetting"
  4479. type="1"
  4480. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml" >
  4481. </productMenu>
  4482. <productMenu id="quickGuide"
  4483. type="1"
  4484. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50R_03.pdf"
  4485. size="344KB" >
  4486. </productMenu>
  4487. <productMenu id="userGuide"
  4488. type="1"
  4489. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50R_1.2.0_en_200910.pdf"
  4490. size="3.41MB" >
  4491. </productMenu>
  4492. <productMenu id="volume"
  4493. type="11" >
  4494. </productMenu>
  4495. <productMenu id="battery"
  4496. type="1" >
  4497. </productMenu>
  4498. <productID id="3214"
  4499. />
  4500. <productGroupable type="0"
  4501. />
  4502. </product>
  4503. <product id="MeshStation"
  4504. name="Mesh Station"
  4505. series="50"
  4506. latestVersion="0.9"
  4507. show = "0" >
  4508. <productMenu id="protocol"
  4509. type="2" >
  4510. </productMenu>
  4511. <productMenu id="meshIntercom"
  4512. type="20"
  4513. url="99" >
  4514. </productMenu>
  4515. <productID id="3161"
  4516. />
  4517. <productGroupable type="0"
  4518. />
  4519. </product>
  4520. <!--
  4521. <product id="20S"
  4522. name="20S"
  4523. series="20"
  4524. latestVersion="2.1"
  4525. show = "1" >
  4526. <productMenu id="protocol"
  4527. type="0">
  4528. </productMenu>
  4529. <productMenu id="wa"
  4530. type="1" >
  4531. </productMenu>
  4532. <productMenu id="sip"
  4533. type="1" >
  4534. </productMenu>
  4535. <productMenu id="bluetoothIntercom"
  4536. type="1" >
  4537. </productMenu>
  4538. <productMenu id="intercomSetting"
  4539. type="1" >
  4540. </productMenu>
  4541. <productMenu id="phone"
  4542. type="2" >
  4543. </productMenu>
  4544. <productMenu id="fmradio"
  4545. type="3" >
  4546. </productMenu>
  4547. <productMenu id="deviceSetting"
  4548. type="1"
  4549. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  4550. <productMenuURL version="2.0.2"
  4551. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  4552. />
  4553. <productMenuURL version="1.5"
  4554. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  4555. />
  4556. <productMenuURL version="1.4.1"
  4557. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  4558. />
  4559. <productMenuURL version="1.1"
  4560. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  4561. />
  4562. <productMenuURL version="1.0"
  4563. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  4564. />
  4565. </productMenu>
  4566. <productMenu id="quickGuide"
  4567. type="1"
  4568. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_20S_EVO_en_1.1.0_210413.pdf"
  4569. size="1.13MB" >
  4570. </productMenu>
  4571. <productMenu id="userGuide"
  4572. type="1"
  4573. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_20S_EVO_1.1.0_en_210527.pdf"
  4574. size="2.03MB" >
  4575. </productMenu>
  4576. <productID id="4210"
  4577. />
  4578. <productGroupable type="1"
  4579. />
  4580. </product>
  4581. <product id="20S_EVO"
  4582. name="20S EVO"
  4583. series="20"
  4584. latestVersion="2.1"
  4585. show = "1" >
  4586. <productMenu id="protocol"
  4587. type="0" >
  4588. </productMenu>
  4589. <productMenu id="wa"
  4590. type="1" >
  4591. </productMenu>
  4592. <productMenu id="sip"
  4593. type="1" >
  4594. </productMenu>
  4595. <productMenu id="bluetoothIntercom"
  4596. type="1" >
  4597. </productMenu>
  4598. <productMenu id="intercomSetting"
  4599. type="1" >
  4600. </productMenu>
  4601. <productMenu id="phone"
  4602. type="2" >
  4603. </productMenu>
  4604. <productMenu id="fmradio"
  4605. type="3" >
  4606. </productMenu>
  4607. <productMenu id="deviceSetting"
  4608. type="1"
  4609. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  4610. <productMenuURL version="2.0.2"
  4611. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  4612. />
  4613. <productMenuURL version="1.5"
  4614. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  4615. />
  4616. <productMenuURL version="1.4.1"
  4617. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  4618. />
  4619. <productMenuURL version="1.1"
  4620. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  4621. />
  4622. <productMenuURL version="1.0"
  4623. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  4624. />
  4625. </productMenu>
  4626. <productMenu id="quickGuide"
  4627. type="1"
  4628. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_20S_EVO_en_1.1.0_210413.pdf"
  4629. size="1.13MB" >
  4630. </productMenu>
  4631. <productMenu id="userGuide"
  4632. type="1"
  4633. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_20S_EVO_1.1.0_en_210527.pdf"
  4634. size="2.03MB" >
  4635. </productMenu>
  4636. <productID id="4210"
  4637. />
  4638. <productProductKey key="16"
  4639. />
  4640. <productGroupable type="1"
  4641. />
  4642. </product>
  4643. <product id="10C_Pro"
  4644. name="10C Pro"
  4645. series="10"
  4646. latestVersion="2.6"
  4647. show = "1" >
  4648. <productMenu id="protocol"
  4649. type="0">
  4650. </productMenu>
  4651. <productMenu id="sip"
  4652. type="1" >
  4653. </productMenu>
  4654. <productMenu id="bluetoothIntercom"
  4655. type="1" >
  4656. </productMenu>
  4657. <productMenu id="phone"
  4658. type="2" >
  4659. </productMenu>
  4660. <productMenu id="fmradio"
  4661. type="3" >
  4662. </productMenu>
  4663. <productMenu id="deviceSetting"
  4664. type="1"
  4665. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  4666. <productMenuURL version="2.5.1"
  4667. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  4668. />
  4669. <productMenuURL version="1.0"
  4670. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  4671. />
  4672. </productMenu>
  4673. <productMenu id="quickGuide"
  4674. type="1"
  4675. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  4676. size="651KB" >
  4677. </productMenu>
  4678. <productMenu id="userGuide"
  4679. type="1"
  4680. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  4681. size="2.34MB" >
  4682. </productMenu>
  4683. <productID id="5580"
  4684. />
  4685. <productGroupable type="0"
  4686. />
  4687. </product>
  4688. <product id="10C_EVO"
  4689. name="10C EVO"
  4690. series="10"
  4691. latestVersion="1.5.1"
  4692. show = "1" >
  4693. <productMenu id="protocol"
  4694. type="0">
  4695. </productMenu>
  4696. <productMenu id="sip"
  4697. type="1" >
  4698. </productMenu>
  4699. <productMenu id="bluetoothIntercom"
  4700. type="1" >
  4701. </productMenu>
  4702. <productMenu id="phone"
  4703. type="2" >
  4704. </productMenu>
  4705. <productMenu id="fmradio"
  4706. type="3" >
  4707. </productMenu>
  4708. <productMenu id="deviceSetting"
  4709. type="1"
  4710. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  4711. <productMenuURL version="1.3.1"
  4712. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  4713. />
  4714. </productMenu>
  4715. <productMenu id="quickGuide"
  4716. type="1"
  4717. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_EVO_02.pdf"
  4718. size="1.32MB" >
  4719. </productMenu>
  4720. <productMenu id="userGuide"
  4721. type="1"
  4722. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_EVO_v1.0_04.pdf"
  4723. size="1.68MB" >
  4724. </productMenu>
  4725. <productID id="5570"
  4726. />
  4727. <productGroupable type="0"
  4728. />
  4729. </product>
  4730. <product id="10U_GT_AIR"
  4731. name="10U GT-Air"
  4732. series="10"
  4733. latestVersion="2.0.3"
  4734. show = "1" >
  4735. <productMenu id="protocol"
  4736. type="0">
  4737. </productMenu>
  4738. <productMenu id="sip"
  4739. type="1" >
  4740. <productMenuType version="1.0.2"
  4741. type="0"
  4742. />
  4743. </productMenu>
  4744. <productMenu id="bluetoothIntercom"
  4745. type="1" >
  4746. <productMenuType version="1.0.2"
  4747. type="0"
  4748. />
  4749. </productMenu>
  4750. <productMenu id="phone"
  4751. type="2" >
  4752. </productMenu>
  4753. <productMenu id="fmradio"
  4754. type="3" >
  4755. </productMenu>
  4756. <productMenu id="deviceSetting"
  4757. type="1"
  4758. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4759. <productMenuURL version="1.3.2"
  4760. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4761. />
  4762. <productMenuURL version="1.0.2"
  4763. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4764. />
  4765. </productMenu>
  4766. <productMenu id="quickGuide"
  4767. type="1"
  4768. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  4769. size="685KB" >
  4770. </productMenu>
  4771. <productMenu id="userGuide"
  4772. type="1"
  4773. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_10U(RC4)_2.1.0_en_201203.pdf"
  4774. size="684KB" >
  4775. </productMenu>
  4776. <productID id="5610"
  4777. />
  4778. <productGroupable type="0"
  4779. />
  4780. </product>
  4781. <product id="10U_NEOTEC"
  4782. name="10U Neotec"
  4783. series="10"
  4784. latestVersion="2.0.3"
  4785. show = "1" >
  4786. <productMenu id="protocol"
  4787. type="0">
  4788. </productMenu>
  4789. <productMenu id="sip"
  4790. type="1" >
  4791. <productMenuType version="1.0.2"
  4792. type="0"
  4793. />
  4794. </productMenu>
  4795. <productMenu id="bluetoothIntercom"
  4796. type="1" >
  4797. <productMenuType version="1.0.2"
  4798. type="0"
  4799. />
  4800. </productMenu>
  4801. <productMenu id="phone"
  4802. type="2" >
  4803. </productMenu>
  4804. <productMenu id="fmradio"
  4805. type="3" >
  4806. </productMenu>
  4807. <productMenu id="deviceSetting"
  4808. type="1"
  4809. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4810. <productMenuURL version="1.3.2"
  4811. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4812. />
  4813. <productMenuURL version="1.0.2"
  4814. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4815. />
  4816. </productMenu>
  4817. <productMenu id="quickGuide"
  4818. type="1"
  4819. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  4820. size="689KB" >
  4821. </productMenu>
  4822. <productMenu id="userGuide"
  4823. type="1"
  4824. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_10U(RC4)_2.1.0_en_201203.pdf"
  4825. size="684KB" >
  4826. </productMenu>
  4827. <productID id="5611"
  4828. />
  4829. <productGroupable type="0"
  4830. />
  4831. </product>
  4832. <product id="10U_J_CRUISE"
  4833. name="10U J-Cruise"
  4834. series="10"
  4835. latestVersion="2.0.3"
  4836. show = "1" >
  4837. <productMenu id="protocol"
  4838. type="0">
  4839. </productMenu>
  4840. <productMenu id="sip"
  4841. type="1" >
  4842. <productMenuType version="1.0.2"
  4843. type="0"
  4844. />
  4845. </productMenu>
  4846. <productMenu id="bluetoothIntercom"
  4847. type="1" >
  4848. <productMenuType version="1.0.2"
  4849. type="0"
  4850. />
  4851. </productMenu>
  4852. <productMenu id="phone"
  4853. type="2" >
  4854. </productMenu>
  4855. <productMenu id="fmradio"
  4856. type="3" >
  4857. </productMenu>
  4858. <productMenu id="deviceSetting"
  4859. type="1"
  4860. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4861. <productMenuURL version="1.3.2"
  4862. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4863. />
  4864. <productMenuURL version="1.0.2"
  4865. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4866. />
  4867. </productMenu>
  4868. <productMenu id="quickGuide"
  4869. type="1"
  4870. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  4871. size="686KB" >
  4872. </productMenu>
  4873. <productMenu id="userGuide"
  4874. type="1"
  4875. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_10U(RC4)_2.1.0_en_201203.pdf"
  4876. size="684KB" >
  4877. </productMenu>
  4878. <productID id="5612"
  4879. />
  4880. <productGroupable type="0"
  4881. />
  4882. </product>
  4883. <product id="10U_C3"
  4884. name="10U C3/C3Pro"
  4885. series="10"
  4886. latestVersion="2.0.3"
  4887. show = "1" >
  4888. <productMenu id="protocol"
  4889. type="0">
  4890. </productMenu>
  4891. <productMenu id="sip"
  4892. type="1" >
  4893. <productMenuType version="1.0.2"
  4894. type="0"
  4895. />
  4896. </productMenu>
  4897. <productMenu id="bluetoothIntercom"
  4898. type="1" >
  4899. <productMenuType version="1.0.2"
  4900. type="0"
  4901. />
  4902. </productMenu>
  4903. <productMenu id="phone"
  4904. type="2" >
  4905. </productMenu>
  4906. <productMenu id="fmradio"
  4907. type="3" >
  4908. </productMenu>
  4909. <productMenu id="deviceSetting"
  4910. type="1"
  4911. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4912. <productMenuURL version="1.3.2"
  4913. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4914. />
  4915. <productMenuURL version="1.0.2"
  4916. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4917. />
  4918. </productMenu>
  4919. <productMenu id="quickGuide"
  4920. type="1"
  4921. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  4922. size="199KB" >
  4923. </productMenu>
  4924. <productMenu id="userGuide"
  4925. type="1"
  4926. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_10U(RC4)_2.1.0_en_201203.pdf"
  4927. size="684KB" >
  4928. </productMenu>
  4929. <productID id="5620"
  4930. />
  4931. <productGroupable type="0"
  4932. />
  4933. </product>
  4934. <product id="10U_ARAI"
  4935. name="10U Arai"
  4936. series="10"
  4937. latestVersion="2.0.3"
  4938. show = "1" >
  4939. <productMenu id="protocol"
  4940. type="0">
  4941. </productMenu>
  4942. <productMenu id="sip"
  4943. type="1" >
  4944. <productMenuType version="1.0.2"
  4945. type="0"
  4946. />
  4947. </productMenu>
  4948. <productMenu id="bluetoothIntercom"
  4949. type="1" >
  4950. <productMenuType version="1.0.2"
  4951. type="0"
  4952. />
  4953. </productMenu>
  4954. <productMenu id="phone"
  4955. type="2" >
  4956. </productMenu>
  4957. <productMenu id="fmradio"
  4958. type="3" >
  4959. </productMenu>
  4960. <productMenu id="deviceSetting"
  4961. type="1"
  4962. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4963. <productMenuURL version="1.3.2"
  4964. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4965. />
  4966. <productMenuURL version="1.0.2"
  4967. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4968. />
  4969. </productMenu>
  4970. <productMenu id="quickGuide"
  4971. type="1"
  4972. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Arai_04.pdf"
  4973. size="689KB" >
  4974. </productMenu>
  4975. <productMenu id="userGuide"
  4976. type="1"
  4977. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_10U(RC4)_2.1.0_en_201203.pdf"
  4978. size="684KB" >
  4979. </productMenu>
  4980. <productID id="5621"
  4981. />
  4982. <productGroupable type="0"
  4983. />
  4984. </product>
  4985. <product id="10Upad"
  4986. name="10Upad"
  4987. series="10"
  4988. latestVersion="2.0.2"
  4989. show = "1" >
  4990. <productMenu id="protocol"
  4991. type="0">
  4992. </productMenu>
  4993. <productMenu id="sip"
  4994. type="1" >
  4995. </productMenu>
  4996. <productMenu id="bluetoothIntercom"
  4997. type="1" >
  4998. </productMenu>
  4999. <productMenu id="phone"
  5000. type="2" >
  5001. </productMenu>
  5002. <productMenu id="fmradio"
  5003. type="3" >
  5004. </productMenu>
  5005. <productMenu id="deviceSetting"
  5006. type="1"
  5007. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  5008. <productMenuURL version="1.0.3"
  5009. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  5010. />
  5011. </productMenu>
  5012. <productMenu id="quickGuide"
  5013. type="1"
  5014. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  5015. size="615KB" >
  5016. </productMenu>
  5017. <productMenu id="userGuide"
  5018. type="1"
  5019. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  5020. size="0.99MB" >
  5021. </productMenu>
  5022. <productID id="6210"
  5023. />
  5024. <productGroupable type="0"
  5025. />
  5026. </product>
  5027. <product id="10S"
  5028. name="10S"
  5029. series="10"
  5030. latestVersion="2.0.3"
  5031. show = "1" >
  5032. <productMenu id="protocol"
  5033. type="0">
  5034. </productMenu>
  5035. <productMenu id="sip"
  5036. type="1" >
  5037. </productMenu>
  5038. <productMenu id="bluetoothIntercom"
  5039. type="1" >
  5040. </productMenu>
  5041. <productMenu id="phone"
  5042. type="2" >
  5043. </productMenu>
  5044. <productMenu id="fmradio"
  5045. type="3" >
  5046. </productMenu>
  5047. <productMenu id="deviceSetting"
  5048. type="1"
  5049. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  5050. <productMenuURL version="1.5"
  5051. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  5052. />
  5053. <productMenuURL version="1.3.1"
  5054. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  5055. />
  5056. </productMenu>
  5057. <productMenu id="quickGuide"
  5058. type="1"
  5059. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10S_03.pdf"
  5060. size="310KB" >
  5061. </productMenu>
  5062. <productMenu id="userGuide"
  5063. type="1"
  5064. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10S_v2.0_01.pdf"
  5065. size="1.57MB" >
  5066. </productMenu>
  5067. <productID id="5530"
  5068. />
  5069. <productGroupable type="0"
  5070. />
  5071. </product>
  5072. <product id="10C"
  5073. name="10C"
  5074. series="10"
  5075. latestVersion="3.0.4"
  5076. show = "1" >
  5077. <productMenu id="protocol"
  5078. type="0">
  5079. </productMenu>
  5080. <productMenu id="sip"
  5081. type="1" >
  5082. <productMenuType version="1.0.4"
  5083. type="0"
  5084. />
  5085. </productMenu>
  5086. <productMenu id="bluetoothIntercom"
  5087. type="1" >
  5088. <productMenuType version="1.0.4"
  5089. type="0"
  5090. />
  5091. </productMenu>
  5092. <productMenu id="phone"
  5093. type="2" >
  5094. </productMenu>
  5095. <productMenu id="fmradio"
  5096. type="3" >
  5097. </productMenu>
  5098. <productMenu id="deviceSetting"
  5099. type="1"
  5100. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300.xml" >
  5101. <productMenuURL version="2.3"
  5102. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  5103. />
  5104. <productMenuURL version="2.1.1"
  5105. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  5106. />
  5107. <productMenuURL version="1.0.4"
  5108. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  5109. />
  5110. <productMenuURL version="1.0.2"
  5111. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  5112. />
  5113. </productMenu>
  5114. <productMenu id="quickGuide"
  5115. type="1"
  5116. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  5117. size="935KB" >
  5118. </productMenu>
  5119. <productMenu id="userGuide"
  5120. type="1"
  5121. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  5122. size="2.82MB" >
  5123. </productMenu>
  5124. <productID id="5510"
  5125. />
  5126. <productGroupable type="0"
  5127. />
  5128. </product>
  5129. <product id="5S"
  5130. name="5S"
  5131. series="10"
  5132. latestVersion="1.0.4"
  5133. show = "1" >
  5134. <productMenu id="protocol"
  5135. type="0">
  5136. </productMenu>
  5137. <productMenu id="sip"
  5138. type="1" >
  5139. </productMenu>
  5140. <productMenu id="bluetoothIntercom"
  5141. type="1" >
  5142. </productMenu>
  5143. <productMenu id="phone"
  5144. type="2" >
  5145. </productMenu>
  5146. <productMenu id="fmradio"
  5147. type="3" >
  5148. </productMenu>
  5149. <productMenu id="deviceSetting"
  5150. type="1"
  5151. url="https://api.sena.com/support/SenaNeoApp/5S/NS_5S.xml" >
  5152. </productMenu>
  5153. <productMenu id="quickGuide"
  5154. type="1"
  5155. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5S_1.0.0_en_200410.pdf"
  5156. size="970KB" >
  5157. </productMenu>
  5158. <productMenu id="userGuide"
  5159. type="1"
  5160. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5S_1.0.0_en_200330.pdf"
  5161. size="1.26MB" >
  5162. </productMenu>
  5163. <productID id="5534"
  5164. />
  5165. <productGroupable type="0"
  5166. />
  5167. </product>
  5168. <product id="3SPLUS"
  5169. name="3S PLUS"
  5170. series="10"
  5171. latestVersion="1.0.3"
  5172. show = "1" >
  5173. <productMenu id="protocol"
  5174. type="0">
  5175. </productMenu>
  5176. <productMenu id="sip"
  5177. type="1" >
  5178. </productMenu>
  5179. <productMenu id="bluetoothIntercom"
  5180. type="1" >
  5181. </productMenu>
  5182. <productMenu id="deviceSetting"
  5183. type="1"
  5184. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  5185. </productMenu>
  5186. <productMenu id="quickGuide"
  5187. type="1"
  5188. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_3S_PLUS_1.0.0_en_200813.pdf"
  5189. size="842KB" >
  5190. </productMenu>
  5191. <productMenu id="userGuide"
  5192. type="1"
  5193. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_app_3S_PLUS_1.0.1_en_210521.pdf"
  5194. size="1.02MB" >
  5195. </productMenu>
  5196. <productID id="6320"
  5197. />
  5198. <productGroupable type="0"
  5199. />
  5200. </product>
  5201. <product id="Neotec2"
  5202. name="SRL Neotec2"
  5203. series="momentum"
  5204. latestVersion="1.1.2"
  5205. show = "1" >
  5206. <productMenu id="protocol"
  5207. type="0">
  5208. </productMenu>
  5209. <productMenu id="sip"
  5210. type="1" >
  5211. </productMenu>
  5212. <productMenu id="bluetoothIntercom"
  5213. type="1" >
  5214. </productMenu>
  5215. <productMenu id="intercomSetting"
  5216. type="1" >
  5217. </productMenu>
  5218. <productMenu id="phone"
  5219. type="2" >
  5220. </productMenu>
  5221. <productMenu id="fmradio"
  5222. type="3" >
  5223. </productMenu>
  5224. <productMenu id="deviceSetting"
  5225. type="1"
  5226. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5227. </productMenu>
  5228. <productMenu id="quickGuide"
  5229. type="1"
  5230. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_SRL_for_Shoei_Neotec_II_01.pdf"
  5231. size="796KB" >
  5232. </productMenu>
  5233. <productMenu id="userGuide"
  5234. type="1"
  5235. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_SRL_for_Shoei_Neotec_II_v1.0_01.pdf"
  5236. size="1.90MB" >
  5237. </productMenu>
  5238. <productID id="4510"
  5239. />
  5240. <productGroupable type="1"
  5241. />
  5242. </product>
  5243. <product id="SRL2"
  5244. name="SRL2"
  5245. series="momentum"
  5246. latestVersion="1.0.6"
  5247. show = "1" >
  5248. <productMenu id="protocol"
  5249. type="0">
  5250. </productMenu>
  5251. <productMenu id="sip"
  5252. type="1" >
  5253. </productMenu>
  5254. <productMenu id="bluetoothIntercom"
  5255. type="1" >
  5256. </productMenu>
  5257. <productMenu id="intercomSetting"
  5258. type="1" >
  5259. </productMenu>
  5260. <productMenu id="phone"
  5261. type="2" >
  5262. </productMenu>
  5263. <productMenu id="fmradio"
  5264. type="3" >
  5265. </productMenu>
  5266. <productMenu id="deviceSetting"
  5267. type="1"
  5268. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5269. </productMenu>
  5270. <productMenu id="quickGuide"
  5271. type="1"
  5272. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_SRL2_01.pdf"
  5273. size="846KB" >
  5274. </productMenu>
  5275. <productMenu id="userGuide"
  5276. type="1"
  5277. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_SRL2_v1.0_01.pdf"
  5278. size="1.18MB" >
  5279. </productMenu>
  5280. <productID id="4530"
  5281. />
  5282. <productGroupable type="1"
  5283. />
  5284. </product>
  5285. <product id="10R"
  5286. name="10R"
  5287. series="10"
  5288. latestVersion="2.0.3"
  5289. show = "1" >
  5290. <productMenu id="protocol"
  5291. type="0">
  5292. </productMenu>
  5293. <productMenu id="sip"
  5294. type="1" >
  5295. <productMenuType version="1.0.2"
  5296. type="0"
  5297. />
  5298. </productMenu>
  5299. <productMenu id="bluetoothIntercom"
  5300. type="1" >
  5301. <productMenuType version="1.0.2"
  5302. type="0"
  5303. />
  5304. </productMenu>
  5305. <productMenu id="phone"
  5306. type="2" >
  5307. </productMenu>
  5308. <productMenu id="fmradio"
  5309. type="3" >
  5310. </productMenu>
  5311. <productMenu id="deviceSetting"
  5312. type="1"
  5313. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  5314. <productMenuURL version="1.4"
  5315. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  5316. />
  5317. <productMenuURL version="1.2.1"
  5318. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  5319. />
  5320. <productMenuURL version="1.0.2"
  5321. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  5322. />
  5323. <productMenuURL version="1.0"
  5324. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  5325. />
  5326. </productMenu>
  5327. <productMenu id="quickGuide"
  5328. type="1"
  5329. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10R_04.pdf"
  5330. size="400KB" >
  5331. </productMenu>
  5332. <productMenu id="userGuide"
  5333. type="1"
  5334. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10R_v2.0_01.pdf"
  5335. size="2.75MB" >
  5336. </productMenu>
  5337. <productID id="5520"
  5338. />
  5339. <productGroupable type="0"
  5340. />
  5341. </product>
  5342. <product id="Cavalry"
  5343. name="Cavalry"
  5344. series="cavalry"
  5345. latestVersion="1.1.2"
  5346. show = "1" >
  5347. <productMenu id="protocol"
  5348. type="0">
  5349. </productMenu>
  5350. <productMenu id="sip"
  5351. type="1" >
  5352. </productMenu>
  5353. <productMenu id="bluetoothIntercom"
  5354. type="1" >
  5355. </productMenu>
  5356. <productMenu id="phone"
  5357. type="2" >
  5358. </productMenu>
  5359. <productMenu id="fmradio"
  5360. type="3" >
  5361. </productMenu>
  5362. <productMenu id="deviceSetting"
  5363. type="1"
  5364. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  5365. <productMenuURL version="1.9"
  5366. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  5367. />
  5368. <productMenuURL version="1.0.1"
  5369. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  5370. />
  5371. </productMenu>
  5372. <productMenu id="quickGuide"
  5373. type="1"
  5374. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  5375. size="795KB" >
  5376. </productMenu>
  5377. <productMenu id="userGuide"
  5378. type="1"
  5379. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  5380. size="1.87MB" >
  5381. </productMenu>
  5382. <productID id="5524"
  5383. />
  5384. <productGroupable type="0"
  5385. />
  5386. </product>
  5387. <product id="Cavalry_Lite"
  5388. name="Cavalry Lite"
  5389. series="cavalry"
  5390. latestVersion="1.0.2"
  5391. show = "1" >
  5392. <productMenu id="protocol"
  5393. type="0">
  5394. </productMenu>
  5395. <productMenu id="sip"
  5396. type="1" >
  5397. </productMenu>
  5398. <productMenu id="bluetoothIntercom"
  5399. type="1" >
  5400. </productMenu>
  5401. <productMenu id="phone"
  5402. type="2" >
  5403. </productMenu>
  5404. <productMenu id="fmradio"
  5405. type="3" >
  5406. </productMenu>
  5407. <productMenu id="deviceSetting"
  5408. type="1"
  5409. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  5410. </productMenu>
  5411. <productMenu id="userGuide"
  5412. type="1"
  5413. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  5414. size="1.74MB" >
  5415. </productMenu>
  5416. <productID id="5536"
  5417. />
  5418. <productGroupable type="0"
  5419. />
  5420. </product>
  5421. <product id="Momentum"
  5422. name="Momentum"
  5423. series="momentum"
  5424. latestVersion="1.0.8"
  5425. show = "1" >
  5426. <productMenu id="protocol"
  5427. type="0">
  5428. </productMenu>
  5429. <productMenu id="sip"
  5430. type="1" >
  5431. </productMenu>
  5432. <productMenu id="bluetoothIntercom"
  5433. type="1" >
  5434. </productMenu>
  5435. <productMenu id="intercomSetting"
  5436. type="1" >
  5437. </productMenu>
  5438. <productMenu id="phone"
  5439. type="2" >
  5440. </productMenu>
  5441. <productMenu id="fmradio"
  5442. type="3" >
  5443. </productMenu>
  5444. <productMenu id="deviceSetting"
  5445. type="1"
  5446. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5447. </productMenu>
  5448. <productMenu id="quickGuide"
  5449. type="1"
  5450. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  5451. size="795KB" >
  5452. </productMenu>
  5453. <productMenu id="userGuide"
  5454. type="1"
  5455. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  5456. size="1.44MB" >
  5457. </productMenu>
  5458. <productID id="4310"
  5459. />
  5460. <productGroupable type="1"
  5461. />
  5462. </product>
  5463. <product id="Momentum_Pro"
  5464. name="Momentum Pro"
  5465. series="momentum"
  5466. latestVersion="1.0.5"
  5467. show = "1" >
  5468. <productMenu id="protocol"
  5469. type="0">
  5470. </productMenu>
  5471. <productMenu id="sip"
  5472. type="1" >
  5473. </productMenu>
  5474. <productMenu id="bluetoothIntercom"
  5475. type="1" >
  5476. </productMenu>
  5477. <productMenu id="intercomSetting"
  5478. type="1" >
  5479. </productMenu>
  5480. <productMenu id="phone"
  5481. type="2" >
  5482. </productMenu>
  5483. <productMenu id="fmradio"
  5484. type="3" >
  5485. </productMenu>
  5486. <productMenu id="deviceSetting"
  5487. type="1"
  5488. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5489. </productMenu>
  5490. <productMenu id="quickGuide"
  5491. type="1"
  5492. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  5493. size="839KB" >
  5494. </productMenu>
  5495. <productMenu id="userGuide"
  5496. type="1"
  5497. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  5498. size="1.08MB" >
  5499. </productMenu>
  5500. <productID id="4330"
  5501. />
  5502. <productGroupable type="1"
  5503. />
  5504. </product>
  5505. <product id="Momentum_INC"
  5506. name="Momentum INC"
  5507. series="momentum"
  5508. latestVersion="1.0.6"
  5509. show = "1" >
  5510. <productMenu id="protocol"
  5511. type="0">
  5512. </productMenu>
  5513. <productMenu id="sip"
  5514. type="1" >
  5515. </productMenu>
  5516. <productMenu id="bluetoothIntercom"
  5517. type="1" >
  5518. </productMenu>
  5519. <productMenu id="intercomSetting"
  5520. type="1" >
  5521. </productMenu>
  5522. <productMenu id="phone"
  5523. type="2" >
  5524. </productMenu>
  5525. <productMenu id="fmradio"
  5526. type="3" >
  5527. </productMenu>
  5528. <productMenu id="deviceSetting"
  5529. type="1"
  5530. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  5531. </productMenu>
  5532. <productMenu id="quickGuide"
  5533. type="1"
  5534. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  5535. size="794KB" >
  5536. </productMenu>
  5537. <productMenu id="userGuide"
  5538. type="1"
  5539. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  5540. size="1.53MB" >
  5541. </productMenu>
  5542. <productID id="4410"
  5543. />
  5544. <productGroupable type="1"
  5545. />
  5546. </product>
  5547. <product id="Momentum_INCP"
  5548. name="Momentum INC Pro"
  5549. series="momentum"
  5550. latestVersion="1.0.3"
  5551. show = "1" >
  5552. <productMenu id="protocol"
  5553. type="0">
  5554. </productMenu>
  5555. <productMenu id="sip"
  5556. type="1" >
  5557. </productMenu>
  5558. <productMenu id="bluetoothIntercom"
  5559. type="1" >
  5560. </productMenu>
  5561. <productMenu id="intercomSetting"
  5562. type="1" >
  5563. </productMenu>
  5564. <productMenu id="phone"
  5565. type="2" >
  5566. </productMenu>
  5567. <productMenu id="fmradio"
  5568. type="3" >
  5569. </productMenu>
  5570. <productMenu id="deviceSetting"
  5571. type="1"
  5572. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  5573. </productMenu>
  5574. <productMenu id="quickGuide"
  5575. type="1"
  5576. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  5577. size="794KB" >
  5578. </productMenu>
  5579. <productMenu id="userGuide"
  5580. type="1"
  5581. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  5582. size="1.53MB" >
  5583. </productMenu>
  5584. <productID id="4430"
  5585. />
  5586. <productGroupable type="1"
  5587. />
  5588. </product>
  5589. <product id="Momentum_Lite"
  5590. name="Momentum Lite"
  5591. series="momentum"
  5592. latestVersion="2.0.2"
  5593. show = "1" >
  5594. <productMenu id="protocol"
  5595. type="0">
  5596. </productMenu>
  5597. <productMenu id="sip"
  5598. type="1" >
  5599. </productMenu>
  5600. <productMenu id="bluetoothIntercom"
  5601. type="1" >
  5602. </productMenu>
  5603. <productMenu id="phone"
  5604. type="2" >
  5605. </productMenu>
  5606. <productMenu id="fmradio"
  5607. type="3" >
  5608. </productMenu>
  5609. <productMenu id="deviceSetting"
  5610. type="1"
  5611. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  5612. <productMenuURL version="1.1"
  5613. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  5614. />
  5615. </productMenu>
  5616. <productMenu id="quickGuide"
  5617. type="1"
  5618. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  5619. size="790KB" >
  5620. </productMenu>
  5621. <productMenu id="userGuide"
  5622. type="1"
  5623. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  5624. size="1.42MB" >
  5625. </productMenu>
  5626. <productID id="5526"
  5627. />
  5628. <productGroupable type="0"
  5629. />
  5630. </product>
  5631. <product id="Savage"
  5632. name="Savage"
  5633. series="10"
  5634. latestVersion="1.2.2"
  5635. show = "1" >
  5636. <productMenu id="protocol"
  5637. type="0">
  5638. </productMenu>
  5639. <productMenu id="sip"
  5640. type="1" >
  5641. </productMenu>
  5642. <productMenu id="bluetoothIntercom"
  5643. type="1" >
  5644. </productMenu>
  5645. <productMenu id="phone"
  5646. type="2" >
  5647. </productMenu>
  5648. <productMenu id="fmradio"
  5649. type="3" >
  5650. </productMenu>
  5651. <productMenu id="deviceSetting"
  5652. type="1"
  5653. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  5654. <productMenuURL version="1.9"
  5655. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  5656. />
  5657. <productMenuURL version="1.1"
  5658. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  5659. />
  5660. </productMenu>
  5661. <productMenu id="quickGuide"
  5662. type="1"
  5663. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  5664. size="796KB" >
  5665. </productMenu>
  5666. <productMenu id="userGuide"
  5667. type="1"
  5668. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  5669. size="910KB" >
  5670. </productMenu>
  5671. <productID id="5550"
  5672. />
  5673. <productGroupable type="0"
  5674. />
  5675. </product>
  5676. <product id="OUTRUSHR"
  5677. name="OUTRUSH R"
  5678. series="10"
  5679. latestVersion="1.0"
  5680. show = "1" >
  5681. <productMenu id="protocol"
  5682. type="0">
  5683. </productMenu>
  5684. <productMenu id="sip"
  5685. type="1" >
  5686. </productMenu>
  5687. <productMenu id="bluetoothIntercom"
  5688. type="1" >
  5689. </productMenu>
  5690. <productMenu id="phone"
  5691. type="2" >
  5692. </productMenu>
  5693. <productMenu id="fmradio"
  5694. type="3" >
  5695. </productMenu>
  5696. <productMenu id="deviceSetting"
  5697. type="1"
  5698. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  5699. </productMenu>
  5700. <productMenu id="userGuide"
  5701. type="1"
  5702. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTRUSH_R_1.0.0_en_201019.pdf"
  5703. size="660KB" >
  5704. </productMenu>
  5705. <productID id="5424"
  5706. />
  5707. <productGroupable type="0"
  5708. />
  5709. </product>
  5710. <product id="OUTSTARS"
  5711. name="OUTSTAR S"
  5712. series="10"
  5713. latestVersion="1.1.1"
  5714. show = "1" >
  5715. <productMenu id="protocol"
  5716. type="0">
  5717. </productMenu>
  5718. <productMenu id="sip"
  5719. type="1" >
  5720. </productMenu>
  5721. <productMenu id="bluetoothIntercom"
  5722. type="1" >
  5723. </productMenu>
  5724. <productMenu id="phone"
  5725. type="2" >
  5726. </productMenu>
  5727. <productMenu id="fmradio"
  5728. type="3" >
  5729. </productMenu>
  5730. <productMenu id="deviceSetting"
  5731. type="1"
  5732. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  5733. </productMenu>
  5734. <productMenu id="quickGuide"
  5735. type="1"
  5736. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_OUTSTAR%20S_1.1.0_en_211019.pdf"
  5737. size="643KB" >
  5738. </productMenu>
  5739. <productMenu id="userGuide"
  5740. type="1"
  5741. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTSTAR_S_1.1.0_en_211019.pdf"
  5742. size="1.15MB" >
  5743. </productMenu>
  5744. <productID id="5428"
  5745. />
  5746. <productGroupable type="0"
  5747. />
  5748. </product>
  5749. <product id="ProRideEVO"
  5750. name="ProRide EVO"
  5751. series="10"
  5752. latestVersion="1.0"
  5753. show = "1" >
  5754. <productMenu id="protocol"
  5755. type="0">
  5756. </productMenu>
  5757. <productMenu id="sip"
  5758. type="1" >
  5759. </productMenu>
  5760. <productMenu id="bluetoothIntercom"
  5761. type="1" >
  5762. </productMenu>
  5763. <productMenu id="phone"
  5764. type="2" >
  5765. </productMenu>
  5766. <productMenu id="fmradio"
  5767. type="3" >
  5768. </productMenu>
  5769. <productMenu id="deviceSetting"
  5770. type="1"
  5771. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  5772. </productMenu>
  5773. <productMenu id="userGuide"
  5774. type="1"
  5775. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  5776. size="778KB" >
  5777. </productMenu>
  5778. <productID id="5426"
  5779. />
  5780. <productGroupable type="0"
  5781. />
  5782. </product>
  5783. <product id="PI"
  5784. name="pi"
  5785. series="10"
  5786. latestVersion="1.0"
  5787. show = "1" >
  5788. <productMenu id="protocol"
  5789. type="0">
  5790. </productMenu>
  5791. <productMenu id="sip"
  5792. type="1" >
  5793. </productMenu>
  5794. <productMenu id="bluetoothIntercom"
  5795. type="1" >
  5796. </productMenu>
  5797. <productMenu id="deviceSetting"
  5798. type="1"
  5799. url="https://api.sena.com/support/SenaUtility/PI/DS_PI.xml" >
  5800. </productMenu>
  5801. <productMenu id="quickGuide"
  5802. type="1"
  5803. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_pi_1.0.0_en_210305.pdf"
  5804. size="640KB" >
  5805. </productMenu>
  5806. <productMenu id="userGuide"
  5807. type="1"
  5808. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_pi_1.0.0_en_210315.pdf"
  5809. size="478KB" >
  5810. </productMenu>
  5811. <productID id="6310"
  5812. />
  5813. <productGroupable type="0"
  5814. />
  5815. </product>
  5816. <product id="X1"
  5817. name="X1"
  5818. series="10"
  5819. latestVersion="1.1"
  5820. show = "1" >
  5821. <productMenu id="protocol"
  5822. type="0">
  5823. </productMenu>
  5824. <productMenu id="sip"
  5825. type="1" >
  5826. </productMenu>
  5827. <productMenu id="bluetoothIntercom"
  5828. type="1" >
  5829. </productMenu>
  5830. <productMenu id="phone"
  5831. type="2" >
  5832. </productMenu>
  5833. <productMenu id="fmradio"
  5834. type="3" >
  5835. </productMenu>
  5836. <productMenu id="deviceSetting"
  5837. type="1"
  5838. url="https://api.sena.com/support/SenaUtility/X1/DS_X1_2.xml" >
  5839. </productMenu>
  5840. <productMenu id="quickGuide"
  5841. type="1"
  5842. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_X1_01.pdf"
  5843. size="784KB" >
  5844. </productMenu>
  5845. <productMenu id="userGuide"
  5846. type="1"
  5847. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_X1_v1.0_01.pdf"
  5848. size="2.86MB" >
  5849. </productMenu>
  5850. <productID id="3030"
  5851. />
  5852. <productGroupable type="0"
  5853. />
  5854. </product>
  5855. <product id="X1S"
  5856. name="X1S"
  5857. series="10"
  5858. latestVersion="1.1"
  5859. show = "1" >
  5860. <productMenu id="protocol"
  5861. type="0">
  5862. </productMenu>
  5863. <productMenu id="sip"
  5864. type="1" >
  5865. </productMenu>
  5866. <productMenu id="bluetoothIntercom"
  5867. type="1" >
  5868. </productMenu>
  5869. <productMenu id="phone"
  5870. type="2" >
  5871. </productMenu>
  5872. <productMenu id="fmradio"
  5873. type="3" >
  5874. </productMenu>
  5875. <productMenu id="deviceSetting"
  5876. type="1"
  5877. url="https://api.sena.com/support/SenaUtility/X1/DS_X1_v0102.xml" >
  5878. </productMenu>
  5879. <productMenu id="quickGuide"
  5880. type="1"
  5881. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_X1S_1.0.0_en_200630.pdf"
  5882. size="933KB" >
  5883. </productMenu>
  5884. <productMenu id="userGuide"
  5885. type="1"
  5886. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_X1S_1.0.0_en_200630.pdf"
  5887. size="1.16MB" >
  5888. </productMenu>
  5889. <productID id="3032"
  5890. />
  5891. <productGroupable type="0"
  5892. />
  5893. </product>
  5894. <product id="R1"
  5895. name="R1"
  5896. series="10"
  5897. latestVersion="1.4"
  5898. show = "1" >
  5899. <productMenu id="protocol"
  5900. type="0">
  5901. </productMenu>
  5902. <productMenu id="sip"
  5903. type="1" >
  5904. </productMenu>
  5905. <productMenu id="bluetoothIntercom"
  5906. type="1" >
  5907. </productMenu>
  5908. <productMenu id="phone"
  5909. type="2" >
  5910. </productMenu>
  5911. <productMenu id="fmradio"
  5912. type="3" >
  5913. </productMenu>
  5914. <productMenu id="deviceSetting"
  5915. type="1"
  5916. url="https://api.sena.com/support/SenaUtility/R1/DS_R1_v0104.xml" >
  5917. </productMenu>
  5918. <productMenu id="quickGuide"
  5919. type="1"
  5920. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_R1_1.3.0_en_210224_MP0501648.pdf"
  5921. size="788KB" >
  5922. </productMenu>
  5923. <productMenu id="userGuide"
  5924. type="1"
  5925. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_R1_1.5.0_en_210428.pdf"
  5926. size="1.25MB" >
  5927. </productMenu>
  5928. <productID id="3050"
  5929. />
  5930. <productGroupable type="0"
  5931. />
  5932. </product>
  5933. <product id="M1"
  5934. name="M1"
  5935. series="10"
  5936. latestVersion="1.0.2"
  5937. show = "1" >
  5938. <productMenu id="protocol"
  5939. type="0">
  5940. </productMenu>
  5941. <productMenu id="sip"
  5942. type="1" >
  5943. </productMenu>
  5944. <productMenu id="bluetoothIntercom"
  5945. type="1" >
  5946. </productMenu>
  5947. <productMenu id="fmradio"
  5948. type="2" >
  5949. </productMenu>
  5950. <productMenu id="deviceSetting"
  5951. type="1"
  5952. url="https://api.sena.com/support/SenaUtility/M1/DS_M1_v010002.xml" >
  5953. </productMenu>
  5954. <productMenu id="quickGuide"
  5955. type="1"
  5956. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_M1_1.2.0_en_210625.pdf"
  5957. size="767KB" >
  5958. </productMenu>
  5959. <productMenu id="userGuide"
  5960. type="1"
  5961. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_M1_1.2.0_en_210625.pdf"
  5962. size="820KB" >
  5963. </productMenu>
  5964. <productID id="3070"
  5965. />
  5966. <productGroupable type="0"
  5967. />
  5968. </product>
  5969. <product id="Rumba"
  5970. name="Rumba"
  5971. series="10"
  5972. latestVersion="1.0.4"
  5973. show = "1" >
  5974. <productMenu id="protocol"
  5975. type="0">
  5976. </productMenu>
  5977. <productMenu id="sip"
  5978. type="1" >
  5979. </productMenu>
  5980. <productMenu id="bluetoothIntercom"
  5981. type="1" >
  5982. </productMenu>
  5983. <productMenu id="deviceSetting"
  5984. type="1"
  5985. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  5986. </productMenu>
  5987. <productMenu id="quickGuide"
  5988. type="1"
  5989. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.1.0_en_210302.pdf"
  5990. size="722KB" >
  5991. </productMenu>
  5992. <productMenu id="userGuide"
  5993. type="1"
  5994. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_RUMBA_1.1.0_en_210302.pdf"
  5995. size="693KB" >
  5996. </productMenu>
  5997. <productID id="6330"
  5998. />
  5999. <productGroupable type="0"
  6000. />
  6001. </product>
  6002. <product id="Tufftalk"
  6003. name="Tufftalk"
  6004. series="10"
  6005. latestVersion="1.2.2"
  6006. show = "1" >
  6007. <productMenu id="protocol"
  6008. type="0">
  6009. </productMenu>
  6010. <productMenu id="sip"
  6011. type="1" >
  6012. </productMenu>
  6013. <productMenu id="bluetoothIntercom"
  6014. type="1" >
  6015. </productMenu>
  6016. <productMenu id="phone"
  6017. type="2" >
  6018. </productMenu>
  6019. <productMenu id="fmradio"
  6020. type="3" >
  6021. </productMenu>
  6022. <productMenu id="deviceSetting"
  6023. type="1"
  6024. url="https://api.sena.com/support/SenaUtility/Tufftalk/DS_Tufftalk_v0102.xml" >
  6025. <productMenuURL version="1.1.1"
  6026. url="https://api.sena.com/support/SenaUtility/Tufftalk/DeviceSetting_Tufftalk.xml"
  6027. />
  6028. </productMenu>
  6029. <productMenu id="quickGuide"
  6030. type="1"
  6031. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Tufftalk_01.pdf"
  6032. size="922KB" >
  6033. </productMenu>
  6034. <productMenu id="userGuide"
  6035. type="1"
  6036. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Tufftalk_v1.2_01.pdf"
  6037. size="1.76MB" >
  6038. </productMenu>
  6039. <productID id="5710"
  6040. />
  6041. <productGroupable type="0"
  6042. />
  6043. </product>
  6044. <product id="Tufftalk_Lite"
  6045. name="Tufftalk Lite"
  6046. series="10"
  6047. latestVersion="1.0.2"
  6048. show = "1" >
  6049. <productMenu id="protocol"
  6050. type="0">
  6051. </productMenu>
  6052. <productMenu id="sip"
  6053. type="1" >
  6054. </productMenu>
  6055. <productMenu id="bluetoothIntercom"
  6056. type="1" >
  6057. </productMenu>
  6058. <productMenu id="phone"
  6059. type="2" >
  6060. </productMenu>
  6061. <productMenu id="fmradio"
  6062. type="3" >
  6063. </productMenu>
  6064. <productMenu id="deviceSetting"
  6065. type="1"
  6066. url="https://api.sena.com/support/SenaUtility/Tufftalk_Lite/DS_Tufftalk_Lite.xml" >
  6067. </productMenu>
  6068. <productMenu id="quickGuide"
  6069. type="1"
  6070. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Tufftalk_Lite_01.pdf"
  6071. size="725KB" >
  6072. </productMenu>
  6073. <productMenu id="userGuide"
  6074. type="1"
  6075. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Tufftalk_Lite_v1.0_01.pdf"
  6076. size="1.17MB" >
  6077. </productMenu>
  6078. <productID id="5720"
  6079. />
  6080. <productGroupable type="0"
  6081. />
  6082. </product>
  6083. <product id="TufftalkM"
  6084. name="Tufftalk M"
  6085. series="10"
  6086. latestVersion="1.1.1"
  6087. show = "1" >
  6088. <productMenu id="protocol"
  6089. type="0">
  6090. </productMenu>
  6091. <productMenu id="sip"
  6092. type="1" >
  6093. </productMenu>
  6094. <productMenu id="bluetoothIntercom"
  6095. type="1" >
  6096. </productMenu>
  6097. <productMenu id="phone"
  6098. type="2" >
  6099. </productMenu>
  6100. <productMenu id="fmradio"
  6101. type="3" >
  6102. </productMenu>
  6103. <productMenu id="deviceSetting"
  6104. type="1"
  6105. url="https://api.sena.com/support/SenaUtility/Tufftalk/DS_TufftalkM_v0101.xml" >
  6106. </productMenu>
  6107. <productMenu id="quickGuide"
  6108. type="1"
  6109. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Tufftalk_M_02.pdf"
  6110. size="265KB" >
  6111. </productMenu>
  6112. <productMenu id="userGuide"
  6113. type="1"
  6114. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Tufftalk_M_1.1.0_en_200521.pdf"
  6115. size="769KB" >
  6116. </productMenu>
  6117. <productID id="3118"
  6118. />
  6119. <productGroupable type="0"
  6120. />
  6121. </product>
  6122. <product id="HD10S"
  6123. name="Boom! Audio 10S"
  6124. series="10"
  6125. latestVersion="1.1.2"
  6126. show = "0" >
  6127. <productMenu id="protocol"
  6128. type="0">
  6129. </productMenu>
  6130. <productMenu id="sip"
  6131. type="1" >
  6132. </productMenu>
  6133. <productMenu id="bluetoothIntercom"
  6134. type="1" >
  6135. </productMenu>
  6136. <productMenu id="phone"
  6137. type="2" >
  6138. </productMenu>
  6139. <productMenu id="fmradio"
  6140. type="3" >
  6141. </productMenu>
  6142. <productMenu id="deviceSetting"
  6143. type="1"
  6144. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  6145. </productMenu>
  6146. <productMenu id="quickGuide"
  6147. type="1"
  6148. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_H-D_10S_01.pdf"
  6149. size="538KB" >
  6150. </productMenu>
  6151. <productMenu id="userGuide"
  6152. type="1"
  6153. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_H-D_10S_v1.0_01.pdf"
  6154. size="1.55MB" >
  6155. </productMenu>
  6156. <productID id="5532"
  6157. />
  6158. <productGroupable type="0"
  6159. />
  6160. </product>
  6161. <product id="HDCavalry"
  6162. name="Boom! Audio N01 10R"
  6163. series="10"
  6164. latestVersion="1.1.2"
  6165. show = "0" >
  6166. <productMenu id="protocol"
  6167. type="0">
  6168. </productMenu>
  6169. <productMenu id="sip"
  6170. type="1" >
  6171. </productMenu>
  6172. <productMenu id="bluetoothIntercom"
  6173. type="1" >
  6174. </productMenu>
  6175. <productMenu id="phone"
  6176. type="2" >
  6177. </productMenu>
  6178. <productMenu id="fmradio"
  6179. type="3" >
  6180. </productMenu>
  6181. <productMenu id="deviceSetting"
  6182. type="1"
  6183. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  6184. </productMenu>
  6185. <productMenu id="quickGuide"
  6186. type="1"
  6187. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_H-D_N01_01.pdf"
  6188. size="766KB" >
  6189. </productMenu>
  6190. <productMenu id="userGuide"
  6191. type="1"
  6192. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_H-D_N01_v1.0_02.pdf"
  6193. size="1.45MB" >
  6194. </productMenu>
  6195. <productID id="5522"
  6196. />
  6197. <productGroupable type="0"
  6198. />
  6199. </product>
  6200. <product id="HDOUTRUSHR"
  6201. name="OUTRUSH R"
  6202. series="10"
  6203. latestVersion="1.0"
  6204. show = "0" >
  6205. <productMenu id="protocol"
  6206. type="0">
  6207. </productMenu>
  6208. <productMenu id="sip"
  6209. type="1" >
  6210. </productMenu>
  6211. <productMenu id="bluetoothIntercom"
  6212. type="1" >
  6213. </productMenu>
  6214. <productMenu id="phone"
  6215. type="2" >
  6216. </productMenu>
  6217. <productMenu id="fmradio"
  6218. type="3" >
  6219. </productMenu>
  6220. <productMenu id="deviceSetting"
  6221. type="1"
  6222. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6223. </productMenu>
  6224. <productMenu id="userGuide"
  6225. type="1"
  6226. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTRUSH_R_1.0.0_en_201019.pdf"
  6227. size="660KB" >
  6228. </productMenu>
  6229. <productID id="5434"
  6230. />
  6231. <productGroupable type="0"
  6232. />
  6233. </product>
  6234. <product id="KLIM_KRIOS"
  6235. name="KLIM Krios"
  6236. series="10"
  6237. latestVersion="1.1.2"
  6238. show = "0" >
  6239. <productMenu id="protocol"
  6240. type="0">
  6241. </productMenu>
  6242. <productMenu id="sip"
  6243. type="1" >
  6244. </productMenu>
  6245. <productMenu id="bluetoothIntercom"
  6246. type="1" >
  6247. </productMenu>
  6248. <productMenu id="phone"
  6249. type="2" >
  6250. </productMenu>
  6251. <productMenu id="fmradio"
  6252. type="3" >
  6253. </productMenu>
  6254. <productMenu id="deviceSetting"
  6255. type="1"
  6256. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  6257. <productMenuURL version="1.0"
  6258. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  6259. />
  6260. </productMenu>
  6261. <productMenu id="quickGuide"
  6262. type="1"
  6263. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  6264. size="649KB" >
  6265. </productMenu>
  6266. <productMenu id="userGuide"
  6267. type="1"
  6268. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  6269. size="1.43MB" >
  6270. </productMenu>
  6271. <productID id="5910"
  6272. />
  6273. <productGroupable type="0"
  6274. />
  6275. </product>
  6276. <product id="POLARIS_SLINGSHOT"
  6277. name="Polaris Slingshot"
  6278. series="10"
  6279. latestVersion="1.1.2"
  6280. show = "0" >
  6281. <productMenu id="protocol"
  6282. type="0">
  6283. </productMenu>
  6284. <productMenu id="sip"
  6285. type="1" >
  6286. </productMenu>
  6287. <productMenu id="bluetoothIntercom"
  6288. type="1" >
  6289. </productMenu>
  6290. <productMenu id="phone"
  6291. type="2" >
  6292. </productMenu>
  6293. <productMenu id="fmradio"
  6294. type="3" >
  6295. </productMenu>
  6296. <productMenu id="deviceSetting"
  6297. type="1"
  6298. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  6299. <productMenuURL version="1.0"
  6300. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  6301. />
  6302. </productMenu>
  6303. <productMenu id="quickGuide"
  6304. type="1"
  6305. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  6306. size="689KB" >
  6307. </productMenu>
  6308. <productMenu id="userGuide"
  6309. type="1"
  6310. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  6311. size="1.43MB" >
  6312. </productMenu>
  6313. <productID id="5920"
  6314. />
  6315. <productGroupable type="0"
  6316. />
  6317. </product>
  6318. <product id="R1_Pro"
  6319. name="R1 Pro"
  6320. series="10"
  6321. latestVersion="1.0"
  6322. show = "0" >
  6323. <productMenu id="protocol"
  6324. type="0">
  6325. </productMenu>
  6326. <productMenu id="sip"
  6327. type="1" >
  6328. </productMenu>
  6329. <productMenu id="bluetoothIntercom"
  6330. type="1" >
  6331. </productMenu>
  6332. <productMenu id="phone"
  6333. type="2" >
  6334. </productMenu>
  6335. <productMenu id="fmradio"
  6336. type="3" >
  6337. </productMenu>
  6338. <productMenu id="deviceSetting"
  6339. type="1"
  6340. url="https://api.sena.com/support/SenaUtility/X1/DS_X1_2.xml" >
  6341. </productMenu>
  6342. <productMenu id="quickGuide"
  6343. type="1"
  6344. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_R1_01.pdf"
  6345. size="810KB" >
  6346. </productMenu>
  6347. <productMenu id="userGuide"
  6348. type="1"
  6349. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_R1_v1.0_01.pdf"
  6350. size="1.18MB" >
  6351. </productMenu>
  6352. <productID id="3060"
  6353. />
  6354. <productGroupable type="0"
  6355. />
  6356. </product>
  6357. <product id="X_COM2"
  6358. name="X-COM2"
  6359. series="10"
  6360. latestVersion="1.0.4"
  6361. show = "0" >
  6362. <productMenu id="protocol"
  6363. type="0">
  6364. </productMenu>
  6365. <productMenu id="sip"
  6366. type="1" >
  6367. </productMenu>
  6368. <productMenu id="bluetoothIntercom"
  6369. type="1" >
  6370. </productMenu>
  6371. <productMenu id="intercomSetting"
  6372. type="1" >
  6373. </productMenu>
  6374. <productMenu id="phone"
  6375. type="2" >
  6376. </productMenu>
  6377. <productMenu id="fmradio"
  6378. type="3" >
  6379. </productMenu>
  6380. <productMenu id="deviceSetting"
  6381. type="1"
  6382. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6383. </productMenu>
  6384. <productMenu id="quickGuide"
  6385. type="1"
  6386. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  6387. size="963KB" >
  6388. </productMenu>
  6389. <productMenu id="userGuide"
  6390. type="1"
  6391. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  6392. size="1.73MB" >
  6393. </productMenu>
  6394. <productID id="2030"
  6395. />
  6396. <productGroupable type="1"
  6397. />
  6398. </product>
  6399. <product id="DWO6"
  6400. name="SEDICI DWO6-PRO"
  6401. series="10"
  6402. latestVersion="1.0.1"
  6403. show = "0" >
  6404. <productMenu id="protocol"
  6405. type="0">
  6406. </productMenu>
  6407. <productMenu id="sip"
  6408. type="1" >
  6409. </productMenu>
  6410. <productMenu id="bluetoothIntercom"
  6411. type="1" >
  6412. </productMenu>
  6413. <productMenu id="phone"
  6414. type="2" >
  6415. </productMenu>
  6416. <productMenu id="fmradio"
  6417. type="3" >
  6418. </productMenu>
  6419. <productMenu id="deviceSetting"
  6420. type="1"
  6421. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6422. </productMenu>
  6423. <productMenu id="quickGuide"
  6424. type="1"
  6425. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_CG_DWO6P_01.pdf"
  6426. size="529KB" >
  6427. </productMenu>
  6428. <productMenu id="userGuide"
  6429. type="1"
  6430. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_CG_DWO6P_v1.0_01.pdf"
  6431. size="4.09MB" >
  6432. </productMenu>
  6433. <productID id="6112"
  6434. />
  6435. <productGroupable type="0"
  6436. />
  6437. </product>
  6438. <product id="DWO6A"
  6439. name="SEDICI DWO-6"
  6440. series="10"
  6441. latestVersion="1.0"
  6442. show = "0" >
  6443. <productMenu id="protocol"
  6444. type="0">
  6445. </productMenu>
  6446. <productMenu id="sip"
  6447. type="1" >
  6448. </productMenu>
  6449. <productMenu id="bluetoothIntercom"
  6450. type="1" >
  6451. </productMenu>
  6452. <productMenu id="phone"
  6453. type="2" >
  6454. </productMenu>
  6455. <productMenu id="fmradio"
  6456. type="3" >
  6457. </productMenu>
  6458. <productMenu id="deviceSetting"
  6459. type="1"
  6460. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  6461. </productMenu>
  6462. <productMenu id="quickGuide"
  6463. type="1"
  6464. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_DWO-6_v1.0_en_200831.pdf"
  6465. size="522KB" >
  6466. </productMenu>
  6467. <productMenu id="userGuide"
  6468. type="1"
  6469. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_DWO-6_v1.0_en_200831.pdf"
  6470. size="2.71MB" >
  6471. </productMenu>
  6472. <productID id="6114"
  6473. />
  6474. <productGroupable type="0"
  6475. />
  6476. </product>
  6477. <product id="X1_Pro"
  6478. name="X1 Pro"
  6479. series="10"
  6480. latestVersion="1.0.2"
  6481. show = "0" >
  6482. <productMenu id="protocol"
  6483. type="0">
  6484. </productMenu>
  6485. <productMenu id="sip"
  6486. type="1" >
  6487. </productMenu>
  6488. <productMenu id="bluetoothIntercom"
  6489. type="1" >
  6490. </productMenu>
  6491. <productMenu id="phone"
  6492. type="2" >
  6493. </productMenu>
  6494. <productMenu id="fmradio"
  6495. type="3" >
  6496. </productMenu>
  6497. <productMenu id="deviceSetting"
  6498. type="1"
  6499. url="https://api.sena.com/support/SenaUtility/X1/DS_X1_2.xml" >
  6500. </productMenu>
  6501. <productMenu id="quickGuide"
  6502. type="1"
  6503. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_X1-Pro_01.pdf"
  6504. size="935KB" >
  6505. </productMenu>
  6506. <productMenu id="userGuide"
  6507. type="1"
  6508. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_X1-Pro_v1.0_01.pdf"
  6509. size="1.71MB" >
  6510. </productMenu>
  6511. <productID id="3040"
  6512. />
  6513. <productGroupable type="0"
  6514. />
  6515. </product>
  6516. <product id="ZXV01"
  6517. name="ZILL"
  6518. series="10"
  6519. latestVersion="1.0.2"
  6520. show = "0" >
  6521. <productMenu id="protocol"
  6522. type="0">
  6523. </productMenu>
  6524. <productMenu id="sip"
  6525. type="1" >
  6526. </productMenu>
  6527. <productMenu id="bluetoothIntercom"
  6528. type="1" >
  6529. </productMenu>
  6530. <productMenu id="deviceSetting"
  6531. type="1"
  6532. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  6533. </productMenu>
  6534. <productMenu id="quickGuide"
  6535. type="1"
  6536. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_3S_PLUS_1.0.0_en_200813.pdf"
  6537. size="842KB" >
  6538. </productMenu>
  6539. <productMenu id="userGuide"
  6540. type="1"
  6541. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_app_3S_PLUS_1.0.1_en_210521.pdf"
  6542. size="1.02MB" >
  6543. </productMenu>
  6544. <productID id="6335"
  6545. />
  6546. <productGroupable type="0"
  6547. />
  6548. </product>
  6549. <product id="R2"
  6550. name="R2"
  6551. series="10"
  6552. latestVersion="1.0"
  6553. show = "0" >
  6554. <productMenu id="protocol"
  6555. type="0">
  6556. </productMenu>
  6557. <productMenu id="sip"
  6558. type="1" >
  6559. </productMenu>
  6560. <productMenu id="bluetoothIntercom"
  6561. type="1" >
  6562. </productMenu>
  6563. <productMenu id="deviceSetting"
  6564. type="1"
  6565. url="https://api.sena.com/support/SenaUtility/R2/DS_R2.xml" >
  6566. </productMenu>
  6567. <productMenu id="quickGuide"
  6568. type="1"
  6569. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_M1_1.1.0_en_210224.pdf"
  6570. size="773KB" >
  6571. </productMenu>
  6572. <productMenu id="userGuide"
  6573. type="1"
  6574. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_M1_1.1.0_en_210223.pdf"
  6575. size="848KB" >
  6576. </productMenu>
  6577. <productID id="3080"
  6578. />
  6579. <productGroupable type="0"
  6580. />
  6581. </product>
  6582. <product id="OUTFORCE"
  6583. name="OUTFORCE"
  6584. series="10"
  6585. latestVersion="1.0"
  6586. show = "0" >
  6587. <productMenu id="protocol"
  6588. type="0">
  6589. </productMenu>
  6590. <productMenu id="sip"
  6591. type="1" >
  6592. </productMenu>
  6593. <productMenu id="bluetoothIntercom"
  6594. type="1" >
  6595. </productMenu>
  6596. <productMenu id="phone"
  6597. type="2" >
  6598. </productMenu>
  6599. <productMenu id="fmradio"
  6600. type="3" >
  6601. </productMenu>
  6602. <productMenu id="deviceSetting"
  6603. type="1"
  6604. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6605. </productMenu>
  6606. <productMenu id="userGuide"
  6607. type="1"
  6608. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTRUSH_R_1.0.0_en_201019.pdf"
  6609. size="660KB" >
  6610. </productMenu>
  6611. <productID id="5430"
  6612. />
  6613. <productGroupable type="0"
  6614. />
  6615. </product>
  6616. <product id="OUTRIDE"
  6617. name="OUTRIDE"
  6618. series="10"
  6619. latestVersion="1.0"
  6620. show = "0" >
  6621. <productMenu id="protocol"
  6622. type="0">
  6623. </productMenu>
  6624. <productMenu id="sip"
  6625. type="1" >
  6626. </productMenu>
  6627. <productMenu id="bluetoothIntercom"
  6628. type="1" >
  6629. </productMenu>
  6630. <productMenu id="phone"
  6631. type="2" >
  6632. </productMenu>
  6633. <productMenu id="fmradio"
  6634. type="3" >
  6635. </productMenu>
  6636. <productMenu id="deviceSetting"
  6637. type="1"
  6638. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6639. </productMenu>
  6640. <productMenu id="userGuide"
  6641. type="1"
  6642. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTRUSH_R_1.0.0_en_201019.pdf"
  6643. size="660KB" >
  6644. </productMenu>
  6645. <productID id="5432"
  6646. />
  6647. <productGroupable type="0"
  6648. />
  6649. </product>
  6650. <product id="ACS10"
  6651. name="ACS10"
  6652. series="10"
  6653. latestVersion="1.0"
  6654. show = "0" >
  6655. <productMenu id="protocol"
  6656. type="0">
  6657. </productMenu>
  6658. <productMenu id="sip"
  6659. type="1" >
  6660. </productMenu>
  6661. <productMenu id="bluetoothIntercom"
  6662. type="1" >
  6663. </productMenu>
  6664. <productMenu id="phone"
  6665. type="2" >
  6666. </productMenu>
  6667. <productMenu id="deviceSetting"
  6668. type="1"
  6669. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  6670. </productMenu>
  6671. <productMenu id="quickGuide"
  6672. type="1"
  6673. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5S_1.0.0_en_200410.pdf"
  6674. size="970KB" >
  6675. </productMenu>
  6676. <productMenu id="userGuide"
  6677. type="1"
  6678. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5S_1.0.0_en_200330.pdf"
  6679. size="1.26MB" >
  6680. </productMenu>
  6681. <productID id="3300"
  6682. />
  6683. <productGroupable type="0"
  6684. />
  6685. </product>
  6686. -->
  6687. </products>
  6688. </sna>