snm.xml 270 KB

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