snm.xml 246 KB

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