snm.xml 476 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260106" appVer="2.14" iosAppVer="2.14" central="1" withoutPhone="1">
  3. <tu url="https://www.sena.com/terms-of-use/?webview=true"
  4. />
  5. <pp url="https://www.sena.com/privacy?webview=true"
  6. />
  7. <warranty url="https://www.sena.com/support/warranty/?webview=true"
  8. />
  9. <profile url=""
  10. />
  11. <wa url="https://firmware.sena.com/senabluetoothmanager/UserGuide_WiFi_Charging_Cable_1.0.2_en_250212.pdf"
  12. />
  13. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  14. />
  15. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  16. />
  17. <wim url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_Firmware_Update_1.0.0_en_250212.pdf"
  18. />
  19. <wst url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_Firmware_Update_1.0.0_en_250211.pdf"
  20. />
  21. <support url=""
  22. />
  23. <forum url=""
  24. />
  25. <sip url="https://community.sena.com/hc/en-us"
  26. />
  27. <productKeys>
  28. <productKey id="4210"
  29. userPSKey="5"
  30. valueLength="1"
  31. />
  32. <productKey id="4230"
  33. userPSKey="5"
  34. valueLength="1"
  35. />
  36. </productKeys>
  37. <!--
  38. <menus>
  39. <menu id="protocol" />
  40. <menu id="alexa" />
  41. <menu id="ota" />
  42. <menu id="wa" />
  43. <menu id="manager" />
  44. <menu id="sip" />
  45. <menu id="meshIntercom" />
  46. <menu id="bluetoothIntercom" />
  47. <menu id="music" />
  48. <menu id="musicSharing" />
  49. <menu id="fmradio" />
  50. <menu id="phone" />
  51. <menu id="led" />
  52. <menu id="volume" />
  53. <menu id="battery" />
  54. <menu id="deviceSetting" />
  55. <menu id="quickGuide" />
  56. <menu id="userGuide" />
  57. </menus>
  58. -->
  59. <serieses>
  60. <series id="60"
  61. name="60 Series"
  62. show="1"
  63. />
  64. <series id="50"
  65. name="50 Series"
  66. show="1"
  67. />
  68. <series id="Helmet"
  69. name="Smart Helmet"
  70. show="1"
  71. />
  72. <series id="30"
  73. name="30 Series"
  74. show="1"
  75. />
  76. <series id="SF"
  77. name="SF Series"
  78. show="1"
  79. />
  80. <series id="SPIDER"
  81. name="SPIDER Series"
  82. show="1"
  83. />
  84. <series id="20"
  85. name="20 Series"
  86. show="1"
  87. />
  88. <series id="SRL"
  89. name="SRL Series"
  90. show="1"
  91. />
  92. <series id="ACS"
  93. name="ACS Series"
  94. show="1"
  95. />
  96. <series id="10"
  97. name="10 Series"
  98. show="1"
  99. />
  100. <series id="5"
  101. name="5 Series"
  102. show="1"
  103. />
  104. <series id="3"
  105. name="3 Series"
  106. show="1"
  107. />
  108. <series id="R"
  109. name="R Series"
  110. show="1"
  111. />
  112. <series id="C"
  113. name="C Series"
  114. show="1"
  115. />
  116. <!--
  117. <series id="smh"
  118. name="SMH"
  119. />
  120. <series id="cavalry"
  121. name="CAVALRY"
  122. show="0"
  123. />
  124. -->
  125. </serieses>
  126. <products>
  127. <product id="60SPRO"
  128. name="60S PRO"
  129. series="60"
  130. latestVersion="0.1"
  131. latestVersionMesh="0.19"
  132. latestVersionVoicePrompt="1.2"
  133. show = "-1" >
  134. <productMenu id="protocol"
  135. type="2" >
  136. </productMenu>
  137. <productMenu id="ota"
  138. type="0" >
  139. <otaLanguages>
  140. <otaLanguage
  141. id="0"
  142. name="English"
  143. package="0"
  144. />
  145. <otaLanguage
  146. id="0"
  147. name="French"
  148. package="1"
  149. />
  150. <otaLanguage
  151. id="0"
  152. name="Spanish"
  153. package="2"
  154. />
  155. <otaLanguage
  156. id="0"
  157. name="Italian"
  158. package="3"
  159. />
  160. <otaLanguage
  161. id="0"
  162. name="German"
  163. package="4"
  164. />
  165. <otaLanguage
  166. id="0"
  167. name="Dutch"
  168. package="5"
  169. />
  170. <otaLanguage
  171. id="0"
  172. name="Russian"
  173. package="6"
  174. />
  175. <otaLanguage
  176. id="0"
  177. name="Chinese"
  178. package="7"
  179. />
  180. <otaLanguage
  181. id="0"
  182. name="Korean"
  183. package="8"
  184. />
  185. <otaLanguage
  186. id="0"
  187. name="Japanese"
  188. package="9"
  189. />
  190. <otaLanguage
  191. id="0"
  192. name="Finnish"
  193. package="10"
  194. />
  195. <otaLanguage
  196. id="0"
  197. name="Polish"
  198. package="11"
  199. />
  200. </otaLanguages>
  201. <otaPackages>
  202. <package
  203. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  204. size="5183988"
  205. />
  206. <package
  207. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  208. size="5183988"
  209. />
  210. <package
  211. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  212. size="5183988"
  213. />
  214. <package
  215. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  216. size="5183988"
  217. />
  218. <package
  219. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  220. size="5183988"
  221. />
  222. <package
  223. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  224. size="5183988"
  225. />
  226. <package
  227. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  228. size="5183988"
  229. />
  230. <package
  231. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  232. size="5183988"
  233. />
  234. <package
  235. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  236. size="5183988"
  237. />
  238. <package
  239. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  240. size="5183988"
  241. />
  242. <package
  243. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  244. size="5183988"
  245. />
  246. <package
  247. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  248. size="5183988"
  249. />
  250. </otaPackages>
  251. </productMenu>
  252. <productMenu id="sip"
  253. type="1" >
  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. </productMenu>
  265. <productMenu id="waveIntercom"
  266. type="1" >
  267. </productMenu>
  268. <productMenu id="bluetoothIntercom"
  269. type="1"
  270. url="2" >
  271. </productMenu>
  272. <productMenu id="bluetoothIntercomGrouping"
  273. type="0" >
  274. </productMenu>
  275. <productMenu id="fmradio"
  276. type="1"
  277. url="1" >
  278. </productMenu>
  279. <productMenu id="phone"
  280. type="1" >
  281. </productMenu>
  282. <productMenu id="music"
  283. type="1" >
  284. </productMenu>
  285. <productMenu id="musicSharing"
  286. type="0" >
  287. </productMenu>
  288. <productMenu id="deviceSetting"
  289. type="1"
  290. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  291. </productMenu>
  292. <productMenu id="quickGuide"
  293. type="0"
  294. url=""
  295. size="1.12MB" >
  296. </productMenu>
  297. <productMenu id="userGuide"
  298. type="1"
  299. url=""
  300. size="2.0MB" >
  301. </productMenu>
  302. <productMenu id="videoGuide"
  303. type="0"
  304. url=""
  305. size="3.41MB" >
  306. </productMenu>
  307. <productMenu id="connectGuide"
  308. type="0"
  309. url=""
  310. size="1.12MB" >
  311. </productMenu>
  312. <productMenu id="volume"
  313. type="16" >
  314. </productMenu>
  315. <productMenu id="soundMode"
  316. type="1" >
  317. </productMenu>
  318. <productMenu id="battery"
  319. type="1" >
  320. </productMenu>
  321. <productID id="6A1A"
  322. />
  323. <productGroupable type="0"
  324. />
  325. </product>
  326. <product id="60SEVO"
  327. name="60S EVO"
  328. series="60"
  329. latestVersion="1.0.2"
  330. latestVersionMesh="0.19"
  331. latestVersionVoicePrompt="1.7"
  332. show = "-1" >
  333. <productMenu id="protocol"
  334. type="2" >
  335. </productMenu>
  336. <productMenu id="warranty"
  337. type="1" >
  338. </productMenu>
  339. <productMenu id="serialNumber"
  340. type="1" >
  341. </productMenu>
  342. <productMenu id="ota"
  343. type="2" >
  344. <otaLanguages>
  345. <otaLanguage
  346. id="0"
  347. name="English"
  348. package="0"
  349. />
  350. <otaLanguage
  351. id="0"
  352. name="French"
  353. package="1"
  354. />
  355. <otaLanguage
  356. id="0"
  357. name="Spanish"
  358. package="2"
  359. />
  360. <otaLanguage
  361. id="0"
  362. name="Italian"
  363. package="3"
  364. />
  365. <otaLanguage
  366. id="0"
  367. name="German"
  368. package="4"
  369. />
  370. <otaLanguage
  371. id="0"
  372. name="Dutch"
  373. package="5"
  374. />
  375. <otaLanguage
  376. id="0"
  377. name="Russian"
  378. package="6"
  379. />
  380. <otaLanguage
  381. id="0"
  382. name="Chinese"
  383. package="7"
  384. />
  385. <otaLanguage
  386. id="0"
  387. name="Korean"
  388. package="8"
  389. />
  390. <otaLanguage
  391. id="0"
  392. name="Japanese"
  393. package="9"
  394. />
  395. <otaLanguage
  396. id="0"
  397. name="Finnish"
  398. package="10"
  399. />
  400. <otaLanguage
  401. id="0"
  402. name="Polish"
  403. package="11"
  404. />
  405. </otaLanguages>
  406. <otaPackages>
  407. <package
  408. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5.img"
  409. size="5183988"
  410. />
  411. <package
  412. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fr-FR.img"
  413. size="5183988"
  414. />
  415. <package
  416. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-es-ES.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-it-IT.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-de-DE.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-nl-NL.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ru-RU.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-cmn-CN.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ko-KR.img"
  441. size="5183988"
  442. />
  443. <package
  444. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ja-JP.img"
  445. size="5183988"
  446. />
  447. <package
  448. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fi-FI.img"
  449. size="5183988"
  450. />
  451. <package
  452. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-pl-PL.img"
  453. size="5183988"
  454. />
  455. </otaPackages>
  456. </productMenu>
  457. <productMenu id="sip"
  458. type="1" >
  459. </productMenu>
  460. <productMenu id="illusion"
  461. type="1" >
  462. </productMenu>
  463. <productMenu id="meshIntercom"
  464. type="30" >
  465. </productMenu>
  466. <productMenu id="meshIntercom+"
  467. type="3"
  468. url="2" >
  469. </productMenu>
  470. <productMenu id="waveIntercom"
  471. type="1" >
  472. </productMenu>
  473. <productMenu id="bluetoothIntercom"
  474. type="1"
  475. url="2" >
  476. </productMenu>
  477. <productMenu id="bluetoothIntercomGrouping"
  478. type="0" >
  479. </productMenu>
  480. <productMenu id="fmradio"
  481. type="1"
  482. url="1" >
  483. </productMenu>
  484. <productMenu id="phone"
  485. type="1" >
  486. </productMenu>
  487. <productMenu id="music"
  488. type="1" >
  489. </productMenu>
  490. <productMenu id="musicSharing"
  491. type="0" >
  492. </productMenu>
  493. <productMenu id="deviceSetting"
  494. type="1"
  495. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_05_Auto.xml" >
  496. </productMenu>
  497. <productMenu id="quickGuide"
  498. type="0"
  499. url=""
  500. size="1.12MB" >
  501. </productMenu>
  502. <productMenu id="userGuide"
  503. type="1"
  504. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.0.0_en_260429.pdf"
  505. size="2.0MB" >
  506. </productMenu>
  507. <productMenu id="videoGuide"
  508. type="0"
  509. url=""
  510. size="3.41MB" >
  511. </productMenu>
  512. <productMenu id="connectGuide"
  513. type="0"
  514. url=""
  515. size="1.12MB" >
  516. </productMenu>
  517. <productMenu id="volume"
  518. type="16" >
  519. </productMenu>
  520. <productMenu id="volume+"
  521. type="2"
  522. url="0x6004" >
  523. </productMenu>
  524. <productMenu id="soundMode"
  525. type="1" >
  526. </productMenu>
  527. <productMenu id="appearance"
  528. type="1"
  529. url="1|white,silver,black,glossy_black" >
  530. </productMenu>
  531. <productMenu id="battery"
  532. type="1" >
  533. </productMenu>
  534. <productID id="6A15"
  535. />
  536. <productGroupable type="0"
  537. />
  538. </product>
  539. <product id="60S"
  540. name="60S"
  541. series="60"
  542. latestVersion="1.2.9"
  543. latestVersionMesh="1.2"
  544. latestVersionVoicePrompt="1.7"
  545. show = "1" >
  546. <productMenu id="protocol"
  547. type="2" >
  548. </productMenu>
  549. <productMenu id="ota"
  550. type="2" >
  551. <otaLanguages>
  552. <otaLanguage
  553. id="0"
  554. name="English"
  555. package="0"
  556. />
  557. <otaLanguage
  558. id="0"
  559. name="French"
  560. package="1"
  561. />
  562. <otaLanguage
  563. id="0"
  564. name="Spanish"
  565. package="2"
  566. />
  567. <otaLanguage
  568. id="0"
  569. name="Italian"
  570. package="3"
  571. />
  572. <otaLanguage
  573. id="0"
  574. name="German"
  575. package="4"
  576. />
  577. <otaLanguage
  578. id="0"
  579. name="Dutch"
  580. package="5"
  581. />
  582. <otaLanguage
  583. id="0"
  584. name="Russian"
  585. package="6"
  586. />
  587. <otaLanguage
  588. id="0"
  589. name="Chinese"
  590. package="7"
  591. />
  592. <otaLanguage
  593. id="0"
  594. name="Korean"
  595. package="8"
  596. />
  597. <otaLanguage
  598. id="0"
  599. name="Japanese"
  600. package="9"
  601. />
  602. <otaLanguage
  603. id="0"
  604. name="Finnish"
  605. package="10"
  606. />
  607. <otaLanguage
  608. id="0"
  609. name="Polish"
  610. package="11"
  611. />
  612. </otaLanguages>
  613. <otaPackages>
  614. <package
  615. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0.img"
  616. size="5183988"
  617. />
  618. <package
  619. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fr-FR.img"
  620. size="5183988"
  621. />
  622. <package
  623. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-es-ES.img"
  624. size="5183988"
  625. />
  626. <package
  627. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-it-IT.img"
  628. size="5183988"
  629. />
  630. <package
  631. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-de-DE.img"
  632. size="5183988"
  633. />
  634. <package
  635. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-nl-NL.img"
  636. size="5183988"
  637. />
  638. <package
  639. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ru-RU.img"
  640. size="5183988"
  641. />
  642. <package
  643. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-cmn-CN.img"
  644. size="5183988"
  645. />
  646. <package
  647. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ko-KR.img"
  648. size="5183988"
  649. />
  650. <package
  651. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ja-JP.img"
  652. size="5183988"
  653. />
  654. <package
  655. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fi-FI.img"
  656. size="5183988"
  657. />
  658. <package
  659. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-pl-PL.img"
  660. size="5183988"
  661. />
  662. </otaPackages>
  663. </productMenu>
  664. <productMenu id="sip"
  665. type="1" >
  666. </productMenu>
  667. <productMenu id="illusion"
  668. type="1" >
  669. </productMenu>
  670. <productMenu id="meshIntercom"
  671. type="30" >
  672. </productMenu>
  673. <productMenu id="meshIntercom+"
  674. type="3"
  675. url="2" >
  676. </productMenu>
  677. <productMenu id="waveIntercom"
  678. type="1" >
  679. </productMenu>
  680. <productMenu id="bluetoothIntercom"
  681. type="1"
  682. url="2" >
  683. </productMenu>
  684. <productMenu id="bluetoothIntercomGrouping"
  685. type="0" >
  686. </productMenu>
  687. <productMenu id="fmradio"
  688. type="1"
  689. url="1" >
  690. </productMenu>
  691. <productMenu id="phone"
  692. type="1" >
  693. </productMenu>
  694. <productMenu id="music"
  695. type="1" >
  696. </productMenu>
  697. <productMenu id="musicSharing"
  698. type="0" >
  699. </productMenu>
  700. <productMenu id="deviceSetting"
  701. type="1"
  702. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  703. <productMenuURL version="1.2.6"
  704. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  705. />
  706. <productMenuURL version="1.2.3"
  707. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  708. />
  709. </productMenu>
  710. <productMenu id="quickGuide"
  711. type="0"
  712. url=""
  713. size="1.12MB" >
  714. </productMenu>
  715. <productMenu id="userGuide"
  716. type="1"
  717. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  718. size="2.0MB" >
  719. </productMenu>
  720. <productMenu id="videoGuide"
  721. type="0"
  722. url=""
  723. size="3.41MB" >
  724. </productMenu>
  725. <productMenu id="connectGuide"
  726. type="1"
  727. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  728. size="1.12MB" >
  729. </productMenu>
  730. <productMenu id="volume"
  731. type="16" >
  732. </productMenu>
  733. <productMenu id="volume+"
  734. type="2"
  735. url="0x6004" >
  736. <productMenuURL version="1.2.3"
  737. url="0x6004"
  738. />
  739. </productMenu>
  740. <productMenu id="soundMode"
  741. type="0" >
  742. </productMenu>
  743. <productMenu id="appearance"
  744. type="1"
  745. url="2|white,silver,chrome,black" >
  746. </productMenu>
  747. <productMenu id="battery"
  748. type="1" >
  749. </productMenu>
  750. <productID id="6A0D"
  751. />
  752. <productGroupable type="0"
  753. />
  754. </product>
  755. <product id="60S"
  756. name="60S"
  757. series="60"
  758. latestVersion="1.2.9"
  759. latestVersionMesh="1.2"
  760. latestVersionVoicePrompt="1.7"
  761. show = "-1" >
  762. <productMenu id="protocol"
  763. type="2" >
  764. </productMenu>
  765. <productMenu id="ota"
  766. type="2" >
  767. <otaLanguages>
  768. <otaLanguage
  769. id="0"
  770. name="English"
  771. package="0"
  772. />
  773. <otaLanguage
  774. id="0"
  775. name="French"
  776. package="1"
  777. />
  778. <otaLanguage
  779. id="0"
  780. name="Spanish"
  781. package="2"
  782. />
  783. <otaLanguage
  784. id="0"
  785. name="Italian"
  786. package="3"
  787. />
  788. <otaLanguage
  789. id="0"
  790. name="German"
  791. package="4"
  792. />
  793. <otaLanguage
  794. id="0"
  795. name="Dutch"
  796. package="5"
  797. />
  798. <otaLanguage
  799. id="0"
  800. name="Russian"
  801. package="6"
  802. />
  803. <otaLanguage
  804. id="0"
  805. name="Chinese"
  806. package="7"
  807. />
  808. <otaLanguage
  809. id="0"
  810. name="Korean"
  811. package="8"
  812. />
  813. <otaLanguage
  814. id="0"
  815. name="Japanese"
  816. package="9"
  817. />
  818. <otaLanguage
  819. id="0"
  820. name="Finnish"
  821. package="10"
  822. />
  823. <otaLanguage
  824. id="0"
  825. name="Polish"
  826. package="11"
  827. />
  828. </otaLanguages>
  829. <otaPackages>
  830. <package
  831. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0.img"
  832. size="5183988"
  833. />
  834. <package
  835. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fr-FR.img"
  836. size="5183988"
  837. />
  838. <package
  839. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-es-ES.img"
  840. size="5183988"
  841. />
  842. <package
  843. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-it-IT.img"
  844. size="5183988"
  845. />
  846. <package
  847. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-de-DE.img"
  848. size="5183988"
  849. />
  850. <package
  851. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-nl-NL.img"
  852. size="5183988"
  853. />
  854. <package
  855. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ru-RU.img"
  856. size="5183988"
  857. />
  858. <package
  859. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-cmn-CN.img"
  860. size="5183988"
  861. />
  862. <package
  863. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ko-KR.img"
  864. size="5183988"
  865. />
  866. <package
  867. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ja-JP.img"
  868. size="5183988"
  869. />
  870. <package
  871. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fi-FI.img"
  872. size="5183988"
  873. />
  874. <package
  875. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-pl-PL.img"
  876. size="5183988"
  877. />
  878. </otaPackages>
  879. </productMenu>
  880. <productMenu id="wa"
  881. type="0" >
  882. </productMenu>
  883. <productMenu id="sip"
  884. type="1" >
  885. </productMenu>
  886. <productMenu id="led"
  887. type="0" >
  888. </productMenu>
  889. <productMenu id="illusion"
  890. type="1" >
  891. </productMenu>
  892. <productMenu id="meshIntercom"
  893. type="30" >
  894. </productMenu>
  895. <productMenu id="meshIntercom+"
  896. type="3"
  897. url="2" >
  898. <productMenuURL version="1.0.2"
  899. url="10"
  900. />
  901. </productMenu>
  902. <productMenu id="waveIntercom"
  903. type="1" >
  904. <productMenuType version="1.0.9"
  905. type="0"
  906. />
  907. </productMenu>
  908. <productMenu id="bluetoothIntercom"
  909. type="1"
  910. url="2" >
  911. </productMenu>
  912. <productMenu id="bluetoothIntercomGrouping"
  913. type="0" >
  914. </productMenu>
  915. <productMenu id="fmradio"
  916. type="1"
  917. url="1" >
  918. </productMenu>
  919. <productMenu id="phone"
  920. type="1" >
  921. </productMenu>
  922. <productMenu id="music"
  923. type="1" >
  924. </productMenu>
  925. <productMenu id="musicSharing"
  926. type="0" >
  927. </productMenu>
  928. <productMenu id="deviceSetting"
  929. type="1"
  930. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  931. <productMenuURL version="1.2.6"
  932. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  933. />
  934. <productMenuURL version="1.2.3"
  935. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  936. />
  937. <productMenuURL version="1.0.2"
  938. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  939. />
  940. <productMenuURL version="1.0"
  941. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  942. />
  943. <productMenuURL version="0.9.11"
  944. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  945. />
  946. </productMenu>
  947. <productMenu id="quickGuide"
  948. type="0"
  949. url=""
  950. size="1.12MB" >
  951. </productMenu>
  952. <productMenu id="userGuide"
  953. type="1"
  954. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  955. size="2.0MB" >
  956. </productMenu>
  957. <productMenu id="videoGuide"
  958. type="0"
  959. url=""
  960. size="3.41MB" >
  961. </productMenu>
  962. <productMenu id="connectGuide"
  963. type="1"
  964. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  965. size="1.12MB" >
  966. </productMenu>
  967. <productMenu id="volume"
  968. type="16" >
  969. <productMenuType version="0.9.11"
  970. type="13"
  971. />
  972. </productMenu>
  973. <productMenu id="volume+"
  974. type="2"
  975. url="0x6004" >
  976. <productMenuURL version="1.2.3"
  977. url="0x6004"
  978. />
  979. </productMenu>
  980. <productMenu id="soundMode"
  981. type="0" >
  982. <productMenuType version="0.9.11"
  983. type="0"
  984. />
  985. </productMenu>
  986. <productMenu id="appearance"
  987. type="1"
  988. url="2|white,silver,chrome,black" >
  989. </productMenu>
  990. <productMenu id="battery"
  991. type="1" >
  992. </productMenu>
  993. <productID id="6A02"
  994. />
  995. <productGroupable type="0"
  996. />
  997. </product>
  998. <product id="60X"
  999. name="60X"
  1000. series="60"
  1001. latestVersion="1.0"
  1002. latestVersionMesh="0.19"
  1003. latestVersionVoicePrompt="1.7"
  1004. show = "-1" >
  1005. <productMenu id="protocol"
  1006. type="2" >
  1007. </productMenu>
  1008. <productMenu id="warranty"
  1009. type="1" >
  1010. </productMenu>
  1011. <productMenu id="serialNumber"
  1012. type="1" >
  1013. </productMenu>
  1014. <productMenu id="ota"
  1015. type="2" >
  1016. <otaLanguages>
  1017. <otaLanguage
  1018. id="0"
  1019. name="English"
  1020. package="0"
  1021. />
  1022. <otaLanguage
  1023. id="0"
  1024. name="French"
  1025. package="1"
  1026. />
  1027. <otaLanguage
  1028. id="0"
  1029. name="Spanish"
  1030. package="2"
  1031. />
  1032. <otaLanguage
  1033. id="0"
  1034. name="Italian"
  1035. package="3"
  1036. />
  1037. <otaLanguage
  1038. id="0"
  1039. name="German"
  1040. package="4"
  1041. />
  1042. <otaLanguage
  1043. id="0"
  1044. name="Dutch"
  1045. package="5"
  1046. />
  1047. <otaLanguage
  1048. id="0"
  1049. name="Russian"
  1050. package="6"
  1051. />
  1052. <otaLanguage
  1053. id="0"
  1054. name="Chinese"
  1055. package="7"
  1056. />
  1057. <otaLanguage
  1058. id="0"
  1059. name="Korean"
  1060. package="8"
  1061. />
  1062. <otaLanguage
  1063. id="0"
  1064. name="Japanese"
  1065. package="9"
  1066. />
  1067. <otaLanguage
  1068. id="0"
  1069. name="Finnish"
  1070. package="10"
  1071. />
  1072. <otaLanguage
  1073. id="0"
  1074. name="Polish"
  1075. package="11"
  1076. />
  1077. </otaLanguages>
  1078. <otaPackages>
  1079. <package
  1080. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5.img"
  1081. size="5183988"
  1082. />
  1083. <package
  1084. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fr-FR.img"
  1085. size="5183988"
  1086. />
  1087. <package
  1088. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-es-ES.img"
  1089. size="5183988"
  1090. />
  1091. <package
  1092. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-it-IT.img"
  1093. size="5183988"
  1094. />
  1095. <package
  1096. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-de-DE.img"
  1097. size="5183988"
  1098. />
  1099. <package
  1100. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-nl-NL.img"
  1101. size="5183988"
  1102. />
  1103. <package
  1104. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ru-RU.img"
  1105. size="5183988"
  1106. />
  1107. <package
  1108. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-cmn-CN.img"
  1109. size="5183988"
  1110. />
  1111. <package
  1112. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ko-KR.img"
  1113. size="5183988"
  1114. />
  1115. <package
  1116. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ja-JP.img"
  1117. size="5183988"
  1118. />
  1119. <package
  1120. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fi-FI.img"
  1121. size="5183988"
  1122. />
  1123. <package
  1124. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-pl-PL.img"
  1125. size="5183988"
  1126. />
  1127. </otaPackages>
  1128. </productMenu>
  1129. <productMenu id="wa"
  1130. type="0" >
  1131. </productMenu>
  1132. <productMenu id="sip"
  1133. type="1" >
  1134. </productMenu>
  1135. <productMenu id="led"
  1136. type="1" >
  1137. </productMenu>
  1138. <productMenu id="illusion"
  1139. type="1" >
  1140. </productMenu>
  1141. <productMenu id="meshIntercom"
  1142. type="30" >
  1143. </productMenu>
  1144. <productMenu id="meshIntercom+"
  1145. type="3"
  1146. url="2" >
  1147. </productMenu>
  1148. <productMenu id="waveIntercom"
  1149. type="1" >
  1150. </productMenu>
  1151. <productMenu id="bluetoothIntercom"
  1152. type="1" >
  1153. </productMenu>
  1154. <productMenu id="fmradio"
  1155. type="1"
  1156. url="1" >
  1157. </productMenu>
  1158. <productMenu id="mic"
  1159. type="0" >
  1160. </productMenu>
  1161. <productMenu id="phone"
  1162. type="1" >
  1163. </productMenu>
  1164. <productMenu id="music"
  1165. type="1" >
  1166. </productMenu>
  1167. <productMenu id="musicSharing"
  1168. type="0" >
  1169. </productMenu>
  1170. <productMenu id="deviceSetting"
  1171. type="1"
  1172. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1173. </productMenu>
  1174. <productMenu id="quickGuide"
  1175. type="0"
  1176. url=""
  1177. size="1.12MB" >
  1178. </productMenu>
  1179. <productMenu id="userGuide"
  1180. type="0"
  1181. url=""
  1182. size="2.0MB" >
  1183. </productMenu>
  1184. <productMenu id="videoGuide"
  1185. type="0"
  1186. url=""
  1187. size="3.41MB" >
  1188. </productMenu>
  1189. <productMenu id="keySettings"
  1190. type="1"
  1191. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1192. </productMenu>
  1193. <productMenu id="volume"
  1194. type="13" >
  1195. </productMenu>
  1196. <productMenu id="volume+"
  1197. type="2"
  1198. url="0x6004" >
  1199. </productMenu>
  1200. <productMenu id="appearance"
  1201. type="1"
  1202. url="1|white,silver,black,glossy_black" >
  1203. </productMenu>
  1204. <productMenu id="battery"
  1205. type="1" >
  1206. </productMenu>
  1207. <productID id="6A03"
  1208. />
  1209. <productGroupable type="0"
  1210. />
  1211. </product>
  1212. <product id="R35"
  1213. name="R35"
  1214. series="R"
  1215. latestVersion="1.1.1"
  1216. latestVersionVoicePrompt="1.5"
  1217. show = "1" >
  1218. <productMenu id="protocol"
  1219. type="2" >
  1220. </productMenu>
  1221. <productMenu id="ota"
  1222. type="2" >
  1223. <otaLanguages>
  1224. <otaLanguage
  1225. id="0"
  1226. name="English"
  1227. package="0"
  1228. />
  1229. <otaLanguage
  1230. id="0"
  1231. name="Chinese"
  1232. package="1"
  1233. />
  1234. <otaLanguage
  1235. id="0"
  1236. name="Chinese Singapore"
  1237. package="2"
  1238. />
  1239. <otaLanguage
  1240. id="0"
  1241. name="Filipino"
  1242. package="3"
  1243. />
  1244. <otaLanguage
  1245. id="0"
  1246. name="Hebrew"
  1247. package="4"
  1248. />
  1249. <otaLanguage
  1250. id="0"
  1251. name="Hindi"
  1252. package="5"
  1253. />
  1254. <otaLanguage
  1255. id="0"
  1256. name="Indonesian"
  1257. package="6"
  1258. />
  1259. <otaLanguage
  1260. id="0"
  1261. name="Japanese"
  1262. package="7"
  1263. />
  1264. <otaLanguage
  1265. id="0"
  1266. name="Korean"
  1267. package="8"
  1268. />
  1269. <otaLanguage
  1270. id="0"
  1271. name="Malay"
  1272. package="9"
  1273. />
  1274. <otaLanguage
  1275. id="0"
  1276. name="Modern Standard Arabic"
  1277. package="10"
  1278. />
  1279. <otaLanguage
  1280. id="0"
  1281. name="Taiwanese"
  1282. package="11"
  1283. />
  1284. <otaLanguage
  1285. id="0"
  1286. name="Tamil"
  1287. package="12"
  1288. />
  1289. <otaLanguage
  1290. id="0"
  1291. name="Thai"
  1292. package="13"
  1293. />
  1294. <otaLanguage
  1295. id="0"
  1296. name="东北话"
  1297. package="14"
  1298. />
  1299. <otaLanguage
  1300. id="0"
  1301. name="广东话"
  1302. package="15"
  1303. />
  1304. <otaLanguage
  1305. id="0"
  1306. name="江浙沪"
  1307. package="16"
  1308. />
  1309. <otaLanguage
  1310. id="0"
  1311. name="四川话"
  1312. package="17"
  1313. />
  1314. <otaLanguage
  1315. id="0"
  1316. name="陕西话"
  1317. package="18"
  1318. />
  1319. </otaLanguages>
  1320. <otaPackages>
  1321. <package
  1322. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0.img"
  1323. size="5183988"
  1324. />
  1325. <package
  1326. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-CN.img"
  1327. size="5183988"
  1328. />
  1329. <package
  1330. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-SG.img"
  1331. size="5183988"
  1332. />
  1333. <package
  1334. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-tl-PH.img"
  1335. size="5183988"
  1336. />
  1337. <package
  1338. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-he-IL.img"
  1339. size="5183988"
  1340. />
  1341. <package
  1342. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-hi-IN.img"
  1343. size="5183988"
  1344. />
  1345. <package
  1346. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-id-ID.img"
  1347. size="5183988"
  1348. />
  1349. <package
  1350. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ja-JP.img"
  1351. size="5183988"
  1352. />
  1353. <package
  1354. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ko-KR.img"
  1355. size="5183988"
  1356. />
  1357. <package
  1358. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ms-MY.img"
  1359. size="5183988"
  1360. />
  1361. <package
  1362. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ar-XA.img"
  1363. size="5183988"
  1364. />
  1365. <package
  1366. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-nan-TW.img"
  1367. size="5183988"
  1368. />
  1369. <package
  1370. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ta-IN.img"
  1371. size="5183988"
  1372. />
  1373. <package
  1374. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-th-TH.img"
  1375. size="5183988"
  1376. />
  1377. <package
  1378. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zdb-CN.img"
  1379. size="5183988"
  1380. />
  1381. <package
  1382. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-yue-CN.img"
  1383. size="5183988"
  1384. />
  1385. <package
  1386. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-wuu-CN.img"
  1387. size="5183988"
  1388. />
  1389. <package
  1390. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsc-CN.img"
  1391. size="5183988"
  1392. />
  1393. <package
  1394. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsn-CN.img"
  1395. size="5183988"
  1396. />
  1397. </otaPackages>
  1398. </productMenu>
  1399. <productMenu id="sip"
  1400. type="1" >
  1401. </productMenu>
  1402. <productMenu id="illusion"
  1403. type="1" >
  1404. </productMenu>
  1405. <productMenu id="meshIntercom"
  1406. type="30" >
  1407. </productMenu>
  1408. <productMenu id="meshIntercom+"
  1409. type="3"
  1410. url="2" >
  1411. </productMenu>
  1412. <productMenu id="waveIntercom"
  1413. type="1" >
  1414. </productMenu>
  1415. <productMenu id="phone"
  1416. type="1" >
  1417. </productMenu>
  1418. <productMenu id="music"
  1419. type="1" >
  1420. </productMenu>
  1421. <productMenu id="musicSharing"
  1422. type="0" >
  1423. </productMenu>
  1424. <productMenu id="deviceSetting"
  1425. type="1"
  1426. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml" >
  1427. <productMenuURL version="1.0.3"
  1428. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1429. />
  1430. </productMenu>
  1431. <productMenu id="quickGuide"
  1432. type="0"
  1433. url=""
  1434. size="1.12MB" >
  1435. </productMenu>
  1436. <productMenu id="userGuide"
  1437. type="1"
  1438. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1439. size="2.0MB" >
  1440. </productMenu>
  1441. <productMenu id="videoGuide"
  1442. type="0"
  1443. url=""
  1444. size="3.41MB" >
  1445. </productMenu>
  1446. <productMenu id="connectGuide"
  1447. type="0"
  1448. url=""
  1449. size="1.12MB" >
  1450. </productMenu>
  1451. <productMenu id="volume"
  1452. type="16" >
  1453. </productMenu>
  1454. <productMenu id="volume+"
  1455. type="2"
  1456. url="0x6004" >
  1457. </productMenu>
  1458. <productMenu id="soundMode"
  1459. type="0" >
  1460. </productMenu>
  1461. <productMenu id="appearance"
  1462. type="1"
  1463. url="1|white,silver,chrome,black" >
  1464. </productMenu>
  1465. <productMenu id="battery"
  1466. type="1" >
  1467. </productMenu>
  1468. <productID id="6A06"
  1469. />
  1470. <productGroupable type="0"
  1471. />
  1472. </product>
  1473. <product id="COM60X"
  1474. name="BMW MOTORRAD COM 60X"
  1475. series="60"
  1476. latestVersion="1.0"
  1477. latestVersionMesh="0.19"
  1478. latestVersionVoicePrompt="1.7"
  1479. show = "-1" >
  1480. <productMenu id="protocol"
  1481. type="2" >
  1482. </productMenu>
  1483. <productMenu id="ota"
  1484. type="0" >
  1485. <otaLanguages>
  1486. <otaLanguage
  1487. id="0"
  1488. name="English"
  1489. package="0"
  1490. />
  1491. <otaLanguage
  1492. id="0"
  1493. name="French"
  1494. package="1"
  1495. />
  1496. <otaLanguage
  1497. id="0"
  1498. name="Spanish"
  1499. package="2"
  1500. />
  1501. <otaLanguage
  1502. id="0"
  1503. name="Italian"
  1504. package="3"
  1505. />
  1506. <otaLanguage
  1507. id="0"
  1508. name="German"
  1509. package="4"
  1510. />
  1511. <otaLanguage
  1512. id="0"
  1513. name="Dutch"
  1514. package="5"
  1515. />
  1516. <otaLanguage
  1517. id="0"
  1518. name="Russian"
  1519. package="6"
  1520. />
  1521. <otaLanguage
  1522. id="0"
  1523. name="Chinese"
  1524. package="7"
  1525. />
  1526. <otaLanguage
  1527. id="0"
  1528. name="Korean"
  1529. package="8"
  1530. />
  1531. <otaLanguage
  1532. id="0"
  1533. name="Japanese"
  1534. package="9"
  1535. />
  1536. <otaLanguage
  1537. id="0"
  1538. name="Finnish"
  1539. package="10"
  1540. />
  1541. <otaLanguage
  1542. id="0"
  1543. name="Polish"
  1544. package="11"
  1545. />
  1546. </otaLanguages>
  1547. <otaPackages>
  1548. <package
  1549. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5.img"
  1550. size="5183988"
  1551. />
  1552. <package
  1553. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fr-FR.img"
  1554. size="5183988"
  1555. />
  1556. <package
  1557. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-es-ES.img"
  1558. size="5183988"
  1559. />
  1560. <package
  1561. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-it-IT.img"
  1562. size="5183988"
  1563. />
  1564. <package
  1565. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-de-DE.img"
  1566. size="5183988"
  1567. />
  1568. <package
  1569. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-nl-NL.img"
  1570. size="5183988"
  1571. />
  1572. <package
  1573. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ru-RU.img"
  1574. size="5183988"
  1575. />
  1576. <package
  1577. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-cmn-CN.img"
  1578. size="5183988"
  1579. />
  1580. <package
  1581. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ko-KR.img"
  1582. size="5183988"
  1583. />
  1584. <package
  1585. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ja-JP.img"
  1586. size="5183988"
  1587. />
  1588. <package
  1589. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fi-FI.img"
  1590. size="5183988"
  1591. />
  1592. <package
  1593. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-pl-PL.img"
  1594. size="5183988"
  1595. />
  1596. </otaPackages>
  1597. </productMenu>
  1598. <productMenu id="wa"
  1599. type="0" >
  1600. </productMenu>
  1601. <productMenu id="sip"
  1602. type="1" >
  1603. </productMenu>
  1604. <productMenu id="led"
  1605. type="1" >
  1606. </productMenu>
  1607. <productMenu id="illusion"
  1608. type="1" >
  1609. </productMenu>
  1610. <productMenu id="meshIntercom"
  1611. type="30" >
  1612. </productMenu>
  1613. <productMenu id="meshIntercom+"
  1614. type="3"
  1615. url="2" >
  1616. </productMenu>
  1617. <productMenu id="bluetoothIntercom"
  1618. type="1" >
  1619. </productMenu>
  1620. <productMenu id="fmradio"
  1621. type="1"
  1622. url="1" >
  1623. </productMenu>
  1624. <productMenu id="mic"
  1625. type="0" >
  1626. </productMenu>
  1627. <productMenu id="phone"
  1628. type="1" >
  1629. </productMenu>
  1630. <productMenu id="music"
  1631. type="1" >
  1632. </productMenu>
  1633. <productMenu id="musicSharing"
  1634. type="0" >
  1635. </productMenu>
  1636. <productMenu id="deviceSetting"
  1637. type="1"
  1638. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1639. </productMenu>
  1640. <productMenu id="quickGuide"
  1641. type="0"
  1642. url=""
  1643. size="1.12MB" >
  1644. </productMenu>
  1645. <productMenu id="userGuide"
  1646. type="1"
  1647. url=""
  1648. size="2.0MB" >
  1649. </productMenu>
  1650. <productMenu id="videoGuide"
  1651. type="0"
  1652. url=""
  1653. size="3.41MB" >
  1654. </productMenu>
  1655. <productMenu id="keySettings"
  1656. type="1"
  1657. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1658. </productMenu>
  1659. <productMenu id="volume"
  1660. type="13" >
  1661. </productMenu>
  1662. <productMenu id="volume+"
  1663. type="2"
  1664. url="0x6004" >
  1665. </productMenu>
  1666. <productMenu id="battery"
  1667. type="1" >
  1668. </productMenu>
  1669. <productID id="6A1B"
  1670. />
  1671. <productGroupable type="0"
  1672. />
  1673. </product>
  1674. <product id="COMP1"
  1675. name="BMW COM P1"
  1676. series="60"
  1677. latestVersion="1.2"
  1678. latestVersionMesh="0.19"
  1679. latestVersionVoicePrompt="1.0"
  1680. show = "-1" >
  1681. <productMenu id="protocol"
  1682. type="2" >
  1683. </productMenu>
  1684. <productMenu id="ota"
  1685. type="2" >
  1686. <otaLanguages>
  1687. <otaLanguage
  1688. id="0"
  1689. name="English"
  1690. package="0"
  1691. />
  1692. <otaLanguage
  1693. id="0"
  1694. name="French"
  1695. package="1"
  1696. />
  1697. <otaLanguage
  1698. id="0"
  1699. name="Spanish"
  1700. package="2"
  1701. />
  1702. <otaLanguage
  1703. id="0"
  1704. name="Italian"
  1705. package="3"
  1706. />
  1707. <otaLanguage
  1708. id="0"
  1709. name="German"
  1710. package="4"
  1711. />
  1712. <otaLanguage
  1713. id="0"
  1714. name="Dutch"
  1715. package="5"
  1716. />
  1717. <otaLanguage
  1718. id="0"
  1719. name="Russian"
  1720. package="6"
  1721. />
  1722. <otaLanguage
  1723. id="0"
  1724. name="Chinese"
  1725. package="7"
  1726. />
  1727. <otaLanguage
  1728. id="0"
  1729. name="Korean"
  1730. package="8"
  1731. />
  1732. <otaLanguage
  1733. id="0"
  1734. name="Japanese"
  1735. package="9"
  1736. />
  1737. <otaLanguage
  1738. id="0"
  1739. name="Finnish"
  1740. package="10"
  1741. />
  1742. </otaLanguages>
  1743. <otaPackages>
  1744. <package
  1745. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0.img"
  1746. size="5183988"
  1747. />
  1748. <package
  1749. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fr-FR.img"
  1750. size="5183988"
  1751. />
  1752. <package
  1753. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-es-ES.img"
  1754. size="5183988"
  1755. />
  1756. <package
  1757. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-it-IT.img"
  1758. size="5183988"
  1759. />
  1760. <package
  1761. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-de-DE.img"
  1762. size="5183988"
  1763. />
  1764. <package
  1765. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-nl-NL.img"
  1766. size="5183988"
  1767. />
  1768. <package
  1769. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ru-RU.img"
  1770. size="5183988"
  1771. />
  1772. <package
  1773. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-cmn-CN.img"
  1774. size="5183988"
  1775. />
  1776. <package
  1777. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ko-KR.img"
  1778. size="5183988"
  1779. />
  1780. <package
  1781. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ja-JP.img"
  1782. size="5183988"
  1783. />
  1784. <package
  1785. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fi-FI.img"
  1786. size="5183988"
  1787. />
  1788. </otaPackages>
  1789. </productMenu>
  1790. <productMenu id="wa"
  1791. type="0" >
  1792. </productMenu>
  1793. <productMenu id="sip"
  1794. type="1" >
  1795. </productMenu>
  1796. <productMenu id="led"
  1797. type="0" >
  1798. </productMenu>
  1799. <productMenu id="illusion"
  1800. type="0" >
  1801. </productMenu>
  1802. <productMenu id="meshIntercom"
  1803. type="30" >
  1804. </productMenu>
  1805. <productMenu id="bluetoothIntercom"
  1806. type="1" >
  1807. </productMenu>
  1808. <productMenu id="bluetoothIntercomGrouping"
  1809. type="0" >
  1810. </productMenu>
  1811. <productMenu id="fmradio"
  1812. type="0" >
  1813. </productMenu>
  1814. <productMenu id="phone"
  1815. type="1" >
  1816. </productMenu>
  1817. <productMenu id="music"
  1818. type="1" >
  1819. </productMenu>
  1820. <productMenu id="musicSharing"
  1821. type="0" >
  1822. </productMenu>
  1823. <productMenu id="deviceSetting"
  1824. type="1"
  1825. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1826. </productMenu>
  1827. <productMenu id="quickGuide"
  1828. type="0"
  1829. url=""
  1830. size="1.12MB" >
  1831. </productMenu>
  1832. <productMenu id="userGuide"
  1833. type="0"
  1834. url=""
  1835. size="2.0MB" >
  1836. </productMenu>
  1837. <productMenu id="videoGuide"
  1838. type="0"
  1839. url=""
  1840. size="3.41MB" >
  1841. </productMenu>
  1842. <productMenu id="volume"
  1843. type="16" >
  1844. </productMenu>
  1845. <productMenu id="battery"
  1846. type="1" >
  1847. </productMenu>
  1848. <productID id="6A80"
  1849. />
  1850. <productGroupable type="0"
  1851. />
  1852. </product>
  1853. <product id="50S"
  1854. name="50S"
  1855. series="50"
  1856. latestVersion="2.7.2"
  1857. show = "1" >
  1858. <productMenu id="protocol"
  1859. type="2" >
  1860. </productMenu>
  1861. <productMenu id="alexa"
  1862. type="0" >
  1863. </productMenu>
  1864. <productMenu id="ota"
  1865. type="0"
  1866. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1867. size="1150234" >
  1868. </productMenu>
  1869. <productMenu id="wa"
  1870. type="1" >
  1871. </productMenu>
  1872. <productMenu id="sip"
  1873. type="1" >
  1874. </productMenu>
  1875. <productMenu id="meshIntercom"
  1876. type="30" >
  1877. <productMenuType version="2.1.1"
  1878. type="20"
  1879. />
  1880. </productMenu>
  1881. <productMenu id="meshIntercom+"
  1882. type="3"
  1883. url="2" >
  1884. <productMenuType version="2.5.9"
  1885. type="2"
  1886. />
  1887. <productMenuURL version="2.1.1"
  1888. url="0"
  1889. />
  1890. </productMenu>
  1891. <productMenu id="waveIntercom"
  1892. type="1" >
  1893. <productMenuType version="2.6"
  1894. type="0"
  1895. />
  1896. </productMenu>
  1897. <productMenu id="bluetoothIntercom"
  1898. type="1" >
  1899. </productMenu>
  1900. <productMenu id="phone"
  1901. type="1" >
  1902. </productMenu>
  1903. <productMenu id="music"
  1904. type="1" >
  1905. </productMenu>
  1906. <productMenu id="fmradio"
  1907. type="1" >
  1908. </productMenu>
  1909. <productMenu id="deviceSetting"
  1910. type="1"
  1911. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1912. <productMenuURL version="2.5.9"
  1913. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1914. />
  1915. <productMenuURL version="2.1.1"
  1916. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1917. />
  1918. <productMenuURL version="2.0.3"
  1919. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1920. />
  1921. </productMenu>
  1922. <productMenu id="quickGuide"
  1923. type="0"
  1924. url=""
  1925. size="934KB" >
  1926. </productMenu>
  1927. <productMenu id="userGuide"
  1928. type="1"
  1929. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1930. size="1.14MB" >
  1931. </productMenu>
  1932. <productMenu id="videoGuide"
  1933. type="1"
  1934. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1935. size="3.41MB" >
  1936. </productMenu>
  1937. <productMenu id="connectGuide"
  1938. type="1"
  1939. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1940. size="1.12MB" >
  1941. </productMenu>
  1942. <productMenu id="volume"
  1943. type="11" >
  1944. </productMenu>
  1945. <productMenu id="battery"
  1946. type="1" >
  1947. </productMenu>
  1948. <productID id="3210"
  1949. />
  1950. <productGroupable type="0"
  1951. />
  1952. </product>
  1953. <product id="50S"
  1954. name="50S"
  1955. series="50"
  1956. latestVersion="1.5.1"
  1957. show = "-1" >
  1958. <productMenu id="protocol"
  1959. type="2" >
  1960. </productMenu>
  1961. <productMenu id="alexa"
  1962. type="0" >
  1963. </productMenu>
  1964. <productMenu id="wa"
  1965. type="1" >
  1966. </productMenu>
  1967. <productMenu id="sip"
  1968. type="1" >
  1969. </productMenu>
  1970. <productMenu id="meshIntercom"
  1971. type="30" >
  1972. <productMenuType version="1.2.2"
  1973. type="20"
  1974. />
  1975. </productMenu>
  1976. <productMenu id="meshIntercom+"
  1977. type="3"
  1978. url="2" >
  1979. <productMenuType version="1.4.9"
  1980. type="2"
  1981. />
  1982. <productMenuURL version="1.2.2"
  1983. url="0"
  1984. />
  1985. </productMenu>
  1986. <productMenu id="waveIntercom"
  1987. type="1" >
  1988. <productMenuType version="1.3.9"
  1989. type="0"
  1990. />
  1991. </productMenu>
  1992. <productMenu id="bluetoothIntercom"
  1993. type="1" >
  1994. </productMenu>
  1995. <productMenu id="phone"
  1996. type="1" >
  1997. </productMenu>
  1998. <productMenu id="music"
  1999. type="1" >
  2000. </productMenu>
  2001. <productMenu id="fmradio"
  2002. type="1" >
  2003. </productMenu>
  2004. <productMenu id="deviceSetting"
  2005. type="1"
  2006. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2007. <productMenuURL version="1.4.9"
  2008. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2009. />
  2010. <productMenuURL version="1.3.9"
  2011. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2012. />
  2013. <productMenuURL version="1.2.2"
  2014. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2015. />
  2016. <productMenuURL version="1.1.1"
  2017. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2018. />
  2019. </productMenu>
  2020. <productMenu id="quickGuide"
  2021. type="0"
  2022. url=""
  2023. size="934KB" >
  2024. </productMenu>
  2025. <productMenu id="userGuide"
  2026. type="1"
  2027. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  2028. size="1.14MB" >
  2029. </productMenu>
  2030. <productMenu id="videoGuide"
  2031. type="1"
  2032. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2033. size="3.41MB" >
  2034. </productMenu>
  2035. <productMenu id="volume"
  2036. type="11" >
  2037. </productMenu>
  2038. <productMenu id="battery"
  2039. type="1" >
  2040. </productMenu>
  2041. <productID id="3132"
  2042. />
  2043. <productGroupable type="0"
  2044. />
  2045. </product>
  2046. <product id="50R"
  2047. name="50R"
  2048. series="50"
  2049. latestVersion="2.7.1"
  2050. show = "1" >
  2051. <productMenu id="protocol"
  2052. type="2" >
  2053. </productMenu>
  2054. <productMenu id="alexa"
  2055. type="0" >
  2056. </productMenu>
  2057. <productMenu id="ota"
  2058. type="0"
  2059. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2060. size="1150234" >
  2061. </productMenu>
  2062. <productMenu id="wa"
  2063. type="1" >
  2064. </productMenu>
  2065. <productMenu id="sip"
  2066. type="1" >
  2067. </productMenu>
  2068. <productMenu id="meshIntercom"
  2069. type="30" >
  2070. <productMenuType version="2.1.1"
  2071. type="20"
  2072. />
  2073. </productMenu>
  2074. <productMenu id="meshIntercom+"
  2075. type="3"
  2076. url="2" >
  2077. <productMenuType version="2.5.9"
  2078. type="2"
  2079. />
  2080. <productMenuURL version="2.1.1"
  2081. url="0"
  2082. />
  2083. </productMenu>
  2084. <productMenu id="waveIntercom"
  2085. type="1" >
  2086. <productMenuType version="2.6"
  2087. type="0"
  2088. />
  2089. </productMenu>
  2090. <productMenu id="bluetoothIntercom"
  2091. type="1" >
  2092. </productMenu>
  2093. <productMenu id="phone"
  2094. type="1" >
  2095. </productMenu>
  2096. <productMenu id="music"
  2097. type="1" >
  2098. </productMenu>
  2099. <productMenu id="fmradio"
  2100. type="1" >
  2101. </productMenu>
  2102. <productMenu id="deviceSetting"
  2103. type="1"
  2104. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2105. <productMenuURL version="2.5.9"
  2106. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2107. />
  2108. <productMenuURL version="2.1.1"
  2109. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2110. />
  2111. <productMenuURL version="2.0"
  2112. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2113. />
  2114. </productMenu>
  2115. <productMenu id="quickGuide"
  2116. type="0"
  2117. url=""
  2118. size="344KB" >
  2119. </productMenu>
  2120. <productMenu id="userGuide"
  2121. type="1"
  2122. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  2123. size="3.41MB" >
  2124. </productMenu>
  2125. <productMenu id="videoGuide"
  2126. type="1"
  2127. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2128. size="3.41MB" >
  2129. </productMenu>
  2130. <productMenu id="connectGuide"
  2131. type="1"
  2132. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  2133. size="1.12MB" >
  2134. </productMenu>
  2135. <productMenu id="volume"
  2136. type="11" >
  2137. </productMenu>
  2138. <productMenu id="battery"
  2139. type="1" >
  2140. </productMenu>
  2141. <productID id="3218"
  2142. />
  2143. <productGroupable type="0"
  2144. />
  2145. </product>
  2146. <product id="50R"
  2147. name="50R"
  2148. series="50"
  2149. latestVersion="1.5.1"
  2150. show = "-1" >
  2151. <productMenu id="protocol"
  2152. type="2" >
  2153. </productMenu>
  2154. <productMenu id="alexa"
  2155. type="0" >
  2156. </productMenu>
  2157. <productMenu id="wa"
  2158. type="1" >
  2159. </productMenu>
  2160. <productMenu id="sip"
  2161. type="1" >
  2162. </productMenu>
  2163. <productMenu id="meshIntercom"
  2164. type="30" >
  2165. <productMenuType version="1.2.2"
  2166. type="20"
  2167. />
  2168. </productMenu>
  2169. <productMenu id="meshIntercom+"
  2170. type="3"
  2171. url="2" >
  2172. <productMenuType version="1.4.9"
  2173. type="2"
  2174. />
  2175. <productMenuURL version="1.2.2"
  2176. url="0"
  2177. />
  2178. </productMenu>
  2179. <productMenu id="waveIntercom"
  2180. type="1" >
  2181. <productMenuType version="1.3.9"
  2182. type="0"
  2183. />
  2184. </productMenu>
  2185. <productMenu id="bluetoothIntercom"
  2186. type="1" >
  2187. </productMenu>
  2188. <productMenu id="phone"
  2189. type="1" >
  2190. </productMenu>
  2191. <productMenu id="music"
  2192. type="1" >
  2193. </productMenu>
  2194. <productMenu id="fmradio"
  2195. type="1" >
  2196. </productMenu>
  2197. <productMenu id="deviceSetting"
  2198. type="1"
  2199. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2200. <productMenuURL version="1.4.9"
  2201. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2202. />
  2203. <productMenuURL version="1.3.9"
  2204. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2205. />
  2206. <productMenuURL version="1.2.2"
  2207. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2208. />
  2209. <productMenuURL version="1.1.1"
  2210. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2211. />
  2212. </productMenu>
  2213. <productMenu id="quickGuide"
  2214. type="0"
  2215. url=""
  2216. size="344KB" >
  2217. </productMenu>
  2218. <productMenu id="userGuide"
  2219. type="1"
  2220. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2221. size="3.41MB" >
  2222. </productMenu>
  2223. <productMenu id="videoGuide"
  2224. type="1"
  2225. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2226. size="3.41MB" >
  2227. </productMenu>
  2228. <productMenu id="volume"
  2229. type="11" >
  2230. </productMenu>
  2231. <productMenu id="battery"
  2232. type="1" >
  2233. </productMenu>
  2234. <productID id="3134"
  2235. />
  2236. <productGroupable type="0"
  2237. />
  2238. </product>
  2239. <product id="50C"
  2240. name="50C"
  2241. series="50"
  2242. latestVersion="1.4.3"
  2243. show = "1" >
  2244. <productMenu id="protocol"
  2245. type="2" >
  2246. </productMenu>
  2247. <productMenu id="ota"
  2248. type="0" >
  2249. </productMenu>
  2250. <productMenu id="wa"
  2251. type="1" >
  2252. </productMenu>
  2253. <productMenu id="sip"
  2254. type="1" >
  2255. </productMenu>
  2256. <productMenu id="meshIntercom"
  2257. type="30" >
  2258. <productMenuType version="1.1.1"
  2259. type="20"
  2260. />
  2261. </productMenu>
  2262. <productMenu id="meshIntercom+"
  2263. type="3"
  2264. url="2" >
  2265. <productMenuType version="1.3.9"
  2266. type="2"
  2267. />
  2268. <productMenuURL version="1.1.1"
  2269. url="0"
  2270. />
  2271. </productMenu>
  2272. <productMenu id="waveIntercom"
  2273. type="1" >
  2274. <productMenuType version="1.2.9"
  2275. type="0"
  2276. />
  2277. </productMenu>
  2278. <productMenu id="bluetoothIntercom"
  2279. type="1" >
  2280. </productMenu>
  2281. <productMenu id="phone"
  2282. type="1" >
  2283. </productMenu>
  2284. <productMenu id="music"
  2285. type="1" >
  2286. </productMenu>
  2287. <productMenu id="fmradio"
  2288. type="1" >
  2289. </productMenu>
  2290. <productMenu id="deviceSetting"
  2291. type="1"
  2292. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2293. <productMenuURL version="1.3.9"
  2294. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2295. />
  2296. <productMenuURL version="1.1.1"
  2297. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2298. />
  2299. <productMenuURL version="1.0.1"
  2300. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2301. />
  2302. </productMenu>
  2303. <productMenu id="quickGuide"
  2304. type="0"
  2305. url=""
  2306. size="344KB" >
  2307. </productMenu>
  2308. <productMenu id="userGuide"
  2309. type="1"
  2310. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2311. size="3.41MB" >
  2312. </productMenu>
  2313. <productMenu id="connectGuide"
  2314. type="1"
  2315. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2316. size="1.12MB" >
  2317. </productMenu>
  2318. <productMenu id="volume"
  2319. type="11" >
  2320. </productMenu>
  2321. <productMenu id="battery"
  2322. type="1" >
  2323. </productMenu>
  2324. <productID id="3232"
  2325. />
  2326. <productGroupable type="0"
  2327. />
  2328. </product>
  2329. <product id="PHANTOMXB"
  2330. name="PHANTOM XB"
  2331. series="Helmet"
  2332. latestVersion="1.2.9"
  2333. latestVersionVoicePrompt="1.6"
  2334. show = "-1" >
  2335. <productMenu id="protocol"
  2336. type="2" >
  2337. </productMenu>
  2338. <productMenu id="ota"
  2339. type="2" >
  2340. <otaLanguages>
  2341. <otaLanguage
  2342. id="0"
  2343. name="English"
  2344. package="0"
  2345. />
  2346. <otaLanguage
  2347. id="0"
  2348. name="French"
  2349. package="1"
  2350. />
  2351. <otaLanguage
  2352. id="0"
  2353. name="Spanish"
  2354. package="2"
  2355. />
  2356. <otaLanguage
  2357. id="0"
  2358. name="Italian"
  2359. package="3"
  2360. />
  2361. <otaLanguage
  2362. id="0"
  2363. name="German"
  2364. package="4"
  2365. />
  2366. <otaLanguage
  2367. id="0"
  2368. name="Dutch"
  2369. package="5"
  2370. />
  2371. <otaLanguage
  2372. id="0"
  2373. name="Russian"
  2374. package="6"
  2375. />
  2376. <otaLanguage
  2377. id="0"
  2378. name="Chinese"
  2379. package="7"
  2380. />
  2381. <otaLanguage
  2382. id="0"
  2383. name="Korean"
  2384. package="8"
  2385. />
  2386. <otaLanguage
  2387. id="0"
  2388. name="Japanese"
  2389. package="9"
  2390. />
  2391. <otaLanguage
  2392. id="0"
  2393. name="Finnish"
  2394. package="10"
  2395. />
  2396. <otaLanguage
  2397. id="0"
  2398. name="Polish"
  2399. package="11"
  2400. />
  2401. </otaLanguages>
  2402. <otaPackages>
  2403. <package
  2404. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0.img"
  2405. size="5183988"
  2406. />
  2407. <package
  2408. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fr-FR.img"
  2409. size="5183988"
  2410. />
  2411. <package
  2412. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-es-ES.img"
  2413. size="5183988"
  2414. />
  2415. <package
  2416. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-it-IT.img"
  2417. size="5183988"
  2418. />
  2419. <package
  2420. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-de-DE.img"
  2421. size="5183988"
  2422. />
  2423. <package
  2424. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-nl-NL.img"
  2425. size="5183988"
  2426. />
  2427. <package
  2428. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ru-RU.img"
  2429. size="5183988"
  2430. />
  2431. <package
  2432. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-cmn-CN.img"
  2433. size="5183988"
  2434. />
  2435. <package
  2436. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ko-KR.img"
  2437. size="5183988"
  2438. />
  2439. <package
  2440. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ja-JP.img"
  2441. size="5183988"
  2442. />
  2443. <package
  2444. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fi-FI.img"
  2445. size="5183988"
  2446. />
  2447. <package
  2448. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-pl-PL.img"
  2449. size="5183988"
  2450. />
  2451. </otaPackages>
  2452. </productMenu>
  2453. <productMenu id="wa"
  2454. type="0" >
  2455. </productMenu>
  2456. <productMenu id="led"
  2457. type="5" >
  2458. </productMenu>
  2459. <productMenu id="led+"
  2460. type="2"
  2461. url="1" >
  2462. </productMenu>
  2463. <productMenu id="meshIntercom"
  2464. type="30" >
  2465. </productMenu>
  2466. <productMenu id="meshIntercom+"
  2467. type="3"
  2468. url="2" >
  2469. </productMenu>
  2470. <productMenu id="waveIntercom"
  2471. type="1" >
  2472. </productMenu>
  2473. <productMenu id="fmradio"
  2474. type="0" >
  2475. </productMenu>
  2476. <productMenu id="phone"
  2477. type="1" >
  2478. </productMenu>
  2479. <productMenu id="music"
  2480. type="1" >
  2481. </productMenu>
  2482. <productMenu id="musicSharing"
  2483. type="0" >
  2484. </productMenu>
  2485. <productMenu id="deviceSetting"
  2486. type="1"
  2487. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2488. <productMenuURL version="1.2.4"
  2489. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2490. />
  2491. </productMenu>
  2492. <productMenu id="quickGuide"
  2493. type="0"
  2494. url=""
  2495. size="1.12MB" >
  2496. </productMenu>
  2497. <productMenu id="userGuide"
  2498. type="1"
  2499. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2500. size="2.0MB" >
  2501. </productMenu>
  2502. <productMenu id="videoGuide"
  2503. type="0"
  2504. url=""
  2505. size="3.41MB" >
  2506. </productMenu>
  2507. <productMenu id="volume"
  2508. type="16" >
  2509. </productMenu>
  2510. <productMenu id="volume+"
  2511. type="2"
  2512. url="0x6004" >
  2513. </productMenu>
  2514. <productMenu id="battery"
  2515. type="1" >
  2516. </productMenu>
  2517. <productID id="6A0F"
  2518. />
  2519. <productGroupable type="0"
  2520. />
  2521. </product>
  2522. <product id="PHANTOMXB"
  2523. name="PHANTOM XB"
  2524. series="Helmet"
  2525. latestVersion="1.2.9"
  2526. latestVersionVoicePrompt="1.6"
  2527. show = "-1" >
  2528. <productMenu id="protocol"
  2529. type="2" >
  2530. </productMenu>
  2531. <productMenu id="ota"
  2532. type="2" >
  2533. <otaLanguages>
  2534. <otaLanguage
  2535. id="0"
  2536. name="English"
  2537. package="0"
  2538. />
  2539. <otaLanguage
  2540. id="0"
  2541. name="French"
  2542. package="1"
  2543. />
  2544. <otaLanguage
  2545. id="0"
  2546. name="Spanish"
  2547. package="2"
  2548. />
  2549. <otaLanguage
  2550. id="0"
  2551. name="Italian"
  2552. package="3"
  2553. />
  2554. <otaLanguage
  2555. id="0"
  2556. name="German"
  2557. package="4"
  2558. />
  2559. <otaLanguage
  2560. id="0"
  2561. name="Dutch"
  2562. package="5"
  2563. />
  2564. <otaLanguage
  2565. id="0"
  2566. name="Russian"
  2567. package="6"
  2568. />
  2569. <otaLanguage
  2570. id="0"
  2571. name="Chinese"
  2572. package="7"
  2573. />
  2574. <otaLanguage
  2575. id="0"
  2576. name="Korean"
  2577. package="8"
  2578. />
  2579. <otaLanguage
  2580. id="0"
  2581. name="Japanese"
  2582. package="9"
  2583. />
  2584. <otaLanguage
  2585. id="0"
  2586. name="Finnish"
  2587. package="10"
  2588. />
  2589. <otaLanguage
  2590. id="0"
  2591. name="Polish"
  2592. package="11"
  2593. />
  2594. </otaLanguages>
  2595. <otaPackages>
  2596. <package
  2597. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0.img"
  2598. size="5183988"
  2599. />
  2600. <package
  2601. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fr-FR.img"
  2602. size="5183988"
  2603. />
  2604. <package
  2605. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-es-ES.img"
  2606. size="5183988"
  2607. />
  2608. <package
  2609. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-it-IT.img"
  2610. size="5183988"
  2611. />
  2612. <package
  2613. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-de-DE.img"
  2614. size="5183988"
  2615. />
  2616. <package
  2617. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-nl-NL.img"
  2618. size="5183988"
  2619. />
  2620. <package
  2621. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ru-RU.img"
  2622. size="5183988"
  2623. />
  2624. <package
  2625. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-cmn-CN.img"
  2626. size="5183988"
  2627. />
  2628. <package
  2629. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ko-KR.img"
  2630. size="5183988"
  2631. />
  2632. <package
  2633. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ja-JP.img"
  2634. size="5183988"
  2635. />
  2636. <package
  2637. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fi-FI.img"
  2638. size="5183988"
  2639. />
  2640. <package
  2641. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-pl-PL.img"
  2642. size="5183988"
  2643. />
  2644. </otaPackages>
  2645. </productMenu>
  2646. <productMenu id="wa"
  2647. type="0" >
  2648. </productMenu>
  2649. <productMenu id="led"
  2650. type="5" >
  2651. </productMenu>
  2652. <productMenu id="led+"
  2653. type="2"
  2654. url="1" >
  2655. </productMenu>
  2656. <productMenu id="meshIntercom"
  2657. type="30" >
  2658. </productMenu>
  2659. <productMenu id="meshIntercom+"
  2660. type="3"
  2661. url="2" >
  2662. </productMenu>
  2663. <productMenu id="waveIntercom"
  2664. type="1" >
  2665. </productMenu>
  2666. <productMenu id="fmradio"
  2667. type="0" >
  2668. </productMenu>
  2669. <productMenu id="phone"
  2670. type="1" >
  2671. </productMenu>
  2672. <productMenu id="music"
  2673. type="1" >
  2674. </productMenu>
  2675. <productMenu id="musicSharing"
  2676. type="0" >
  2677. </productMenu>
  2678. <productMenu id="deviceSetting"
  2679. type="1"
  2680. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2681. <productMenuURL version="1.2.4"
  2682. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2683. />
  2684. <productMenuURL version="1.2.1"
  2685. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2686. />
  2687. </productMenu>
  2688. <productMenu id="quickGuide"
  2689. type="0"
  2690. url=""
  2691. size="1.12MB" >
  2692. </productMenu>
  2693. <productMenu id="userGuide"
  2694. type="1"
  2695. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2696. size="2.0MB" >
  2697. </productMenu>
  2698. <productMenu id="videoGuide"
  2699. type="0"
  2700. url=""
  2701. size="3.41MB" >
  2702. </productMenu>
  2703. <productMenu id="volume"
  2704. type="16" >
  2705. </productMenu>
  2706. <productMenu id="volume+"
  2707. type="2"
  2708. url="0x6004" >
  2709. </productMenu>
  2710. <productMenu id="battery"
  2711. type="1" >
  2712. </productMenu>
  2713. <productID id="6A0C"
  2714. />
  2715. <productGroupable type="0"
  2716. />
  2717. </product>
  2718. <product id="PHANTOMKV"
  2719. name="PHANTOM KV"
  2720. series="Helmet"
  2721. latestVersion="1.2.10"
  2722. latestVersionVoicePrompt="1.7"
  2723. show = "-1" >
  2724. <productMenu id="protocol"
  2725. type="2" >
  2726. </productMenu>
  2727. <productMenu id="ota"
  2728. type="2" >
  2729. <otaLanguages>
  2730. <otaLanguage
  2731. id="0"
  2732. name="English"
  2733. package="0"
  2734. />
  2735. <otaLanguage
  2736. id="0"
  2737. name="French"
  2738. package="1"
  2739. />
  2740. <otaLanguage
  2741. id="0"
  2742. name="Spanish"
  2743. package="2"
  2744. />
  2745. <otaLanguage
  2746. id="0"
  2747. name="Italian"
  2748. package="3"
  2749. />
  2750. <otaLanguage
  2751. id="0"
  2752. name="German"
  2753. package="4"
  2754. />
  2755. <otaLanguage
  2756. id="0"
  2757. name="Dutch"
  2758. package="5"
  2759. />
  2760. <otaLanguage
  2761. id="0"
  2762. name="Russian"
  2763. package="6"
  2764. />
  2765. <otaLanguage
  2766. id="0"
  2767. name="Chinese"
  2768. package="7"
  2769. />
  2770. <otaLanguage
  2771. id="0"
  2772. name="Korean"
  2773. package="8"
  2774. />
  2775. <otaLanguage
  2776. id="0"
  2777. name="Japanese"
  2778. package="9"
  2779. />
  2780. <otaLanguage
  2781. id="0"
  2782. name="Finnish"
  2783. package="10"
  2784. />
  2785. <otaLanguage
  2786. id="0"
  2787. name="Polish"
  2788. package="11"
  2789. />
  2790. </otaLanguages>
  2791. <otaPackages>
  2792. <package
  2793. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0.img"
  2794. size="5183988"
  2795. />
  2796. <package
  2797. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fr-FR.img"
  2798. size="5183988"
  2799. />
  2800. <package
  2801. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-es-ES.img"
  2802. size="5183988"
  2803. />
  2804. <package
  2805. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-it-IT.img"
  2806. size="5183988"
  2807. />
  2808. <package
  2809. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-de-DE.img"
  2810. size="5183988"
  2811. />
  2812. <package
  2813. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-nl-NL.img"
  2814. size="5183988"
  2815. />
  2816. <package
  2817. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ru-RU.img"
  2818. size="5183988"
  2819. />
  2820. <package
  2821. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-cmn-CN.img"
  2822. size="5183988"
  2823. />
  2824. <package
  2825. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ko-KR.img"
  2826. size="5183988"
  2827. />
  2828. <package
  2829. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ja-JP.img"
  2830. size="5183988"
  2831. />
  2832. <package
  2833. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fi-FI.img"
  2834. size="5183988"
  2835. />
  2836. <package
  2837. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-pl-PL.img"
  2838. size="5183988"
  2839. />
  2840. </otaPackages>
  2841. </productMenu>
  2842. <productMenu id="wa"
  2843. type="0" >
  2844. </productMenu>
  2845. <productMenu id="led"
  2846. type="5" >
  2847. </productMenu>
  2848. <productMenu id="led+"
  2849. type="2"
  2850. url="1" >
  2851. </productMenu>
  2852. <productMenu id="meshIntercom"
  2853. type="30" >
  2854. </productMenu>
  2855. <productMenu id="meshIntercom+"
  2856. type="3"
  2857. url="2" >
  2858. </productMenu>
  2859. <productMenu id="waveIntercom"
  2860. type="1" >
  2861. </productMenu>
  2862. <productMenu id="fmradio"
  2863. type="0" >
  2864. </productMenu>
  2865. <productMenu id="phone"
  2866. type="1" >
  2867. </productMenu>
  2868. <productMenu id="music"
  2869. type="1" >
  2870. </productMenu>
  2871. <productMenu id="musicSharing"
  2872. type="0" >
  2873. </productMenu>
  2874. <productMenu id="deviceSetting"
  2875. type="1"
  2876. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2877. <productMenuURL version="1.2.4"
  2878. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2879. />
  2880. </productMenu>
  2881. <productMenu id="quickGuide"
  2882. type="0"
  2883. url=""
  2884. size="1.12MB" >
  2885. </productMenu>
  2886. <productMenu id="userGuide"
  2887. type="1"
  2888. url=""
  2889. size="2.0MB" >
  2890. </productMenu>
  2891. <productMenu id="videoGuide"
  2892. type="0"
  2893. url=""
  2894. size="3.41MB" >
  2895. </productMenu>
  2896. <productMenu id="volume"
  2897. type="16" >
  2898. </productMenu>
  2899. <productMenu id="volume+"
  2900. type="2"
  2901. url="0x6004" >
  2902. </productMenu>
  2903. <productMenu id="soundMode"
  2904. type="1" >
  2905. </productMenu>
  2906. <productMenu id="battery"
  2907. type="1" >
  2908. </productMenu>
  2909. <productID id="6A13"
  2910. />
  2911. <productGroupable type="0"
  2912. />
  2913. </product>
  2914. <product id="PHANTOMCamera"
  2915. name="PHANTOM Camera"
  2916. series="Helmet"
  2917. latestVersion="1.0.1"
  2918. latestVersionVoicePrompt="0.4"
  2919. show = "-1" >
  2920. <productMenu id="protocol"
  2921. type="2" >
  2922. </productMenu>
  2923. <productMenu id="ota"
  2924. type="3" >
  2925. <otaLanguages>
  2926. <otaLanguage
  2927. id="0"
  2928. name="English"
  2929. package="0"
  2930. />
  2931. <otaLanguage
  2932. id="0"
  2933. name="French"
  2934. package="1"
  2935. />
  2936. <otaLanguage
  2937. id="0"
  2938. name="Spanish"
  2939. package="2"
  2940. />
  2941. <otaLanguage
  2942. id="0"
  2943. name="Italian"
  2944. package="3"
  2945. />
  2946. <otaLanguage
  2947. id="0"
  2948. name="German"
  2949. package="4"
  2950. />
  2951. <otaLanguage
  2952. id="0"
  2953. name="Dutch"
  2954. package="5"
  2955. />
  2956. <otaLanguage
  2957. id="0"
  2958. name="Russian"
  2959. package="6"
  2960. />
  2961. <otaLanguage
  2962. id="0"
  2963. name="Chinese"
  2964. package="7"
  2965. />
  2966. <otaLanguage
  2967. id="0"
  2968. name="Korean"
  2969. package="8"
  2970. />
  2971. <otaLanguage
  2972. id="0"
  2973. name="Japanese"
  2974. package="9"
  2975. />
  2976. <otaLanguage
  2977. id="0"
  2978. name="Finnish"
  2979. package="10"
  2980. />
  2981. <otaLanguage
  2982. id="0"
  2983. name="Polish"
  2984. package="11"
  2985. />
  2986. </otaLanguages>
  2987. <otaPackages>
  2988. <package
  2989. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2990. size="5183988"
  2991. />
  2992. <package
  2993. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  2994. size="5183988"
  2995. />
  2996. <package
  2997. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  2998. size="5183988"
  2999. />
  3000. <package
  3001. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  3002. size="5183988"
  3003. />
  3004. <package
  3005. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  3006. size="5183988"
  3007. />
  3008. <package
  3009. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  3010. size="5183988"
  3011. />
  3012. <package
  3013. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  3014. size="5183988"
  3015. />
  3016. <package
  3017. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  3018. size="5183988"
  3019. />
  3020. <package
  3021. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  3022. size="5183988"
  3023. />
  3024. <package
  3025. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  3026. size="5183988"
  3027. />
  3028. <package
  3029. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  3030. size="5183988"
  3031. />
  3032. <package
  3033. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  3034. size="5183988"
  3035. />
  3036. </otaPackages>
  3037. </productMenu>
  3038. <productMenu id="wa"
  3039. type="0" >
  3040. </productMenu>
  3041. <productMenu id="led"
  3042. type="5" >
  3043. </productMenu>
  3044. <productMenu id="led+"
  3045. type="2"
  3046. url="1" >
  3047. </productMenu>
  3048. <productMenu id="meshIntercom"
  3049. type="30" >
  3050. </productMenu>
  3051. <productMenu id="meshIntercom+"
  3052. type="3"
  3053. url="2" >
  3054. </productMenu>
  3055. <productMenu id="waveIntercom"
  3056. type="1" >
  3057. </productMenu>
  3058. <productMenu id="fmradio"
  3059. type="0" >
  3060. </productMenu>
  3061. <productMenu id="phone"
  3062. type="1" >
  3063. </productMenu>
  3064. <productMenu id="music"
  3065. type="1" >
  3066. </productMenu>
  3067. <productMenu id="musicSharing"
  3068. type="0" >
  3069. </productMenu>
  3070. <productMenu id="deviceSetting"
  3071. type="1"
  3072. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3073. </productMenu>
  3074. <productMenu id="quickGuide"
  3075. type="0"
  3076. url=""
  3077. size="1.12MB" >
  3078. </productMenu>
  3079. <productMenu id="userGuide"
  3080. type="1"
  3081. url=""
  3082. size="2.0MB" >
  3083. </productMenu>
  3084. <productMenu id="videoGuide"
  3085. type="0"
  3086. url=""
  3087. size="3.41MB" >
  3088. </productMenu>
  3089. <productMenu id="volume"
  3090. type="16" >
  3091. </productMenu>
  3092. <productMenu id="battery"
  3093. type="1" >
  3094. </productMenu>
  3095. <productID id="6A10"
  3096. />
  3097. <productGroupable type="0"
  3098. />
  3099. </product>
  3100. <product id="PHANTOMCamera"
  3101. name="PHANTOM Camera"
  3102. series="Helmet"
  3103. latestVersion="1.0.1"
  3104. latestVersionVoicePrompt="0.4"
  3105. show = "-1" >
  3106. <productMenu id="protocol"
  3107. type="2" >
  3108. </productMenu>
  3109. <productMenu id="ota"
  3110. type="3" >
  3111. <otaLanguages>
  3112. <otaLanguage
  3113. id="0"
  3114. name="English"
  3115. package="0"
  3116. />
  3117. <otaLanguage
  3118. id="0"
  3119. name="French"
  3120. package="1"
  3121. />
  3122. <otaLanguage
  3123. id="0"
  3124. name="Spanish"
  3125. package="2"
  3126. />
  3127. <otaLanguage
  3128. id="0"
  3129. name="Italian"
  3130. package="3"
  3131. />
  3132. <otaLanguage
  3133. id="0"
  3134. name="German"
  3135. package="4"
  3136. />
  3137. <otaLanguage
  3138. id="0"
  3139. name="Dutch"
  3140. package="5"
  3141. />
  3142. <otaLanguage
  3143. id="0"
  3144. name="Russian"
  3145. package="6"
  3146. />
  3147. <otaLanguage
  3148. id="0"
  3149. name="Chinese"
  3150. package="7"
  3151. />
  3152. <otaLanguage
  3153. id="0"
  3154. name="Korean"
  3155. package="8"
  3156. />
  3157. <otaLanguage
  3158. id="0"
  3159. name="Japanese"
  3160. package="9"
  3161. />
  3162. <otaLanguage
  3163. id="0"
  3164. name="Finnish"
  3165. package="10"
  3166. />
  3167. <otaLanguage
  3168. id="0"
  3169. name="Polish"
  3170. package="11"
  3171. />
  3172. </otaLanguages>
  3173. <otaPackages>
  3174. <package
  3175. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  3176. size="5183988"
  3177. />
  3178. <package
  3179. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  3180. size="5183988"
  3181. />
  3182. <package
  3183. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  3184. size="5183988"
  3185. />
  3186. <package
  3187. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  3188. size="5183988"
  3189. />
  3190. <package
  3191. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  3192. size="5183988"
  3193. />
  3194. <package
  3195. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  3196. size="5183988"
  3197. />
  3198. <package
  3199. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  3200. size="5183988"
  3201. />
  3202. <package
  3203. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  3204. size="5183988"
  3205. />
  3206. <package
  3207. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  3208. size="5183988"
  3209. />
  3210. <package
  3211. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  3212. size="5183988"
  3213. />
  3214. <package
  3215. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  3216. size="5183988"
  3217. />
  3218. <package
  3219. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  3220. size="5183988"
  3221. />
  3222. </otaPackages>
  3223. </productMenu>
  3224. <productMenu id="wa"
  3225. type="0" >
  3226. </productMenu>
  3227. <productMenu id="led"
  3228. type="5" >
  3229. </productMenu>
  3230. <productMenu id="led+"
  3231. type="2"
  3232. url="1" >
  3233. </productMenu>
  3234. <productMenu id="meshIntercom"
  3235. type="30" >
  3236. </productMenu>
  3237. <productMenu id="meshIntercom+"
  3238. type="3"
  3239. url="2" >
  3240. </productMenu>
  3241. <productMenu id="waveIntercom"
  3242. type="1" >
  3243. </productMenu>
  3244. <productMenu id="fmradio"
  3245. type="0" >
  3246. </productMenu>
  3247. <productMenu id="phone"
  3248. type="1" >
  3249. </productMenu>
  3250. <productMenu id="music"
  3251. type="1" >
  3252. </productMenu>
  3253. <productMenu id="musicSharing"
  3254. type="0" >
  3255. </productMenu>
  3256. <productMenu id="deviceSetting"
  3257. type="1"
  3258. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3259. </productMenu>
  3260. <productMenu id="quickGuide"
  3261. type="0"
  3262. url=""
  3263. size="1.12MB" >
  3264. </productMenu>
  3265. <productMenu id="userGuide"
  3266. type="1"
  3267. url=""
  3268. size="2.0MB" >
  3269. </productMenu>
  3270. <productMenu id="videoGuide"
  3271. type="0"
  3272. url=""
  3273. size="3.41MB" >
  3274. </productMenu>
  3275. <productMenu id="volume"
  3276. type="16" >
  3277. </productMenu>
  3278. <productMenu id="battery"
  3279. type="1" >
  3280. </productMenu>
  3281. <productID id="6A09"
  3282. />
  3283. <productGroupable type="0"
  3284. />
  3285. </product>
  3286. <product id="PHANTOM"
  3287. name="PHANTOM ANC"
  3288. series="Helmet"
  3289. latestVersion="1.2.9"
  3290. latestVersionVoicePrompt="1.7"
  3291. show = "1" >
  3292. <productMenu id="protocol"
  3293. type="2" >
  3294. </productMenu>
  3295. <productMenu id="ota"
  3296. type="2" >
  3297. <productMenuType version="0.6.9"
  3298. type="0"
  3299. />
  3300. <otaLanguages>
  3301. <otaLanguage
  3302. id="0"
  3303. name="English"
  3304. package="0"
  3305. />
  3306. <otaLanguage
  3307. id="0"
  3308. name="French"
  3309. package="1"
  3310. />
  3311. <otaLanguage
  3312. id="0"
  3313. name="Spanish"
  3314. package="2"
  3315. />
  3316. <otaLanguage
  3317. id="0"
  3318. name="Italian"
  3319. package="3"
  3320. />
  3321. <otaLanguage
  3322. id="0"
  3323. name="German"
  3324. package="4"
  3325. />
  3326. <otaLanguage
  3327. id="0"
  3328. name="Dutch"
  3329. package="5"
  3330. />
  3331. <otaLanguage
  3332. id="0"
  3333. name="Russian"
  3334. package="6"
  3335. />
  3336. <otaLanguage
  3337. id="0"
  3338. name="Chinese"
  3339. package="7"
  3340. />
  3341. <otaLanguage
  3342. id="0"
  3343. name="Korean"
  3344. package="8"
  3345. />
  3346. <otaLanguage
  3347. id="0"
  3348. name="Japanese"
  3349. package="9"
  3350. />
  3351. <otaLanguage
  3352. id="0"
  3353. name="Finnish"
  3354. package="10"
  3355. />
  3356. <otaLanguage
  3357. id="0"
  3358. name="Polish"
  3359. package="11"
  3360. />
  3361. </otaLanguages>
  3362. <otaPackages>
  3363. <package
  3364. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0.img"
  3365. size="5183988"
  3366. />
  3367. <package
  3368. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fr-FR.img"
  3369. size="5183988"
  3370. />
  3371. <package
  3372. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-es-ES.img"
  3373. size="5183988"
  3374. />
  3375. <package
  3376. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-it-IT.img"
  3377. size="5183988"
  3378. />
  3379. <package
  3380. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-de-DE.img"
  3381. size="5183988"
  3382. />
  3383. <package
  3384. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-nl-NL.img"
  3385. size="5183988"
  3386. />
  3387. <package
  3388. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ru-RU.img"
  3389. size="5183988"
  3390. />
  3391. <package
  3392. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-cmn-CN.img"
  3393. size="5183988"
  3394. />
  3395. <package
  3396. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ko-KR.img"
  3397. size="5183988"
  3398. />
  3399. <package
  3400. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ja-JP.img"
  3401. size="5183988"
  3402. />
  3403. <package
  3404. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fi-FI.img"
  3405. size="5183988"
  3406. />
  3407. <package
  3408. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-pl-PL.img"
  3409. size="5183988"
  3410. />
  3411. </otaPackages>
  3412. </productMenu>
  3413. <productMenu id="wa"
  3414. type="0" >
  3415. </productMenu>
  3416. <productMenu id="led"
  3417. type="5" >
  3418. </productMenu>
  3419. <productMenu id="led+"
  3420. type="2"
  3421. url="1" >
  3422. </productMenu>
  3423. <productMenu id="meshIntercom"
  3424. type="30" >
  3425. </productMenu>
  3426. <productMenu id="meshIntercom+"
  3427. type="3"
  3428. url="2" >
  3429. <productMenuURL version="1.0.4"
  3430. url="10"
  3431. />
  3432. </productMenu>
  3433. <productMenu id="waveIntercom"
  3434. type="1" >
  3435. <productMenuType version="1.0.9"
  3436. type="0"
  3437. />
  3438. </productMenu>
  3439. <productMenu id="fmradio"
  3440. type="0" >
  3441. </productMenu>
  3442. <productMenu id="phone"
  3443. type="1" >
  3444. </productMenu>
  3445. <productMenu id="music"
  3446. type="1" >
  3447. </productMenu>
  3448. <productMenu id="musicSharing"
  3449. type="0" >
  3450. </productMenu>
  3451. <productMenu id="deviceSetting"
  3452. type="1"
  3453. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3454. <productMenuURL version="1.2.4"
  3455. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3456. />
  3457. <productMenuURL version="1.2.1"
  3458. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3459. />
  3460. <productMenuURL version="1.1.2"
  3461. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3462. />
  3463. <productMenuURL version="1.0.4"
  3464. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3465. />
  3466. </productMenu>
  3467. <productMenu id="quickGuide"
  3468. type="0"
  3469. url=""
  3470. size="1.12MB" >
  3471. </productMenu>
  3472. <productMenu id="userGuide"
  3473. type="1"
  3474. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3475. size="2.0MB" >
  3476. </productMenu>
  3477. <productMenu id="videoGuide"
  3478. type="0"
  3479. url=""
  3480. size="3.41MB" >
  3481. </productMenu>
  3482. <productMenu id="volume"
  3483. type="16" >
  3484. </productMenu>
  3485. <productMenu id="volume+"
  3486. type="2"
  3487. url="0x6004" >
  3488. </productMenu>
  3489. <productMenu id="soundMode"
  3490. type="1" >
  3491. <productMenuType version="0.9.11"
  3492. type="0"
  3493. />
  3494. </productMenu>
  3495. <productMenu id="battery"
  3496. type="1" >
  3497. </productMenu>
  3498. <productID id="6A01"
  3499. />
  3500. <productGroupable type="0"
  3501. />
  3502. </product>
  3503. <product id="PHANTOM"
  3504. name="PHANTOM ANC"
  3505. series="Helmet"
  3506. latestVersion="1.2.9"
  3507. latestVersionVoicePrompt="1.7"
  3508. show = "-1" >
  3509. <productMenu id="protocol"
  3510. type="2" >
  3511. </productMenu>
  3512. <productMenu id="ota"
  3513. type="2" >
  3514. <otaLanguages>
  3515. <otaLanguage
  3516. id="0"
  3517. name="English"
  3518. package="0"
  3519. />
  3520. <otaLanguage
  3521. id="0"
  3522. name="French"
  3523. package="1"
  3524. />
  3525. <otaLanguage
  3526. id="0"
  3527. name="Spanish"
  3528. package="2"
  3529. />
  3530. <otaLanguage
  3531. id="0"
  3532. name="Italian"
  3533. package="3"
  3534. />
  3535. <otaLanguage
  3536. id="0"
  3537. name="German"
  3538. package="4"
  3539. />
  3540. <otaLanguage
  3541. id="0"
  3542. name="Dutch"
  3543. package="5"
  3544. />
  3545. <otaLanguage
  3546. id="0"
  3547. name="Russian"
  3548. package="6"
  3549. />
  3550. <otaLanguage
  3551. id="0"
  3552. name="Chinese"
  3553. package="7"
  3554. />
  3555. <otaLanguage
  3556. id="0"
  3557. name="Korean"
  3558. package="8"
  3559. />
  3560. <otaLanguage
  3561. id="0"
  3562. name="Japanese"
  3563. package="9"
  3564. />
  3565. <otaLanguage
  3566. id="0"
  3567. name="Finnish"
  3568. package="10"
  3569. />
  3570. <otaLanguage
  3571. id="0"
  3572. name="Polish"
  3573. package="11"
  3574. />
  3575. </otaLanguages>
  3576. <otaPackages>
  3577. <package
  3578. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0.img"
  3579. size="5183988"
  3580. />
  3581. <package
  3582. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fr-FR.img"
  3583. size="5183988"
  3584. />
  3585. <package
  3586. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-es-ES.img"
  3587. size="5183988"
  3588. />
  3589. <package
  3590. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-it-IT.img"
  3591. size="5183988"
  3592. />
  3593. <package
  3594. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-de-DE.img"
  3595. size="5183988"
  3596. />
  3597. <package
  3598. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-nl-NL.img"
  3599. size="5183988"
  3600. />
  3601. <package
  3602. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ru-RU.img"
  3603. size="5183988"
  3604. />
  3605. <package
  3606. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-cmn-CN.img"
  3607. size="5183988"
  3608. />
  3609. <package
  3610. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ko-KR.img"
  3611. size="5183988"
  3612. />
  3613. <package
  3614. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ja-JP.img"
  3615. size="5183988"
  3616. />
  3617. <package
  3618. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fi-FI.img"
  3619. size="5183988"
  3620. />
  3621. <package
  3622. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-pl-PL.img"
  3623. size="5183988"
  3624. />
  3625. </otaPackages>
  3626. </productMenu>
  3627. <productMenu id="led"
  3628. type="5" >
  3629. </productMenu>
  3630. <productMenu id="led+"
  3631. type="2"
  3632. url="1" >
  3633. </productMenu>
  3634. <productMenu id="meshIntercom"
  3635. type="30" >
  3636. </productMenu>
  3637. <productMenu id="meshIntercom+"
  3638. type="3"
  3639. url="2" >
  3640. </productMenu>
  3641. <productMenu id="waveIntercom"
  3642. type="1" >
  3643. </productMenu>
  3644. <productMenu id="fmradio"
  3645. type="0" >
  3646. </productMenu>
  3647. <productMenu id="phone"
  3648. type="1" >
  3649. </productMenu>
  3650. <productMenu id="music"
  3651. type="1" >
  3652. </productMenu>
  3653. <productMenu id="musicSharing"
  3654. type="0" >
  3655. </productMenu>
  3656. <productMenu id="deviceSetting"
  3657. type="1"
  3658. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3659. <productMenuURL version="1.2.4"
  3660. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3661. />
  3662. </productMenu>
  3663. <productMenu id="quickGuide"
  3664. type="0"
  3665. url=""
  3666. size="1.12MB" >
  3667. </productMenu>
  3668. <productMenu id="userGuide"
  3669. type="1"
  3670. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3671. size="2.0MB" >
  3672. </productMenu>
  3673. <productMenu id="videoGuide"
  3674. type="0"
  3675. url=""
  3676. size="3.41MB" >
  3677. </productMenu>
  3678. <productMenu id="volume"
  3679. type="16" >
  3680. </productMenu>
  3681. <productMenu id="volume+"
  3682. type="2"
  3683. url="0x6004" >
  3684. </productMenu>
  3685. <productMenu id="soundMode"
  3686. type="1" >
  3687. </productMenu>
  3688. <productMenu id="battery"
  3689. type="1" >
  3690. </productMenu>
  3691. <productID id="6A19"
  3692. />
  3693. <productGroupable type="0"
  3694. />
  3695. </product>
  3696. <product id="PHANTOM"
  3697. name="PHANTOM"
  3698. series="Helmet"
  3699. latestVersion="1.2.9"
  3700. latestVersionVoicePrompt="1.7"
  3701. show = "-1" >
  3702. <productMenu id="protocol"
  3703. type="2" >
  3704. </productMenu>
  3705. <productMenu id="ota"
  3706. type="2" >
  3707. <otaLanguages>
  3708. <otaLanguage
  3709. id="0"
  3710. name="English"
  3711. package="0"
  3712. />
  3713. <otaLanguage
  3714. id="0"
  3715. name="French"
  3716. package="1"
  3717. />
  3718. <otaLanguage
  3719. id="0"
  3720. name="Spanish"
  3721. package="2"
  3722. />
  3723. <otaLanguage
  3724. id="0"
  3725. name="Italian"
  3726. package="3"
  3727. />
  3728. <otaLanguage
  3729. id="0"
  3730. name="German"
  3731. package="4"
  3732. />
  3733. <otaLanguage
  3734. id="0"
  3735. name="Dutch"
  3736. package="5"
  3737. />
  3738. <otaLanguage
  3739. id="0"
  3740. name="Russian"
  3741. package="6"
  3742. />
  3743. <otaLanguage
  3744. id="0"
  3745. name="Chinese"
  3746. package="7"
  3747. />
  3748. <otaLanguage
  3749. id="0"
  3750. name="Korean"
  3751. package="8"
  3752. />
  3753. <otaLanguage
  3754. id="0"
  3755. name="Japanese"
  3756. package="9"
  3757. />
  3758. <otaLanguage
  3759. id="0"
  3760. name="Finnish"
  3761. package="10"
  3762. />
  3763. <otaLanguage
  3764. id="0"
  3765. name="Polish"
  3766. package="11"
  3767. />
  3768. </otaLanguages>
  3769. <otaPackages>
  3770. <package
  3771. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0.img"
  3772. size="5183988"
  3773. />
  3774. <package
  3775. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fr-FR.img"
  3776. size="5183988"
  3777. />
  3778. <package
  3779. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-es-ES.img"
  3780. size="5183988"
  3781. />
  3782. <package
  3783. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-it-IT.img"
  3784. size="5183988"
  3785. />
  3786. <package
  3787. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-de-DE.img"
  3788. size="5183988"
  3789. />
  3790. <package
  3791. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-nl-NL.img"
  3792. size="5183988"
  3793. />
  3794. <package
  3795. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ru-RU.img"
  3796. size="5183988"
  3797. />
  3798. <package
  3799. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-cmn-CN.img"
  3800. size="5183988"
  3801. />
  3802. <package
  3803. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ko-KR.img"
  3804. size="5183988"
  3805. />
  3806. <package
  3807. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ja-JP.img"
  3808. size="5183988"
  3809. />
  3810. <package
  3811. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fi-FI.img"
  3812. size="5183988"
  3813. />
  3814. <package
  3815. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-pl-PL.img"
  3816. size="5183988"
  3817. />
  3818. </otaPackages>
  3819. </productMenu>
  3820. <productMenu id="wa"
  3821. type="0" >
  3822. </productMenu>
  3823. <productMenu id="led"
  3824. type="5" >
  3825. </productMenu>
  3826. <productMenu id="led+"
  3827. type="2"
  3828. url="1" >
  3829. </productMenu>
  3830. <productMenu id="meshIntercom"
  3831. type="30" >
  3832. </productMenu>
  3833. <productMenu id="meshIntercom+"
  3834. type="3"
  3835. url="2" >
  3836. </productMenu>
  3837. <productMenu id="waveIntercom"
  3838. type="1" >
  3839. </productMenu>
  3840. <productMenu id="fmradio"
  3841. type="0" >
  3842. </productMenu>
  3843. <productMenu id="phone"
  3844. type="1" >
  3845. </productMenu>
  3846. <productMenu id="music"
  3847. type="1" >
  3848. </productMenu>
  3849. <productMenu id="musicSharing"
  3850. type="0" >
  3851. </productMenu>
  3852. <productMenu id="deviceSetting"
  3853. type="1"
  3854. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3855. <productMenuURL version="1.2.4"
  3856. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3857. />
  3858. </productMenu>
  3859. <productMenu id="quickGuide"
  3860. type="0"
  3861. url=""
  3862. size="1.52MB" >
  3863. </productMenu>
  3864. <productMenu id="userGuide"
  3865. type="1"
  3866. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3867. size="2.01MB" >
  3868. </productMenu>
  3869. <productMenu id="videoGuide"
  3870. type="0"
  3871. url=""
  3872. size="3.46MB" >
  3873. </productMenu>
  3874. <productMenu id="connectGuide"
  3875. type="1"
  3876. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3877. size="1.1MB" >
  3878. </productMenu>
  3879. <productMenu id="volume"
  3880. type="16" >
  3881. </productMenu>
  3882. <productMenu id="volume+"
  3883. type="2"
  3884. url="0x6004" >
  3885. </productMenu>
  3886. <productMenu id="battery"
  3887. type="1" >
  3888. </productMenu>
  3889. <productID id="6A0E"
  3890. />
  3891. <productGroupable type="0"
  3892. />
  3893. </product>
  3894. <product id="PHANTOM"
  3895. name="PHANTOM"
  3896. series="Helmet"
  3897. latestVersion="1.2.9"
  3898. latestVersionVoicePrompt="1.7"
  3899. show = "1" >
  3900. <productMenu id="protocol"
  3901. type="2" >
  3902. </productMenu>
  3903. <productMenu id="ota"
  3904. type="2" >
  3905. <otaLanguages>
  3906. <otaLanguage
  3907. id="0"
  3908. name="English"
  3909. package="0"
  3910. />
  3911. <otaLanguage
  3912. id="0"
  3913. name="French"
  3914. package="1"
  3915. />
  3916. <otaLanguage
  3917. id="0"
  3918. name="Spanish"
  3919. package="2"
  3920. />
  3921. <otaLanguage
  3922. id="0"
  3923. name="Italian"
  3924. package="3"
  3925. />
  3926. <otaLanguage
  3927. id="0"
  3928. name="German"
  3929. package="4"
  3930. />
  3931. <otaLanguage
  3932. id="0"
  3933. name="Dutch"
  3934. package="5"
  3935. />
  3936. <otaLanguage
  3937. id="0"
  3938. name="Russian"
  3939. package="6"
  3940. />
  3941. <otaLanguage
  3942. id="0"
  3943. name="Chinese"
  3944. package="7"
  3945. />
  3946. <otaLanguage
  3947. id="0"
  3948. name="Korean"
  3949. package="8"
  3950. />
  3951. <otaLanguage
  3952. id="0"
  3953. name="Japanese"
  3954. package="9"
  3955. />
  3956. <otaLanguage
  3957. id="0"
  3958. name="Finnish"
  3959. package="10"
  3960. />
  3961. <otaLanguage
  3962. id="0"
  3963. name="Polish"
  3964. package="11"
  3965. />
  3966. </otaLanguages>
  3967. <otaPackages>
  3968. <package
  3969. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0.img"
  3970. size="5183988"
  3971. />
  3972. <package
  3973. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fr-FR.img"
  3974. size="5183988"
  3975. />
  3976. <package
  3977. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-es-ES.img"
  3978. size="5183988"
  3979. />
  3980. <package
  3981. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-it-IT.img"
  3982. size="5183988"
  3983. />
  3984. <package
  3985. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-de-DE.img"
  3986. size="5183988"
  3987. />
  3988. <package
  3989. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-nl-NL.img"
  3990. size="5183988"
  3991. />
  3992. <package
  3993. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ru-RU.img"
  3994. size="5183988"
  3995. />
  3996. <package
  3997. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-cmn-CN.img"
  3998. size="5183988"
  3999. />
  4000. <package
  4001. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ko-KR.img"
  4002. size="5183988"
  4003. />
  4004. <package
  4005. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ja-JP.img"
  4006. size="5183988"
  4007. />
  4008. <package
  4009. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fi-FI.img"
  4010. size="5183988"
  4011. />
  4012. <package
  4013. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-pl-PL.img"
  4014. size="5183988"
  4015. />
  4016. </otaPackages>
  4017. </productMenu>
  4018. <productMenu id="wa"
  4019. type="0" >
  4020. </productMenu>
  4021. <productMenu id="led"
  4022. type="5" >
  4023. <productMenuType version="1.0.1"
  4024. type="4"
  4025. />
  4026. </productMenu>
  4027. <productMenu id="led+"
  4028. type="2"
  4029. url="1" >
  4030. <productMenuType version="1.0.1"
  4031. type="-1"
  4032. />
  4033. </productMenu>
  4034. <productMenu id="meshIntercom"
  4035. type="30" >
  4036. </productMenu>
  4037. <productMenu id="meshIntercom+"
  4038. type="3"
  4039. url="2" >
  4040. <productMenuURL version="1.0.4"
  4041. url="10"
  4042. />
  4043. </productMenu>
  4044. <productMenu id="waveIntercom"
  4045. type="1" >
  4046. <productMenuType version="1.0.9"
  4047. type="0"
  4048. />
  4049. </productMenu>
  4050. <productMenu id="fmradio"
  4051. type="0" >
  4052. </productMenu>
  4053. <productMenu id="phone"
  4054. type="1" >
  4055. </productMenu>
  4056. <productMenu id="music"
  4057. type="1" >
  4058. </productMenu>
  4059. <productMenu id="musicSharing"
  4060. type="0" >
  4061. </productMenu>
  4062. <productMenu id="deviceSetting"
  4063. type="1"
  4064. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  4065. <productMenuURL version="1.2.4"
  4066. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4067. />
  4068. <productMenuURL version="1.2.1"
  4069. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4070. />
  4071. <productMenuURL version="1.0.4"
  4072. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4073. />
  4074. <productMenuURL version="1.0.1"
  4075. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4076. />
  4077. </productMenu>
  4078. <productMenu id="quickGuide"
  4079. type="0"
  4080. url=""
  4081. size="1.12MB" >
  4082. </productMenu>
  4083. <productMenu id="userGuide"
  4084. type="1"
  4085. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4086. size="2.0MB" >
  4087. </productMenu>
  4088. <productMenu id="videoGuide"
  4089. type="0"
  4090. url=""
  4091. size="3.41MB" >
  4092. </productMenu>
  4093. <productMenu id="connectGuide"
  4094. type="1"
  4095. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4096. size="1.12MB" >
  4097. </productMenu>
  4098. <productMenu id="volume"
  4099. type="16" >
  4100. <productMenuType version="1.0"
  4101. type="13"
  4102. />
  4103. </productMenu>
  4104. <productMenu id="volume+"
  4105. type="2"
  4106. url="0x6004" >
  4107. </productMenu>
  4108. <productMenu id="battery"
  4109. type="1" >
  4110. </productMenu>
  4111. <productID id="6A04"
  4112. />
  4113. <productGroupable type="0"
  4114. />
  4115. </product>
  4116. <product id="PHANTOMEasyLink"
  4117. name="PHANTOM EasyLink"
  4118. series="Helmet"
  4119. latestVersion="0.1"
  4120. latestVersionVoicePrompt="1.2"
  4121. show = "-1" >
  4122. <productMenu id="protocol"
  4123. type="2" >
  4124. </productMenu>
  4125. <productMenu id="ota"
  4126. type="0" >
  4127. <otaLanguages>
  4128. <otaLanguage
  4129. id="0"
  4130. name="English"
  4131. package="0"
  4132. />
  4133. <otaLanguage
  4134. id="0"
  4135. name="French"
  4136. package="1"
  4137. />
  4138. <otaLanguage
  4139. id="0"
  4140. name="Spanish"
  4141. package="2"
  4142. />
  4143. <otaLanguage
  4144. id="0"
  4145. name="Italian"
  4146. package="3"
  4147. />
  4148. <otaLanguage
  4149. id="0"
  4150. name="German"
  4151. package="4"
  4152. />
  4153. <otaLanguage
  4154. id="0"
  4155. name="Dutch"
  4156. package="5"
  4157. />
  4158. <otaLanguage
  4159. id="0"
  4160. name="Russian"
  4161. package="6"
  4162. />
  4163. <otaLanguage
  4164. id="0"
  4165. name="Chinese"
  4166. package="7"
  4167. />
  4168. <otaLanguage
  4169. id="0"
  4170. name="Korean"
  4171. package="8"
  4172. />
  4173. <otaLanguage
  4174. id="0"
  4175. name="Japanese"
  4176. package="9"
  4177. />
  4178. <otaLanguage
  4179. id="0"
  4180. name="Finnish"
  4181. package="10"
  4182. />
  4183. <otaLanguage
  4184. id="0"
  4185. name="Polish"
  4186. package="11"
  4187. />
  4188. </otaLanguages>
  4189. <otaPackages>
  4190. <package
  4191. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4192. size="5183988"
  4193. />
  4194. <package
  4195. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4196. size="5183988"
  4197. />
  4198. <package
  4199. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4200. size="5183988"
  4201. />
  4202. <package
  4203. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4204. size="5183988"
  4205. />
  4206. <package
  4207. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4208. size="5183988"
  4209. />
  4210. <package
  4211. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4212. size="5183988"
  4213. />
  4214. <package
  4215. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4216. size="5183988"
  4217. />
  4218. <package
  4219. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4220. size="5183988"
  4221. />
  4222. <package
  4223. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4224. size="5183988"
  4225. />
  4226. <package
  4227. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4228. size="5183988"
  4229. />
  4230. <package
  4231. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4232. size="5183988"
  4233. />
  4234. <package
  4235. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4236. size="5183988"
  4237. />
  4238. </otaPackages>
  4239. </productMenu>
  4240. <productMenu id="meshIntercom"
  4241. type="30" >
  4242. </productMenu>
  4243. <productMenu id="meshIntercom+"
  4244. type="3"
  4245. url="2" >
  4246. </productMenu>
  4247. <productMenu id="waveIntercom"
  4248. type="1" >
  4249. </productMenu>
  4250. <productMenu id="fmradio"
  4251. type="0" >
  4252. </productMenu>
  4253. <productMenu id="phone"
  4254. type="1" >
  4255. </productMenu>
  4256. <productMenu id="music"
  4257. type="1" >
  4258. </productMenu>
  4259. <productMenu id="musicSharing"
  4260. type="0" >
  4261. </productMenu>
  4262. <productMenu id="deviceSetting"
  4263. type="1"
  4264. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4265. </productMenu>
  4266. <productMenu id="quickGuide"
  4267. type="0"
  4268. url=""
  4269. size="1.12MB" >
  4270. </productMenu>
  4271. <productMenu id="userGuide"
  4272. type="1"
  4273. url=""
  4274. size="2.0MB" >
  4275. </productMenu>
  4276. <productMenu id="videoGuide"
  4277. type="0"
  4278. url=""
  4279. size="3.41MB" >
  4280. </productMenu>
  4281. <productMenu id="connectGuide"
  4282. type="0"
  4283. url=""
  4284. size="1.12MB" >
  4285. </productMenu>
  4286. <productMenu id="volume"
  4287. type="16" >
  4288. </productMenu>
  4289. <productMenu id="battery"
  4290. type="1" >
  4291. </productMenu>
  4292. <productID id="6A18"
  4293. />
  4294. <productGroupable type="0"
  4295. />
  4296. </product>
  4297. <product id="SPIDERXSlim"
  4298. name="SPIDER X Slim"
  4299. series="SPIDER"
  4300. latestVersion="1.0"
  4301. latestVersionVoicePrompt="1.7"
  4302. show = "1" >
  4303. <productMenu id="protocol"
  4304. type="2" >
  4305. </productMenu>
  4306. <productMenu id="ota"
  4307. type="2" >
  4308. <otaLanguages>
  4309. <otaLanguage
  4310. id="0"
  4311. name="English"
  4312. package="0"
  4313. />
  4314. <otaLanguage
  4315. id="0"
  4316. name="French"
  4317. package="1"
  4318. />
  4319. <otaLanguage
  4320. id="0"
  4321. name="Spanish"
  4322. package="2"
  4323. />
  4324. <otaLanguage
  4325. id="0"
  4326. name="Italian"
  4327. package="3"
  4328. />
  4329. <otaLanguage
  4330. id="0"
  4331. name="German"
  4332. package="4"
  4333. />
  4334. <otaLanguage
  4335. id="0"
  4336. name="Dutch"
  4337. package="5"
  4338. />
  4339. <otaLanguage
  4340. id="0"
  4341. name="Russian"
  4342. package="6"
  4343. />
  4344. <otaLanguage
  4345. id="0"
  4346. name="Chinese"
  4347. package="7"
  4348. />
  4349. <otaLanguage
  4350. id="0"
  4351. name="Korean"
  4352. package="8"
  4353. />
  4354. <otaLanguage
  4355. id="0"
  4356. name="Japanese"
  4357. package="9"
  4358. />
  4359. <otaLanguage
  4360. id="0"
  4361. name="Finnish"
  4362. package="10"
  4363. />
  4364. <otaLanguage
  4365. id="0"
  4366. name="Polish"
  4367. package="11"
  4368. />
  4369. </otaLanguages>
  4370. <otaPackages>
  4371. <package
  4372. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5.img"
  4373. size="5183988"
  4374. />
  4375. <package
  4376. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fr-FR.img"
  4377. size="5183988"
  4378. />
  4379. <package
  4380. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-es-ES.img"
  4381. size="5183988"
  4382. />
  4383. <package
  4384. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-it-IT.img"
  4385. size="5183988"
  4386. />
  4387. <package
  4388. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-de-DE.img"
  4389. size="5183988"
  4390. />
  4391. <package
  4392. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-nl-NL.img"
  4393. size="5183988"
  4394. />
  4395. <package
  4396. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ru-RU.img"
  4397. size="5183988"
  4398. />
  4399. <package
  4400. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-cmn-CN.img"
  4401. size="5183988"
  4402. />
  4403. <package
  4404. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ko-KR.img"
  4405. size="5183988"
  4406. />
  4407. <package
  4408. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ja-JP.img"
  4409. size="5183988"
  4410. />
  4411. <package
  4412. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fi-FI.img"
  4413. size="5183988"
  4414. />
  4415. <package
  4416. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-pl-PL.img"
  4417. size="5183988"
  4418. />
  4419. </otaPackages>
  4420. </productMenu>
  4421. <productMenu id="meshIntercom"
  4422. type="30" >
  4423. </productMenu>
  4424. <productMenu id="meshIntercom+"
  4425. type="3"
  4426. url="2" >
  4427. </productMenu>
  4428. <productMenu id="waveIntercom"
  4429. type="1" >
  4430. </productMenu>
  4431. <productMenu id="fmradio"
  4432. type="1"
  4433. url="1" >
  4434. </productMenu>
  4435. <productMenu id="phone"
  4436. type="1" >
  4437. </productMenu>
  4438. <productMenu id="music"
  4439. type="1" >
  4440. </productMenu>
  4441. <productMenu id="musicSharing"
  4442. type="0" >
  4443. </productMenu>
  4444. <productMenu id="deviceSetting"
  4445. type="1"
  4446. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4447. </productMenu>
  4448. <productMenu id="quickGuide"
  4449. type="0"
  4450. url=""
  4451. size="1.12MB" >
  4452. </productMenu>
  4453. <productMenu id="userGuide"
  4454. type="1"
  4455. url=""
  4456. size="2.0MB" >
  4457. </productMenu>
  4458. <productMenu id="videoGuide"
  4459. type="0"
  4460. url=""
  4461. size="3.41MB" >
  4462. </productMenu>
  4463. <productMenu id="volume"
  4464. type="16" >
  4465. </productMenu>
  4466. <productMenu id="volume+"
  4467. type="2"
  4468. url="0x6004" >
  4469. </productMenu>
  4470. <productMenu id="appearance"
  4471. type="1"
  4472. url="2|white,silver,chrome,black" >
  4473. </productMenu>
  4474. <productMenu id="battery"
  4475. type="1" >
  4476. </productMenu>
  4477. <productID id="6A07"
  4478. />
  4479. <productGroupable type="0"
  4480. />
  4481. </product>
  4482. <product id="XFITM"
  4483. name="X-FIT M"
  4484. series="SPIDER"
  4485. latestVersion="0.1.11"
  4486. latestVersionVoicePrompt="1.1"
  4487. show = "-1" >
  4488. <productMenu id="protocol"
  4489. type="2" >
  4490. </productMenu>
  4491. <productMenu id="ota"
  4492. type="0" >
  4493. <otaLanguages>
  4494. <otaLanguage
  4495. id="0"
  4496. name="English"
  4497. package="0"
  4498. />
  4499. <otaLanguage
  4500. id="0"
  4501. name="French"
  4502. package="1"
  4503. />
  4504. <otaLanguage
  4505. id="0"
  4506. name="Spanish"
  4507. package="2"
  4508. />
  4509. <otaLanguage
  4510. id="0"
  4511. name="Italian"
  4512. package="3"
  4513. />
  4514. <otaLanguage
  4515. id="0"
  4516. name="German"
  4517. package="4"
  4518. />
  4519. <otaLanguage
  4520. id="0"
  4521. name="Dutch"
  4522. package="5"
  4523. />
  4524. <otaLanguage
  4525. id="0"
  4526. name="Russian"
  4527. package="6"
  4528. />
  4529. <otaLanguage
  4530. id="0"
  4531. name="Chinese"
  4532. package="7"
  4533. />
  4534. <otaLanguage
  4535. id="0"
  4536. name="Korean"
  4537. package="8"
  4538. />
  4539. <otaLanguage
  4540. id="0"
  4541. name="Japanese"
  4542. package="9"
  4543. />
  4544. <otaLanguage
  4545. id="0"
  4546. name="Finnish"
  4547. package="10"
  4548. />
  4549. <otaLanguage
  4550. id="0"
  4551. name="Polish"
  4552. package="11"
  4553. />
  4554. </otaLanguages>
  4555. <otaPackages>
  4556. <package
  4557. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4558. size="5183988"
  4559. />
  4560. <package
  4561. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4562. size="5183988"
  4563. />
  4564. <package
  4565. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4566. size="5183988"
  4567. />
  4568. <package
  4569. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4570. size="5183988"
  4571. />
  4572. <package
  4573. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4574. size="5183988"
  4575. />
  4576. <package
  4577. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4578. size="5183988"
  4579. />
  4580. <package
  4581. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4582. size="5183988"
  4583. />
  4584. <package
  4585. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4586. size="5183988"
  4587. />
  4588. <package
  4589. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4590. size="5183988"
  4591. />
  4592. <package
  4593. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4594. size="5183988"
  4595. />
  4596. <package
  4597. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4598. size="5183988"
  4599. />
  4600. <package
  4601. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4602. size="5183988"
  4603. />
  4604. </otaPackages>
  4605. </productMenu>
  4606. <productMenu id="meshIntercom"
  4607. type="30" >
  4608. </productMenu>
  4609. <productMenu id="meshIntercom+"
  4610. type="3"
  4611. url="2" >
  4612. </productMenu>
  4613. <productMenu id="waveIntercom"
  4614. type="1" >
  4615. </productMenu>
  4616. <productMenu id="fmradio"
  4617. type="1"
  4618. url="1" >
  4619. </productMenu>
  4620. <productMenu id="phone"
  4621. type="1" >
  4622. </productMenu>
  4623. <productMenu id="music"
  4624. type="1" >
  4625. </productMenu>
  4626. <productMenu id="musicSharing"
  4627. type="0" >
  4628. </productMenu>
  4629. <productMenu id="deviceSetting"
  4630. type="1"
  4631. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4632. </productMenu>
  4633. <productMenu id="quickGuide"
  4634. type="0"
  4635. url=""
  4636. size="1.12MB" >
  4637. </productMenu>
  4638. <productMenu id="userGuide"
  4639. type="1"
  4640. url=""
  4641. size="2.0MB" >
  4642. </productMenu>
  4643. <productMenu id="videoGuide"
  4644. type="0"
  4645. url=""
  4646. size="3.41MB" >
  4647. </productMenu>
  4648. <productMenu id="volume"
  4649. type="16" >
  4650. </productMenu>
  4651. <productMenu id="volume+"
  4652. type="2"
  4653. url="0x6004" >
  4654. </productMenu>
  4655. <productMenu id="battery"
  4656. type="1" >
  4657. </productMenu>
  4658. <productID id="6A17"
  4659. />
  4660. <productGroupable type="0"
  4661. />
  4662. </product>
  4663. <product id="VORTEXMESH"
  4664. name="VORTEX MESH"
  4665. series="Helmet"
  4666. latestVersion="0.1.11"
  4667. latestVersionVoicePrompt="1.1"
  4668. show = "-1" >
  4669. <productMenu id="protocol"
  4670. type="2" >
  4671. </productMenu>
  4672. <productMenu id="ota"
  4673. type="0" >
  4674. <otaLanguages>
  4675. <otaLanguage
  4676. id="0"
  4677. name="English"
  4678. package="0"
  4679. />
  4680. <otaLanguage
  4681. id="0"
  4682. name="French"
  4683. package="1"
  4684. />
  4685. <otaLanguage
  4686. id="0"
  4687. name="Spanish"
  4688. package="2"
  4689. />
  4690. <otaLanguage
  4691. id="0"
  4692. name="Italian"
  4693. package="3"
  4694. />
  4695. <otaLanguage
  4696. id="0"
  4697. name="German"
  4698. package="4"
  4699. />
  4700. <otaLanguage
  4701. id="0"
  4702. name="Dutch"
  4703. package="5"
  4704. />
  4705. <otaLanguage
  4706. id="0"
  4707. name="Russian"
  4708. package="6"
  4709. />
  4710. <otaLanguage
  4711. id="0"
  4712. name="Chinese"
  4713. package="7"
  4714. />
  4715. <otaLanguage
  4716. id="0"
  4717. name="Korean"
  4718. package="8"
  4719. />
  4720. <otaLanguage
  4721. id="0"
  4722. name="Japanese"
  4723. package="9"
  4724. />
  4725. <otaLanguage
  4726. id="0"
  4727. name="Finnish"
  4728. package="10"
  4729. />
  4730. <otaLanguage
  4731. id="0"
  4732. name="Polish"
  4733. package="11"
  4734. />
  4735. </otaLanguages>
  4736. <otaPackages>
  4737. <package
  4738. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4739. size="5183988"
  4740. />
  4741. <package
  4742. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4743. size="5183988"
  4744. />
  4745. <package
  4746. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4747. size="5183988"
  4748. />
  4749. <package
  4750. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4751. size="5183988"
  4752. />
  4753. <package
  4754. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4755. size="5183988"
  4756. />
  4757. <package
  4758. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4759. size="5183988"
  4760. />
  4761. <package
  4762. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4763. size="5183988"
  4764. />
  4765. <package
  4766. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4767. size="5183988"
  4768. />
  4769. <package
  4770. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4771. size="5183988"
  4772. />
  4773. <package
  4774. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4775. size="5183988"
  4776. />
  4777. <package
  4778. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4779. size="5183988"
  4780. />
  4781. <package
  4782. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4783. size="5183988"
  4784. />
  4785. </otaPackages>
  4786. </productMenu>
  4787. <productMenu id="wa"
  4788. type="0" >
  4789. </productMenu>
  4790. <productMenu id="led"
  4791. type="5" >
  4792. </productMenu>
  4793. <productMenu id="led+"
  4794. type="2"
  4795. url="1" >
  4796. </productMenu>
  4797. <productMenu id="meshIntercom"
  4798. type="30" >
  4799. </productMenu>
  4800. <productMenu id="meshIntercom+"
  4801. type="3"
  4802. url="2" >
  4803. </productMenu>
  4804. <productMenu id="waveIntercom"
  4805. type="1" >
  4806. </productMenu>
  4807. <productMenu id="fmradio"
  4808. type="0" >
  4809. </productMenu>
  4810. <productMenu id="phone"
  4811. type="1" >
  4812. </productMenu>
  4813. <productMenu id="music"
  4814. type="1" >
  4815. </productMenu>
  4816. <productMenu id="musicSharing"
  4817. type="0" >
  4818. </productMenu>
  4819. <productMenu id="deviceSetting"
  4820. type="1"
  4821. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4822. </productMenu>
  4823. <productMenu id="quickGuide"
  4824. type="0"
  4825. url=""
  4826. size="1.12MB" >
  4827. </productMenu>
  4828. <productMenu id="userGuide"
  4829. type="1"
  4830. url=""
  4831. size="2.0MB" >
  4832. </productMenu>
  4833. <productMenu id="videoGuide"
  4834. type="0"
  4835. url=""
  4836. size="3.41MB" >
  4837. </productMenu>
  4838. <productMenu id="volume"
  4839. type="16" >
  4840. </productMenu>
  4841. <productMenu id="battery"
  4842. type="1" >
  4843. </productMenu>
  4844. <productID id="6A12"
  4845. />
  4846. <productGroupable type="0"
  4847. />
  4848. </product>
  4849. <product id="MeshOn"
  4850. name="Mesh ON"
  4851. series="60"
  4852. latestVersion="1.0.1"
  4853. latestVersionVoicePrompt="0.7"
  4854. show = "-1" >
  4855. <productMenu id="protocol"
  4856. type="2" >
  4857. </productMenu>
  4858. <productMenu id="ota"
  4859. type="2" >
  4860. <otaPackages>
  4861. <package
  4862. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4863. size="2945812"
  4864. />
  4865. </otaPackages>
  4866. </productMenu>
  4867. <productMenu id="meshIntercom+"
  4868. type="3"
  4869. url="4" >
  4870. </productMenu>
  4871. <productMenu id="waveIntercom"
  4872. type="0" >
  4873. </productMenu>
  4874. <productMenu id="phone"
  4875. type="0" >
  4876. </productMenu>
  4877. <productMenu id="music"
  4878. type="0" >
  4879. </productMenu>
  4880. <productMenu id="musicSharing"
  4881. type="0" >
  4882. </productMenu>
  4883. <productMenu id="deviceSetting"
  4884. type="1"
  4885. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4886. </productMenu>
  4887. <productMenu id="userGuide"
  4888. type="1"
  4889. url=""
  4890. size="2.0MB" >
  4891. </productMenu>
  4892. <productMenu id="bluetoothHeadset"
  4893. type="1"
  4894. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4895. </productMenu>
  4896. <productMenu id="volume"
  4897. type="0" >
  4898. </productMenu>
  4899. <productMenu id="battery"
  4900. type="1" >
  4901. </productMenu>
  4902. <productID id="684E"
  4903. />
  4904. <productGroupable type="0"
  4905. />
  4906. </product>
  4907. <product id="Impulse"
  4908. name="Impulse"
  4909. series="Helmet"
  4910. latestVersion="1.4.1"
  4911. show = "1" >
  4912. <productMenu id="protocol"
  4913. type="2" >
  4914. </productMenu>
  4915. <productMenu id="alexa"
  4916. type="0" >
  4917. </productMenu>
  4918. <productMenu id="ota"
  4919. type="0" >
  4920. </productMenu>
  4921. <productMenu id="wa"
  4922. type="24" >
  4923. </productMenu>
  4924. <productMenu id="manager"
  4925. type="0" >
  4926. </productMenu>
  4927. <productMenu id="sip"
  4928. type="1" >
  4929. </productMenu>
  4930. <productMenu id="led"
  4931. type="1" >
  4932. <productMenuType version="1.0.1"
  4933. type="2"
  4934. />
  4935. <productMenuType version="1.0"
  4936. type="1"
  4937. />
  4938. </productMenu>
  4939. <productMenu id="meshIntercom"
  4940. type="30" >
  4941. <productMenuType version="1.1.1"
  4942. type="20"
  4943. />
  4944. </productMenu>
  4945. <productMenu id="meshIntercom+"
  4946. type="3"
  4947. url="2" >
  4948. <productMenuType version="1.3.9"
  4949. type="2"
  4950. />
  4951. <productMenuURL version="1.1.1"
  4952. url="0"
  4953. />
  4954. </productMenu>
  4955. <productMenu id="waveIntercom"
  4956. type="1" >
  4957. <productMenuType version="1.3.9"
  4958. type="0"
  4959. />
  4960. </productMenu>
  4961. <productMenu id="bluetoothIntercom"
  4962. type="1" >
  4963. </productMenu>
  4964. <productMenu id="phone"
  4965. type="1" >
  4966. </productMenu>
  4967. <productMenu id="music"
  4968. type="1" >
  4969. </productMenu>
  4970. <productMenu id="fmradio"
  4971. type="1" >
  4972. </productMenu>
  4973. <productMenu id="deviceSetting"
  4974. type="1"
  4975. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4976. <productMenuURL version="1.3.9"
  4977. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4978. />
  4979. <productMenuURL version="1.1.1"
  4980. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4981. />
  4982. <productMenuURL version="1.0.4"
  4983. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4984. />
  4985. </productMenu>
  4986. <productMenu id="quickGuide"
  4987. type="0"
  4988. url=""
  4989. size="344KB" >
  4990. </productMenu>
  4991. <productMenu id="userGuide"
  4992. type="1"
  4993. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  4994. size="3.41MB" >
  4995. </productMenu>
  4996. <productMenu id="connectGuide"
  4997. type="1"
  4998. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4999. size="1.12MB" >
  5000. </productMenu>
  5001. <productMenu id="volume"
  5002. type="11" >
  5003. </productMenu>
  5004. <productMenu id="battery"
  5005. type="1" >
  5006. </productMenu>
  5007. <productID id="3148"
  5008. />
  5009. <productGroupable type="0"
  5010. />
  5011. </product>
  5012. <product id="Impulse"
  5013. name="Impulse"
  5014. series="Helmet"
  5015. latestVersion="2.0"
  5016. show = "-1" >
  5017. <productMenu id="protocol"
  5018. type="2" >
  5019. </productMenu>
  5020. <productMenu id="alexa"
  5021. type="0" >
  5022. </productMenu>
  5023. <productMenu id="ota"
  5024. type="0" >
  5025. </productMenu>
  5026. <productMenu id="wa"
  5027. type="8" >
  5028. </productMenu>
  5029. <productMenu id="manager"
  5030. type="0" >
  5031. </productMenu>
  5032. <productMenu id="sip"
  5033. type="1" >
  5034. </productMenu>
  5035. <productMenu id="led"
  5036. type="3" >
  5037. </productMenu>
  5038. <productMenu id="meshIntercom"
  5039. type="20" >
  5040. </productMenu>
  5041. <productMenu id="bluetoothIntercom"
  5042. type="1" >
  5043. </productMenu>
  5044. <productMenu id="phone"
  5045. type="1" >
  5046. </productMenu>
  5047. <productMenu id="music"
  5048. type="1" >
  5049. </productMenu>
  5050. <productMenu id="fmradio"
  5051. type="1" >
  5052. </productMenu>
  5053. <productMenu id="deviceSetting"
  5054. type="1"
  5055. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5056. </productMenu>
  5057. <productMenu id="quickGuide"
  5058. type="1"
  5059. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5060. size="344KB" >
  5061. </productMenu>
  5062. <productMenu id="userGuide"
  5063. type="1"
  5064. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5065. size="3.41MB" >
  5066. </productMenu>
  5067. <productMenu id="volume"
  5068. type="11" >
  5069. </productMenu>
  5070. <productMenu id="battery"
  5071. type="1" >
  5072. </productMenu>
  5073. <productID id="3221"
  5074. />
  5075. <productGroupable type="0"
  5076. />
  5077. </product>
  5078. <product id="Stryker"
  5079. name="Stryker"
  5080. series="Helmet"
  5081. latestVersion="1.4.1"
  5082. show = "1" >
  5083. <productMenu id="protocol"
  5084. type="2" >
  5085. </productMenu>
  5086. <productMenu id="alexa"
  5087. type="0" >
  5088. </productMenu>
  5089. <productMenu id="ota"
  5090. type="0" >
  5091. </productMenu>
  5092. <productMenu id="wa"
  5093. type="40" >
  5094. </productMenu>
  5095. <productMenu id="manager"
  5096. type="0" >
  5097. </productMenu>
  5098. <productMenu id="sip"
  5099. type="1" >
  5100. </productMenu>
  5101. <productMenu id="led"
  5102. type="1" >
  5103. <productMenuType version="1.0.1"
  5104. type="2"
  5105. />
  5106. <productMenuType version="1.0"
  5107. type="1"
  5108. />
  5109. </productMenu>
  5110. <productMenu id="meshIntercom"
  5111. type="30" >
  5112. <productMenuType version="1.1.1"
  5113. type="20"
  5114. />
  5115. </productMenu>
  5116. <productMenu id="meshIntercom+"
  5117. type="3"
  5118. url="2" >
  5119. <productMenuType version="1.3.9"
  5120. type="2"
  5121. />
  5122. <productMenuURL version="1.1.1"
  5123. url="0"
  5124. />
  5125. </productMenu>
  5126. <productMenu id="waveIntercom"
  5127. type="1" >
  5128. <productMenuType version="1.2.9"
  5129. type="0"
  5130. />
  5131. </productMenu>
  5132. <productMenu id="bluetoothIntercom"
  5133. type="1" >
  5134. </productMenu>
  5135. <productMenu id="phone"
  5136. type="1" >
  5137. </productMenu>
  5138. <productMenu id="music"
  5139. type="1" >
  5140. </productMenu>
  5141. <productMenu id="fmradio"
  5142. type="1" >
  5143. </productMenu>
  5144. <productMenu id="deviceSetting"
  5145. type="1"
  5146. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5147. <productMenuURL version="1.3.9"
  5148. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5149. />
  5150. <productMenuURL version="1.1.1"
  5151. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5152. />
  5153. <productMenuURL version="1.0.4"
  5154. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5155. />
  5156. </productMenu>
  5157. <productMenu id="quickGuide"
  5158. type="0"
  5159. url=""
  5160. size="344KB" >
  5161. </productMenu>
  5162. <productMenu id="userGuide"
  5163. type="1"
  5164. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5165. size="3.41MB" >
  5166. </productMenu>
  5167. <productMenu id="connectGuide"
  5168. type="1"
  5169. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5170. size="1.12MB" >
  5171. </productMenu>
  5172. <productMenu id="volume"
  5173. type="11" >
  5174. </productMenu>
  5175. <productMenu id="battery"
  5176. type="1" >
  5177. </productMenu>
  5178. <productID id="3154"
  5179. />
  5180. <productGroupable type="0"
  5181. />
  5182. </product>
  5183. <product id="SRL3Plus"
  5184. name="SRL3 Plus"
  5185. series="60"
  5186. latestVersion="0.9.5"
  5187. latestVersionMesh="0.19"
  5188. latestVersionVoicePrompt="1.2"
  5189. show = "-1" >
  5190. <productMenu id="protocol"
  5191. type="2" >
  5192. </productMenu>
  5193. <productMenu id="ota"
  5194. type="2" >
  5195. <otaLanguages>
  5196. <otaLanguage
  5197. id="0"
  5198. name="English"
  5199. package="0"
  5200. />
  5201. <otaLanguage
  5202. id="0"
  5203. name="French"
  5204. package="1"
  5205. />
  5206. <otaLanguage
  5207. id="0"
  5208. name="Spanish"
  5209. package="2"
  5210. />
  5211. <otaLanguage
  5212. id="0"
  5213. name="Italian"
  5214. package="3"
  5215. />
  5216. <otaLanguage
  5217. id="0"
  5218. name="German"
  5219. package="4"
  5220. />
  5221. <otaLanguage
  5222. id="0"
  5223. name="Dutch"
  5224. package="5"
  5225. />
  5226. <otaLanguage
  5227. id="0"
  5228. name="Russian"
  5229. package="6"
  5230. />
  5231. <otaLanguage
  5232. id="0"
  5233. name="Chinese"
  5234. package="7"
  5235. />
  5236. <otaLanguage
  5237. id="0"
  5238. name="Korean"
  5239. package="8"
  5240. />
  5241. <otaLanguage
  5242. id="0"
  5243. name="Japanese"
  5244. package="9"
  5245. />
  5246. <otaLanguage
  5247. id="0"
  5248. name="Finnish"
  5249. package="10"
  5250. />
  5251. </otaLanguages>
  5252. <otaPackages>
  5253. <package
  5254. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0.img"
  5255. size="5183988"
  5256. />
  5257. <package
  5258. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fr-FR.img"
  5259. size="5183988"
  5260. />
  5261. <package
  5262. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-es-ES.img"
  5263. size="5183988"
  5264. />
  5265. <package
  5266. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-it-IT.img"
  5267. size="5183988"
  5268. />
  5269. <package
  5270. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-de-DE.img"
  5271. size="5183988"
  5272. />
  5273. <package
  5274. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-nl-NL.img"
  5275. size="5183988"
  5276. />
  5277. <package
  5278. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ru-RU.img"
  5279. size="5183988"
  5280. />
  5281. <package
  5282. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-cmn-CN.img"
  5283. size="5183988"
  5284. />
  5285. <package
  5286. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ko-KR.img"
  5287. size="5183988"
  5288. />
  5289. <package
  5290. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ja-JP.img"
  5291. size="5183988"
  5292. />
  5293. <package
  5294. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fi-FI.img"
  5295. size="5183988"
  5296. />
  5297. </otaPackages>
  5298. </productMenu>
  5299. <productMenu id="sip"
  5300. type="1" >
  5301. </productMenu>
  5302. <productMenu id="illusion"
  5303. type="1" >
  5304. </productMenu>
  5305. <productMenu id="meshIntercom+"
  5306. type="3"
  5307. url="2" >
  5308. </productMenu>
  5309. <productMenu id="waveIntercom"
  5310. type="1" >
  5311. </productMenu>
  5312. <productMenu id="bluetoothIntercom"
  5313. type="1"
  5314. url="2" >
  5315. </productMenu>
  5316. <productMenu id="bluetoothIntercomGrouping"
  5317. type="0" >
  5318. </productMenu>
  5319. <productMenu id="fmradio"
  5320. type="1"
  5321. url="1" >
  5322. </productMenu>
  5323. <productMenu id="phone"
  5324. type="1" >
  5325. </productMenu>
  5326. <productMenu id="music"
  5327. type="1" >
  5328. </productMenu>
  5329. <productMenu id="musicSharing"
  5330. type="0" >
  5331. </productMenu>
  5332. <productMenu id="deviceSetting"
  5333. type="1"
  5334. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  5335. </productMenu>
  5336. <productMenu id="quickGuide"
  5337. type="0"
  5338. url=""
  5339. size="1.12MB" >
  5340. </productMenu>
  5341. <productMenu id="userGuide"
  5342. type="0"
  5343. url=""
  5344. size="2.0MB" >
  5345. </productMenu>
  5346. <productMenu id="videoGuide"
  5347. type="0"
  5348. url=""
  5349. size="3.41MB" >
  5350. </productMenu>
  5351. <productMenu id="volume"
  5352. type="16" >
  5353. </productMenu>
  5354. <productMenu id="soundMode"
  5355. type="1" >
  5356. </productMenu>
  5357. <productMenu id="battery"
  5358. type="1" >
  5359. </productMenu>
  5360. <productID id="6A08"
  5361. />
  5362. <productGroupable type="0"
  5363. />
  5364. </product>
  5365. <product id="SRL3"
  5366. name="SRL3"
  5367. series="SRL"
  5368. latestVersion="1.5"
  5369. show = "1" >
  5370. <productMenu id="protocol"
  5371. type="2" >
  5372. </productMenu>
  5373. <productMenu id="alexa"
  5374. type="0" >
  5375. </productMenu>
  5376. <productMenu id="ota"
  5377. type="0" >
  5378. </productMenu>
  5379. <productMenu id="wa"
  5380. type="1" >
  5381. </productMenu>
  5382. <productMenu id="sip"
  5383. type="1" >
  5384. </productMenu>
  5385. <productMenu id="meshIntercom"
  5386. type="30" >
  5387. </productMenu>
  5388. <productMenu id="meshIntercom+"
  5389. type="3"
  5390. url="2" >
  5391. <productMenuType version="1.3.9"
  5392. type="2"
  5393. />
  5394. </productMenu>
  5395. <productMenu id="waveIntercom"
  5396. type="1" >
  5397. <productMenuType version="1.4.9"
  5398. type="0"
  5399. />
  5400. </productMenu>
  5401. <productMenu id="bluetoothIntercom"
  5402. type="1" >
  5403. </productMenu>
  5404. <productMenu id="phone"
  5405. type="1" >
  5406. </productMenu>
  5407. <productMenu id="music"
  5408. type="1" >
  5409. </productMenu>
  5410. <productMenu id="fmradio"
  5411. type="1" >
  5412. </productMenu>
  5413. <productMenu id="deviceSetting"
  5414. type="1"
  5415. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5416. <productMenuURL version="1.3"
  5417. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5418. />
  5419. </productMenu>
  5420. <productMenu id="quickGuide"
  5421. type="0"
  5422. url=""
  5423. size="344KB" >
  5424. </productMenu>
  5425. <productMenu id="userGuide"
  5426. type="1"
  5427. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5428. size="3.41MB" >
  5429. </productMenu>
  5430. <productMenu id="connectGuide"
  5431. type="1"
  5432. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5433. size="1.12MB" >
  5434. </productMenu>
  5435. <productMenu id="volume"
  5436. type="11" >
  5437. </productMenu>
  5438. <productMenu id="battery"
  5439. type="1" >
  5440. </productMenu>
  5441. <productID id="3219"
  5442. />
  5443. <productGroupable type="0"
  5444. />
  5445. </product>
  5446. <product id="SRL_Mesh"
  5447. name="SRL-Mesh"
  5448. series="SRL"
  5449. latestVersion="1.7.1"
  5450. show = "1" >
  5451. <productMenu id="protocol"
  5452. type="2" >
  5453. </productMenu>
  5454. <productMenu id="alexa"
  5455. type="0" >
  5456. </productMenu>
  5457. <productMenu id="ota"
  5458. type="0" >
  5459. </productMenu>
  5460. <productMenu id="wa"
  5461. type="1" >
  5462. </productMenu>
  5463. <productMenu id="sip"
  5464. type="1" >
  5465. </productMenu>
  5466. <productMenu id="meshIntercom"
  5467. type="30" >
  5468. <productMenuType version="1.1.1"
  5469. type="20"
  5470. />
  5471. </productMenu>
  5472. <productMenu id="meshIntercom+"
  5473. type="3"
  5474. url="2" >
  5475. <productMenuType version="1.5.9"
  5476. type="2"
  5477. />
  5478. <productMenuURL version="1.1.1"
  5479. url="0"
  5480. />
  5481. </productMenu>
  5482. <productMenu id="waveIntercom"
  5483. type="1" >
  5484. <productMenuType version="1.6.9"
  5485. type="0"
  5486. />
  5487. </productMenu>
  5488. <productMenu id="bluetoothIntercom"
  5489. type="1" >
  5490. </productMenu>
  5491. <productMenu id="phone"
  5492. type="1" >
  5493. </productMenu>
  5494. <productMenu id="music"
  5495. type="1" >
  5496. </productMenu>
  5497. <productMenu id="fmradio"
  5498. type="1" >
  5499. </productMenu>
  5500. <productMenu id="deviceSetting"
  5501. type="1"
  5502. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5503. <productMenuURL version="1.5"
  5504. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5505. />
  5506. <productMenuURL version="1.1.1"
  5507. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5508. />
  5509. <productMenuURL version="1.0.3"
  5510. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5511. />
  5512. </productMenu>
  5513. <productMenu id="quickGuide"
  5514. type="0"
  5515. url=""
  5516. size="344KB" >
  5517. </productMenu>
  5518. <productMenu id="userGuide"
  5519. type="1"
  5520. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5521. size="3.41MB" >
  5522. </productMenu>
  5523. <productMenu id="connectGuide"
  5524. type="1"
  5525. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5526. size="1.12MB" >
  5527. </productMenu>
  5528. <productMenu id="volume"
  5529. type="11" >
  5530. </productMenu>
  5531. <productMenu id="battery"
  5532. type="1" >
  5533. </productMenu>
  5534. <productID id="3216"
  5535. />
  5536. <productGroupable type="0"
  5537. />
  5538. </product>
  5539. <product id="SRL_EXT"
  5540. name="SRL-EXT"
  5541. series="SRL"
  5542. latestVersion="1.7.1"
  5543. show = "1" >
  5544. <productMenu id="protocol"
  5545. type="2" >
  5546. </productMenu>
  5547. <productMenu id="alexa"
  5548. type="0" >
  5549. </productMenu>
  5550. <productMenu id="ota"
  5551. type="0" >
  5552. </productMenu>
  5553. <productMenu id="wa"
  5554. type="0" >
  5555. </productMenu>
  5556. <productMenu id="sip"
  5557. type="1" >
  5558. </productMenu>
  5559. <productMenu id="meshIntercom"
  5560. type="30" >
  5561. <productMenuType version="1.1.1"
  5562. type="20"
  5563. />
  5564. </productMenu>
  5565. <productMenu id="meshIntercom+"
  5566. type="3"
  5567. url="2" >
  5568. <productMenuType version="1.5.9"
  5569. type="2"
  5570. />
  5571. <productMenuURL version="1.1.1"
  5572. url="0"
  5573. />
  5574. </productMenu>
  5575. <productMenu id="waveIntercom"
  5576. type="1" >
  5577. <productMenuType version="1.6.9"
  5578. type="0"
  5579. />
  5580. </productMenu>
  5581. <productMenu id="bluetoothIntercom"
  5582. type="1" >
  5583. </productMenu>
  5584. <productMenu id="phone"
  5585. type="1" >
  5586. </productMenu>
  5587. <productMenu id="music"
  5588. type="1" >
  5589. </productMenu>
  5590. <productMenu id="fmradio"
  5591. type="1" >
  5592. </productMenu>
  5593. <productMenu id="deviceSetting"
  5594. type="1"
  5595. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5596. <productMenuURL version="1.5"
  5597. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5598. />
  5599. <productMenuURL version="1.1.1"
  5600. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5601. />
  5602. <productMenuURL version="1.0.3"
  5603. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5604. />
  5605. </productMenu>
  5606. <productMenu id="quickGuide"
  5607. type="0"
  5608. url=""
  5609. size="344KB" >
  5610. </productMenu>
  5611. <productMenu id="userGuide"
  5612. type="1"
  5613. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5614. size="3.41MB" >
  5615. </productMenu>
  5616. <productMenu id="connectGuide"
  5617. type="1"
  5618. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5619. size="1.12MB" >
  5620. </productMenu>
  5621. <productMenu id="volume"
  5622. type="11" >
  5623. </productMenu>
  5624. <productMenu id="battery"
  5625. type="1" >
  5626. </productMenu>
  5627. <productID id="3212"
  5628. />
  5629. <productGroupable type="0"
  5630. />
  5631. </product>
  5632. <product id="SRL2"
  5633. name="SRL2"
  5634. series="SRL"
  5635. latestVersion="1.0.9"
  5636. show = "1" >
  5637. <productMenu id="protocol"
  5638. type="0">
  5639. </productMenu>
  5640. <productMenu id="sip"
  5641. type="1" >
  5642. </productMenu>
  5643. <productMenu id="bluetoothIntercom"
  5644. type="1" >
  5645. </productMenu>
  5646. <productMenu id="intercomSetting"
  5647. type="1" >
  5648. </productMenu>
  5649. <productMenu id="phone"
  5650. type="2" >
  5651. </productMenu>
  5652. <productMenu id="fmradio"
  5653. type="3" >
  5654. </productMenu>
  5655. <productMenu id="deviceSetting"
  5656. type="1"
  5657. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5658. </productMenu>
  5659. <productMenu id="quickGuide"
  5660. type="1"
  5661. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5662. size="846KB" >
  5663. </productMenu>
  5664. <productMenu id="userGuide"
  5665. type="1"
  5666. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5667. size="1.18MB" >
  5668. </productMenu>
  5669. <productMenu id="connectGuide"
  5670. type="1"
  5671. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5672. size="1.12MB" >
  5673. </productMenu>
  5674. <productID id="4530"
  5675. />
  5676. <productGroupable type="1"
  5677. />
  5678. </product>
  5679. <product id="Neotec2"
  5680. name="SRL Neotec2"
  5681. series="SRL"
  5682. latestVersion="1.1.5"
  5683. show = "1" >
  5684. <productMenu id="protocol"
  5685. type="0">
  5686. </productMenu>
  5687. <productMenu id="sip"
  5688. type="1" >
  5689. </productMenu>
  5690. <productMenu id="bluetoothIntercom"
  5691. type="1" >
  5692. </productMenu>
  5693. <productMenu id="intercomSetting"
  5694. type="1" >
  5695. </productMenu>
  5696. <productMenu id="phone"
  5697. type="2" >
  5698. </productMenu>
  5699. <productMenu id="fmradio"
  5700. type="3" >
  5701. </productMenu>
  5702. <productMenu id="deviceSetting"
  5703. type="1"
  5704. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5705. </productMenu>
  5706. <productMenu id="quickGuide"
  5707. type="0"
  5708. url=""
  5709. size="796KB" >
  5710. </productMenu>
  5711. <productMenu id="userGuide"
  5712. type="1"
  5713. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5714. size="1.90MB" >
  5715. </productMenu>
  5716. <productMenu id="connectGuide"
  5717. type="1"
  5718. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5719. size="1.12MB" >
  5720. </productMenu>
  5721. <productID id="4510"
  5722. />
  5723. <productGroupable type="1"
  5724. />
  5725. </product>
  5726. <product id="SPIDERST2ANC"
  5727. name="SPIDER ST2 ANC"
  5728. series="SPIDER"
  5729. latestVersion="0.5.1"
  5730. latestVersionVoicePrompt="0.2"
  5731. latestVersionMesh="0.8"
  5732. show = "-1" >
  5733. <productMenu id="protocol"
  5734. type="2" >
  5735. </productMenu>
  5736. <productMenu id="ota"
  5737. type="0" >
  5738. <otaPackages>
  5739. <package
  5740. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5741. size="2945812"
  5742. />
  5743. </otaPackages>
  5744. </productMenu>
  5745. <productMenu id="wa"
  5746. type="0" >
  5747. </productMenu>
  5748. <productMenu id="led"
  5749. type="1" >
  5750. </productMenu>
  5751. <productMenu id="meshIntercom"
  5752. type="30" >
  5753. </productMenu>
  5754. <productMenu id="fmradio"
  5755. type="1" >
  5756. </productMenu>
  5757. <productMenu id="phone"
  5758. type="1" >
  5759. </productMenu>
  5760. <productMenu id="music"
  5761. type="1" >
  5762. </productMenu>
  5763. <productMenu id="musicSharing"
  5764. type="0" >
  5765. </productMenu>
  5766. <productMenu id="deviceSetting"
  5767. type="1"
  5768. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  5769. </productMenu>
  5770. <productMenu id="quickGuide"
  5771. type="1"
  5772. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5773. size="1.12MB" >
  5774. </productMenu>
  5775. <productMenu id="userGuide"
  5776. type="1"
  5777. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5778. size="2.0MB" >
  5779. </productMenu>
  5780. <productMenu id="videoGuide"
  5781. type="1"
  5782. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5783. size="3.41MB" >
  5784. </productMenu>
  5785. <productMenu id="volume"
  5786. type="12" >
  5787. </productMenu>
  5788. <productMenu id="battery"
  5789. type="1" >
  5790. </productMenu>
  5791. <productID id="6A00"
  5792. />
  5793. <productGroupable type="0"
  5794. />
  5795. </product>
  5796. <product id="SPIDER_ST1"
  5797. name="SPIDER ST1"
  5798. series="SPIDER"
  5799. latestVersion="2.5.3"
  5800. latestVersionVoicePrompt="1.6"
  5801. show = "1" >
  5802. <productMenu id="protocol"
  5803. type="2" >
  5804. </productMenu>
  5805. <productMenu id="alexa"
  5806. type="0" >
  5807. </productMenu>
  5808. <productMenu id="ota"
  5809. type="2" >
  5810. <productMenuType version="2.1.9"
  5811. type="0"
  5812. />
  5813. <otaPackages>
  5814. <package
  5815. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  5816. size="2945812"
  5817. />
  5818. </otaPackages>
  5819. </productMenu>
  5820. <productMenu id="wa"
  5821. type="0" >
  5822. </productMenu>
  5823. <productMenu id="meshIntercom"
  5824. type="30" >
  5825. <productMenuType version="2.1.1"
  5826. type="20"
  5827. />
  5828. </productMenu>
  5829. <productMenu id="meshIntercom+"
  5830. type="3"
  5831. url="2" >
  5832. <productMenuType version="2.2.9"
  5833. type="2"
  5834. />
  5835. <productMenuURL version="2.1.1"
  5836. url="0"
  5837. />
  5838. </productMenu>
  5839. <productMenu id="waveIntercom"
  5840. type="1" >
  5841. <productMenuType version="2.3.9"
  5842. type="0"
  5843. />
  5844. </productMenu>
  5845. <productMenu id="phone"
  5846. type="1" >
  5847. </productMenu>
  5848. <productMenu id="music"
  5849. type="1" >
  5850. </productMenu>
  5851. <productMenu id="musicSharing"
  5852. type="0" >
  5853. </productMenu>
  5854. <productMenu id="deviceSetting"
  5855. type="1"
  5856. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5857. <productMenuURL version="2.4.9"
  5858. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5859. />
  5860. <productMenuURL version="2.2.2"
  5861. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5862. />
  5863. <productMenuURL version="2.1.1"
  5864. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5865. />
  5866. </productMenu>
  5867. <productMenu id="quickGuide"
  5868. type="0"
  5869. url=""
  5870. size="1.12MB" >
  5871. </productMenu>
  5872. <productMenu id="userGuide"
  5873. type="1"
  5874. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5875. size="2.0MB" >
  5876. </productMenu>
  5877. <productMenu id="videoGuide"
  5878. type="1"
  5879. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5880. size="3.41MB" >
  5881. </productMenu>
  5882. <productMenu id="connectGuide"
  5883. type="1"
  5884. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5885. size="1.12MB" >
  5886. </productMenu>
  5887. <productMenu id="volume"
  5888. type="12" >
  5889. </productMenu>
  5890. <productMenu id="battery"
  5891. type="1" >
  5892. </productMenu>
  5893. <productID id="6800"
  5894. />
  5895. <productGroupable type="0"
  5896. />
  5897. </product>
  5898. <product id="SPIDER_ST1"
  5899. name="SPIDER ST1"
  5900. series="SPIDER"
  5901. latestVersion="1.2.2"
  5902. show = "-1" >
  5903. <productMenu id="protocol"
  5904. type="2" >
  5905. </productMenu>
  5906. <productMenu id="alexa"
  5907. type="0" >
  5908. </productMenu>
  5909. <productMenu id="ota"
  5910. type="0" >
  5911. </productMenu>
  5912. <productMenu id="wa"
  5913. type="0" >
  5914. </productMenu>
  5915. <productMenu id="meshIntercom"
  5916. type="20" >
  5917. </productMenu>
  5918. <productMenu id="phone"
  5919. type="1" >
  5920. </productMenu>
  5921. <productMenu id="music"
  5922. type="1" >
  5923. </productMenu>
  5924. <productMenu id="deviceSetting"
  5925. type="1"
  5926. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5927. </productMenu>
  5928. <productMenu id="quickGuide"
  5929. type="0"
  5930. url=""
  5931. size="1.12MB" >
  5932. </productMenu>
  5933. <productMenu id="userGuide"
  5934. type="1"
  5935. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5936. size="2.0MB" >
  5937. </productMenu>
  5938. <productMenu id="videoGuide"
  5939. type="1"
  5940. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5941. size="3.41MB" >
  5942. </productMenu>
  5943. <productMenu id="volume"
  5944. type="13" >
  5945. <productMenuType version="1.1.6"
  5946. type="14"/>
  5947. </productMenu>
  5948. <productMenu id="battery"
  5949. type="1" >
  5950. </productMenu>
  5951. <productID id="6510"
  5952. />
  5953. <productGroupable type="0"
  5954. />
  5955. </product>
  5956. <product id="SPIDER_RT1"
  5957. name="SPIDER RT1"
  5958. series="SPIDER"
  5959. latestVersion="2.5.3"
  5960. latestVersionVoicePrompt="1.6"
  5961. show = "1" >
  5962. <productMenu id="protocol"
  5963. type="2" >
  5964. </productMenu>
  5965. <productMenu id="alexa"
  5966. type="0" >
  5967. </productMenu>
  5968. <productMenu id="ota"
  5969. type="2" >
  5970. <productMenuType version="2.1.9"
  5971. type="0"
  5972. />
  5973. <otaPackages>
  5974. <package
  5975. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  5976. size="2945812"
  5977. />
  5978. </otaPackages>
  5979. </productMenu>
  5980. <productMenu id="wa"
  5981. type="0" >
  5982. </productMenu>
  5983. <productMenu id="meshIntercom"
  5984. type="30" >
  5985. <productMenuType version="2.1.1"
  5986. type="20"
  5987. />
  5988. </productMenu>
  5989. <productMenu id="meshIntercom+"
  5990. type="3"
  5991. url="2" >
  5992. <productMenuType version="2.2.9"
  5993. type="2"
  5994. />
  5995. <productMenuURL version="2.1.1"
  5996. url="0"
  5997. />
  5998. </productMenu>
  5999. <productMenu id="waveIntercom"
  6000. type="1" >
  6001. <productMenuType version="2.3.9"
  6002. type="0"
  6003. />
  6004. </productMenu>
  6005. <productMenu id="phone"
  6006. type="1" >
  6007. </productMenu>
  6008. <productMenu id="music"
  6009. type="1" >
  6010. </productMenu>
  6011. <productMenu id="musicSharing"
  6012. type="0" >
  6013. </productMenu>
  6014. <productMenu id="deviceSetting"
  6015. type="1"
  6016. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6017. <productMenuURL version="2.4.9"
  6018. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6019. />
  6020. <productMenuURL version="2.2.2"
  6021. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6022. />
  6023. <productMenuURL version="2.1.1"
  6024. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6025. />
  6026. </productMenu>
  6027. <productMenu id="quickGuide"
  6028. type="0"
  6029. url=""
  6030. size="1.12MB" >
  6031. </productMenu>
  6032. <productMenu id="userGuide"
  6033. type="1"
  6034. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6035. size="2.0MB" >
  6036. </productMenu>
  6037. <productMenu id="videoGuide"
  6038. type="1"
  6039. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6040. size="3.41MB" >
  6041. </productMenu>
  6042. <productMenu id="connectGuide"
  6043. type="1"
  6044. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6045. size="1.12MB" >
  6046. </productMenu>
  6047. <productMenu id="volume"
  6048. type="12" >
  6049. </productMenu>
  6050. <productMenu id="battery"
  6051. type="1" >
  6052. </productMenu>
  6053. <productID id="6810"
  6054. />
  6055. <productGroupable type="0"
  6056. />
  6057. </product>
  6058. <product id="SPIDER_RT1"
  6059. name="SPIDER RT1"
  6060. series="SPIDER"
  6061. latestVersion="1.2.2"
  6062. show = "-1" >
  6063. <productMenu id="protocol"
  6064. type="2" >
  6065. </productMenu>
  6066. <productMenu id="alexa"
  6067. type="0" >
  6068. </productMenu>
  6069. <productMenu id="ota"
  6070. type="0" >
  6071. </productMenu>
  6072. <productMenu id="wa"
  6073. type="0" >
  6074. </productMenu>
  6075. <productMenu id="meshIntercom"
  6076. type="20" >
  6077. </productMenu>
  6078. <productMenu id="phone"
  6079. type="1" >
  6080. </productMenu>
  6081. <productMenu id="music"
  6082. type="1" >
  6083. </productMenu>
  6084. <productMenu id="deviceSetting"
  6085. type="1"
  6086. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6087. </productMenu>
  6088. <productMenu id="quickGuide"
  6089. type="0"
  6090. url=""
  6091. size="1.32MB" >
  6092. </productMenu>
  6093. <productMenu id="userGuide"
  6094. type="1"
  6095. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6096. size="1.79MB" >
  6097. </productMenu>
  6098. <productMenu id="videoGuide"
  6099. type="1"
  6100. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6101. size="3.41MB" >
  6102. </productMenu>
  6103. <productMenu id="volume"
  6104. type="13" >
  6105. <productMenuType version="1.1.6"
  6106. type="14"/>
  6107. </productMenu>
  6108. <productMenu id="battery"
  6109. type="1" >
  6110. </productMenu>
  6111. <productID id="6500"
  6112. />
  6113. <productGroupable type="0"
  6114. />
  6115. </product>
  6116. <product id="30K"
  6117. name="30K"
  6118. series="30"
  6119. latestVersion="4.5.1"
  6120. show = "1" >
  6121. <productMenu id="protocol"
  6122. type="2" >
  6123. </productMenu>
  6124. <productMenu id="alexa"
  6125. type="0" >
  6126. </productMenu>
  6127. <productMenu id="wa"
  6128. type="1" >
  6129. </productMenu>
  6130. <productMenu id="sip"
  6131. type="1" >
  6132. </productMenu>
  6133. <productMenu id="meshIntercom"
  6134. type="30" >
  6135. <productMenuType version="4.0.4"
  6136. type="20"
  6137. />
  6138. </productMenu>
  6139. <productMenu id="meshIntercom+"
  6140. type="3"
  6141. url="2" >
  6142. <productMenuType version="4.3.9"
  6143. type="2"
  6144. />
  6145. <productMenuURL version="4.0.4"
  6146. url="0"
  6147. />
  6148. </productMenu>
  6149. <productMenu id="waveIntercom"
  6150. type="1" >
  6151. <productMenuType version="4.4.9"
  6152. type="0"
  6153. />
  6154. </productMenu>
  6155. <productMenu id="bluetoothIntercom"
  6156. type="1" >
  6157. </productMenu>
  6158. <productMenu id="phone"
  6159. type="1" >
  6160. </productMenu>
  6161. <productMenu id="music"
  6162. type="1" >
  6163. </productMenu>
  6164. <productMenu id="fmradio"
  6165. type="1" >
  6166. </productMenu>
  6167. <productMenu id="deviceSetting"
  6168. type="1"
  6169. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6170. <productMenuURL version="4.3"
  6171. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6172. />
  6173. <productMenuURL version="4.2"
  6174. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6175. />
  6176. <productMenuURL version="4.0.4"
  6177. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6178. />
  6179. </productMenu>
  6180. <productMenu id="quickGuide"
  6181. type="0"
  6182. url=""
  6183. size="934KB" >
  6184. </productMenu>
  6185. <productMenu id="userGuide"
  6186. type="1"
  6187. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6188. size="1.14MB" >
  6189. </productMenu>
  6190. <productMenu id="connectGuide"
  6191. type="1"
  6192. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6193. size="1.12MB" >
  6194. </productMenu>
  6195. <productMenu id="volume"
  6196. type="11" >
  6197. </productMenu>
  6198. <productMenu id="battery"
  6199. type="1" >
  6200. </productMenu>
  6201. <productID id="3211"
  6202. />
  6203. <productGroupable type="0"
  6204. />
  6205. </product>
  6206. <product id="30K"
  6207. name="30K"
  6208. series="30"
  6209. latestVersion="3.5"
  6210. show = "-1" >
  6211. <productMenu id="protocol"
  6212. type="1"
  6213. url="0">
  6214. </productMenu>
  6215. <productMenu id="wa"
  6216. type="7" >
  6217. </productMenu>
  6218. <productMenu id="sip"
  6219. type="1" >
  6220. </productMenu>
  6221. <productMenu id="meshIntercom"
  6222. type="20" >
  6223. <productMenuType version="2.9.9"
  6224. type="10"
  6225. />
  6226. </productMenu>
  6227. <productMenu id="meshIntercom+"
  6228. type="3"
  6229. url="2" >
  6230. <productMenuType version="3.4.9"
  6231. type="2"
  6232. />
  6233. <productMenuType version="2.9.9"
  6234. type="1"
  6235. />
  6236. <productMenuURL version="3.3.1"
  6237. url="0"
  6238. />
  6239. </productMenu>
  6240. <productMenu id="bluetoothIntercom"
  6241. type="1" >
  6242. </productMenu>
  6243. <productMenu id="phone"
  6244. type="1" >
  6245. </productMenu>
  6246. <productMenu id="music"
  6247. type="1" >
  6248. </productMenu>
  6249. <productMenu id="fmradio"
  6250. type="1" >
  6251. </productMenu>
  6252. <productMenu id="deviceSetting"
  6253. type="1"
  6254. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6255. <productMenuURL version="3.4.9"
  6256. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6257. />
  6258. <productMenuURL version="3.3.1"
  6259. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6260. />
  6261. <productMenuURL version="3.0.1"
  6262. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6263. />
  6264. <productMenuURL version="2.3.1"
  6265. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6266. />
  6267. <productMenuURL version="2.0"
  6268. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6269. />
  6270. <productMenuURL version="1.0.3"
  6271. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6272. />
  6273. </productMenu>
  6274. <productMenu id="quickGuide"
  6275. type="0"
  6276. url=""
  6277. size="1.06MB" >
  6278. </productMenu>
  6279. <productMenu id="userGuide"
  6280. type="1"
  6281. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6282. size="3.15MB" >
  6283. </productMenu>
  6284. <productMenu id="volume"
  6285. type="1" >
  6286. </productMenu>
  6287. <productID id="3110"
  6288. />
  6289. <productGroupable type="0"
  6290. />
  6291. </product>
  6292. <product id="FURY"
  6293. name="FURY"
  6294. series="Helmet"
  6295. latestVersion="1.0"
  6296. show = "-1" >
  6297. <productMenu id="protocol"
  6298. type="2" >
  6299. </productMenu>
  6300. <productMenu id="alexa"
  6301. type="0" >
  6302. </productMenu>
  6303. <productMenu id="ota"
  6304. type="0" >
  6305. </productMenu>
  6306. <productMenu id="wa"
  6307. type="0" >
  6308. </productMenu>
  6309. <productMenu id="meshIntercom"
  6310. type="20" >
  6311. </productMenu>
  6312. <productMenu id="phone"
  6313. type="1" >
  6314. </productMenu>
  6315. <productMenu id="music"
  6316. type="1" >
  6317. </productMenu>
  6318. <productMenu id="fmradio"
  6319. type="1" >
  6320. </productMenu>
  6321. <productMenu id="deviceSetting"
  6322. type="1"
  6323. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6324. </productMenu>
  6325. <productMenu id="quickGuide"
  6326. type="1"
  6327. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6328. size="1.12MB" >
  6329. </productMenu>
  6330. <productMenu id="userGuide"
  6331. type="1"
  6332. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6333. size="2.0MB" >
  6334. </productMenu>
  6335. <productMenu id="volume"
  6336. type="13" >
  6337. </productMenu>
  6338. <productMenu id="battery"
  6339. type="1" >
  6340. </productMenu>
  6341. <productID id="5552"
  6342. />
  6343. <productGroupable type="0"
  6344. />
  6345. </product>
  6346. <product id="MomentumM"
  6347. name="Momentum EVO"
  6348. series="Helmet"
  6349. latestVersion="2.1.2"
  6350. show = "1" >
  6351. <productMenu id="protocol"
  6352. type="1"
  6353. url="0">
  6354. </productMenu>
  6355. <productMenu id="wa"
  6356. type="3" >
  6357. </productMenu>
  6358. <productMenu id="sip"
  6359. type="1" >
  6360. </productMenu>
  6361. <productMenu id="meshIntercom"
  6362. type="20" >
  6363. <productMenuType version="1.9.9"
  6364. type="10"
  6365. />
  6366. </productMenu>
  6367. <productMenu id="bluetoothIntercom"
  6368. type="1" >
  6369. </productMenu>
  6370. <productMenu id="phone"
  6371. type="1" >
  6372. </productMenu>
  6373. <productMenu id="music"
  6374. type="1" >
  6375. </productMenu>
  6376. <productMenu id="fmradio"
  6377. type="1" >
  6378. </productMenu>
  6379. <productMenu id="deviceSetting"
  6380. type="1"
  6381. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6382. <productMenuURL version="1.0.1"
  6383. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6384. />
  6385. </productMenu>
  6386. <productMenu id="quickGuide"
  6387. type="1"
  6388. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6389. size="1.06MB" >
  6390. </productMenu>
  6391. <productMenu id="userGuide"
  6392. type="1"
  6393. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6394. size="3.15MB" >
  6395. </productMenu>
  6396. <productMenu id="connectGuide"
  6397. type="1"
  6398. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6399. size="1.12MB" >
  6400. </productMenu>
  6401. <productMenu id="volume"
  6402. type="2" >
  6403. </productMenu>
  6404. <productID id="3116"
  6405. />
  6406. <productGroupable type="0"
  6407. />
  6408. </product>
  6409. <product id="Momentum"
  6410. name="Momentum"
  6411. series="Helmet"
  6412. latestVersion="1.0.9"
  6413. show = "1" >
  6414. <productMenu id="protocol"
  6415. type="0">
  6416. </productMenu>
  6417. <productMenu id="sip"
  6418. type="1" >
  6419. </productMenu>
  6420. <productMenu id="bluetoothIntercom"
  6421. type="1" >
  6422. </productMenu>
  6423. <productMenu id="intercomSetting"
  6424. type="1" >
  6425. </productMenu>
  6426. <productMenu id="phone"
  6427. type="2" >
  6428. </productMenu>
  6429. <productMenu id="fmradio"
  6430. type="3" >
  6431. </productMenu>
  6432. <productMenu id="deviceSetting"
  6433. type="1"
  6434. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6435. </productMenu>
  6436. <productMenu id="quickGuide"
  6437. type="1"
  6438. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6439. size="796KB" >
  6440. </productMenu>
  6441. <productMenu id="userGuide"
  6442. type="1"
  6443. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6444. size="1.90MB" >
  6445. </productMenu>
  6446. <productMenu id="connectGuide"
  6447. type="1"
  6448. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6449. size="1.12MB" >
  6450. </productMenu>
  6451. <productID id="4310"
  6452. />
  6453. <productGroupable type="1"
  6454. />
  6455. </product>
  6456. <product id="Momentum_Pro"
  6457. name="Momentum Pro"
  6458. series="Helmet"
  6459. latestVersion="1.0.6"
  6460. show = "1" >
  6461. <productMenu id="protocol"
  6462. type="0">
  6463. </productMenu>
  6464. <productMenu id="sip"
  6465. type="1" >
  6466. </productMenu>
  6467. <productMenu id="bluetoothIntercom"
  6468. type="1" >
  6469. </productMenu>
  6470. <productMenu id="intercomSetting"
  6471. type="1" >
  6472. </productMenu>
  6473. <productMenu id="phone"
  6474. type="2" >
  6475. </productMenu>
  6476. <productMenu id="fmradio"
  6477. type="3" >
  6478. </productMenu>
  6479. <productMenu id="deviceSetting"
  6480. type="1"
  6481. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6482. </productMenu>
  6483. <productMenu id="quickGuide"
  6484. type="1"
  6485. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6486. size="796KB" >
  6487. </productMenu>
  6488. <productMenu id="userGuide"
  6489. type="1"
  6490. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6491. size="1.90MB" >
  6492. </productMenu>
  6493. <productMenu id="connectGuide"
  6494. type="1"
  6495. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6496. size="1.12MB" >
  6497. </productMenu>
  6498. <productID id="4330"
  6499. />
  6500. <productGroupable type="1"
  6501. />
  6502. </product>
  6503. <product id="Momentum_INC"
  6504. name="Momentum INC"
  6505. series="Helmet"
  6506. latestVersion="1.0.7"
  6507. show = "1" >
  6508. <productMenu id="protocol"
  6509. type="0">
  6510. </productMenu>
  6511. <productMenu id="sip"
  6512. type="1" >
  6513. </productMenu>
  6514. <productMenu id="bluetoothIntercom"
  6515. type="1" >
  6516. </productMenu>
  6517. <productMenu id="intercomSetting"
  6518. type="1" >
  6519. </productMenu>
  6520. <productMenu id="phone"
  6521. type="2" >
  6522. </productMenu>
  6523. <productMenu id="fmradio"
  6524. type="3" >
  6525. </productMenu>
  6526. <productMenu id="deviceSetting"
  6527. type="1"
  6528. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6529. </productMenu>
  6530. <productMenu id="quickGuide"
  6531. type="1"
  6532. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6533. size="794KB" >
  6534. </productMenu>
  6535. <productMenu id="userGuide"
  6536. type="1"
  6537. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6538. size="1.53MB" >
  6539. </productMenu>
  6540. <productMenu id="connectGuide"
  6541. type="1"
  6542. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6543. size="1.12MB" >
  6544. </productMenu>
  6545. <productID id="4410"
  6546. />
  6547. <productGroupable type="1"
  6548. />
  6549. </product>
  6550. <product id="Momentum_INCP"
  6551. name="Momentum INC Pro"
  6552. series="Helmet"
  6553. latestVersion="1.0.4"
  6554. show = "1" >
  6555. <productMenu id="protocol"
  6556. type="0">
  6557. </productMenu>
  6558. <productMenu id="sip"
  6559. type="1" >
  6560. </productMenu>
  6561. <productMenu id="bluetoothIntercom"
  6562. type="1" >
  6563. </productMenu>
  6564. <productMenu id="intercomSetting"
  6565. type="1" >
  6566. </productMenu>
  6567. <productMenu id="phone"
  6568. type="2" >
  6569. </productMenu>
  6570. <productMenu id="fmradio"
  6571. type="3" >
  6572. </productMenu>
  6573. <productMenu id="deviceSetting"
  6574. type="1"
  6575. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6576. </productMenu>
  6577. <productMenu id="quickGuide"
  6578. type="1"
  6579. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6580. size="794KB" >
  6581. </productMenu>
  6582. <productMenu id="userGuide"
  6583. type="1"
  6584. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6585. size="1.53MB" >
  6586. </productMenu>
  6587. <productMenu id="connectGuide"
  6588. type="1"
  6589. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6590. size="1.12MB" >
  6591. </productMenu>
  6592. <productID id="4430"
  6593. />
  6594. <productGroupable type="1"
  6595. />
  6596. </product>
  6597. <product id="Momentum_Lite"
  6598. name="Momentum Lite"
  6599. series="Helmet"
  6600. latestVersion="2.0.3"
  6601. show = "1" >
  6602. <productMenu id="protocol"
  6603. type="0">
  6604. </productMenu>
  6605. <productMenu id="sip"
  6606. type="1" >
  6607. </productMenu>
  6608. <productMenu id="bluetoothIntercom"
  6609. type="1" >
  6610. </productMenu>
  6611. <productMenu id="phone"
  6612. type="2" >
  6613. </productMenu>
  6614. <productMenu id="fmradio"
  6615. type="3" >
  6616. </productMenu>
  6617. <productMenu id="deviceSetting"
  6618. type="1"
  6619. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6620. <productMenuURL version="1.1"
  6621. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6622. />
  6623. </productMenu>
  6624. <productMenu id="quickGuide"
  6625. type="1"
  6626. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6627. size="790KB" >
  6628. </productMenu>
  6629. <productMenu id="userGuide"
  6630. type="1"
  6631. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6632. size="1.42MB" >
  6633. </productMenu>
  6634. <productMenu id="connectGuide"
  6635. type="1"
  6636. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6637. size="1.12MB" >
  6638. </productMenu>
  6639. <productID id="5526"
  6640. />
  6641. <productGroupable type="0"
  6642. />
  6643. </product>
  6644. <product id="OUTRUSHM"
  6645. name="OUTRUSH M"
  6646. series="Helmet"
  6647. latestVersion="1.0"
  6648. show = "-1" >
  6649. <productMenu id="protocol"
  6650. type="2" >
  6651. </productMenu>
  6652. <productMenu id="alexa"
  6653. type="0" >
  6654. </productMenu>
  6655. <productMenu id="ota"
  6656. type="0" >
  6657. </productMenu>
  6658. <productMenu id="wa"
  6659. type="0" >
  6660. </productMenu>
  6661. <productMenu id="meshIntercom"
  6662. type="30" >
  6663. </productMenu>
  6664. <productMenu id="phone"
  6665. type="1" >
  6666. </productMenu>
  6667. <productMenu id="music"
  6668. type="1" >
  6669. </productMenu>
  6670. <productMenu id="fmradio"
  6671. type="1" >
  6672. </productMenu>
  6673. <productMenu id="deviceSetting"
  6674. type="1"
  6675. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6676. </productMenu>
  6677. <productMenu id="quickGuide"
  6678. type="1"
  6679. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6680. size="1.12MB" >
  6681. </productMenu>
  6682. <productMenu id="userGuide"
  6683. type="1"
  6684. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6685. size="2.0MB" >
  6686. </productMenu>
  6687. <productMenu id="volume"
  6688. type="13" >
  6689. </productMenu>
  6690. <productMenu id="battery"
  6691. type="1" >
  6692. </productMenu>
  6693. <productID id="5600"
  6694. />
  6695. <productGroupable type="0"
  6696. />
  6697. </product>
  6698. <product id="ProRideEVO"
  6699. name="ProRide EVO"
  6700. series="Helmet"
  6701. latestVersion="1.1.2"
  6702. show = "1" >
  6703. <productMenu id="protocol"
  6704. type="0">
  6705. </productMenu>
  6706. <productMenu id="sip"
  6707. type="1" >
  6708. </productMenu>
  6709. <productMenu id="bluetoothIntercom"
  6710. type="1" >
  6711. </productMenu>
  6712. <productMenu id="phone"
  6713. type="2" >
  6714. </productMenu>
  6715. <productMenu id="fmradio"
  6716. type="3" >
  6717. </productMenu>
  6718. <productMenu id="deviceSetting"
  6719. type="1"
  6720. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6721. </productMenu>
  6722. <productMenu id="userGuide"
  6723. type="1"
  6724. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6725. size="778KB" >
  6726. </productMenu>
  6727. <productMenu id="connectGuide"
  6728. type="1"
  6729. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6730. size="1.12MB" >
  6731. </productMenu>
  6732. <productID id="5426"
  6733. />
  6734. <productGroupable type="0"
  6735. />
  6736. </product>
  6737. <product id="OUTRUSHR"
  6738. name="OUTRUSH R"
  6739. series="Helmet"
  6740. latestVersion="2.1"
  6741. show = "1" >
  6742. <productMenu id="protocol"
  6743. type="3" >
  6744. </productMenu>
  6745. <productMenu id="sip"
  6746. type="1" >
  6747. </productMenu>
  6748. <productMenu id="bluetoothIntercom"
  6749. type="1" >
  6750. </productMenu>
  6751. <productMenu id="phone"
  6752. type="1" >
  6753. </productMenu>
  6754. <productMenu id="fmradio"
  6755. type="0" >
  6756. </productMenu>
  6757. <productMenu id="deviceSetting"
  6758. type="1"
  6759. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6760. </productMenu>
  6761. <productMenu id="userGuide"
  6762. type="1"
  6763. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6764. size="1.14MB" >
  6765. </productMenu>
  6766. <productMenu id="connectGuide"
  6767. type="1"
  6768. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6769. size="1.12MB" >
  6770. </productMenu>
  6771. <productID id="5440"
  6772. />
  6773. <productGroupable type="0"
  6774. />
  6775. </product>
  6776. <product id="OUTRUSHR"
  6777. name="OUTRUSH R"
  6778. series="Helmet"
  6779. latestVersion="1.1.4"
  6780. show = "-1" >
  6781. <productMenu id="protocol"
  6782. type="0">
  6783. </productMenu>
  6784. <productMenu id="sip"
  6785. type="1" >
  6786. </productMenu>
  6787. <productMenu id="bluetoothIntercom"
  6788. type="1" >
  6789. </productMenu>
  6790. <productMenu id="phone"
  6791. type="2" >
  6792. </productMenu>
  6793. <productMenu id="fmradio"
  6794. type="3" >
  6795. </productMenu>
  6796. <productMenu id="deviceSetting"
  6797. type="1"
  6798. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6799. </productMenu>
  6800. <productMenu id="userGuide"
  6801. type="1"
  6802. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6803. size="660KB" >
  6804. </productMenu>
  6805. <productMenu id="connectGuide"
  6806. type="1"
  6807. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6808. size="1.12MB" >
  6809. </productMenu>
  6810. <productID id="5424"
  6811. />
  6812. <productGroupable type="0"
  6813. />
  6814. </product>
  6815. <product id="OUTSTARS"
  6816. name="OUTSTAR S"
  6817. series="Helmet"
  6818. latestVersion="2.0.1"
  6819. show = "-1" >
  6820. <productMenu id="protocol"
  6821. type="3" >
  6822. </productMenu>
  6823. <productMenu id="sip"
  6824. type="1" >
  6825. </productMenu>
  6826. <productMenu id="bluetoothIntercom"
  6827. type="1" >
  6828. </productMenu>
  6829. <productMenu id="phone"
  6830. type="1" >
  6831. </productMenu>
  6832. <productMenu id="fmradio"
  6833. type="0" >
  6834. </productMenu>
  6835. <productMenu id="deviceSetting"
  6836. type="1"
  6837. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6838. </productMenu>
  6839. <productMenu id="userGuide"
  6840. type="0"
  6841. url=""
  6842. size="1.14MB" >
  6843. </productMenu>
  6844. <productID id="5443"
  6845. />
  6846. <productGroupable type="0"
  6847. />
  6848. </product>
  6849. <product id="OUTSTARS"
  6850. name="OUTSTAR S"
  6851. series="Helmet"
  6852. latestVersion="1.1.4"
  6853. show = "1" >
  6854. <productMenu id="protocol"
  6855. type="0">
  6856. </productMenu>
  6857. <productMenu id="sip"
  6858. type="1" >
  6859. </productMenu>
  6860. <productMenu id="bluetoothIntercom"
  6861. type="1" >
  6862. </productMenu>
  6863. <productMenu id="phone"
  6864. type="2" >
  6865. </productMenu>
  6866. <productMenu id="fmradio"
  6867. type="3" >
  6868. </productMenu>
  6869. <productMenu id="deviceSetting"
  6870. type="1"
  6871. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6872. </productMenu>
  6873. <productMenu id="quickGuide"
  6874. type="1"
  6875. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6876. size="643KB" >
  6877. </productMenu>
  6878. <productMenu id="userGuide"
  6879. type="1"
  6880. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6881. size="1.15MB" >
  6882. </productMenu>
  6883. <productMenu id="connectGuide"
  6884. type="1"
  6885. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6886. size="1.12MB" >
  6887. </productMenu>
  6888. <productID id="5428"
  6889. />
  6890. <productGroupable type="0"
  6891. />
  6892. </product>
  6893. <product id="OUTRIDE"
  6894. name="OUTRIDE"
  6895. series="Helmet"
  6896. latestVersion="1.0.1"
  6897. show = "1" >
  6898. <productMenu id="protocol"
  6899. type="0">
  6900. </productMenu>
  6901. <productMenu id="sip"
  6902. type="1" >
  6903. </productMenu>
  6904. <productMenu id="bluetoothIntercom"
  6905. type="1" >
  6906. </productMenu>
  6907. <productMenu id="phone"
  6908. type="2" >
  6909. </productMenu>
  6910. <productMenu id="fmradio"
  6911. type="3" >
  6912. </productMenu>
  6913. <productMenu id="deviceSetting"
  6914. type="1"
  6915. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6916. </productMenu>
  6917. <productMenu id="quickGuide"
  6918. type="1"
  6919. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6920. size="643KB" >
  6921. </productMenu>
  6922. <productMenu id="userGuide"
  6923. type="1"
  6924. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6925. size="660KB" >
  6926. </productMenu>
  6927. <productMenu id="connectGuide"
  6928. type="1"
  6929. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6930. size="1.12MB" >
  6931. </productMenu>
  6932. <productID id="5432"
  6933. />
  6934. <productGroupable type="0"
  6935. />
  6936. </product>
  6937. <product id="OUTFORCE"
  6938. name="OUTFORCE"
  6939. series="Helmet"
  6940. latestVersion="1.0.1"
  6941. show = "1" >
  6942. <productMenu id="protocol"
  6943. type="0">
  6944. </productMenu>
  6945. <productMenu id="sip"
  6946. type="1" >
  6947. </productMenu>
  6948. <productMenu id="bluetoothIntercom"
  6949. type="1" >
  6950. </productMenu>
  6951. <productMenu id="phone"
  6952. type="2" >
  6953. </productMenu>
  6954. <productMenu id="fmradio"
  6955. type="3" >
  6956. </productMenu>
  6957. <productMenu id="deviceSetting"
  6958. type="1"
  6959. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6960. </productMenu>
  6961. <productMenu id="quickGuide"
  6962. type="1"
  6963. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6964. size="643KB" >
  6965. </productMenu>
  6966. <productMenu id="userGuide"
  6967. type="1"
  6968. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6969. size="660KB" >
  6970. </productMenu>
  6971. <productMenu id="connectGuide"
  6972. type="1"
  6973. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6974. size="1.12MB" >
  6975. </productMenu>
  6976. <productID id="5430"
  6977. />
  6978. <productGroupable type="0"
  6979. />
  6980. </product>
  6981. <product id="Rumba"
  6982. name="Rumba"
  6983. series="30"
  6984. latestVersion="2.0"
  6985. show = "-1" >
  6986. <productMenu id="protocol"
  6987. type="3" >
  6988. </productMenu>
  6989. <productMenu id="sip"
  6990. type="1" >
  6991. </productMenu>
  6992. <productMenu id="bluetoothIntercom"
  6993. type="1" >
  6994. </productMenu>
  6995. <productMenu id="deviceSetting"
  6996. type="1"
  6997. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  6998. </productMenu>
  6999. <productMenu id="quickGuide"
  7000. type="1"
  7001. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  7002. size="344KB" >
  7003. </productMenu>
  7004. <productMenu id="userGuide"
  7005. type="1"
  7006. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  7007. size="1.14MB" >
  7008. </productMenu>
  7009. <productID id="6322"
  7010. />
  7011. <productGroupable type="0"
  7012. />
  7013. </product>
  7014. <product id="Savage"
  7015. name="Savage"
  7016. series="Helmet"
  7017. latestVersion="1.2.2"
  7018. show = "1" >
  7019. <productMenu id="protocol"
  7020. type="0">
  7021. </productMenu>
  7022. <productMenu id="sip"
  7023. type="1" >
  7024. </productMenu>
  7025. <productMenu id="bluetoothIntercom"
  7026. type="1" >
  7027. </productMenu>
  7028. <productMenu id="phone"
  7029. type="2" >
  7030. </productMenu>
  7031. <productMenu id="fmradio"
  7032. type="3" >
  7033. </productMenu>
  7034. <productMenu id="deviceSetting"
  7035. type="1"
  7036. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7037. <productMenuURL version="1.9"
  7038. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7039. />
  7040. <productMenuURL version="1.1"
  7041. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7042. />
  7043. </productMenu>
  7044. <productMenu id="quickGuide"
  7045. type="1"
  7046. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7047. size="796KB" >
  7048. </productMenu>
  7049. <productMenu id="userGuide"
  7050. type="1"
  7051. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7052. size="910KB" >
  7053. </productMenu>
  7054. <productMenu id="connectGuide"
  7055. type="1"
  7056. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7057. size="1.12MB" >
  7058. </productMenu>
  7059. <productID id="5550"
  7060. />
  7061. <productGroupable type="0"
  7062. />
  7063. </product>
  7064. <product id="SPECTER"
  7065. name="SPECTER"
  7066. series="Helmet"
  7067. latestVersion="1.0.9"
  7068. latestVersionVoicePrompt="1.7"
  7069. show = "1" >
  7070. <productMenu id="protocol"
  7071. type="2" >
  7072. </productMenu>
  7073. <productMenu id="ota"
  7074. type="2" >
  7075. <otaLanguages>
  7076. <otaLanguage
  7077. id="0"
  7078. name="English"
  7079. package="0"
  7080. />
  7081. <otaLanguage
  7082. id="0"
  7083. name="French"
  7084. package="1"
  7085. />
  7086. <otaLanguage
  7087. id="0"
  7088. name="Spanish"
  7089. package="2"
  7090. />
  7091. <otaLanguage
  7092. id="0"
  7093. name="Italian"
  7094. package="3"
  7095. />
  7096. <otaLanguage
  7097. id="0"
  7098. name="German"
  7099. package="4"
  7100. />
  7101. <otaLanguage
  7102. id="0"
  7103. name="Dutch"
  7104. package="5"
  7105. />
  7106. <otaLanguage
  7107. id="0"
  7108. name="Russian"
  7109. package="6"
  7110. />
  7111. <otaLanguage
  7112. id="0"
  7113. name="Chinese"
  7114. package="7"
  7115. />
  7116. <otaLanguage
  7117. id="0"
  7118. name="Korean"
  7119. package="8"
  7120. />
  7121. <otaLanguage
  7122. id="0"
  7123. name="Japanese"
  7124. package="9"
  7125. />
  7126. <otaLanguage
  7127. id="0"
  7128. name="Finnish"
  7129. package="10"
  7130. />
  7131. <otaLanguage
  7132. id="0"
  7133. name="Polish"
  7134. package="11"
  7135. />
  7136. </otaLanguages>
  7137. <otaPackages>
  7138. <package
  7139. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0.img"
  7140. size="5183988"
  7141. />
  7142. <package
  7143. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fr-FR.img"
  7144. size="5183988"
  7145. />
  7146. <package
  7147. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-es-ES.img"
  7148. size="5183988"
  7149. />
  7150. <package
  7151. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-it-IT.img"
  7152. size="5183988"
  7153. />
  7154. <package
  7155. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-de-DE.img"
  7156. size="5183988"
  7157. />
  7158. <package
  7159. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-nl-NL.img"
  7160. size="5183988"
  7161. />
  7162. <package
  7163. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ru-RU.img"
  7164. size="5183988"
  7165. />
  7166. <package
  7167. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-cmn-CN.img"
  7168. size="5183988"
  7169. />
  7170. <package
  7171. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ko-KR.img"
  7172. size="5183988"
  7173. />
  7174. <package
  7175. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ja-JP.img"
  7176. size="5183988"
  7177. />
  7178. <package
  7179. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fi-FI.img"
  7180. size="5183988"
  7181. />
  7182. <package
  7183. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-pl-PL.img"
  7184. size="5183988"
  7185. />
  7186. </otaPackages>
  7187. </productMenu>
  7188. <productMenu id="wa"
  7189. type="0" >
  7190. </productMenu>
  7191. <productMenu id="led"
  7192. type="5" >
  7193. </productMenu>
  7194. <productMenu id="led+"
  7195. type="2"
  7196. url="1" >
  7197. </productMenu>
  7198. <productMenu id="meshIntercom+"
  7199. type="3"
  7200. url="2" >
  7201. </productMenu>
  7202. <productMenu id="waveIntercom"
  7203. type="1" >
  7204. </productMenu>
  7205. <productMenu id="fmradio"
  7206. type="0" >
  7207. </productMenu>
  7208. <productMenu id="phone"
  7209. type="1" >
  7210. </productMenu>
  7211. <productMenu id="music"
  7212. type="1" >
  7213. </productMenu>
  7214. <productMenu id="musicSharing"
  7215. type="0" >
  7216. </productMenu>
  7217. <productMenu id="deviceSetting"
  7218. type="1"
  7219. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7220. <productMenuURL version="1.0.4"
  7221. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7222. />
  7223. </productMenu>
  7224. <productMenu id="quickGuide"
  7225. type="0"
  7226. url=""
  7227. size="1.12MB" >
  7228. </productMenu>
  7229. <productMenu id="userGuide"
  7230. type="1"
  7231. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7232. size="2.0MB" >
  7233. </productMenu>
  7234. <productMenu id="videoGuide"
  7235. type="0"
  7236. url=""
  7237. size="3.41MB" >
  7238. </productMenu>
  7239. <productMenu id="volume"
  7240. type="16" >
  7241. </productMenu>
  7242. <productMenu id="volume+"
  7243. type="2"
  7244. url="0x6004" >
  7245. </productMenu>
  7246. <productMenu id="battery"
  7247. type="1" >
  7248. </productMenu>
  7249. <productID id="6A11"
  7250. />
  7251. <productGroupable type="0"
  7252. />
  7253. </product>
  7254. <product id="SPECTER"
  7255. name="SPECTER"
  7256. series="Helmet"
  7257. latestVersion="1.0.9"
  7258. latestVersionVoicePrompt="1.7"
  7259. show = "-1" >
  7260. <productMenu id="protocol"
  7261. type="2" >
  7262. </productMenu>
  7263. <productMenu id="ota"
  7264. type="2" >
  7265. <otaLanguages>
  7266. <otaLanguage
  7267. id="0"
  7268. name="English"
  7269. package="0"
  7270. />
  7271. <otaLanguage
  7272. id="0"
  7273. name="French"
  7274. package="1"
  7275. />
  7276. <otaLanguage
  7277. id="0"
  7278. name="Spanish"
  7279. package="2"
  7280. />
  7281. <otaLanguage
  7282. id="0"
  7283. name="Italian"
  7284. package="3"
  7285. />
  7286. <otaLanguage
  7287. id="0"
  7288. name="German"
  7289. package="4"
  7290. />
  7291. <otaLanguage
  7292. id="0"
  7293. name="Dutch"
  7294. package="5"
  7295. />
  7296. <otaLanguage
  7297. id="0"
  7298. name="Russian"
  7299. package="6"
  7300. />
  7301. <otaLanguage
  7302. id="0"
  7303. name="Chinese"
  7304. package="7"
  7305. />
  7306. <otaLanguage
  7307. id="0"
  7308. name="Korean"
  7309. package="8"
  7310. />
  7311. <otaLanguage
  7312. id="0"
  7313. name="Japanese"
  7314. package="9"
  7315. />
  7316. <otaLanguage
  7317. id="0"
  7318. name="Finnish"
  7319. package="10"
  7320. />
  7321. <otaLanguage
  7322. id="0"
  7323. name="Polish"
  7324. package="11"
  7325. />
  7326. </otaLanguages>
  7327. <otaPackages>
  7328. <package
  7329. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0.img"
  7330. size="5183988"
  7331. />
  7332. <package
  7333. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fr-FR.img"
  7334. size="5183988"
  7335. />
  7336. <package
  7337. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-es-ES.img"
  7338. size="5183988"
  7339. />
  7340. <package
  7341. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-it-IT.img"
  7342. size="5183988"
  7343. />
  7344. <package
  7345. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-de-DE.img"
  7346. size="5183988"
  7347. />
  7348. <package
  7349. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-nl-NL.img"
  7350. size="5183988"
  7351. />
  7352. <package
  7353. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ru-RU.img"
  7354. size="5183988"
  7355. />
  7356. <package
  7357. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-cmn-CN.img"
  7358. size="5183988"
  7359. />
  7360. <package
  7361. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ko-KR.img"
  7362. size="5183988"
  7363. />
  7364. <package
  7365. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ja-JP.img"
  7366. size="5183988"
  7367. />
  7368. <package
  7369. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fi-FI.img"
  7370. size="5183988"
  7371. />
  7372. <package
  7373. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-pl-PL.img"
  7374. size="5183988"
  7375. />
  7376. </otaPackages>
  7377. </productMenu>
  7378. <productMenu id="wa"
  7379. type="0" >
  7380. </productMenu>
  7381. <productMenu id="led"
  7382. type="5" >
  7383. </productMenu>
  7384. <productMenu id="led+"
  7385. type="2"
  7386. url="1" >
  7387. </productMenu>
  7388. <productMenu id="meshIntercom+"
  7389. type="3"
  7390. url="2" >
  7391. </productMenu>
  7392. <productMenu id="waveIntercom"
  7393. type="1" >
  7394. </productMenu>
  7395. <productMenu id="fmradio"
  7396. type="0" >
  7397. </productMenu>
  7398. <productMenu id="phone"
  7399. type="1" >
  7400. </productMenu>
  7401. <productMenu id="music"
  7402. type="1" >
  7403. </productMenu>
  7404. <productMenu id="musicSharing"
  7405. type="0" >
  7406. </productMenu>
  7407. <productMenu id="deviceSetting"
  7408. type="1"
  7409. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7410. <productMenuURL version="1.0.4"
  7411. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7412. />
  7413. <productMenuURL version="1.0"
  7414. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7415. />
  7416. </productMenu>
  7417. <productMenu id="quickGuide"
  7418. type="0"
  7419. url=""
  7420. size="1.12MB" >
  7421. </productMenu>
  7422. <productMenu id="userGuide"
  7423. type="1"
  7424. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7425. size="2.0MB" >
  7426. </productMenu>
  7427. <productMenu id="videoGuide"
  7428. type="0"
  7429. url=""
  7430. size="3.41MB" >
  7431. </productMenu>
  7432. <productMenu id="volume"
  7433. type="16" >
  7434. </productMenu>
  7435. <productMenu id="volume+"
  7436. type="2"
  7437. url="0x6004" >
  7438. </productMenu>
  7439. <productMenu id="battery"
  7440. type="1" >
  7441. </productMenu>
  7442. <productID id="6A0A"
  7443. />
  7444. <productGroupable type="0"
  7445. />
  7446. </product>
  7447. <product id="OUTLANDER"
  7448. name="OUTLANDER"
  7449. series="Helmet"
  7450. latestVersion="1.0.9"
  7451. latestVersionVoicePrompt="1.7"
  7452. show = "1" >
  7453. <productMenu id="protocol"
  7454. type="2" >
  7455. </productMenu>
  7456. <productMenu id="ota"
  7457. type="2" >
  7458. <otaLanguages>
  7459. <otaLanguage
  7460. id="0"
  7461. name="English"
  7462. package="0"
  7463. />
  7464. <otaLanguage
  7465. id="0"
  7466. name="French"
  7467. package="1"
  7468. />
  7469. <otaLanguage
  7470. id="0"
  7471. name="Spanish"
  7472. package="2"
  7473. />
  7474. <otaLanguage
  7475. id="0"
  7476. name="Italian"
  7477. package="3"
  7478. />
  7479. <otaLanguage
  7480. id="0"
  7481. name="German"
  7482. package="4"
  7483. />
  7484. <otaLanguage
  7485. id="0"
  7486. name="Dutch"
  7487. package="5"
  7488. />
  7489. <otaLanguage
  7490. id="0"
  7491. name="Russian"
  7492. package="6"
  7493. />
  7494. <otaLanguage
  7495. id="0"
  7496. name="Chinese"
  7497. package="7"
  7498. />
  7499. <otaLanguage
  7500. id="0"
  7501. name="Korean"
  7502. package="8"
  7503. />
  7504. <otaLanguage
  7505. id="0"
  7506. name="Japanese"
  7507. package="9"
  7508. />
  7509. <otaLanguage
  7510. id="0"
  7511. name="Finnish"
  7512. package="10"
  7513. />
  7514. <otaLanguage
  7515. id="0"
  7516. name="Polish"
  7517. package="11"
  7518. />
  7519. </otaLanguages>
  7520. <otaPackages>
  7521. <package
  7522. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0.img"
  7523. size="5183988"
  7524. />
  7525. <package
  7526. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fr-FR.img"
  7527. size="5183988"
  7528. />
  7529. <package
  7530. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-es-ES.img"
  7531. size="5183988"
  7532. />
  7533. <package
  7534. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-it-IT.img"
  7535. size="5183988"
  7536. />
  7537. <package
  7538. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-de-DE.img"
  7539. size="5183988"
  7540. />
  7541. <package
  7542. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-nl-NL.img"
  7543. size="5183988"
  7544. />
  7545. <package
  7546. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ru-RU.img"
  7547. size="5183988"
  7548. />
  7549. <package
  7550. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-cmn-CN.img"
  7551. size="5183988"
  7552. />
  7553. <package
  7554. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ko-KR.img"
  7555. size="5183988"
  7556. />
  7557. <package
  7558. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ja-JP.img"
  7559. size="5183988"
  7560. />
  7561. <package
  7562. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fi-FI.img"
  7563. size="5183988"
  7564. />
  7565. <package
  7566. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-pl-PL.img"
  7567. size="5183988"
  7568. />
  7569. </otaPackages>
  7570. </productMenu>
  7571. <productMenu id="wa"
  7572. type="0" >
  7573. </productMenu>
  7574. <productMenu id="led"
  7575. type="5" >
  7576. </productMenu>
  7577. <productMenu id="led+"
  7578. type="2"
  7579. url="1" >
  7580. </productMenu>
  7581. <productMenu id="meshIntercom+"
  7582. type="3"
  7583. url="2" >
  7584. </productMenu>
  7585. <productMenu id="waveIntercom"
  7586. type="1" >
  7587. </productMenu>
  7588. <productMenu id="fmradio"
  7589. type="0" >
  7590. </productMenu>
  7591. <productMenu id="phone"
  7592. type="1" >
  7593. </productMenu>
  7594. <productMenu id="music"
  7595. type="1" >
  7596. </productMenu>
  7597. <productMenu id="musicSharing"
  7598. type="0" >
  7599. </productMenu>
  7600. <productMenu id="deviceSetting"
  7601. type="1"
  7602. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml" >
  7603. <productMenuURL version="1.0.4"
  7604. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7605. />
  7606. </productMenu>
  7607. <productMenu id="quickGuide"
  7608. type="0"
  7609. url=""
  7610. size="1.12MB" >
  7611. </productMenu>
  7612. <productMenu id="userGuide"
  7613. type="1"
  7614. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7615. size="2.0MB" >
  7616. </productMenu>
  7617. <productMenu id="videoGuide"
  7618. type="0"
  7619. url=""
  7620. size="3.41MB" >
  7621. </productMenu>
  7622. <productMenu id="volume"
  7623. type="16" >
  7624. </productMenu>
  7625. <productMenu id="volume+"
  7626. type="2"
  7627. url="0x6004" >
  7628. </productMenu>
  7629. <productMenu id="battery"
  7630. type="1" >
  7631. </productMenu>
  7632. <productID id="6A05"
  7633. />
  7634. <productGroupable type="0"
  7635. />
  7636. </product>
  7637. <product id="OUTRUSH2"
  7638. name="OUTRUSH 2"
  7639. series="Helmet"
  7640. latestVersion="1.0.3"
  7641. latestVersionVoicePrompt="1.6"
  7642. show = "1" >
  7643. <productMenu id="protocol"
  7644. type="2" >
  7645. </productMenu>
  7646. <productMenu id="alexa"
  7647. type="0" >
  7648. </productMenu>
  7649. <productMenu id="ota"
  7650. type="2" >
  7651. <otaPackages>
  7652. <package
  7653. url="https://api.sena.com/support/OTA/Motorcycles/OUTRUSH2/OUTRUSH_2-v1.0.3-build0.img"
  7654. size="2945812"
  7655. />
  7656. </otaPackages>
  7657. </productMenu>
  7658. <productMenu id="meshIntercom+"
  7659. type="3"
  7660. url="2" >
  7661. </productMenu>
  7662. <productMenu id="waveIntercom"
  7663. type="1" >
  7664. </productMenu>
  7665. <productMenu id="phone"
  7666. type="1" >
  7667. </productMenu>
  7668. <productMenu id="music"
  7669. type="1" >
  7670. </productMenu>
  7671. <productMenu id="musicSharing"
  7672. type="0" >
  7673. </productMenu>
  7674. <productMenu id="deviceSetting"
  7675. type="1"
  7676. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7677. <productMenuURL version="1.0"
  7678. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  7679. />
  7680. </productMenu>
  7681. <productMenu id="quickGuide"
  7682. type="0"
  7683. url=""
  7684. size="1.12MB" >
  7685. </productMenu>
  7686. <productMenu id="userGuide"
  7687. type="1"
  7688. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  7689. size="2.0MB" >
  7690. </productMenu>
  7691. <productMenu id="volume"
  7692. type="12" >
  7693. </productMenu>
  7694. <productMenu id="battery"
  7695. type="1" >
  7696. </productMenu>
  7697. <productID id="684A"
  7698. />
  7699. <productGroupable type="0"
  7700. />
  7701. </product>
  7702. <product id="OUTSTAR2"
  7703. name="OUTSTAR 2"
  7704. series="Helmet"
  7705. latestVersion="1.0.2"
  7706. latestVersionVoicePrompt="1.6"
  7707. show = "1" >
  7708. <productMenu id="protocol"
  7709. type="2" >
  7710. </productMenu>
  7711. <productMenu id="alexa"
  7712. type="0" >
  7713. </productMenu>
  7714. <productMenu id="ota"
  7715. type="2" >
  7716. <otaPackages>
  7717. <package
  7718. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.2-build0.img"
  7719. size="2945812"
  7720. />
  7721. </otaPackages>
  7722. </productMenu>
  7723. <productMenu id="meshIntercom+"
  7724. type="3"
  7725. url="2" >
  7726. </productMenu>
  7727. <productMenu id="waveIntercom"
  7728. type="1" >
  7729. </productMenu>
  7730. <productMenu id="phone"
  7731. type="1" >
  7732. </productMenu>
  7733. <productMenu id="music"
  7734. type="1" >
  7735. </productMenu>
  7736. <productMenu id="musicSharing"
  7737. type="0" >
  7738. </productMenu>
  7739. <productMenu id="deviceSetting"
  7740. type="1"
  7741. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7742. </productMenu>
  7743. <productMenu id="quickGuide"
  7744. type="0"
  7745. url=""
  7746. size="1.12MB" >
  7747. </productMenu>
  7748. <productMenu id="userGuide"
  7749. type="1"
  7750. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  7751. size="2.0MB" >
  7752. </productMenu>
  7753. <productMenu id="volume"
  7754. type="12" >
  7755. </productMenu>
  7756. <productMenu id="battery"
  7757. type="1" >
  7758. </productMenu>
  7759. <productID id="684B"
  7760. />
  7761. <productGroupable type="0"
  7762. />
  7763. </product>
  7764. <product id="SURGE"
  7765. name="SURGE"
  7766. series="Helmet"
  7767. latestVersion="1.2"
  7768. latestVersionVoicePrompt="1.3"
  7769. show = "1" >
  7770. <productMenu id="protocol"
  7771. type="2" >
  7772. </productMenu>
  7773. <productMenu id="alexa"
  7774. type="0" >
  7775. </productMenu>
  7776. <productMenu id="ota"
  7777. type="2" >
  7778. <otaPackages>
  7779. <package
  7780. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  7781. size="2945812"
  7782. />
  7783. </otaPackages>
  7784. </productMenu>
  7785. <productMenu id="meshIntercom"
  7786. type="30" >
  7787. </productMenu>
  7788. <productMenu id="meshIntercom+"
  7789. type="3"
  7790. url="2" >
  7791. <productMenuType version="1.0.1"
  7792. type="2"
  7793. />
  7794. </productMenu>
  7795. <productMenu id="waveIntercom"
  7796. type="1" >
  7797. <productMenuType version="1.0.9"
  7798. type="0"
  7799. />
  7800. </productMenu>
  7801. <productMenu id="phone"
  7802. type="1" >
  7803. </productMenu>
  7804. <productMenu id="music"
  7805. type="1" >
  7806. </productMenu>
  7807. <productMenu id="musicSharing"
  7808. type="0" >
  7809. </productMenu>
  7810. <productMenu id="deviceSetting"
  7811. type="1"
  7812. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  7813. <productMenuURL version="1.1.9"
  7814. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  7815. />
  7816. <productMenuURL version="1.0.1"
  7817. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  7818. />
  7819. </productMenu>
  7820. <productMenu id="quickGuide"
  7821. type="0"
  7822. url=""
  7823. size="1.12MB" >
  7824. </productMenu>
  7825. <productMenu id="userGuide"
  7826. type="1"
  7827. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  7828. size="2.0MB" >
  7829. </productMenu>
  7830. <productMenu id="volume"
  7831. type="12" >
  7832. </productMenu>
  7833. <productMenu id="battery"
  7834. type="1" >
  7835. </productMenu>
  7836. <productID id="6840"
  7837. />
  7838. <productGroupable type="0"
  7839. />
  7840. </product>
  7841. <product id="Cavalry2"
  7842. name="Cavalry 2"
  7843. series="Helmet"
  7844. latestVersion="1.2"
  7845. latestVersionVoicePrompt="1.3"
  7846. show = "1" >
  7847. <productMenu id="protocol"
  7848. type="2" >
  7849. </productMenu>
  7850. <productMenu id="alexa"
  7851. type="0" >
  7852. </productMenu>
  7853. <productMenu id="ota"
  7854. type="2" >
  7855. <otaPackages>
  7856. <package
  7857. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  7858. size="3144148"
  7859. />
  7860. </otaPackages>
  7861. </productMenu>
  7862. <productMenu id="wa"
  7863. type="0" >
  7864. </productMenu>
  7865. <productMenu id="meshIntercom"
  7866. type="30" >
  7867. </productMenu>
  7868. <productMenu id="meshIntercom+"
  7869. type="3"
  7870. url="2" >
  7871. <productMenuType version="1.0"
  7872. type="2"
  7873. />
  7874. </productMenu>
  7875. <productMenu id="waveIntercom"
  7876. type="1" >
  7877. <productMenuType version="1.0.9"
  7878. type="0"
  7879. />
  7880. </productMenu>
  7881. <productMenu id="phone"
  7882. type="1" >
  7883. </productMenu>
  7884. <productMenu id="music"
  7885. type="1" >
  7886. </productMenu>
  7887. <productMenu id="musicSharing"
  7888. type="0" >
  7889. </productMenu>
  7890. <productMenu id="deviceSetting"
  7891. type="1"
  7892. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  7893. <productMenuURL version="1.1.9"
  7894. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  7895. />
  7896. <productMenuURL version="1.0"
  7897. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  7898. />
  7899. </productMenu>
  7900. <productMenu id="quickGuide"
  7901. type="0"
  7902. url=""
  7903. size="1.12MB" >
  7904. </productMenu>
  7905. <productMenu id="userGuide"
  7906. type="1"
  7907. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  7908. size="2.0MB" >
  7909. </productMenu>
  7910. <productMenu id="connectGuide"
  7911. type="1"
  7912. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  7913. size="1.12MB" >
  7914. </productMenu>
  7915. <productMenu id="volume"
  7916. type="12" >
  7917. </productMenu>
  7918. <productMenu id="battery"
  7919. type="1" >
  7920. </productMenu>
  7921. <productID id="6839"
  7922. />
  7923. <productGroupable type="0"
  7924. />
  7925. </product>
  7926. <product id="Cavalry"
  7927. name="Cavalry"
  7928. series="Helmet"
  7929. latestVersion="1.2.2"
  7930. show = "1" >
  7931. <productMenu id="protocol"
  7932. type="0">
  7933. </productMenu>
  7934. <productMenu id="sip"
  7935. type="1" >
  7936. </productMenu>
  7937. <productMenu id="bluetoothIntercom"
  7938. type="1" >
  7939. </productMenu>
  7940. <productMenu id="phone"
  7941. type="2" >
  7942. </productMenu>
  7943. <productMenu id="fmradio"
  7944. type="3" >
  7945. </productMenu>
  7946. <productMenu id="deviceSetting"
  7947. type="1"
  7948. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  7949. <productMenuURL version="1.9"
  7950. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  7951. />
  7952. <productMenuURL version="1.0.1"
  7953. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  7954. />
  7955. </productMenu>
  7956. <productMenu id="quickGuide"
  7957. type="1"
  7958. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  7959. size="795KB" >
  7960. </productMenu>
  7961. <productMenu id="userGuide"
  7962. type="1"
  7963. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  7964. size="1.87MB" >
  7965. </productMenu>
  7966. <productMenu id="connectGuide"
  7967. type="1"
  7968. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7969. size="1.12MB" >
  7970. </productMenu>
  7971. <productID id="5524"
  7972. />
  7973. <productGroupable type="0"
  7974. />
  7975. </product>
  7976. <product id="Cavalry_Lite"
  7977. name="Cavalry Lite"
  7978. series="Helmet"
  7979. latestVersion="1.0.2"
  7980. show = "1" >
  7981. <productMenu id="protocol"
  7982. type="0">
  7983. </productMenu>
  7984. <productMenu id="sip"
  7985. type="1" >
  7986. </productMenu>
  7987. <productMenu id="bluetoothIntercom"
  7988. type="1" >
  7989. </productMenu>
  7990. <productMenu id="phone"
  7991. type="2" >
  7992. </productMenu>
  7993. <productMenu id="fmradio"
  7994. type="3" >
  7995. </productMenu>
  7996. <productMenu id="deviceSetting"
  7997. type="1"
  7998. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7999. </productMenu>
  8000. <productMenu id="userGuide"
  8001. type="1"
  8002. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  8003. size="1.74MB" >
  8004. </productMenu>
  8005. <productMenu id="connectGuide"
  8006. type="1"
  8007. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8008. size="1.12MB" >
  8009. </productMenu>
  8010. <productID id="5536"
  8011. />
  8012. <productGroupable type="0"
  8013. />
  8014. </product>
  8015. <product id="VORTEX"
  8016. name="VORTEX"
  8017. series="VORTEX"
  8018. latestVersion="1.0"
  8019. latestVersionVoicePrompt="1.0"
  8020. show = "-1" >
  8021. <productMenu id="protocol"
  8022. type="2" >
  8023. </productMenu>
  8024. <productMenu id="ota"
  8025. type="2" >
  8026. <otaLanguages>
  8027. <otaLanguage
  8028. id="0"
  8029. name="English"
  8030. package="0"
  8031. />
  8032. <otaLanguage
  8033. id="0"
  8034. name="French"
  8035. package="1"
  8036. />
  8037. <otaLanguage
  8038. id="0"
  8039. name="Spanish"
  8040. package="2"
  8041. />
  8042. <otaLanguage
  8043. id="0"
  8044. name="Italian"
  8045. package="3"
  8046. />
  8047. <otaLanguage
  8048. id="0"
  8049. name="German"
  8050. package="4"
  8051. />
  8052. <otaLanguage
  8053. id="0"
  8054. name="Dutch"
  8055. package="5"
  8056. />
  8057. <otaLanguage
  8058. id="0"
  8059. name="Russian"
  8060. package="6"
  8061. />
  8062. <otaLanguage
  8063. id="0"
  8064. name="Chinese"
  8065. package="7"
  8066. />
  8067. <otaLanguage
  8068. id="0"
  8069. name="Korean"
  8070. package="8"
  8071. />
  8072. <otaLanguage
  8073. id="0"
  8074. name="Japanese"
  8075. package="9"
  8076. />
  8077. <otaLanguage
  8078. id="0"
  8079. name="Finnish"
  8080. package="10"
  8081. />
  8082. <otaLanguage
  8083. id="0"
  8084. name="Polish"
  8085. package="11"
  8086. />
  8087. </otaLanguages>
  8088. <otaPackages>
  8089. <package
  8090. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4.img"
  8091. size="5183988"
  8092. />
  8093. <package
  8094. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fr-FR.img"
  8095. size="5183988"
  8096. />
  8097. <package
  8098. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-es-ES.img"
  8099. size="5183988"
  8100. />
  8101. <package
  8102. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-it-IT.img"
  8103. size="5183988"
  8104. />
  8105. <package
  8106. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-de-DE.img"
  8107. size="5183988"
  8108. />
  8109. <package
  8110. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-nl-NL.img"
  8111. size="5183988"
  8112. />
  8113. <package
  8114. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ru-RU.img"
  8115. size="5183988"
  8116. />
  8117. <package
  8118. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-cmn-CN.img"
  8119. size="5183988"
  8120. />
  8121. <package
  8122. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ko-KR.img"
  8123. size="5183988"
  8124. />
  8125. <package
  8126. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ja-JP.img"
  8127. size="5183988"
  8128. />
  8129. <package
  8130. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fi-FI.img"
  8131. size="5183988"
  8132. />
  8133. <package
  8134. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-pl-PL.img"
  8135. size="5183988"
  8136. />
  8137. </otaPackages>
  8138. </productMenu>
  8139. <productMenu id="sip"
  8140. type="1" >
  8141. </productMenu>
  8142. <productMenu id="bluetoothIntercom"
  8143. type="1" >
  8144. </productMenu>
  8145. <productMenu id="phone"
  8146. type="1" >
  8147. </productMenu>
  8148. <productMenu id="music"
  8149. type="1" >
  8150. </productMenu>
  8151. <productMenu id="fmradio"
  8152. type="1"
  8153. url="1" >
  8154. </productMenu>
  8155. <productMenu id="deviceSetting"
  8156. type="1"
  8157. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8158. </productMenu>
  8159. <productMenu id="quickGuide"
  8160. type="0"
  8161. url=""
  8162. size="934KB" >
  8163. </productMenu>
  8164. <productMenu id="userGuide"
  8165. type="1"
  8166. url=""
  8167. size="1.14MB" >
  8168. </productMenu>
  8169. <productMenu id="connectGuide"
  8170. type="0"
  8171. url=""
  8172. size="1.12MB" >
  8173. </productMenu>
  8174. <productMenu id="volume"
  8175. type="15" >
  8176. </productMenu>
  8177. <productMenu id="appearance"
  8178. type="1"
  8179. url="1|white,silver,black" >
  8180. </productMenu>
  8181. <productID id="3451"
  8182. />
  8183. <productGroupable type="0"
  8184. />
  8185. </product>
  8186. <product id="SF4"
  8187. name="SF4"
  8188. series="SF"
  8189. latestVersion="1.1.5"
  8190. show = "-1" >
  8191. <productMenu id="protocol"
  8192. type="1"
  8193. url="3">
  8194. </productMenu>
  8195. <productMenu id="sip"
  8196. type="1" >
  8197. </productMenu>
  8198. <productMenu id="bluetoothIntercom"
  8199. type="1" >
  8200. </productMenu>
  8201. <productMenu id="phone"
  8202. type="1" >
  8203. </productMenu>
  8204. <productMenu id="music"
  8205. type="1" >
  8206. </productMenu>
  8207. <productMenu id="fmradio"
  8208. type="1" >
  8209. </productMenu>
  8210. <productMenu id="deviceSetting"
  8211. type="1"
  8212. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8213. <productMenuURL version="1.0.1"
  8214. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8215. />
  8216. </productMenu>
  8217. <productMenu id="quickGuide"
  8218. type="1"
  8219. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8220. size="607KB" >
  8221. </productMenu>
  8222. <productMenu id="userGuide"
  8223. type="1"
  8224. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8225. size="1.91MB" >
  8226. </productMenu>
  8227. <productMenu id="volume"
  8228. type="4" >
  8229. </productMenu>
  8230. <productID id="5414"
  8231. />
  8232. <productGroupable type="0"
  8233. />
  8234. </product>
  8235. <product id="SF4"
  8236. name="SF4"
  8237. series="SF"
  8238. latestVersion="3.4.4"
  8239. show = "1" >
  8240. <productMenu id="protocol"
  8241. type="2" >
  8242. </productMenu>
  8243. <productMenu id="sip"
  8244. type="1" >
  8245. </productMenu>
  8246. <productMenu id="bluetoothIntercom"
  8247. type="1" >
  8248. </productMenu>
  8249. <productMenu id="phone"
  8250. type="1" >
  8251. </productMenu>
  8252. <productMenu id="music"
  8253. type="1" >
  8254. </productMenu>
  8255. <productMenu id="fmradio"
  8256. type="1" >
  8257. </productMenu>
  8258. <productMenu id="deviceSetting"
  8259. type="1"
  8260. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8261. <productMenuURL version="3.0"
  8262. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8263. />
  8264. </productMenu>
  8265. <productMenu id="quickGuide"
  8266. type="0"
  8267. url=""
  8268. size="934KB" >
  8269. </productMenu>
  8270. <productMenu id="userGuide"
  8271. type="1"
  8272. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8273. size="1.14MB" >
  8274. </productMenu>
  8275. <productMenu id="connectGuide"
  8276. type="1"
  8277. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8278. size="1.12MB" >
  8279. </productMenu>
  8280. <productMenu id="volume"
  8281. type="15" >
  8282. </productMenu>
  8283. <productID id="3370"
  8284. />
  8285. <productGroupable type="0"
  8286. />
  8287. </product>
  8288. <product id="SF2"
  8289. name="SF2"
  8290. series="SF"
  8291. latestVersion="1.2.1"
  8292. show = "-1" >
  8293. <productMenu id="protocol"
  8294. type="1"
  8295. url="2">
  8296. </productMenu>
  8297. <productMenu id="sip"
  8298. type="1" >
  8299. </productMenu>
  8300. <productMenu id="bluetoothIntercom"
  8301. type="1" >
  8302. </productMenu>
  8303. <productMenu id="phone"
  8304. type="1" >
  8305. </productMenu>
  8306. <productMenu id="music"
  8307. type="1" >
  8308. </productMenu>
  8309. <productMenu id="fmradio"
  8310. type="1" >
  8311. </productMenu>
  8312. <productMenu id="deviceSetting"
  8313. type="1"
  8314. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8315. <productMenuURL version="1.0.1"
  8316. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8317. />
  8318. </productMenu>
  8319. <productMenu id="quickGuide"
  8320. type="1"
  8321. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8322. size="607KB" >
  8323. </productMenu>
  8324. <productMenu id="userGuide"
  8325. type="1"
  8326. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8327. size="1.91MB" >
  8328. </productMenu>
  8329. <productMenu id="volume"
  8330. type="4" >
  8331. </productMenu>
  8332. <productID id="5412"
  8333. />
  8334. <productGroupable type="0"
  8335. />
  8336. </product>
  8337. <product id="SF2"
  8338. name="SF2"
  8339. series="SF"
  8340. latestVersion="3.3.4"
  8341. show = "1" >
  8342. <productMenu id="protocol"
  8343. type="2" >
  8344. </productMenu>
  8345. <productMenu id="sip"
  8346. type="1" >
  8347. </productMenu>
  8348. <productMenu id="bluetoothIntercom"
  8349. type="1" >
  8350. </productMenu>
  8351. <productMenu id="phone"
  8352. type="1" >
  8353. </productMenu>
  8354. <productMenu id="music"
  8355. type="1" >
  8356. </productMenu>
  8357. <productMenu id="fmradio"
  8358. type="0" >
  8359. </productMenu>
  8360. <productMenu id="deviceSetting"
  8361. type="1"
  8362. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8363. <productMenuURL version="3.0"
  8364. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8365. />
  8366. </productMenu>
  8367. <productMenu id="quickGuide"
  8368. type="0"
  8369. url=""
  8370. size="934KB" >
  8371. </productMenu>
  8372. <productMenu id="userGuide"
  8373. type="1"
  8374. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8375. size="1.14MB" >
  8376. </productMenu>
  8377. <productMenu id="connectGuide"
  8378. type="1"
  8379. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8380. size="1.12MB" >
  8381. </productMenu>
  8382. <productMenu id="volume"
  8383. type="15" >
  8384. </productMenu>
  8385. <productID id="3360"
  8386. />
  8387. <productGroupable type="0"
  8388. />
  8389. </product>
  8390. <product id="SF1"
  8391. name="SF1"
  8392. series="SF"
  8393. latestVersion="2.0.5"
  8394. show = "-1" >
  8395. <productMenu id="protocol"
  8396. type="1"
  8397. url="1">
  8398. </productMenu>
  8399. <productMenu id="sip"
  8400. type="1" >
  8401. </productMenu>
  8402. <productMenu id="bluetoothIntercom"
  8403. type="1" >
  8404. <productMenuType version="1.1"
  8405. type="0"
  8406. />
  8407. </productMenu>
  8408. <productMenu id="phone"
  8409. type="1" >
  8410. </productMenu>
  8411. <productMenu id="music"
  8412. type="1" >
  8413. </productMenu>
  8414. <productMenu id="deviceSetting"
  8415. type="1"
  8416. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8417. <productMenuURL version="1.1"
  8418. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8419. />
  8420. <productMenuURL version="1.0"
  8421. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8422. />
  8423. </productMenu>
  8424. <productMenu id="quickGuide"
  8425. type="1"
  8426. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8427. size="401KB" >
  8428. </productMenu>
  8429. <productMenu id="userGuide"
  8430. type="1"
  8431. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8432. size="1.91MB" >
  8433. </productMenu>
  8434. <productMenu id="volume"
  8435. type="3" >
  8436. </productMenu>
  8437. <productID id="5410"
  8438. />
  8439. <productGroupable type="0"
  8440. />
  8441. </product>
  8442. <product id="SF1"
  8443. name="SF1"
  8444. series="SF"
  8445. latestVersion="3.3.4"
  8446. show = "1" >
  8447. <productMenu id="protocol"
  8448. type="2" >
  8449. </productMenu>
  8450. <productMenu id="sip"
  8451. type="1" >
  8452. </productMenu>
  8453. <productMenu id="bluetoothIntercom"
  8454. type="1" >
  8455. </productMenu>
  8456. <productMenu id="phone"
  8457. type="1" >
  8458. </productMenu>
  8459. <productMenu id="music"
  8460. type="1" >
  8461. </productMenu>
  8462. <productMenu id="fmradio"
  8463. type="0" >
  8464. </productMenu>
  8465. <productMenu id="deviceSetting"
  8466. type="1"
  8467. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8468. <productMenuURL version="3.0"
  8469. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8470. />
  8471. </productMenu>
  8472. <productMenu id="quickGuide"
  8473. type="0"
  8474. url=""
  8475. size="934KB" >
  8476. </productMenu>
  8477. <productMenu id="userGuide"
  8478. type="1"
  8479. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8480. size="1.14MB" >
  8481. </productMenu>
  8482. <productMenu id="connectGuide"
  8483. type="1"
  8484. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8485. size="1.12MB" >
  8486. </productMenu>
  8487. <productMenu id="volume"
  8488. type="15" >
  8489. </productMenu>
  8490. <productID id="3350"
  8491. />
  8492. <productGroupable type="0"
  8493. />
  8494. </product>
  8495. <product id="SFR"
  8496. name="SFR"
  8497. series="SF"
  8498. latestVersion="1.1.1"
  8499. show = "1" >
  8500. <productMenu id="protocol"
  8501. type="1"
  8502. url="3">
  8503. </productMenu>
  8504. <productMenu id="sip"
  8505. type="1" >
  8506. </productMenu>
  8507. <productMenu id="bluetoothIntercom"
  8508. type="1" >
  8509. </productMenu>
  8510. <productMenu id="phone"
  8511. type="1" >
  8512. </productMenu>
  8513. <productMenu id="music"
  8514. type="1" >
  8515. </productMenu>
  8516. <productMenu id="fmradio"
  8517. type="1" >
  8518. </productMenu>
  8519. <productMenu id="deviceSetting"
  8520. type="1"
  8521. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8522. </productMenu>
  8523. <productMenu id="quickGuide"
  8524. type="1"
  8525. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8526. size="607KB" >
  8527. </productMenu>
  8528. <productMenu id="userGuide"
  8529. type="1"
  8530. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8531. size="1.91MB" >
  8532. </productMenu>
  8533. <productMenu id="volume"
  8534. type="4" >
  8535. </productMenu>
  8536. <productID id="5418"
  8537. />
  8538. <productGroupable type="0"
  8539. />
  8540. </product>
  8541. <product id="20S"
  8542. name="20S"
  8543. series="20"
  8544. latestVersion="2.2.3"
  8545. show = "1" >
  8546. <productMenu id="protocol"
  8547. type="0">
  8548. </productMenu>
  8549. <productMenu id="wa"
  8550. type="5" >
  8551. </productMenu>
  8552. <productMenu id="sip"
  8553. type="1" >
  8554. <productMenuType version="1.0"
  8555. type="0"
  8556. />
  8557. </productMenu>
  8558. <productMenu id="bluetoothIntercom"
  8559. type="1" >
  8560. <productMenuType version="1.0"
  8561. type="0"
  8562. />
  8563. </productMenu>
  8564. <productMenu id="intercomSetting"
  8565. type="1" >
  8566. </productMenu>
  8567. <productMenu id="phone"
  8568. type="2" >
  8569. </productMenu>
  8570. <productMenu id="fmradio"
  8571. type="3" >
  8572. </productMenu>
  8573. <productMenu id="deviceSetting"
  8574. type="1"
  8575. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8576. <productMenuURL version="2.0.2"
  8577. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8578. />
  8579. <productMenuURL version="1.5"
  8580. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8581. />
  8582. <productMenuURL version="1.4.1"
  8583. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8584. />
  8585. <productMenuURL version="1.1"
  8586. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8587. />
  8588. <productMenuURL version="1.0"
  8589. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8590. />
  8591. </productMenu>
  8592. <productMenu id="quickGuide"
  8593. type="0"
  8594. url=""
  8595. size="264KB" >
  8596. </productMenu>
  8597. <productMenu id="userGuide"
  8598. type="1"
  8599. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8600. size="3.09MB" >
  8601. </productMenu>
  8602. <productMenu id="connectGuide"
  8603. type="1"
  8604. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8605. size="1.12MB" >
  8606. </productMenu>
  8607. <productID id="4210"
  8608. />
  8609. <productGroupable type="1"
  8610. />
  8611. </product>
  8612. <product id="20S_EVO"
  8613. name="20S EVO"
  8614. series="20"
  8615. latestVersion="2.2.3"
  8616. show = "1" >
  8617. <productMenu id="protocol"
  8618. type="0">
  8619. </productMenu>
  8620. <productMenu id="wa"
  8621. type="5" >
  8622. </productMenu>
  8623. <productMenu id="sip"
  8624. type="1" >
  8625. <productMenuType version="1.0"
  8626. type="0"
  8627. />
  8628. </productMenu>
  8629. <productMenu id="bluetoothIntercom"
  8630. type="1" >
  8631. <productMenuType version="1.0"
  8632. type="0"
  8633. />
  8634. </productMenu>
  8635. <productMenu id="intercomSetting"
  8636. type="1" >
  8637. </productMenu>
  8638. <productMenu id="phone"
  8639. type="2" >
  8640. </productMenu>
  8641. <productMenu id="fmradio"
  8642. type="3" >
  8643. </productMenu>
  8644. <productMenu id="deviceSetting"
  8645. type="1"
  8646. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8647. <productMenuURL version="2.0.2"
  8648. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8649. />
  8650. <productMenuURL version="1.5"
  8651. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8652. />
  8653. <productMenuURL version="1.4.1"
  8654. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8655. />
  8656. <productMenuURL version="1.1"
  8657. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8658. />
  8659. <productMenuURL version="1.0"
  8660. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8661. />
  8662. </productMenu>
  8663. <productMenu id="quickGuide"
  8664. type="0"
  8665. url=""
  8666. size="264KB" >
  8667. </productMenu>
  8668. <productMenu id="userGuide"
  8669. type="1"
  8670. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8671. size="3.09MB" >
  8672. </productMenu>
  8673. <productMenu id="connectGuide"
  8674. type="1"
  8675. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8676. size="1.12MB" >
  8677. </productMenu>
  8678. <productID id="4210"
  8679. />
  8680. <productProductKey key="16"
  8681. />
  8682. <productGroupable type="1"
  8683. />
  8684. </product>
  8685. <product id="10S"
  8686. name="10S"
  8687. series="10"
  8688. latestVersion="3.0.2"
  8689. show = "1" >
  8690. <productMenu id="protocol"
  8691. type="3" >
  8692. </productMenu>
  8693. <productMenu id="sip"
  8694. type="1" >
  8695. </productMenu>
  8696. <productMenu id="bluetoothIntercom"
  8697. type="1" >
  8698. </productMenu>
  8699. <productMenu id="phone"
  8700. type="1" >
  8701. </productMenu>
  8702. <productMenu id="deviceSetting"
  8703. type="1"
  8704. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  8705. </productMenu>
  8706. <productMenu id="quickGuide"
  8707. type="1"
  8708. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  8709. size="934KB" >
  8710. </productMenu>
  8711. <productMenu id="userGuide"
  8712. type="1"
  8713. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  8714. size="1.14MB" >
  8715. </productMenu>
  8716. <productMenu id="connectGuide"
  8717. type="1"
  8718. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  8719. size="1.12MB" >
  8720. </productMenu>
  8721. <productID id="3380"
  8722. />
  8723. <productGroupable type="0"
  8724. />
  8725. </product>
  8726. <product id="10S"
  8727. name="10S"
  8728. series="10"
  8729. latestVersion="2.1.1"
  8730. show = "-1" >
  8731. <productMenu id="protocol"
  8732. type="0">
  8733. </productMenu>
  8734. <productMenu id="sip"
  8735. type="1" >
  8736. </productMenu>
  8737. <productMenu id="bluetoothIntercom"
  8738. type="1" >
  8739. </productMenu>
  8740. <productMenu id="phone"
  8741. type="2" >
  8742. </productMenu>
  8743. <productMenu id="fmradio"
  8744. type="3" >
  8745. </productMenu>
  8746. <productMenu id="deviceSetting"
  8747. type="1"
  8748. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  8749. <productMenuURL version="1.5"
  8750. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  8751. />
  8752. <productMenuURL version="1.3.1"
  8753. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  8754. />
  8755. </productMenu>
  8756. <productMenu id="quickGuide"
  8757. type="1"
  8758. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  8759. size="310KB" >
  8760. </productMenu>
  8761. <productMenu id="userGuide"
  8762. type="1"
  8763. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  8764. size="1.57MB" >
  8765. </productMenu>
  8766. <productID id="5530"
  8767. />
  8768. <productGroupable type="0"
  8769. />
  8770. </product>
  8771. <product id="Apex"
  8772. name="Apex"
  8773. series="Apex"
  8774. latestVersion="1.0"
  8775. latestVersionVoicePrompt="1.0"
  8776. show = "-1" >
  8777. <productMenu id="protocol"
  8778. type="2" >
  8779. </productMenu>
  8780. <productMenu id="serialNumber"
  8781. type="1" >
  8782. </productMenu>
  8783. <productMenu id="ota"
  8784. type="0" >
  8785. <otaLanguages>
  8786. <otaLanguage
  8787. id="0"
  8788. name="English"
  8789. package="0"
  8790. />
  8791. <otaLanguage
  8792. id="0"
  8793. name="French"
  8794. package="1"
  8795. />
  8796. <otaLanguage
  8797. id="0"
  8798. name="Spanish"
  8799. package="2"
  8800. />
  8801. <otaLanguage
  8802. id="0"
  8803. name="Italian"
  8804. package="3"
  8805. />
  8806. <otaLanguage
  8807. id="0"
  8808. name="German"
  8809. package="4"
  8810. />
  8811. <otaLanguage
  8812. id="0"
  8813. name="Dutch"
  8814. package="5"
  8815. />
  8816. <otaLanguage
  8817. id="0"
  8818. name="Russian"
  8819. package="6"
  8820. />
  8821. <otaLanguage
  8822. id="0"
  8823. name="Chinese"
  8824. package="7"
  8825. />
  8826. <otaLanguage
  8827. id="0"
  8828. name="Korean"
  8829. package="8"
  8830. />
  8831. <otaLanguage
  8832. id="0"
  8833. name="Japanese"
  8834. package="9"
  8835. />
  8836. <otaLanguage
  8837. id="0"
  8838. name="Finnish"
  8839. package="10"
  8840. />
  8841. <otaLanguage
  8842. id="0"
  8843. name="Polish"
  8844. package="11"
  8845. />
  8846. </otaLanguages>
  8847. <otaPackages>
  8848. <package
  8849. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0.img"
  8850. size="5183988"
  8851. />
  8852. <package
  8853. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fr-FR.img"
  8854. size="5183988"
  8855. />
  8856. <package
  8857. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-es-ES.img"
  8858. size="5183988"
  8859. />
  8860. <package
  8861. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-it-IT.img"
  8862. size="5183988"
  8863. />
  8864. <package
  8865. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-de-DE.img"
  8866. size="5183988"
  8867. />
  8868. <package
  8869. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-nl-NL.img"
  8870. size="5183988"
  8871. />
  8872. <package
  8873. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ru-RU.img"
  8874. size="5183988"
  8875. />
  8876. <package
  8877. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-cmn-CN.img"
  8878. size="5183988"
  8879. />
  8880. <package
  8881. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ko-KR.img"
  8882. size="5183988"
  8883. />
  8884. <package
  8885. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ja-JP.img"
  8886. size="5183988"
  8887. />
  8888. <package
  8889. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fi-FI.img"
  8890. size="5183988"
  8891. />
  8892. <package
  8893. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-pl-PL.img"
  8894. size="5183988"
  8895. />
  8896. </otaPackages>
  8897. </productMenu>
  8898. <productMenu id="sip"
  8899. type="1" >
  8900. </productMenu>
  8901. <productMenu id="bluetoothIntercom"
  8902. type="1" >
  8903. </productMenu>
  8904. <productMenu id="phone"
  8905. type="1" >
  8906. </productMenu>
  8907. <productMenu id="music"
  8908. type="1" >
  8909. </productMenu>
  8910. <productMenu id="fmradio"
  8911. type="1"
  8912. url="1" >
  8913. </productMenu>
  8914. <productMenu id="deviceSetting"
  8915. type="1"
  8916. url="https://api.sena.com/support/test/xml/NS_Apex_test_03.xml" >
  8917. </productMenu>
  8918. <productMenu id="quickGuide"
  8919. type="0"
  8920. url=""
  8921. size="934KB" >
  8922. </productMenu>
  8923. <productMenu id="userGuide"
  8924. type="1"
  8925. url=""
  8926. size="1.14MB" >
  8927. </productMenu>
  8928. <productMenu id="volume"
  8929. type="15" >
  8930. </productMenu>
  8931. <productID id="3452"
  8932. />
  8933. <productGroupable type="0"
  8934. />
  8935. </product>
  8936. <product id="ApexPlus"
  8937. name="Apex Plus"
  8938. series="Apex"
  8939. latestVersion="1.0"
  8940. latestVersionVoicePrompt="1.0"
  8941. show = "-1" >
  8942. <productMenu id="protocol"
  8943. type="2" >
  8944. </productMenu>
  8945. <productMenu id="serialNumber"
  8946. type="1" >
  8947. </productMenu>
  8948. <productMenu id="ota"
  8949. type="0" >
  8950. <otaLanguages>
  8951. <otaLanguage
  8952. id="0"
  8953. name="English"
  8954. package="0"
  8955. />
  8956. <otaLanguage
  8957. id="0"
  8958. name="French"
  8959. package="1"
  8960. />
  8961. <otaLanguage
  8962. id="0"
  8963. name="Spanish"
  8964. package="2"
  8965. />
  8966. <otaLanguage
  8967. id="0"
  8968. name="Italian"
  8969. package="3"
  8970. />
  8971. <otaLanguage
  8972. id="0"
  8973. name="German"
  8974. package="4"
  8975. />
  8976. <otaLanguage
  8977. id="0"
  8978. name="Dutch"
  8979. package="5"
  8980. />
  8981. <otaLanguage
  8982. id="0"
  8983. name="Russian"
  8984. package="6"
  8985. />
  8986. <otaLanguage
  8987. id="0"
  8988. name="Chinese"
  8989. package="7"
  8990. />
  8991. <otaLanguage
  8992. id="0"
  8993. name="Korean"
  8994. package="8"
  8995. />
  8996. <otaLanguage
  8997. id="0"
  8998. name="Japanese"
  8999. package="9"
  9000. />
  9001. <otaLanguage
  9002. id="0"
  9003. name="Finnish"
  9004. package="10"
  9005. />
  9006. <otaLanguage
  9007. id="0"
  9008. name="Polish"
  9009. package="11"
  9010. />
  9011. </otaLanguages>
  9012. <otaPackages>
  9013. <package
  9014. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0.img"
  9015. size="5183988"
  9016. />
  9017. <package
  9018. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fr-FR.img"
  9019. size="5183988"
  9020. />
  9021. <package
  9022. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-es-ES.img"
  9023. size="5183988"
  9024. />
  9025. <package
  9026. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-it-IT.img"
  9027. size="5183988"
  9028. />
  9029. <package
  9030. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-de-DE.img"
  9031. size="5183988"
  9032. />
  9033. <package
  9034. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-nl-NL.img"
  9035. size="5183988"
  9036. />
  9037. <package
  9038. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ru-RU.img"
  9039. size="5183988"
  9040. />
  9041. <package
  9042. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-cmn-CN.img"
  9043. size="5183988"
  9044. />
  9045. <package
  9046. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ko-KR.img"
  9047. size="5183988"
  9048. />
  9049. <package
  9050. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ja-JP.img"
  9051. size="5183988"
  9052. />
  9053. <package
  9054. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fi-FI.img"
  9055. size="5183988"
  9056. />
  9057. <package
  9058. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-pl-PL.img"
  9059. size="5183988"
  9060. />
  9061. </otaPackages>
  9062. </productMenu>
  9063. <productMenu id="sip"
  9064. type="1" >
  9065. </productMenu>
  9066. <productMenu id="bluetoothIntercom"
  9067. type="1" >
  9068. </productMenu>
  9069. <productMenu id="phone"
  9070. type="1" >
  9071. </productMenu>
  9072. <productMenu id="music"
  9073. type="1" >
  9074. </productMenu>
  9075. <productMenu id="fmradio"
  9076. type="1"
  9077. url="1" >
  9078. </productMenu>
  9079. <productMenu id="deviceSetting"
  9080. type="1"
  9081. url="https://api.sena.com/support/test/xml/NS_Apex_test_03.xml" >
  9082. </productMenu>
  9083. <productMenu id="quickGuide"
  9084. type="0"
  9085. url=""
  9086. size="934KB" >
  9087. </productMenu>
  9088. <productMenu id="userGuide"
  9089. type="1"
  9090. url=""
  9091. size="1.14MB" >
  9092. </productMenu>
  9093. <productMenu id="volume"
  9094. type="15" >
  9095. </productMenu>
  9096. <productID id="3453"
  9097. />
  9098. <productGroupable type="0"
  9099. />
  9100. </product>
  9101. <product id="10R2"
  9102. name="10R 2"
  9103. series="10"
  9104. latestVersion="0.9"
  9105. latestVersionVoicePrompt="1.1"
  9106. show = "-1" >
  9107. <productMenu id="protocol"
  9108. type="2" >
  9109. </productMenu>
  9110. <productMenu id="ota"
  9111. type="2" >
  9112. <otaPackages>
  9113. <package
  9114. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9115. size="2945812"
  9116. />
  9117. </otaPackages>
  9118. </productMenu>
  9119. <productMenu id="sip"
  9120. type="1" >
  9121. </productMenu>
  9122. <productMenu id="bluetoothIntercom"
  9123. type="1" >
  9124. </productMenu>
  9125. <productMenu id="phone"
  9126. type="1" >
  9127. </productMenu>
  9128. <productMenu id="music"
  9129. type="1" >
  9130. </productMenu>
  9131. <productMenu id="fmradio"
  9132. type="1"
  9133. url="1" >
  9134. </productMenu>
  9135. <productMenu id="deviceSetting"
  9136. type="1"
  9137. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9138. </productMenu>
  9139. <productMenu id="quickGuide"
  9140. type="1"
  9141. url=""
  9142. size="934KB" >
  9143. </productMenu>
  9144. <productMenu id="userGuide"
  9145. type="0"
  9146. url=""
  9147. size="1.14MB" >
  9148. </productMenu>
  9149. <productMenu id="volume"
  9150. type="15" >
  9151. </productMenu>
  9152. <productID id="4000"
  9153. />
  9154. <productGroupable type="0"
  9155. />
  9156. </product>
  9157. <product id="10R"
  9158. name="10R"
  9159. series="10"
  9160. latestVersion="2.1.1"
  9161. show = "1" >
  9162. <productMenu id="protocol"
  9163. type="0">
  9164. </productMenu>
  9165. <productMenu id="sip"
  9166. type="1" >
  9167. <productMenuType version="1.0.2"
  9168. type="0"
  9169. />
  9170. </productMenu>
  9171. <productMenu id="bluetoothIntercom"
  9172. type="1" >
  9173. <productMenuType version="1.0.2"
  9174. type="0"
  9175. />
  9176. </productMenu>
  9177. <productMenu id="phone"
  9178. type="2" >
  9179. </productMenu>
  9180. <productMenu id="fmradio"
  9181. type="3" >
  9182. </productMenu>
  9183. <productMenu id="deviceSetting"
  9184. type="1"
  9185. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9186. <productMenuURL version="1.4"
  9187. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9188. />
  9189. <productMenuURL version="1.2.1"
  9190. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9191. />
  9192. <productMenuURL version="1.0.2"
  9193. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9194. />
  9195. <productMenuURL version="1.0"
  9196. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9197. />
  9198. </productMenu>
  9199. <productMenu id="quickGuide"
  9200. type="1"
  9201. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9202. size="400KB" >
  9203. </productMenu>
  9204. <productMenu id="userGuide"
  9205. type="1"
  9206. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9207. size="2.75MB" >
  9208. </productMenu>
  9209. <productMenu id="connectGuide"
  9210. type="1"
  9211. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9212. size="1.12MB" >
  9213. </productMenu>
  9214. <productID id="5520"
  9215. />
  9216. <productGroupable type="0"
  9217. />
  9218. </product>
  9219. <product id="10C_EVO"
  9220. name="10C EVO"
  9221. series="10"
  9222. latestVersion="1.7"
  9223. show = "1" >
  9224. <productMenu id="protocol"
  9225. type="0">
  9226. </productMenu>
  9227. <productMenu id="sip"
  9228. type="1" >
  9229. </productMenu>
  9230. <productMenu id="bluetoothIntercom"
  9231. type="1" >
  9232. </productMenu>
  9233. <productMenu id="phone"
  9234. type="2" >
  9235. </productMenu>
  9236. <productMenu id="fmradio"
  9237. type="3" >
  9238. </productMenu>
  9239. <productMenu id="deviceSetting"
  9240. type="1"
  9241. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9242. <productMenuURL version="1.3.1"
  9243. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9244. />
  9245. </productMenu>
  9246. <productMenu id="quickGuide"
  9247. type="1"
  9248. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9249. size="1.32MB" >
  9250. </productMenu>
  9251. <productMenu id="userGuide"
  9252. type="1"
  9253. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9254. size="1.68MB" >
  9255. </productMenu>
  9256. <productMenu id="connectGuide"
  9257. type="1"
  9258. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9259. size="1.12MB" >
  9260. </productMenu>
  9261. <productID id="5570"
  9262. />
  9263. <productGroupable type="0"
  9264. />
  9265. </product>
  9266. <product id="10C_Pro"
  9267. name="10C Pro"
  9268. series="10"
  9269. latestVersion="2.7.1"
  9270. show = "1" >
  9271. <productMenu id="protocol"
  9272. type="0">
  9273. </productMenu>
  9274. <productMenu id="sip"
  9275. type="1" >
  9276. </productMenu>
  9277. <productMenu id="bluetoothIntercom"
  9278. type="1" >
  9279. </productMenu>
  9280. <productMenu id="phone"
  9281. type="2" >
  9282. </productMenu>
  9283. <productMenu id="fmradio"
  9284. type="3" >
  9285. </productMenu>
  9286. <productMenu id="deviceSetting"
  9287. type="1"
  9288. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9289. <productMenuURL version="2.5.1"
  9290. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9291. />
  9292. <productMenuURL version="1.0"
  9293. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9294. />
  9295. </productMenu>
  9296. <productMenu id="quickGuide"
  9297. type="1"
  9298. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9299. size="651KB" >
  9300. </productMenu>
  9301. <productMenu id="userGuide"
  9302. type="1"
  9303. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9304. size="2.34MB" >
  9305. </productMenu>
  9306. <productMenu id="connectGuide"
  9307. type="1"
  9308. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9309. size="1.12MB" >
  9310. </productMenu>
  9311. <productID id="5580"
  9312. />
  9313. <productGroupable type="0"
  9314. />
  9315. </product>
  9316. <product id="10C"
  9317. name="10C"
  9318. series="10"
  9319. latestVersion="3.0.4"
  9320. show = "1" >
  9321. <productMenu id="protocol"
  9322. type="0">
  9323. </productMenu>
  9324. <productMenu id="sip"
  9325. type="1" >
  9326. <productMenuType version="1.0.4"
  9327. type="0"
  9328. />
  9329. </productMenu>
  9330. <productMenu id="bluetoothIntercom"
  9331. type="1" >
  9332. <productMenuType version="1.0.4"
  9333. type="0"
  9334. />
  9335. </productMenu>
  9336. <productMenu id="phone"
  9337. type="2" >
  9338. </productMenu>
  9339. <productMenu id="fmradio"
  9340. type="3" >
  9341. </productMenu>
  9342. <productMenu id="deviceSetting"
  9343. type="1"
  9344. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9345. <productMenuURL version="2.3"
  9346. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9347. />
  9348. <productMenuURL version="2.1.1"
  9349. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9350. />
  9351. <productMenuURL version="1.0.4"
  9352. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9353. />
  9354. <productMenuURL version="1.0.2"
  9355. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9356. />
  9357. </productMenu>
  9358. <productMenu id="quickGuide"
  9359. type="1"
  9360. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9361. size="935KB" >
  9362. </productMenu>
  9363. <productMenu id="userGuide"
  9364. type="1"
  9365. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9366. size="2.82MB" >
  9367. </productMenu>
  9368. <productMenu id="connectGuide"
  9369. type="1"
  9370. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9371. size="1.12MB" >
  9372. </productMenu>
  9373. <productID id="5510"
  9374. />
  9375. <productGroupable type="0"
  9376. />
  9377. </product>
  9378. <product id="10U_GT_AIR"
  9379. name="10U GT-Air"
  9380. series="10"
  9381. latestVersion="2.0.4"
  9382. show = "1" >
  9383. <productMenu id="protocol"
  9384. type="0">
  9385. </productMenu>
  9386. <productMenu id="sip"
  9387. type="1" >
  9388. <productMenuType version="1.0.2"
  9389. type="0"
  9390. />
  9391. </productMenu>
  9392. <productMenu id="bluetoothIntercom"
  9393. type="1" >
  9394. <productMenuType version="1.0.2"
  9395. type="0"
  9396. />
  9397. </productMenu>
  9398. <productMenu id="phone"
  9399. type="2" >
  9400. </productMenu>
  9401. <productMenu id="fmradio"
  9402. type="3" >
  9403. </productMenu>
  9404. <productMenu id="deviceSetting"
  9405. type="1"
  9406. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9407. <productMenuURL version="1.3.2"
  9408. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9409. />
  9410. <productMenuURL version="1.0.2"
  9411. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9412. />
  9413. </productMenu>
  9414. <productMenu id="quickGuide"
  9415. type="1"
  9416. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9417. size="685KB" >
  9418. </productMenu>
  9419. <productMenu id="userGuide"
  9420. type="1"
  9421. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9422. size="684KB" >
  9423. </productMenu>
  9424. <productMenu id="connectGuide"
  9425. type="1"
  9426. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9427. size="1.12MB" >
  9428. </productMenu>
  9429. <productID id="5610"
  9430. />
  9431. <productGroupable type="0"
  9432. />
  9433. </product>
  9434. <product id="10U_NEOTEC"
  9435. name="10U Neotec"
  9436. series="10"
  9437. latestVersion="2.0.4"
  9438. show = "1" >
  9439. <productMenu id="protocol"
  9440. type="0">
  9441. </productMenu>
  9442. <productMenu id="sip"
  9443. type="1" >
  9444. <productMenuType version="1.0.2"
  9445. type="0"
  9446. />
  9447. </productMenu>
  9448. <productMenu id="bluetoothIntercom"
  9449. type="1" >
  9450. <productMenuType version="1.0.2"
  9451. type="0"
  9452. />
  9453. </productMenu>
  9454. <productMenu id="phone"
  9455. type="2" >
  9456. </productMenu>
  9457. <productMenu id="fmradio"
  9458. type="3" >
  9459. </productMenu>
  9460. <productMenu id="deviceSetting"
  9461. type="1"
  9462. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9463. <productMenuURL version="1.3.2"
  9464. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9465. />
  9466. <productMenuURL version="1.0.2"
  9467. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9468. />
  9469. </productMenu>
  9470. <productMenu id="quickGuide"
  9471. type="1"
  9472. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9473. size="689KB" >
  9474. </productMenu>
  9475. <productMenu id="userGuide"
  9476. type="1"
  9477. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9478. size="684KB" >
  9479. </productMenu>
  9480. <productMenu id="connectGuide"
  9481. type="1"
  9482. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9483. size="1.12MB" >
  9484. </productMenu>
  9485. <productID id="5611"
  9486. />
  9487. <productGroupable type="0"
  9488. />
  9489. </product>
  9490. <product id="10U_J_CRUISE"
  9491. name="10U J-Cruise"
  9492. series="10"
  9493. latestVersion="2.0.4"
  9494. show = "1" >
  9495. <productMenu id="protocol"
  9496. type="0">
  9497. </productMenu>
  9498. <productMenu id="sip"
  9499. type="1" >
  9500. <productMenuType version="1.0.2"
  9501. type="0"
  9502. />
  9503. </productMenu>
  9504. <productMenu id="bluetoothIntercom"
  9505. type="1" >
  9506. <productMenuType version="1.0.2"
  9507. type="0"
  9508. />
  9509. </productMenu>
  9510. <productMenu id="phone"
  9511. type="2" >
  9512. </productMenu>
  9513. <productMenu id="fmradio"
  9514. type="3" >
  9515. </productMenu>
  9516. <productMenu id="deviceSetting"
  9517. type="1"
  9518. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9519. <productMenuURL version="1.3.2"
  9520. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9521. />
  9522. <productMenuURL version="1.0.2"
  9523. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9524. />
  9525. </productMenu>
  9526. <productMenu id="quickGuide"
  9527. type="1"
  9528. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9529. size="686KB" >
  9530. </productMenu>
  9531. <productMenu id="userGuide"
  9532. type="1"
  9533. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9534. size="684KB" >
  9535. </productMenu>
  9536. <productMenu id="connectGuide"
  9537. type="1"
  9538. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9539. size="1.12MB" >
  9540. </productMenu>
  9541. <productID id="5612"
  9542. />
  9543. <productGroupable type="0"
  9544. />
  9545. </product>
  9546. <product id="10U_C3"
  9547. name="10U C3/C3Pro"
  9548. series="10"
  9549. latestVersion="2.0.4"
  9550. show = "1" >
  9551. <productMenu id="protocol"
  9552. type="0">
  9553. </productMenu>
  9554. <productMenu id="sip"
  9555. type="1" >
  9556. <productMenuType version="1.0.2"
  9557. type="0"
  9558. />
  9559. </productMenu>
  9560. <productMenu id="bluetoothIntercom"
  9561. type="1" >
  9562. <productMenuType version="1.0.2"
  9563. type="0"
  9564. />
  9565. </productMenu>
  9566. <productMenu id="phone"
  9567. type="2" >
  9568. </productMenu>
  9569. <productMenu id="fmradio"
  9570. type="3" >
  9571. </productMenu>
  9572. <productMenu id="deviceSetting"
  9573. type="1"
  9574. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9575. <productMenuURL version="1.3.2"
  9576. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9577. />
  9578. <productMenuURL version="1.0.2"
  9579. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9580. />
  9581. </productMenu>
  9582. <productMenu id="quickGuide"
  9583. type="1"
  9584. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9585. size="199KB" >
  9586. </productMenu>
  9587. <productMenu id="userGuide"
  9588. type="1"
  9589. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9590. size="684KB" >
  9591. </productMenu>
  9592. <productMenu id="connectGuide"
  9593. type="1"
  9594. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9595. size="1.12MB" >
  9596. </productMenu>
  9597. <productID id="5620"
  9598. />
  9599. <productGroupable type="0"
  9600. />
  9601. </product>
  9602. <product id="10U_ARAI"
  9603. name="10U Arai"
  9604. series="10"
  9605. latestVersion="2.0.4"
  9606. show = "1" >
  9607. <productMenu id="protocol"
  9608. type="0">
  9609. </productMenu>
  9610. <productMenu id="sip"
  9611. type="1" >
  9612. <productMenuType version="1.0.2"
  9613. type="0"
  9614. />
  9615. </productMenu>
  9616. <productMenu id="bluetoothIntercom"
  9617. type="1" >
  9618. <productMenuType version="1.0.2"
  9619. type="0"
  9620. />
  9621. </productMenu>
  9622. <productMenu id="phone"
  9623. type="2" >
  9624. </productMenu>
  9625. <productMenu id="fmradio"
  9626. type="3" >
  9627. </productMenu>
  9628. <productMenu id="deviceSetting"
  9629. type="1"
  9630. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9631. <productMenuURL version="1.3.2"
  9632. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9633. />
  9634. <productMenuURL version="1.0.2"
  9635. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9636. />
  9637. </productMenu>
  9638. <productMenu id="quickGuide"
  9639. type="1"
  9640. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  9641. size="689KB" >
  9642. </productMenu>
  9643. <productMenu id="userGuide"
  9644. type="1"
  9645. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9646. size="684KB" >
  9647. </productMenu>
  9648. <productMenu id="connectGuide"
  9649. type="1"
  9650. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9651. size="1.12MB" >
  9652. </productMenu>
  9653. <productID id="5621"
  9654. />
  9655. <productGroupable type="0"
  9656. />
  9657. </product>
  9658. <product id="10Upad"
  9659. name="10Upad"
  9660. series="10"
  9661. latestVersion="2.0.3"
  9662. show = "1" >
  9663. <productMenu id="protocol"
  9664. type="0">
  9665. </productMenu>
  9666. <productMenu id="sip"
  9667. type="1" >
  9668. </productMenu>
  9669. <productMenu id="bluetoothIntercom"
  9670. type="1" >
  9671. </productMenu>
  9672. <productMenu id="phone"
  9673. type="2" >
  9674. </productMenu>
  9675. <productMenu id="fmradio"
  9676. type="3" >
  9677. </productMenu>
  9678. <productMenu id="deviceSetting"
  9679. type="1"
  9680. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  9681. <productMenuURL version="1.0.3"
  9682. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  9683. />
  9684. </productMenu>
  9685. <productMenu id="quickGuide"
  9686. type="1"
  9687. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  9688. size="615KB" >
  9689. </productMenu>
  9690. <productMenu id="userGuide"
  9691. type="1"
  9692. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  9693. size="0.99MB" >
  9694. </productMenu>
  9695. <productMenu id="connectGuide"
  9696. type="1"
  9697. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9698. size="1.12MB" >
  9699. </productMenu>
  9700. <productID id="6210"
  9701. />
  9702. <productGroupable type="0"
  9703. />
  9704. </product>
  9705. <product id="5S"
  9706. name="5S"
  9707. series="5"
  9708. latestVersion="2.3.1"
  9709. show = "1" >
  9710. <productMenu id="protocol"
  9711. type="3" >
  9712. </productMenu>
  9713. <productMenu id="sip"
  9714. type="1" >
  9715. </productMenu>
  9716. <productMenu id="bluetoothIntercom"
  9717. type="1" >
  9718. </productMenu>
  9719. <productMenu id="phone"
  9720. type="1" >
  9721. </productMenu>
  9722. <productMenu id="fmradio"
  9723. type="0" >
  9724. </productMenu>
  9725. <productMenu id="deviceSetting"
  9726. type="1"
  9727. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9728. </productMenu>
  9729. <productMenu id="quickGuide"
  9730. type="0"
  9731. url=""
  9732. size="934KB" >
  9733. </productMenu>
  9734. <productMenu id="userGuide"
  9735. type="1"
  9736. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  9737. size="1.14MB" >
  9738. </productMenu>
  9739. <productMenu id="connectGuide"
  9740. type="1"
  9741. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  9742. size="1.12MB" >
  9743. </productMenu>
  9744. <productID id="5590"
  9745. />
  9746. <productGroupable type="0"
  9747. />
  9748. </product>
  9749. <product id="5S"
  9750. name="5S"
  9751. series="5"
  9752. latestVersion="1.2"
  9753. show = "-1" >
  9754. <productMenu id="protocol"
  9755. type="0">
  9756. </productMenu>
  9757. <productMenu id="sip"
  9758. type="1" >
  9759. </productMenu>
  9760. <productMenu id="bluetoothIntercom"
  9761. type="1" >
  9762. </productMenu>
  9763. <productMenu id="phone"
  9764. type="2" >
  9765. </productMenu>
  9766. <productMenu id="fmradio"
  9767. type="3" >
  9768. </productMenu>
  9769. <productMenu id="deviceSetting"
  9770. type="1"
  9771. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  9772. </productMenu>
  9773. <productMenu id="quickGuide"
  9774. type="0"
  9775. url=""
  9776. size="970KB" >
  9777. </productMenu>
  9778. <productMenu id="userGuide"
  9779. type="1"
  9780. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  9781. size="1.26MB" >
  9782. </productMenu>
  9783. <productID id="5534"
  9784. />
  9785. <productGroupable type="0"
  9786. />
  9787. </product>
  9788. <product id="5S"
  9789. name="5S"
  9790. series="5"
  9791. latestVersion="3.0.1"
  9792. show = "-1" >
  9793. <productMenu id="protocol"
  9794. type="0">
  9795. </productMenu>
  9796. <productMenu id="sip"
  9797. type="1" >
  9798. </productMenu>
  9799. <productMenu id="bluetoothIntercom"
  9800. type="1" >
  9801. </productMenu>
  9802. <productMenu id="phone"
  9803. type="2" >
  9804. </productMenu>
  9805. <productMenu id="fmradio"
  9806. type="0" >
  9807. </productMenu>
  9808. <productMenu id="deviceSetting"
  9809. type="1"
  9810. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  9811. </productMenu>
  9812. <productMenu id="quickGuide"
  9813. type="0"
  9814. url=""
  9815. size="970KB" >
  9816. </productMenu>
  9817. <productMenu id="userGuide"
  9818. type="1"
  9819. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  9820. size="1.26MB" >
  9821. </productMenu>
  9822. <productID id="5538"
  9823. />
  9824. <productGroupable type="0"
  9825. />
  9826. </product>
  9827. <product id="3SPLUS"
  9828. name="3S PLUS"
  9829. series="3"
  9830. latestVersion="2.2"
  9831. show = "1" >
  9832. <productMenu id="protocol"
  9833. type="3" >
  9834. </productMenu>
  9835. <productMenu id="sip"
  9836. type="1" >
  9837. </productMenu>
  9838. <productMenu id="bluetoothIntercom"
  9839. type="1" >
  9840. </productMenu>
  9841. <productMenu id="deviceSetting"
  9842. type="1"
  9843. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  9844. <productMenuURL version="2.2.1"
  9845. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  9846. />
  9847. </productMenu>
  9848. <productMenu id="quickGuide"
  9849. type="1"
  9850. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9851. size="344KB" >
  9852. </productMenu>
  9853. <productMenu id="userGuide"
  9854. type="1"
  9855. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  9856. size="1.14MB" >
  9857. </productMenu>
  9858. <productMenu id="connectGuide"
  9859. type="1"
  9860. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  9861. size="1.12MB" >
  9862. </productMenu>
  9863. <productID id="4023"
  9864. />
  9865. <productGroupable type="0"
  9866. />
  9867. </product>
  9868. <product id="3SPLUS"
  9869. name="3S PLUS"
  9870. series="3"
  9871. latestVersion="1.1"
  9872. show = "-1" >
  9873. <productMenu id="protocol"
  9874. type="0">
  9875. </productMenu>
  9876. <productMenu id="sip"
  9877. type="1" >
  9878. </productMenu>
  9879. <productMenu id="bluetoothIntercom"
  9880. type="1" >
  9881. </productMenu>
  9882. <productMenu id="deviceSetting"
  9883. type="1"
  9884. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  9885. </productMenu>
  9886. <productMenu id="quickGuide"
  9887. type="1"
  9888. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9889. size="842KB" >
  9890. </productMenu>
  9891. <productMenu id="userGuide"
  9892. type="1"
  9893. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  9894. size="1.02MB" >
  9895. </productMenu>
  9896. <productID id="6320"
  9897. />
  9898. <productGroupable type="0"
  9899. />
  9900. </product>
  9901. <product id="AConnect"
  9902. name="Alpinestars A-Connect"
  9903. series="60"
  9904. latestVersion="1.0.2"
  9905. latestVersionMesh="0.19"
  9906. latestVersionVoicePrompt="1.6"
  9907. show = "-1" >
  9908. <productMenu id="protocol"
  9909. type="2" >
  9910. </productMenu>
  9911. <productMenu id="ota"
  9912. type="2" >
  9913. <otaLanguages>
  9914. <otaLanguage
  9915. id="0"
  9916. name="English"
  9917. package="0"
  9918. />
  9919. <otaLanguage
  9920. id="0"
  9921. name="French"
  9922. package="1"
  9923. />
  9924. <otaLanguage
  9925. id="0"
  9926. name="Spanish"
  9927. package="2"
  9928. />
  9929. <otaLanguage
  9930. id="0"
  9931. name="Italian"
  9932. package="3"
  9933. />
  9934. <otaLanguage
  9935. id="0"
  9936. name="German"
  9937. package="4"
  9938. />
  9939. <otaLanguage
  9940. id="0"
  9941. name="Dutch"
  9942. package="5"
  9943. />
  9944. <otaLanguage
  9945. id="0"
  9946. name="Russian"
  9947. package="6"
  9948. />
  9949. <otaLanguage
  9950. id="0"
  9951. name="Chinese"
  9952. package="7"
  9953. />
  9954. <otaLanguage
  9955. id="0"
  9956. name="Korean"
  9957. package="8"
  9958. />
  9959. <otaLanguage
  9960. id="0"
  9961. name="Japanese"
  9962. package="9"
  9963. />
  9964. <otaLanguage
  9965. id="0"
  9966. name="Finnish"
  9967. package="10"
  9968. />
  9969. <otaLanguage
  9970. id="0"
  9971. name="Polish"
  9972. package="11"
  9973. />
  9974. </otaLanguages>
  9975. <otaPackages>
  9976. <package
  9977. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  9978. size="5183988"
  9979. />
  9980. <package
  9981. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  9982. size="5183988"
  9983. />
  9984. <package
  9985. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  9986. size="5183988"
  9987. />
  9988. <package
  9989. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  9990. size="5183988"
  9991. />
  9992. <package
  9993. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  9994. size="5183988"
  9995. />
  9996. <package
  9997. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  9998. size="5183988"
  9999. />
  10000. <package
  10001. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  10002. size="5183988"
  10003. />
  10004. <package
  10005. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  10006. size="5183988"
  10007. />
  10008. <package
  10009. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  10010. size="5183988"
  10011. />
  10012. <package
  10013. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10014. size="5183988"
  10015. />
  10016. <package
  10017. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10018. size="5183988"
  10019. />
  10020. <package
  10021. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10022. size="5183988"
  10023. />
  10024. </otaPackages>
  10025. </productMenu>
  10026. <productMenu id="sip"
  10027. type="1" >
  10028. </productMenu>
  10029. <productMenu id="illusion"
  10030. type="0" >
  10031. </productMenu>
  10032. <productMenu id="meshIntercom+"
  10033. type="3"
  10034. url="2" >
  10035. </productMenu>
  10036. <productMenu id="waveIntercom"
  10037. type="1" >
  10038. </productMenu>
  10039. <productMenu id="bluetoothIntercom"
  10040. type="1"
  10041. url="2" >
  10042. </productMenu>
  10043. <productMenu id="bluetoothIntercomGrouping"
  10044. type="0" >
  10045. </productMenu>
  10046. <productMenu id="fmradio"
  10047. type="1"
  10048. url="1" >
  10049. </productMenu>
  10050. <productMenu id="phone"
  10051. type="1" >
  10052. </productMenu>
  10053. <productMenu id="music"
  10054. type="1" >
  10055. </productMenu>
  10056. <productMenu id="musicSharing"
  10057. type="0" >
  10058. </productMenu>
  10059. <productMenu id="deviceSetting"
  10060. type="1"
  10061. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  10062. </productMenu>
  10063. <productMenu id="quickGuide"
  10064. type="0"
  10065. url=""
  10066. size="1.12MB" >
  10067. </productMenu>
  10068. <productMenu id="userGuide"
  10069. type="1"
  10070. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  10071. size="2.0MB" >
  10072. </productMenu>
  10073. <productMenu id="videoGuide"
  10074. type="0"
  10075. url=""
  10076. size="3.41MB" >
  10077. </productMenu>
  10078. <productMenu id="volume"
  10079. type="16" >
  10080. </productMenu>
  10081. <productMenu id="volume+"
  10082. type="2"
  10083. url="0x6004" >
  10084. </productMenu>
  10085. <productMenu id="soundMode"
  10086. type="0" >
  10087. </productMenu>
  10088. <productMenu id="battery"
  10089. type="1" >
  10090. </productMenu>
  10091. <productID id="6A82"
  10092. />
  10093. <productGroupable type="0"
  10094. />
  10095. </product>
  10096. <product id="iCon"
  10097. name="iCon"
  10098. series="50"
  10099. latestVersion="1.2"
  10100. show = "0" >
  10101. <productMenu id="protocol"
  10102. type="2" >
  10103. </productMenu>
  10104. <productMenu id="alexa"
  10105. type="0" >
  10106. </productMenu>
  10107. <productMenu id="wa"
  10108. type="0" >
  10109. </productMenu>
  10110. <productMenu id="sip"
  10111. type="1" >
  10112. </productMenu>
  10113. <productMenu id="led"
  10114. type="3" >
  10115. </productMenu>
  10116. <productMenu id="meshIntercom"
  10117. type="20" >
  10118. </productMenu>
  10119. <productMenu id="meshIntercom+"
  10120. type="3"
  10121. url="0" >
  10122. <productMenuType version="1.0.9"
  10123. type="2"
  10124. />
  10125. </productMenu>
  10126. <productMenu id="bluetoothIntercom"
  10127. type="1" >
  10128. </productMenu>
  10129. <productMenu id="phone"
  10130. type="1" >
  10131. </productMenu>
  10132. <productMenu id="music"
  10133. type="1" >
  10134. </productMenu>
  10135. <productMenu id="fmradio"
  10136. type="1" >
  10137. </productMenu>
  10138. <productMenu id="deviceSetting"
  10139. type="1"
  10140. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10141. <productMenuURL version="1.0.9"
  10142. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10143. />
  10144. </productMenu>
  10145. <productMenu id="quickGuide"
  10146. type="1"
  10147. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10148. size="344KB" >
  10149. </productMenu>
  10150. <productMenu id="userGuide"
  10151. type="1"
  10152. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10153. size="3.41MB" >
  10154. </productMenu>
  10155. <productMenu id="volume"
  10156. type="11" >
  10157. </productMenu>
  10158. <productMenu id="battery"
  10159. type="1" >
  10160. </productMenu>
  10161. <productID id="3900"
  10162. />
  10163. <productGroupable type="0"
  10164. />
  10165. </product>
  10166. <product id="ICONHelmLinkSL"
  10167. name="ICON HelmLink SL"
  10168. series="50"
  10169. latestVersion="1.0"
  10170. latestVersionVoicePrompt="1.6"
  10171. show = "-1" >
  10172. <productMenu id="protocol"
  10173. type="2" >
  10174. </productMenu>
  10175. <productMenu id="alexa"
  10176. type="0" >
  10177. </productMenu>
  10178. <productMenu id="ota"
  10179. type="0" >
  10180. <otaPackages>
  10181. <package
  10182. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/ICON_HELMLINK_SL-v0.9-build0.img"
  10183. size="2945812"
  10184. />
  10185. </otaPackages>
  10186. </productMenu>
  10187. <productMenu id="wa"
  10188. type="0" >
  10189. </productMenu>
  10190. <productMenu id="meshIntercom"
  10191. type="30" >
  10192. </productMenu>
  10193. <productMenu id="meshIntercom+"
  10194. type="3"
  10195. url="2" >
  10196. </productMenu>
  10197. <productMenu id="waveIntercom"
  10198. type="1" >
  10199. </productMenu>
  10200. <productMenu id="phone"
  10201. type="1" >
  10202. </productMenu>
  10203. <productMenu id="music"
  10204. type="1" >
  10205. </productMenu>
  10206. <productMenu id="musicSharing"
  10207. type="0" >
  10208. </productMenu>
  10209. <productMenu id="deviceSetting"
  10210. type="1"
  10211. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10212. </productMenu>
  10213. <productMenu id="quickGuide"
  10214. type="0"
  10215. url=""
  10216. size="1.12MB" >
  10217. </productMenu>
  10218. <productMenu id="userGuide"
  10219. type="1"
  10220. url=""
  10221. size="2.0MB" >
  10222. </productMenu>
  10223. <productMenu id="volume"
  10224. type="12" >
  10225. </productMenu>
  10226. <productMenu id="battery"
  10227. type="1" >
  10228. </productMenu>
  10229. <productID id="6842"
  10230. />
  10231. <productGroupable type="0"
  10232. />
  10233. </product>
  10234. <product id="HD50S"
  10235. name="H-D Audio 50S"
  10236. series="50"
  10237. latestVersion="1.0.1"
  10238. show = "-1" >
  10239. <productMenu id="protocol"
  10240. type="2" >
  10241. </productMenu>
  10242. <productMenu id="alexa"
  10243. type="0" >
  10244. </productMenu>
  10245. <productMenu id="ota"
  10246. type="0"
  10247. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10248. size="1150234" >
  10249. </productMenu>
  10250. <productMenu id="wa"
  10251. type="1" >
  10252. </productMenu>
  10253. <productMenu id="sip"
  10254. type="1" >
  10255. </productMenu>
  10256. <productMenu id="meshIntercom"
  10257. type="20" >
  10258. </productMenu>
  10259. <productMenu id="meshIntercom+"
  10260. type="3"
  10261. url="0" >
  10262. <productMenuType version="1.0.9"
  10263. type="2"
  10264. />
  10265. </productMenu>
  10266. <productMenu id="bluetoothIntercom"
  10267. type="1" >
  10268. </productMenu>
  10269. <productMenu id="phone"
  10270. type="1" >
  10271. </productMenu>
  10272. <productMenu id="music"
  10273. type="1" >
  10274. </productMenu>
  10275. <productMenu id="fmradio"
  10276. type="1" >
  10277. </productMenu>
  10278. <productMenu id="deviceSetting"
  10279. type="1"
  10280. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10281. <productMenuURL version="1.0.9"
  10282. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10283. />
  10284. </productMenu>
  10285. <productMenu id="quickGuide"
  10286. type="1"
  10287. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10288. size="934KB" >
  10289. </productMenu>
  10290. <productMenu id="userGuide"
  10291. type="1"
  10292. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10293. size="1.14MB" >
  10294. </productMenu>
  10295. <productMenu id="volume"
  10296. type="11" >
  10297. </productMenu>
  10298. <productMenu id="battery"
  10299. type="1" >
  10300. </productMenu>
  10301. <productID id="3156"
  10302. />
  10303. <productGroupable type="0"
  10304. />
  10305. </product>
  10306. <product id="HD50S"
  10307. name="H-D Audio 50S"
  10308. series="50"
  10309. latestVersion="2.0.2"
  10310. show = "0" >
  10311. <productMenu id="protocol"
  10312. type="2" >
  10313. </productMenu>
  10314. <productMenu id="alexa"
  10315. type="0" >
  10316. </productMenu>
  10317. <productMenu id="ota"
  10318. type="0"
  10319. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10320. size="1150234" >
  10321. </productMenu>
  10322. <productMenu id="wa"
  10323. type="1" >
  10324. </productMenu>
  10325. <productMenu id="sip"
  10326. type="1" >
  10327. </productMenu>
  10328. <productMenu id="meshIntercom"
  10329. type="20" >
  10330. </productMenu>
  10331. <productMenu id="meshIntercom+"
  10332. type="3"
  10333. url="0" >
  10334. <productMenuType version="2.0.9"
  10335. type="2"
  10336. />
  10337. </productMenu>
  10338. <productMenu id="bluetoothIntercom"
  10339. type="1" >
  10340. </productMenu>
  10341. <productMenu id="phone"
  10342. type="1" >
  10343. </productMenu>
  10344. <productMenu id="music"
  10345. type="1" >
  10346. </productMenu>
  10347. <productMenu id="fmradio"
  10348. type="1" >
  10349. </productMenu>
  10350. <productMenu id="deviceSetting"
  10351. type="1"
  10352. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10353. <productMenuURL version="2.0.9"
  10354. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10355. />
  10356. </productMenu>
  10357. <productMenu id="quickGuide"
  10358. type="1"
  10359. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10360. size="934KB" >
  10361. </productMenu>
  10362. <productMenu id="userGuide"
  10363. type="1"
  10364. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10365. size="1.14MB" >
  10366. </productMenu>
  10367. <productMenu id="volume"
  10368. type="11" >
  10369. </productMenu>
  10370. <productMenu id="battery"
  10371. type="1" >
  10372. </productMenu>
  10373. <productID id="3213"
  10374. />
  10375. <productGroupable type="0"
  10376. />
  10377. </product>
  10378. <product id="HD50C"
  10379. name="H-D Audio 50C"
  10380. series="50"
  10381. latestVersion="1.0.1"
  10382. show = "0" >
  10383. <productMenu id="protocol"
  10384. type="2" >
  10385. </productMenu>
  10386. <productMenu id="ota"
  10387. type="0" >
  10388. </productMenu>
  10389. <productMenu id="wa"
  10390. type="1" >
  10391. </productMenu>
  10392. <productMenu id="sip"
  10393. type="1" >
  10394. </productMenu>
  10395. <productMenu id="meshIntercom"
  10396. type="20" >
  10397. </productMenu>
  10398. <productMenu id="meshIntercom+"
  10399. type="3"
  10400. url="0" >
  10401. <productMenuType version="1.0.9"
  10402. type="2"
  10403. />
  10404. </productMenu>
  10405. <productMenu id="bluetoothIntercom"
  10406. type="1" >
  10407. </productMenu>
  10408. <productMenu id="phone"
  10409. type="1" >
  10410. </productMenu>
  10411. <productMenu id="music"
  10412. type="1" >
  10413. </productMenu>
  10414. <productMenu id="fmradio"
  10415. type="1" >
  10416. </productMenu>
  10417. <productMenu id="deviceSetting"
  10418. type="1"
  10419. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10420. <productMenuURL version="1.0.9"
  10421. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10422. />
  10423. </productMenu>
  10424. <productMenu id="quickGuide"
  10425. type="1"
  10426. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10427. size="344KB" >
  10428. </productMenu>
  10429. <productMenu id="userGuide"
  10430. type="1"
  10431. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10432. size="3.41MB" >
  10433. </productMenu>
  10434. <productMenu id="volume"
  10435. type="11" >
  10436. </productMenu>
  10437. <productMenu id="battery"
  10438. type="1" >
  10439. </productMenu>
  10440. <productID id="3240"
  10441. />
  10442. <productGroupable type="0"
  10443. />
  10444. </product>
  10445. <product id="HD50S"
  10446. name="FURY N04"
  10447. series="Helmet"
  10448. latestVersion="1.0"
  10449. show = "0" >
  10450. <productMenu id="protocol"
  10451. type="2" >
  10452. </productMenu>
  10453. <productMenu id="alexa"
  10454. type="0" >
  10455. </productMenu>
  10456. <productMenu id="ota"
  10457. type="0" >
  10458. </productMenu>
  10459. <productMenu id="wa"
  10460. type="0" >
  10461. </productMenu>
  10462. <productMenu id="meshIntercom"
  10463. type="20" >
  10464. </productMenu>
  10465. <productMenu id="meshIntercom+"
  10466. type="3"
  10467. url="0" >
  10468. <productMenuType version="1.0.9"
  10469. type="2"
  10470. />
  10471. </productMenu>
  10472. <productMenu id="phone"
  10473. type="1" >
  10474. </productMenu>
  10475. <productMenu id="music"
  10476. type="1" >
  10477. </productMenu>
  10478. <productMenu id="fmradio"
  10479. type="1" >
  10480. </productMenu>
  10481. <productMenu id="deviceSetting"
  10482. type="1"
  10483. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10484. <productMenuURL version="1.0.9"
  10485. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10486. />
  10487. </productMenu>
  10488. <productMenu id="quickGuide"
  10489. type="1"
  10490. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10491. size="1.12MB" >
  10492. </productMenu>
  10493. <productMenu id="userGuide"
  10494. type="1"
  10495. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10496. size="2.0MB" >
  10497. </productMenu>
  10498. <productMenu id="volume"
  10499. type="13" >
  10500. </productMenu>
  10501. <productMenu id="battery"
  10502. type="1" >
  10503. </productMenu>
  10504. <productID id="5553"
  10505. />
  10506. <productGroupable type="0"
  10507. />
  10508. </product>
  10509. <product id="XCOM3Pro"
  10510. name="X-COM3 Pro"
  10511. series="50"
  10512. latestVersion="1.1"
  10513. show = "0" >
  10514. <productMenu id="protocol"
  10515. type="2" >
  10516. </productMenu>
  10517. <productMenu id="alexa"
  10518. type="0" >
  10519. </productMenu>
  10520. <productMenu id="ota"
  10521. type="0" >
  10522. </productMenu>
  10523. <productMenu id="wa"
  10524. type="0" >
  10525. </productMenu>
  10526. <productMenu id="sip"
  10527. type="1" >
  10528. </productMenu>
  10529. <productMenu id="meshIntercom"
  10530. type="30" >
  10531. </productMenu>
  10532. <productMenu id="meshIntercom+"
  10533. type="3"
  10534. url="2" >
  10535. <productMenuType version="1.1"
  10536. type="2"
  10537. />
  10538. </productMenu>
  10539. <productMenu id="waveIntercom"
  10540. type="1" >
  10541. <productMenuType version="1.1"
  10542. type="0"
  10543. />
  10544. </productMenu>
  10545. <productMenu id="bluetoothIntercom"
  10546. type="1" >
  10547. </productMenu>
  10548. <productMenu id="phone"
  10549. type="1" >
  10550. </productMenu>
  10551. <productMenu id="music"
  10552. type="1" >
  10553. </productMenu>
  10554. <productMenu id="fmradio"
  10555. type="1" >
  10556. </productMenu>
  10557. <productMenu id="deviceSetting"
  10558. type="1"
  10559. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10560. <productMenuURL version="1.1"
  10561. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10562. />
  10563. </productMenu>
  10564. <productMenu id="quickGuide"
  10565. type="0"
  10566. url=""
  10567. size="344KB" >
  10568. </productMenu>
  10569. <productMenu id="userGuide"
  10570. type="1"
  10571. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10572. size="3.41MB" >
  10573. </productMenu>
  10574. <productMenu id="volume"
  10575. type="11" >
  10576. </productMenu>
  10577. <productMenu id="battery"
  10578. type="1" >
  10579. </productMenu>
  10580. <productID id="321A"
  10581. />
  10582. <productGroupable type="0"
  10583. />
  10584. </product>
  10585. <product id="XCOM3"
  10586. name="X-COM3"
  10587. series="20"
  10588. latestVersion="1.0"
  10589. show = "0" >
  10590. <productMenu id="protocol"
  10591. type="2" >
  10592. </productMenu>
  10593. <productMenu id="sip"
  10594. type="1" >
  10595. </productMenu>
  10596. <productMenu id="bluetoothIntercom"
  10597. type="1" >
  10598. </productMenu>
  10599. <productMenu id="phone"
  10600. type="1" >
  10601. </productMenu>
  10602. <productMenu id="music"
  10603. type="1" >
  10604. </productMenu>
  10605. <productMenu id="fmradio"
  10606. type="1" >
  10607. </productMenu>
  10608. <productMenu id="deviceSetting"
  10609. type="1"
  10610. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10611. </productMenu>
  10612. <productMenu id="quickGuide"
  10613. type="0"
  10614. url=""
  10615. size="934KB" >
  10616. </productMenu>
  10617. <productMenu id="userGuide"
  10618. type="1"
  10619. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  10620. size="1.14MB" >
  10621. </productMenu>
  10622. <productMenu id="volume"
  10623. type="15" >
  10624. </productMenu>
  10625. <productID id="3410"
  10626. />
  10627. <productGroupable type="0"
  10628. />
  10629. </product>
  10630. <product id="X-COM2"
  10631. name="X-COM2"
  10632. series="20"
  10633. latestVersion="1.0.5"
  10634. show = "0" >
  10635. <productMenu id="protocol"
  10636. type="0">
  10637. </productMenu>
  10638. <productMenu id="sip"
  10639. type="1" >
  10640. </productMenu>
  10641. <productMenu id="bluetoothIntercom"
  10642. type="1" >
  10643. </productMenu>
  10644. <productMenu id="intercomSetting"
  10645. type="1" >
  10646. </productMenu>
  10647. <productMenu id="phone"
  10648. type="2" >
  10649. </productMenu>
  10650. <productMenu id="fmradio"
  10651. type="3" >
  10652. </productMenu>
  10653. <productMenu id="deviceSetting"
  10654. type="1"
  10655. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  10656. </productMenu>
  10657. <productMenu id="quickGuide"
  10658. type="1"
  10659. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  10660. size="796KB" >
  10661. </productMenu>
  10662. <productMenu id="userGuide"
  10663. type="1"
  10664. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  10665. size="1.90MB" >
  10666. </productMenu>
  10667. <productID id="2030"
  10668. />
  10669. <productGroupable type="1"
  10670. />
  10671. </product>
  10672. <product id="AVAABC"
  10673. name="AVA ABC"
  10674. series="SPIDER"
  10675. latestVersion="1.1"
  10676. show = "0" >
  10677. <productMenu id="protocol"
  10678. type="2" >
  10679. </productMenu>
  10680. <productMenu id="alexa"
  10681. type="0" >
  10682. </productMenu>
  10683. <productMenu id="ota"
  10684. type="0" >
  10685. <productMenuType version="1.0"
  10686. type="0"
  10687. />
  10688. <otaPackages>
  10689. <package
  10690. url="https://api.sena.com/support/OTA/"
  10691. size="2945812"
  10692. />
  10693. </otaPackages>
  10694. </productMenu>
  10695. <productMenu id="wa"
  10696. type="0" >
  10697. </productMenu>
  10698. <productMenu id="meshIntercom"
  10699. type="30" >
  10700. <productMenuType version="1.0"
  10701. type="20"
  10702. />
  10703. </productMenu>
  10704. <productMenu id="meshIntercom+"
  10705. type="3"
  10706. url="2" >
  10707. <productMenuType version="1.0"
  10708. type="2"
  10709. />
  10710. <productMenuURL version="1.0"
  10711. url="0"
  10712. />
  10713. </productMenu>
  10714. <productMenu id="waveIntercom"
  10715. type="1" >
  10716. <productMenuType version="1.0"
  10717. type="0"
  10718. />
  10719. </productMenu>
  10720. <productMenu id="phone"
  10721. type="1" >
  10722. </productMenu>
  10723. <productMenu id="music"
  10724. type="1" >
  10725. </productMenu>
  10726. <productMenu id="musicSharing"
  10727. type="0" >
  10728. </productMenu>
  10729. <productMenu id="deviceSetting"
  10730. type="1"
  10731. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  10732. <productMenuURL version="1.0"
  10733. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  10734. />
  10735. </productMenu>
  10736. <productMenu id="quickGuide"
  10737. type="1"
  10738. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  10739. size="1.12MB" >
  10740. </productMenu>
  10741. <productMenu id="userGuide"
  10742. type="1"
  10743. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  10744. size="2.0MB" >
  10745. </productMenu>
  10746. <productMenu id="volume"
  10747. type="12" >
  10748. </productMenu>
  10749. <productMenu id="battery"
  10750. type="1" >
  10751. </productMenu>
  10752. <productID id="6808"
  10753. />
  10754. <productGroupable type="0"
  10755. />
  10756. </product>
  10757. <product id="ADVANCEProCOM2"
  10758. name="ADVANCE ProCOM 2"
  10759. series="Helmet"
  10760. latestVersion="0.5"
  10761. latestVersionVoicePrompt="0.3"
  10762. show = "-1" >
  10763. <productMenu id="protocol"
  10764. type="2" >
  10765. </productMenu>
  10766. <productMenu id="ota"
  10767. type="2" >
  10768. <otaLanguages>
  10769. <otaLanguage
  10770. id="0"
  10771. name="English"
  10772. package="0"
  10773. />
  10774. <otaLanguage
  10775. id="0"
  10776. name="French"
  10777. package="1"
  10778. />
  10779. <otaLanguage
  10780. id="0"
  10781. name="Spanish"
  10782. package="2"
  10783. />
  10784. <otaLanguage
  10785. id="0"
  10786. name="Italian"
  10787. package="3"
  10788. />
  10789. <otaLanguage
  10790. id="0"
  10791. name="German"
  10792. package="4"
  10793. />
  10794. <otaLanguage
  10795. id="0"
  10796. name="Dutch"
  10797. package="5"
  10798. />
  10799. <otaLanguage
  10800. id="0"
  10801. name="Russian"
  10802. package="6"
  10803. />
  10804. <otaLanguage
  10805. id="0"
  10806. name="Chinese"
  10807. package="7"
  10808. />
  10809. <otaLanguage
  10810. id="0"
  10811. name="Korean"
  10812. package="8"
  10813. />
  10814. <otaLanguage
  10815. id="0"
  10816. name="Japanese"
  10817. package="9"
  10818. />
  10819. <otaLanguage
  10820. id="0"
  10821. name="Finnish"
  10822. package="10"
  10823. />
  10824. <otaLanguage
  10825. id="0"
  10826. name="Polish"
  10827. package="11"
  10828. />
  10829. </otaLanguages>
  10830. <otaPackages>
  10831. <package
  10832. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  10833. size="5183988"
  10834. />
  10835. <package
  10836. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  10837. size="5183988"
  10838. />
  10839. <package
  10840. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  10841. size="5183988"
  10842. />
  10843. <package
  10844. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  10845. size="5183988"
  10846. />
  10847. <package
  10848. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  10849. size="5183988"
  10850. />
  10851. <package
  10852. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  10853. size="5183988"
  10854. />
  10855. <package
  10856. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  10857. size="5183988"
  10858. />
  10859. <package
  10860. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  10861. size="5183988"
  10862. />
  10863. <package
  10864. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  10865. size="5183988"
  10866. />
  10867. <package
  10868. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  10869. size="5183988"
  10870. />
  10871. <package
  10872. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  10873. size="5183988"
  10874. />
  10875. <package
  10876. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  10877. size="5183988"
  10878. />
  10879. </otaPackages>
  10880. </productMenu>
  10881. <productMenu id="wa"
  10882. type="0" >
  10883. </productMenu>
  10884. <productMenu id="meshIntercom"
  10885. type="30" >
  10886. </productMenu>
  10887. <productMenu id="meshIntercom+"
  10888. type="3"
  10889. url="2" >
  10890. </productMenu>
  10891. <productMenu id="waveIntercom"
  10892. type="1" >
  10893. </productMenu>
  10894. <productMenu id="fmradio"
  10895. type="1" >
  10896. </productMenu>
  10897. <productMenu id="phone"
  10898. type="0" >
  10899. </productMenu>
  10900. <productMenu id="music"
  10901. type="1" >
  10902. </productMenu>
  10903. <productMenu id="musicSharing"
  10904. type="0" >
  10905. </productMenu>
  10906. <productMenu id="deviceSetting"
  10907. type="1"
  10908. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  10909. </productMenu>
  10910. <productMenu id="quickGuide"
  10911. type="0"
  10912. url=""
  10913. size="1.12MB" >
  10914. </productMenu>
  10915. <productMenu id="userGuide"
  10916. type="1"
  10917. url=""
  10918. size="2.0MB" >
  10919. </productMenu>
  10920. <productMenu id="videoGuide"
  10921. type="0"
  10922. url=""
  10923. size="3.41MB" >
  10924. </productMenu>
  10925. <productMenu id="connectGuide"
  10926. type="1"
  10927. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  10928. size="1.12MB" >
  10929. </productMenu>
  10930. <productMenu id="volume"
  10931. type="16" >
  10932. </productMenu>
  10933. <productMenu id="battery"
  10934. type="1" >
  10935. </productMenu>
  10936. <productID id="6A85"
  10937. />
  10938. <productGroupable type="0"
  10939. />
  10940. </product>
  10941. <product id="TRIUMPH60X"
  10942. name="TRIUMPH 60X"
  10943. series="60"
  10944. latestVersion="1.0"
  10945. latestVersionMesh="0.19"
  10946. latestVersionVoicePrompt="1.7"
  10947. show = "-1" >
  10948. <productMenu id="protocol"
  10949. type="2" >
  10950. </productMenu>
  10951. <productMenu id="ota"
  10952. type="0" >
  10953. <otaLanguages>
  10954. <otaLanguage
  10955. id="0"
  10956. name="English"
  10957. package="0"
  10958. />
  10959. <otaLanguage
  10960. id="0"
  10961. name="French"
  10962. package="1"
  10963. />
  10964. <otaLanguage
  10965. id="0"
  10966. name="Spanish"
  10967. package="2"
  10968. />
  10969. <otaLanguage
  10970. id="0"
  10971. name="Italian"
  10972. package="3"
  10973. />
  10974. <otaLanguage
  10975. id="0"
  10976. name="German"
  10977. package="4"
  10978. />
  10979. <otaLanguage
  10980. id="0"
  10981. name="Dutch"
  10982. package="5"
  10983. />
  10984. <otaLanguage
  10985. id="0"
  10986. name="Russian"
  10987. package="6"
  10988. />
  10989. <otaLanguage
  10990. id="0"
  10991. name="Chinese"
  10992. package="7"
  10993. />
  10994. <otaLanguage
  10995. id="0"
  10996. name="Korean"
  10997. package="8"
  10998. />
  10999. <otaLanguage
  11000. id="0"
  11001. name="Japanese"
  11002. package="9"
  11003. />
  11004. <otaLanguage
  11005. id="0"
  11006. name="Finnish"
  11007. package="10"
  11008. />
  11009. <otaLanguage
  11010. id="0"
  11011. name="Polish"
  11012. package="11"
  11013. />
  11014. </otaLanguages>
  11015. <otaPackages>
  11016. <package
  11017. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5.img"
  11018. size="5183988"
  11019. />
  11020. <package
  11021. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fr-FR.img"
  11022. size="5183988"
  11023. />
  11024. <package
  11025. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-es-ES.img"
  11026. size="5183988"
  11027. />
  11028. <package
  11029. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-it-IT.img"
  11030. size="5183988"
  11031. />
  11032. <package
  11033. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-de-DE.img"
  11034. size="5183988"
  11035. />
  11036. <package
  11037. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-nl-NL.img"
  11038. size="5183988"
  11039. />
  11040. <package
  11041. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ru-RU.img"
  11042. size="5183988"
  11043. />
  11044. <package
  11045. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-cmn-CN.img"
  11046. size="5183988"
  11047. />
  11048. <package
  11049. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ko-KR.img"
  11050. size="5183988"
  11051. />
  11052. <package
  11053. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ja-JP.img"
  11054. size="5183988"
  11055. />
  11056. <package
  11057. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fi-FI.img"
  11058. size="5183988"
  11059. />
  11060. <package
  11061. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-pl-PL.img"
  11062. size="5183988"
  11063. />
  11064. </otaPackages>
  11065. </productMenu>
  11066. <productMenu id="wa"
  11067. type="0" >
  11068. </productMenu>
  11069. <productMenu id="sip"
  11070. type="1" >
  11071. </productMenu>
  11072. <productMenu id="led"
  11073. type="1" >
  11074. </productMenu>
  11075. <productMenu id="illusion"
  11076. type="1" >
  11077. </productMenu>
  11078. <productMenu id="meshIntercom"
  11079. type="30" >
  11080. </productMenu>
  11081. <productMenu id="meshIntercom+"
  11082. type="3"
  11083. url="2" >
  11084. </productMenu>
  11085. <productMenu id="bluetoothIntercom"
  11086. type="1" >
  11087. </productMenu>
  11088. <productMenu id="fmradio"
  11089. type="1"
  11090. url="1" >
  11091. </productMenu>
  11092. <productMenu id="mic"
  11093. type="0" >
  11094. </productMenu>
  11095. <productMenu id="phone"
  11096. type="1" >
  11097. </productMenu>
  11098. <productMenu id="music"
  11099. type="1" >
  11100. </productMenu>
  11101. <productMenu id="musicSharing"
  11102. type="0" >
  11103. </productMenu>
  11104. <productMenu id="deviceSetting"
  11105. type="1"
  11106. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  11107. </productMenu>
  11108. <productMenu id="quickGuide"
  11109. type="0"
  11110. url=""
  11111. size="1.12MB" >
  11112. </productMenu>
  11113. <productMenu id="userGuide"
  11114. type="1"
  11115. url=""
  11116. size="2.0MB" >
  11117. </productMenu>
  11118. <productMenu id="videoGuide"
  11119. type="0"
  11120. url=""
  11121. size="3.41MB" >
  11122. </productMenu>
  11123. <productMenu id="keySettings"
  11124. type="1"
  11125. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  11126. </productMenu>
  11127. <productMenu id="volume"
  11128. type="13" >
  11129. </productMenu>
  11130. <productMenu id="volume+"
  11131. type="2"
  11132. url="0x6004" >
  11133. </productMenu>
  11134. <productMenu id="battery"
  11135. type="1" >
  11136. </productMenu>
  11137. <productID id="6A1C"
  11138. />
  11139. <productGroupable type="0"
  11140. />
  11141. </product>
  11142. <product id="Triumph_50S"
  11143. name="Triumph 50S"
  11144. series="50"
  11145. latestVersion="1.5"
  11146. show = "0" >
  11147. <productMenu id="protocol"
  11148. type="2" >
  11149. </productMenu>
  11150. <productMenu id="alexa"
  11151. type="0" >
  11152. </productMenu>
  11153. <productMenu id="ota"
  11154. type="0"
  11155. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11156. size="1150234" >
  11157. </productMenu>
  11158. <productMenu id="wa"
  11159. type="1" >
  11160. </productMenu>
  11161. <productMenu id="sip"
  11162. type="1" >
  11163. </productMenu>
  11164. <productMenu id="meshIntercom"
  11165. type="20" >
  11166. </productMenu>
  11167. <productMenu id="bluetoothIntercom"
  11168. type="1" >
  11169. </productMenu>
  11170. <productMenu id="meshIntercom+"
  11171. type="3"
  11172. url="2" >
  11173. <productMenuType version="1.2.9"
  11174. type="2"
  11175. />
  11176. <productMenuURL version="1.2.9"
  11177. url="0"
  11178. />
  11179. </productMenu>
  11180. <productMenu id="waveIntercom"
  11181. type="1" >
  11182. <productMenuType version="1.2.9"
  11183. type="0"
  11184. />
  11185. </productMenu>
  11186. <productMenu id="phone"
  11187. type="1" >
  11188. </productMenu>
  11189. <productMenu id="music"
  11190. type="1" >
  11191. </productMenu>
  11192. <productMenu id="fmradio"
  11193. type="1" >
  11194. </productMenu>
  11195. <productMenu id="deviceSetting"
  11196. type="1"
  11197. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11198. <productMenuURL version="1.2.9"
  11199. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  11200. />
  11201. <productMenuURL version="1.0"
  11202. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11203. />
  11204. </productMenu>
  11205. <productMenu id="quickGuide"
  11206. type="1"
  11207. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  11208. size="934KB" >
  11209. </productMenu>
  11210. <productMenu id="userGuide"
  11211. type="1"
  11212. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  11213. size="1.14MB" >
  11214. </productMenu>
  11215. <productMenu id="volume"
  11216. type="11" >
  11217. </productMenu>
  11218. <productMenu id="battery"
  11219. type="1" >
  11220. </productMenu>
  11221. <productID id="3264"
  11222. />
  11223. <productGroupable type="0"
  11224. />
  11225. </product>
  11226. <product id="RE50S"
  11227. name="RE 50S"
  11228. series="50"
  11229. latestVersion="2.7"
  11230. show = "0" >
  11231. <productMenu id="protocol"
  11232. type="2" >
  11233. </productMenu>
  11234. <productMenu id="alexa"
  11235. type="0" >
  11236. </productMenu>
  11237. <productMenu id="ota"
  11238. type="0"
  11239. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11240. size="1150234" >
  11241. </productMenu>
  11242. <productMenu id="wa"
  11243. type="1" >
  11244. </productMenu>
  11245. <productMenu id="sip"
  11246. type="1" >
  11247. </productMenu>
  11248. <productMenu id="meshIntercom"
  11249. type="30" >
  11250. </productMenu>
  11251. <productMenu id="meshIntercom+"
  11252. type="3"
  11253. url="2" >
  11254. <productMenuType version="2.5"
  11255. type="2"
  11256. />
  11257. </productMenu>
  11258. <productMenu id="waveIntercom"
  11259. type="1" >
  11260. <productMenuType version="2.5"
  11261. type="0"
  11262. />
  11263. </productMenu>
  11264. <productMenu id="bluetoothIntercom"
  11265. type="1" >
  11266. </productMenu>
  11267. <productMenu id="phone"
  11268. type="1" >
  11269. </productMenu>
  11270. <productMenu id="music"
  11271. type="1" >
  11272. </productMenu>
  11273. <productMenu id="fmradio"
  11274. type="1" >
  11275. </productMenu>
  11276. <productMenu id="deviceSetting"
  11277. type="1"
  11278. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11279. <productMenuURL version="2.5.9"
  11280. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11281. />
  11282. </productMenu>
  11283. <productMenu id="quickGuide"
  11284. type="1"
  11285. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11286. size="934KB" >
  11287. </productMenu>
  11288. <productMenu id="userGuide"
  11289. type="1"
  11290. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11291. size="1.14MB" >
  11292. </productMenu>
  11293. <productMenu id="videoGuide"
  11294. type="0"
  11295. url=""
  11296. size="3.41MB" >
  11297. </productMenu>
  11298. <productMenu id="volume"
  11299. type="11" >
  11300. </productMenu>
  11301. <productMenu id="battery"
  11302. type="1" >
  11303. </productMenu>
  11304. <productID id="321C"
  11305. />
  11306. <productGroupable type="0"
  11307. />
  11308. </product>
  11309. <product id="BMW_HELMET_II_U1"
  11310. name="BMW HELMET II U1"
  11311. series="50"
  11312. latestVersion="1.0"
  11313. show = "0" >
  11314. <productMenu id="protocol"
  11315. type="2" >
  11316. </productMenu>
  11317. <productMenu id="alexa"
  11318. type="0" >
  11319. </productMenu>
  11320. <productMenu id="sip"
  11321. type="1" >
  11322. </productMenu>
  11323. <productMenu id="meshIntercom"
  11324. type="20" >
  11325. </productMenu>
  11326. <productMenu id="bluetoothIntercom"
  11327. type="1" >
  11328. </productMenu>
  11329. <productMenu id="bluetoothIntercom2"
  11330. type="1" >
  11331. </productMenu>
  11332. <productMenu id="phone"
  11333. type="1" >
  11334. </productMenu>
  11335. <productMenu id="music"
  11336. type="1" >
  11337. </productMenu>
  11338. <productMenu id="fmradio"
  11339. type="1" >
  11340. </productMenu>
  11341. <productMenu id="deviceSetting"
  11342. type="1"
  11343. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11344. </productMenu>
  11345. <productMenu id="quickGuide"
  11346. type="1"
  11347. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11348. size="934KB" >
  11349. </productMenu>
  11350. <productMenu id="userGuide"
  11351. type="1"
  11352. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11353. size="1.14MB" >
  11354. </productMenu>
  11355. <productMenu id="volume"
  11356. type="11" >
  11357. </productMenu>
  11358. <productMenu id="battery"
  11359. type="1" >
  11360. </productMenu>
  11361. <productID id="3260"
  11362. />
  11363. <productGroupable type="0"
  11364. />
  11365. </product>
  11366. <product id="OUTRUSHR"
  11367. name="CX935"
  11368. series="Helmet"
  11369. latestVersion="2.1"
  11370. show = "-1" >
  11371. <productMenu id="protocol"
  11372. type="3">
  11373. </productMenu>
  11374. <productMenu id="sip"
  11375. type="1" >
  11376. </productMenu>
  11377. <productMenu id="bluetoothIntercom"
  11378. type="1" >
  11379. </productMenu>
  11380. <productMenu id="phone"
  11381. type="1" >
  11382. </productMenu>
  11383. <productMenu id="fmradio"
  11384. type="0" >
  11385. </productMenu>
  11386. <productMenu id="deviceSetting"
  11387. type="1"
  11388. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11389. </productMenu>
  11390. <productMenu id="userGuide"
  11391. type="1"
  11392. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11393. size="660KB" >
  11394. </productMenu>
  11395. <productID id="5446"
  11396. />
  11397. <productGroupable type="0"
  11398. />
  11399. </product>
  11400. <product id="LSE_01"
  11401. name="LSE-01"
  11402. series="SF"
  11403. latestVersion="1.2.3"
  11404. show = "0" >
  11405. <productMenu id="protocol"
  11406. type="1"
  11407. url="3">
  11408. </productMenu>
  11409. <productMenu id="sip"
  11410. type="1" >
  11411. </productMenu>
  11412. <productMenu id="bluetoothIntercom"
  11413. type="1" >
  11414. </productMenu>
  11415. <productMenu id="phone"
  11416. type="1" >
  11417. </productMenu>
  11418. <productMenu id="music"
  11419. type="1" >
  11420. </productMenu>
  11421. <productMenu id="fmradio"
  11422. type="1" >
  11423. </productMenu>
  11424. <productMenu id="deviceSetting"
  11425. type="1"
  11426. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11427. <productMenuURL version="1.1"
  11428. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11429. />
  11430. <productMenuURL version="1.0"
  11431. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11432. />
  11433. </productMenu>
  11434. <productMenu id="quickGuide"
  11435. type="1"
  11436. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11437. size="607KB" >
  11438. </productMenu>
  11439. <productMenu id="userGuide"
  11440. type="1"
  11441. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11442. size="1.91MB" >
  11443. </productMenu>
  11444. <productMenu id="volume"
  11445. type="4" >
  11446. </productMenu>
  11447. <productID id="5416"
  11448. />
  11449. <productGroupable type="0"
  11450. />
  11451. </product>
  11452. <product id="AGV_ARK"
  11453. name="AGV ARK"
  11454. series="SF"
  11455. latestVersion="1.0.3"
  11456. show = "0" >
  11457. <productMenu id="protocol"
  11458. type="1"
  11459. url="3">
  11460. </productMenu>
  11461. <productMenu id="sip"
  11462. type="1" >
  11463. </productMenu>
  11464. <productMenu id="bluetoothIntercom"
  11465. type="1" >
  11466. </productMenu>
  11467. <productMenu id="phone"
  11468. type="1" >
  11469. </productMenu>
  11470. <productMenu id="music"
  11471. type="1" >
  11472. </productMenu>
  11473. <productMenu id="fmradio"
  11474. type="1" >
  11475. </productMenu>
  11476. <productMenu id="deviceSetting"
  11477. type="1"
  11478. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11479. </productMenu>
  11480. <productMenu id="quickGuide"
  11481. type="1"
  11482. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11483. size="607KB" >
  11484. </productMenu>
  11485. <productMenu id="userGuide"
  11486. type="1"
  11487. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11488. size="1.91MB" >
  11489. </productMenu>
  11490. <productMenu id="volume"
  11491. type="4" >
  11492. </productMenu>
  11493. <productID id="5420"
  11494. />
  11495. <productGroupable type="0"
  11496. />
  11497. </product>
  11498. <product id="KLIM_KRIOS"
  11499. name="KLIM Krios"
  11500. series="10"
  11501. latestVersion="1.1.2"
  11502. show = "0" >
  11503. <productMenu id="protocol"
  11504. type="0">
  11505. </productMenu>
  11506. <productMenu id="sip"
  11507. type="1" >
  11508. </productMenu>
  11509. <productMenu id="bluetoothIntercom"
  11510. type="1" >
  11511. </productMenu>
  11512. <productMenu id="phone"
  11513. type="2" >
  11514. </productMenu>
  11515. <productMenu id="fmradio"
  11516. type="3" >
  11517. </productMenu>
  11518. <productMenu id="deviceSetting"
  11519. type="1"
  11520. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11521. <productMenuURL version="1.0"
  11522. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11523. />
  11524. </productMenu>
  11525. <productMenu id="quickGuide"
  11526. type="1"
  11527. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11528. size="649KB" >
  11529. </productMenu>
  11530. <productMenu id="userGuide"
  11531. type="1"
  11532. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11533. size="1.43MB" >
  11534. </productMenu>
  11535. <productID id="5910"
  11536. />
  11537. <productGroupable type="0"
  11538. />
  11539. </product>
  11540. <product id="POLARIS_SLINGSHOT"
  11541. name="Polaris Slingshot"
  11542. series="10"
  11543. latestVersion="1.1.2"
  11544. show = "0" >
  11545. <productMenu id="protocol"
  11546. type="0">
  11547. </productMenu>
  11548. <productMenu id="sip"
  11549. type="1" >
  11550. </productMenu>
  11551. <productMenu id="bluetoothIntercom"
  11552. type="1" >
  11553. </productMenu>
  11554. <productMenu id="phone"
  11555. type="2" >
  11556. </productMenu>
  11557. <productMenu id="fmradio"
  11558. type="3" >
  11559. </productMenu>
  11560. <productMenu id="deviceSetting"
  11561. type="1"
  11562. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11563. <productMenuURL version="1.0"
  11564. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11565. />
  11566. </productMenu>
  11567. <productMenu id="quickGuide"
  11568. type="1"
  11569. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11570. size="689KB" >
  11571. </productMenu>
  11572. <productMenu id="userGuide"
  11573. type="1"
  11574. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11575. size="1.43MB" >
  11576. </productMenu>
  11577. <productID id="5920"
  11578. />
  11579. <productGroupable type="0"
  11580. />
  11581. </product>
  11582. <product id="DWO6"
  11583. name="SEDICI DWO6-PRO"
  11584. series="10"
  11585. latestVersion="1.0.2"
  11586. show = "0" >
  11587. <productMenu id="protocol"
  11588. type="0">
  11589. </productMenu>
  11590. <productMenu id="sip"
  11591. type="1" >
  11592. </productMenu>
  11593. <productMenu id="bluetoothIntercom"
  11594. type="1" >
  11595. </productMenu>
  11596. <productMenu id="phone"
  11597. type="2" >
  11598. </productMenu>
  11599. <productMenu id="fmradio"
  11600. type="3" >
  11601. </productMenu>
  11602. <productMenu id="deviceSetting"
  11603. type="1"
  11604. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  11605. </productMenu>
  11606. <productMenu id="quickGuide"
  11607. type="1"
  11608. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11609. size="529KB" >
  11610. </productMenu>
  11611. <productMenu id="userGuide"
  11612. type="1"
  11613. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11614. size="4.09MB" >
  11615. </productMenu>
  11616. <productID id="6112"
  11617. />
  11618. <productGroupable type="0"
  11619. />
  11620. </product>
  11621. <product id="DWO6A"
  11622. name="SEDICI DWO-6"
  11623. series="10"
  11624. latestVersion="1.0.2"
  11625. show = "0" >
  11626. <productMenu id="protocol"
  11627. type="0">
  11628. </productMenu>
  11629. <productMenu id="sip"
  11630. type="1" >
  11631. </productMenu>
  11632. <productMenu id="bluetoothIntercom"
  11633. type="1" >
  11634. </productMenu>
  11635. <productMenu id="phone"
  11636. type="2" >
  11637. </productMenu>
  11638. <productMenu id="fmradio"
  11639. type="3" >
  11640. </productMenu>
  11641. <productMenu id="deviceSetting"
  11642. type="1"
  11643. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  11644. </productMenu>
  11645. <productMenu id="quickGuide"
  11646. type="1"
  11647. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  11648. size="522KB" >
  11649. </productMenu>
  11650. <productMenu id="userGuide"
  11651. type="1"
  11652. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  11653. size="2.71MB" >
  11654. </productMenu>
  11655. <productID id="6114"
  11656. />
  11657. <productGroupable type="0"
  11658. />
  11659. </product>
  11660. <product id="3SPLUS"
  11661. name="ZILL"
  11662. series="3"
  11663. latestVersion="1.0.4"
  11664. show = "0" >
  11665. <productMenu id="protocol"
  11666. type="0">
  11667. </productMenu>
  11668. <productMenu id="sip"
  11669. type="1" >
  11670. </productMenu>
  11671. <productMenu id="bluetoothIntercom"
  11672. type="1" >
  11673. </productMenu>
  11674. <productMenu id="deviceSetting"
  11675. type="1"
  11676. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  11677. </productMenu>
  11678. <productMenu id="quickGuide"
  11679. type="1"
  11680. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11681. size="842KB" >
  11682. </productMenu>
  11683. <productMenu id="userGuide"
  11684. type="1"
  11685. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  11686. size="1.02MB" >
  11687. </productMenu>
  11688. <productID id="6335"
  11689. />
  11690. <productGroupable type="0"
  11691. />
  11692. </product>
  11693. <product id="HD50S"
  11694. name="Boom! Audio 30K"
  11695. series="30"
  11696. latestVersion="3.4"
  11697. show = "0" >
  11698. <productMenu id="protocol"
  11699. type="1"
  11700. url="0">
  11701. </productMenu>
  11702. <productMenu id="wa"
  11703. type="0" >
  11704. </productMenu>
  11705. <productMenu id="sip"
  11706. type="1" >
  11707. </productMenu>
  11708. <productMenu id="meshIntercom"
  11709. type="20" >
  11710. <productMenuType version="2.9.9"
  11711. type="10"
  11712. />
  11713. </productMenu>
  11714. <productMenu id="bluetoothIntercom"
  11715. type="1" >
  11716. </productMenu>
  11717. <productMenu id="phone"
  11718. type="1" >
  11719. </productMenu>
  11720. <productMenu id="music"
  11721. type="1" >
  11722. </productMenu>
  11723. <productMenu id="fmradio"
  11724. type="1" >
  11725. </productMenu>
  11726. <productMenu id="deviceSetting"
  11727. type="1"
  11728. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  11729. <productMenuURL version="3.2"
  11730. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  11731. />
  11732. <productMenuURL version="3.0"
  11733. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  11734. />
  11735. <productMenuURL version="2.2"
  11736. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11737. />
  11738. </productMenu>
  11739. <productMenu id="quickGuide"
  11740. type="1"
  11741. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11742. size="1.06MB" >
  11743. </productMenu>
  11744. <productMenu id="userGuide"
  11745. type="1"
  11746. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11747. size="3.15MB" >
  11748. </productMenu>
  11749. <productMenu id="volume"
  11750. type="1" >
  11751. </productMenu>
  11752. <productID id="3112"
  11753. />
  11754. <productGroupable type="0"
  11755. />
  11756. </product>
  11757. <product id="HD50S"
  11758. name="Boom! Audio N02"
  11759. series="30"
  11760. latestVersion="3.1"
  11761. show = "0" >
  11762. <productMenu id="protocol"
  11763. type="1"
  11764. url="0">
  11765. </productMenu>
  11766. <productMenu id="wa"
  11767. type="2" >
  11768. </productMenu>
  11769. <productMenu id="sip"
  11770. type="1" >
  11771. </productMenu>
  11772. <productMenu id="meshIntercom"
  11773. type="20" >
  11774. <productMenuType version="2.9.9"
  11775. type="10"
  11776. />
  11777. </productMenu>
  11778. <productMenu id="bluetoothIntercom"
  11779. type="1" >
  11780. </productMenu>
  11781. <productMenu id="phone"
  11782. type="1" >
  11783. </productMenu>
  11784. <productMenu id="music"
  11785. type="1" >
  11786. </productMenu>
  11787. <productMenu id="fmradio"
  11788. type="1" >
  11789. </productMenu>
  11790. <productMenu id="deviceSetting"
  11791. type="1"
  11792. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  11793. <productMenuURL version="2.2"
  11794. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11795. />
  11796. </productMenu>
  11797. <productMenu id="quickGuide"
  11798. type="1"
  11799. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  11800. size="1.06MB" >
  11801. </productMenu>
  11802. <productMenu id="userGuide"
  11803. type="1"
  11804. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  11805. size="3.15MB" >
  11806. </productMenu>
  11807. <productMenu id="volume"
  11808. type="2" >
  11809. </productMenu>
  11810. <productID id="3114"
  11811. />
  11812. <productGroupable type="0"
  11813. />
  11814. </product>
  11815. <product id="HD50S"
  11816. name="Boom Audio 20S"
  11817. series="50"
  11818. latestVersion="2.5.2"
  11819. show = "0" >
  11820. <productMenu id="protocol"
  11821. type="0">
  11822. </productMenu>
  11823. <productMenu id="sip"
  11824. type="1" >
  11825. <productMenuType version="1.0"
  11826. type="0"
  11827. />
  11828. </productMenu>
  11829. <productMenu id="bluetoothIntercom"
  11830. type="1" >
  11831. <productMenuType version="1.0"
  11832. type="0"
  11833. />
  11834. </productMenu>
  11835. <productMenu id="intercomSetting"
  11836. type="1" >
  11837. </productMenu>
  11838. <productMenu id="phone"
  11839. type="2" >
  11840. </productMenu>
  11841. <productMenu id="fmradio"
  11842. type="3" >
  11843. </productMenu>
  11844. <productMenu id="deviceSetting"
  11845. type="1"
  11846. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11847. <productMenuURL version="2.4"
  11848. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11849. />
  11850. <productMenuURL version="1.5"
  11851. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11852. />
  11853. <productMenuURL version="1.4.1"
  11854. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11855. />
  11856. <productMenuURL version="1.1"
  11857. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11858. />
  11859. <productMenuURL version="1.0"
  11860. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11861. />
  11862. </productMenu>
  11863. <productMenu id="quickGuide"
  11864. type="1"
  11865. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11866. size="264KB" >
  11867. </productMenu>
  11868. <productMenu id="userGuide"
  11869. type="1"
  11870. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11871. size="3.09MB" >
  11872. </productMenu>
  11873. <productMenu id="connectGuide"
  11874. type="1"
  11875. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  11876. size="1.12MB" >
  11877. </productMenu>
  11878. <productID id="4210"
  11879. />
  11880. <productProductKey key="11"
  11881. />
  11882. <productID id="4230"
  11883. />
  11884. <productProductKey key="11"
  11885. />
  11886. <productGroupable type="1"
  11887. />
  11888. </product>
  11889. <product id="HD50S"
  11890. name="Boom Audio 20S EVO"
  11891. series="50"
  11892. latestVersion="2.5.2"
  11893. show = "0" >
  11894. <productMenu id="protocol"
  11895. type="0">
  11896. </productMenu>
  11897. <productMenu id="sip"
  11898. type="1" >
  11899. <productMenuType version="1.0"
  11900. type="0"
  11901. />
  11902. </productMenu>
  11903. <productMenu id="bluetoothIntercom"
  11904. type="1" >
  11905. <productMenuType version="1.0"
  11906. type="0"
  11907. />
  11908. </productMenu>
  11909. <productMenu id="intercomSetting"
  11910. type="1" >
  11911. </productMenu>
  11912. <productMenu id="phone"
  11913. type="2" >
  11914. </productMenu>
  11915. <productMenu id="fmradio"
  11916. type="3" >
  11917. </productMenu>
  11918. <productMenu id="deviceSetting"
  11919. type="1"
  11920. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11921. <productMenuURL version="2.4"
  11922. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11923. />
  11924. <productMenuURL version="1.5"
  11925. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11926. />
  11927. <productMenuURL version="1.4.1"
  11928. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11929. />
  11930. <productMenuURL version="1.1"
  11931. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11932. />
  11933. <productMenuURL version="1.0"
  11934. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11935. />
  11936. </productMenu>
  11937. <productMenu id="quickGuide"
  11938. type="1"
  11939. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11940. size="321KB" >
  11941. </productMenu>
  11942. <productMenu id="userGuide"
  11943. type="1"
  11944. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11945. size="2.46MB" >
  11946. </productMenu>
  11947. <productID id="4230"
  11948. />
  11949. <productProductKey key="27"
  11950. />
  11951. <productGroupable type="1"
  11952. />
  11953. </product>
  11954. <product id="HD50S"
  11955. name="Boom! Audio 10S"
  11956. series="50"
  11957. latestVersion="1.1.3"
  11958. show = "0" >
  11959. <productMenu id="protocol"
  11960. type="0">
  11961. </productMenu>
  11962. <productMenu id="sip"
  11963. type="1" >
  11964. </productMenu>
  11965. <productMenu id="bluetoothIntercom"
  11966. type="1" >
  11967. </productMenu>
  11968. <productMenu id="phone"
  11969. type="2" >
  11970. </productMenu>
  11971. <productMenu id="fmradio"
  11972. type="3" >
  11973. </productMenu>
  11974. <productMenu id="deviceSetting"
  11975. type="1"
  11976. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  11977. </productMenu>
  11978. <productMenu id="quickGuide"
  11979. type="1"
  11980. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11981. size="538KB" >
  11982. </productMenu>
  11983. <productMenu id="userGuide"
  11984. type="1"
  11985. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11986. size="1.55MB" >
  11987. </productMenu>
  11988. <productID id="5532"
  11989. />
  11990. <productGroupable type="0"
  11991. />
  11992. </product>
  11993. <product id="HD50S"
  11994. name="Boom! Audio N01 10R"
  11995. series="50"
  11996. latestVersion="1.1.3"
  11997. show = "0" >
  11998. <productMenu id="protocol"
  11999. type="0">
  12000. </productMenu>
  12001. <productMenu id="sip"
  12002. type="1" >
  12003. </productMenu>
  12004. <productMenu id="bluetoothIntercom"
  12005. type="1" >
  12006. </productMenu>
  12007. <productMenu id="phone"
  12008. type="2" >
  12009. </productMenu>
  12010. <productMenu id="fmradio"
  12011. type="3" >
  12012. </productMenu>
  12013. <productMenu id="deviceSetting"
  12014. type="1"
  12015. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  12016. </productMenu>
  12017. <productMenu id="quickGuide"
  12018. type="1"
  12019. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12020. size="766KB" >
  12021. </productMenu>
  12022. <productMenu id="userGuide"
  12023. type="1"
  12024. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12025. size="1.45MB" >
  12026. </productMenu>
  12027. <productID id="5522"
  12028. />
  12029. <productGroupable type="0"
  12030. />
  12031. </product>
  12032. <product id="HD50S"
  12033. name="OUTRUSH-R N03"
  12034. series="50"
  12035. latestVersion="1.2.1"
  12036. show = "-1" >
  12037. <productMenu id="protocol"
  12038. type="0">
  12039. </productMenu>
  12040. <productMenu id="sip"
  12041. type="1" >
  12042. </productMenu>
  12043. <productMenu id="bluetoothIntercom"
  12044. type="1" >
  12045. </productMenu>
  12046. <productMenu id="phone"
  12047. type="2" >
  12048. </productMenu>
  12049. <productMenu id="fmradio"
  12050. type="3" >
  12051. </productMenu>
  12052. <productMenu id="deviceSetting"
  12053. type="1"
  12054. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  12055. </productMenu>
  12056. <productMenu id="userGuide"
  12057. type="1"
  12058. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  12059. size="660KB" >
  12060. </productMenu>
  12061. <productID id="5434"
  12062. />
  12063. <productGroupable type="0"
  12064. />
  12065. </product>
  12066. <product id="HD50S"
  12067. name="OUTRUSH-R N03"
  12068. series="50"
  12069. latestVersion="2.0"
  12070. show = "0" >
  12071. <productMenu id="protocol"
  12072. type="3" >
  12073. </productMenu>
  12074. <productMenu id="sip"
  12075. type="1" >
  12076. </productMenu>
  12077. <productMenu id="bluetoothIntercom"
  12078. type="1" >
  12079. </productMenu>
  12080. <productMenu id="phone"
  12081. type="1" >
  12082. </productMenu>
  12083. <productMenu id="fmradio"
  12084. type="1" >
  12085. </productMenu>
  12086. <productMenu id="deviceSetting"
  12087. type="1"
  12088. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  12089. </productMenu>
  12090. <productMenu id="userGuide"
  12091. type="1"
  12092. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  12093. size="1.14MB" >
  12094. </productMenu>
  12095. <productID id="5441"
  12096. />
  12097. <productGroupable type="0"
  12098. />
  12099. </product>
  12100. <product id="5R"
  12101. name="5R"
  12102. series="5"
  12103. latestVersion="1.0.1"
  12104. show = "1" >
  12105. <productMenu id="protocol"
  12106. type="3" >
  12107. </productMenu>
  12108. <productMenu id="sip"
  12109. type="1" >
  12110. </productMenu>
  12111. <productMenu id="bluetoothIntercom"
  12112. type="1" >
  12113. </productMenu>
  12114. <productMenu id="phone"
  12115. type="1" >
  12116. </productMenu>
  12117. <productMenu id="fmradio"
  12118. type="1" >
  12119. </productMenu>
  12120. <productMenu id="deviceSetting"
  12121. type="1"
  12122. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12123. </productMenu>
  12124. <productMenu id="quickGuide"
  12125. type="0"
  12126. url=""
  12127. size="934KB" >
  12128. </productMenu>
  12129. <productMenu id="userGuide"
  12130. type="1"
  12131. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  12132. size="1.14MB" >
  12133. </productMenu>
  12134. <productMenu id="connectGuide"
  12135. type="1"
  12136. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12137. size="1.12MB" >
  12138. </productMenu>
  12139. <productID id="5591"
  12140. />
  12141. <productGroupable type="0"
  12142. />
  12143. </product>
  12144. <product id="5R"
  12145. name="5R LITE"
  12146. series="5"
  12147. latestVersion="1.0.1"
  12148. show = "1" >
  12149. <productMenu id="protocol"
  12150. type="3" >
  12151. </productMenu>
  12152. <productMenu id="sip"
  12153. type="1" >
  12154. </productMenu>
  12155. <productMenu id="bluetoothIntercom"
  12156. type="1" >
  12157. </productMenu>
  12158. <productMenu id="phone"
  12159. type="1" >
  12160. </productMenu>
  12161. <productMenu id="fmradio"
  12162. type="1" >
  12163. </productMenu>
  12164. <productMenu id="deviceSetting"
  12165. type="1"
  12166. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12167. </productMenu>
  12168. <productMenu id="quickGuide"
  12169. type="0"
  12170. url=""
  12171. size="934KB" >
  12172. </productMenu>
  12173. <productMenu id="userGuide"
  12174. type="1"
  12175. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12176. size="1.14MB" >
  12177. </productMenu>
  12178. <productMenu id="connectGuide"
  12179. type="1"
  12180. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12181. size="1.12MB" >
  12182. </productMenu>
  12183. <productID id="5592"
  12184. />
  12185. <productGroupable type="0"
  12186. />
  12187. </product>
  12188. <product id="50RLE"
  12189. name="50R LE"
  12190. series="50"
  12191. latestVersion="1.1"
  12192. show = "0" >
  12193. <productMenu id="protocol"
  12194. type="2" >
  12195. </productMenu>
  12196. <productMenu id="alexa"
  12197. type="0" >
  12198. </productMenu>
  12199. <productMenu id="sip"
  12200. type="1" >
  12201. </productMenu>
  12202. <productMenu id="meshIntercom"
  12203. type="30" >
  12204. </productMenu>
  12205. <productMenu id="meshIntercom+"
  12206. type="3"
  12207. url="2" >
  12208. <productMenuType version="1.0.9"
  12209. type="2"
  12210. />
  12211. </productMenu>
  12212. <productMenu id="waveIntercom"
  12213. type="1" >
  12214. <productMenuType version="1.0.9"
  12215. type="0"
  12216. />
  12217. </productMenu>
  12218. <productMenu id="bluetoothIntercom"
  12219. type="1" >
  12220. </productMenu>
  12221. <productMenu id="phone"
  12222. type="1" >
  12223. </productMenu>
  12224. <productMenu id="music"
  12225. type="1" >
  12226. </productMenu>
  12227. <productMenu id="fmradio"
  12228. type="0" >
  12229. </productMenu>
  12230. <productMenu id="deviceSetting"
  12231. type="1"
  12232. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  12233. <productMenuURL version="1.0.9"
  12234. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  12235. />
  12236. </productMenu>
  12237. <productMenu id="quickGuide"
  12238. type="0"
  12239. url=""
  12240. size="344KB" >
  12241. </productMenu>
  12242. <productMenu id="userGuide"
  12243. type="0"
  12244. url=""
  12245. size="3.41MB" >
  12246. </productMenu>
  12247. <productMenu id="volume"
  12248. type="11" >
  12249. </productMenu>
  12250. <productMenu id="battery"
  12251. type="1" >
  12252. </productMenu>
  12253. <productID id="3223"
  12254. />
  12255. <productGroupable type="0"
  12256. />
  12257. </product>
  12258. <product id="5RLOUIS"
  12259. name="5R LOUIS EDITION"
  12260. series="5"
  12261. latestVersion="1.0"
  12262. show = "-1" >
  12263. <productMenu id="protocol"
  12264. type="3" >
  12265. </productMenu>
  12266. <productMenu id="sip"
  12267. type="1" >
  12268. </productMenu>
  12269. <productMenu id="bluetoothIntercom"
  12270. type="1" >
  12271. </productMenu>
  12272. <productMenu id="phone"
  12273. type="1" >
  12274. </productMenu>
  12275. <productMenu id="fmradio"
  12276. type="1" >
  12277. </productMenu>
  12278. <productMenu id="deviceSetting"
  12279. type="1"
  12280. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12281. </productMenu>
  12282. <productMenu id="quickGuide"
  12283. type="0"
  12284. url=""
  12285. size="934KB" >
  12286. </productMenu>
  12287. <productMenu id="userGuide"
  12288. type="0"
  12289. url=""
  12290. size="1.14MB" >
  12291. </productMenu>
  12292. <productID id="5597"
  12293. />
  12294. <productGroupable type="0"
  12295. />
  12296. </product>
  12297. <product id="5S"
  12298. name="Ridekont 5S"
  12299. series="5"
  12300. latestVersion="2.3"
  12301. show = "-1" >
  12302. <productMenu id="protocol"
  12303. type="3" >
  12304. </productMenu>
  12305. <productMenu id="sip"
  12306. type="1" >
  12307. </productMenu>
  12308. <productMenu id="bluetoothIntercom"
  12309. type="1" >
  12310. </productMenu>
  12311. <productMenu id="phone"
  12312. type="1" >
  12313. </productMenu>
  12314. <productMenu id="fmradio"
  12315. type="0" >
  12316. </productMenu>
  12317. <productMenu id="deviceSetting"
  12318. type="1"
  12319. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12320. </productMenu>
  12321. <productMenu id="quickGuide"
  12322. type="0"
  12323. url=""
  12324. size="934KB" >
  12325. </productMenu>
  12326. <productMenu id="userGuide"
  12327. type="1"
  12328. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12329. size="1.14MB" >
  12330. </productMenu>
  12331. <productID id="5589"
  12332. />
  12333. <productGroupable type="0"
  12334. />
  12335. </product>
  12336. <product id="5R"
  12337. name="Ridekont 5R"
  12338. series="5"
  12339. latestVersion="1.0"
  12340. show = "0" >
  12341. <productMenu id="protocol"
  12342. type="3" >
  12343. </productMenu>
  12344. <productMenu id="sip"
  12345. type="1" >
  12346. </productMenu>
  12347. <productMenu id="bluetoothIntercom"
  12348. type="1" >
  12349. </productMenu>
  12350. <productMenu id="phone"
  12351. type="1" >
  12352. </productMenu>
  12353. <productMenu id="fmradio"
  12354. type="1" >
  12355. </productMenu>
  12356. <productMenu id="deviceSetting"
  12357. type="1"
  12358. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12359. </productMenu>
  12360. <productMenu id="quickGuide"
  12361. type="1"
  12362. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12363. size="934KB" >
  12364. </productMenu>
  12365. <productMenu id="userGuide"
  12366. type="1"
  12367. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12368. size="1.14MB" >
  12369. </productMenu>
  12370. <productID id="5593"
  12371. />
  12372. <productGroupable type="0"
  12373. />
  12374. </product>
  12375. <product id="5R"
  12376. name="Ridekont 5R LITE"
  12377. series="5"
  12378. latestVersion="1.0"
  12379. show = "0" >
  12380. <productMenu id="protocol"
  12381. type="3" >
  12382. </productMenu>
  12383. <productMenu id="sip"
  12384. type="1" >
  12385. </productMenu>
  12386. <productMenu id="bluetoothIntercom"
  12387. type="1" >
  12388. </productMenu>
  12389. <productMenu id="phone"
  12390. type="1" >
  12391. </productMenu>
  12392. <productMenu id="fmradio"
  12393. type="1" >
  12394. </productMenu>
  12395. <productMenu id="deviceSetting"
  12396. type="1"
  12397. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12398. </productMenu>
  12399. <productMenu id="quickGuide"
  12400. type="0"
  12401. url=""
  12402. size="934KB" >
  12403. </productMenu>
  12404. <productMenu id="userGuide"
  12405. type="1"
  12406. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12407. size="1.14MB" >
  12408. </productMenu>
  12409. <productID id="5594"
  12410. />
  12411. <productGroupable type="0"
  12412. />
  12413. </product>
  12414. <product id="SA30"
  12415. name="SA30"
  12416. series="SA"
  12417. latestVersion="1.0.1"
  12418. latestVersionVoicePrompt="0.15"
  12419. show = "-1" >
  12420. <productMenu id="protocol"
  12421. type="2" >
  12422. </productMenu>
  12423. <productMenu id="ota"
  12424. type="2" >
  12425. <otaPackages>
  12426. <package
  12427. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.1-build0.img"
  12428. size="3144148"
  12429. />
  12430. </otaPackages>
  12431. </productMenu>
  12432. <productMenu id="meshIntercom"
  12433. type="30" >
  12434. </productMenu>
  12435. <productMenu id="meshIntercom+"
  12436. type="3"
  12437. url="2" >
  12438. </productMenu>
  12439. <productMenu id="phone"
  12440. type="1" >
  12441. </productMenu>
  12442. <productMenu id="music"
  12443. type="1" >
  12444. </productMenu>
  12445. <productMenu id="musicSharing"
  12446. type="0" >
  12447. </productMenu>
  12448. <productMenu id="deviceSetting"
  12449. type="1"
  12450. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12451. </productMenu>
  12452. <productMenu id="quickGuide"
  12453. type="0"
  12454. url=""
  12455. size="1.12MB" >
  12456. </productMenu>
  12457. <productMenu id="userGuide"
  12458. type="1"
  12459. url=""
  12460. size="2.0MB" >
  12461. </productMenu>
  12462. <productMenu id="videoGuide"
  12463. type="0"
  12464. url=""
  12465. size="3.41MB" >
  12466. </productMenu>
  12467. <productMenu id="volume"
  12468. type="12" >
  12469. </productMenu>
  12470. <productMenu id="battery"
  12471. type="1" >
  12472. </productMenu>
  12473. <productID id="6852"
  12474. />
  12475. <productGroupable type="0"
  12476. />
  12477. </product>
  12478. <product id="I30"
  12479. name="I30"
  12480. series="I"
  12481. latestVersion="1.0.1"
  12482. latestVersionVoicePrompt="0.2"
  12483. show = "-1" >
  12484. <productMenu id="protocol"
  12485. type="2" >
  12486. </productMenu>
  12487. <productMenu id="ota"
  12488. type="2" >
  12489. <otaPackages>
  12490. <package
  12491. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.1-build0.img"
  12492. size="3144148"
  12493. />
  12494. </otaPackages>
  12495. </productMenu>
  12496. <productMenu id="meshIntercom"
  12497. type="30" >
  12498. </productMenu>
  12499. <productMenu id="meshIntercom+"
  12500. type="3"
  12501. url="2" >
  12502. </productMenu>
  12503. <productMenu id="phone"
  12504. type="1" >
  12505. </productMenu>
  12506. <productMenu id="music"
  12507. type="1" >
  12508. </productMenu>
  12509. <productMenu id="musicSharing"
  12510. type="0" >
  12511. </productMenu>
  12512. <productMenu id="deviceSetting"
  12513. type="1"
  12514. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12515. </productMenu>
  12516. <productMenu id="quickGuide"
  12517. type="0"
  12518. url=""
  12519. size="1.12MB" >
  12520. </productMenu>
  12521. <productMenu id="userGuide"
  12522. type="1"
  12523. url=""
  12524. size="2.10MB" >
  12525. </productMenu>
  12526. <productMenu id="videoGuide"
  12527. type="0"
  12528. url=""
  12529. size="3.11MB" >
  12530. </productMenu>
  12531. <productMenu id="volume"
  12532. type="12" >
  12533. </productMenu>
  12534. <productMenu id="battery"
  12535. type="1" >
  12536. </productMenu>
  12537. <productID id="6853"
  12538. />
  12539. <productGroupable type="0"
  12540. />
  12541. </product>
  12542. <product id="C30EVO"
  12543. name="C30 EVO"
  12544. series="C"
  12545. latestVersion="1.0"
  12546. latestVersionVoicePrompt="0.13"
  12547. show = "-1" >
  12548. <productMenu id="protocol"
  12549. type="2" >
  12550. </productMenu>
  12551. <productMenu id="ota"
  12552. type="0" >
  12553. <otaPackages>
  12554. <package
  12555. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  12556. size="3144148"
  12557. />
  12558. </otaPackages>
  12559. </productMenu>
  12560. <productMenu id="meshIntercom+"
  12561. type="3"
  12562. url="2" >
  12563. </productMenu>
  12564. <productMenu id="waveIntercom"
  12565. type="1" >
  12566. </productMenu>
  12567. <productMenu id="phone"
  12568. type="1" >
  12569. </productMenu>
  12570. <productMenu id="music"
  12571. type="1" >
  12572. </productMenu>
  12573. <productMenu id="musicSharing"
  12574. type="0" >
  12575. </productMenu>
  12576. <productMenu id="deviceSetting"
  12577. type="1"
  12578. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  12579. </productMenu>
  12580. <productMenu id="quickGuide"
  12581. type="1"
  12582. url=""
  12583. size="1.17MB" >
  12584. </productMenu>
  12585. <productMenu id="userGuide"
  12586. type="0"
  12587. url=""
  12588. size="2.0MB" >
  12589. </productMenu>
  12590. <productMenu id="videoGuide"
  12591. type="0"
  12592. url=""
  12593. size="3.41MB" >
  12594. </productMenu>
  12595. <productMenu id="volume"
  12596. type="12" >
  12597. </productMenu>
  12598. <productMenu id="battery"
  12599. type="1" >
  12600. </productMenu>
  12601. <productID id="685B"
  12602. />
  12603. <productGroupable type="0"
  12604. />
  12605. </product>
  12606. <product id="C30"
  12607. name="SENA C30"
  12608. series="C"
  12609. latestVersion="1.2.2"
  12610. latestVersionVoicePrompt="0.13"
  12611. show = "1" >
  12612. <productMenu id="protocol"
  12613. type="2" >
  12614. </productMenu>
  12615. <productMenu id="alexa"
  12616. type="0" >
  12617. </productMenu>
  12618. <productMenu id="ota"
  12619. type="2" >
  12620. <otaPackages>
  12621. <package
  12622. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.2-build0.img"
  12623. size="3144148"
  12624. />
  12625. </otaPackages>
  12626. </productMenu>
  12627. <productMenu id="wa"
  12628. type="0" >
  12629. </productMenu>
  12630. <productMenu id="meshIntercom"
  12631. type="30" >
  12632. </productMenu>
  12633. <productMenu id="meshIntercom+"
  12634. type="3"
  12635. url="2" >
  12636. <productMenuType version="1.0.9"
  12637. type="2"
  12638. />
  12639. </productMenu>
  12640. <productMenu id="waveIntercom"
  12641. type="1" >
  12642. <productMenuType version="1.1.9"
  12643. type="0"
  12644. />
  12645. </productMenu>
  12646. <productMenu id="phone"
  12647. type="1" >
  12648. </productMenu>
  12649. <productMenu id="music"
  12650. type="1" >
  12651. </productMenu>
  12652. <productMenu id="musicSharing"
  12653. type="0" >
  12654. </productMenu>
  12655. <productMenu id="deviceSetting"
  12656. type="1"
  12657. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  12658. <productMenuURL version="1.1.3"
  12659. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  12660. />
  12661. <productMenuURL version="1.0.9"
  12662. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  12663. />
  12664. </productMenu>
  12665. <productMenu id="quickGuide"
  12666. type="1"
  12667. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  12668. size="1.12MB" >
  12669. </productMenu>
  12670. <productMenu id="userGuide"
  12671. type="0"
  12672. url=""
  12673. size="2.0MB" >
  12674. </productMenu>
  12675. <productMenu id="videoGuide"
  12676. type="0"
  12677. url=""
  12678. size="3.41MB" >
  12679. </productMenu>
  12680. <productMenu id="volume"
  12681. type="12" >
  12682. </productMenu>
  12683. <productMenu id="battery"
  12684. type="1" >
  12685. </productMenu>
  12686. <productID id="683A"
  12687. />
  12688. <productGroupable type="0"
  12689. />
  12690. </product>
  12691. <product id="C20"
  12692. name="C20"
  12693. series="C"
  12694. latestVersion="1.0"
  12695. show = "1" >
  12696. <productMenu id="protocol"
  12697. type="3" >
  12698. </productMenu>
  12699. <productMenu id="sip"
  12700. type="1" >
  12701. </productMenu>
  12702. <productMenu id="bluetoothIntercom"
  12703. type="1" >
  12704. </productMenu>
  12705. <productMenu id="phone"
  12706. type="1" >
  12707. </productMenu>
  12708. <productMenu id="deviceSetting"
  12709. type="1"
  12710. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  12711. </productMenu>
  12712. <productMenu id="quickGuide"
  12713. type="1"
  12714. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  12715. size="934KB" >
  12716. </productMenu>
  12717. <productMenu id="userGuide"
  12718. type="1"
  12719. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  12720. size="1.14MB" >
  12721. </productMenu>
  12722. <productID id="3701"
  12723. />
  12724. <productGroupable type="0"
  12725. />
  12726. </product>
  12727. <product id="C10"
  12728. name="C10"
  12729. series="C"
  12730. latestVersion="1.4.4"
  12731. show = "1" >
  12732. <productMenu id="protocol"
  12733. type="3" >
  12734. </productMenu>
  12735. <productMenu id="sip"
  12736. type="1" >
  12737. </productMenu>
  12738. <productMenu id="bluetoothIntercom"
  12739. type="1" >
  12740. </productMenu>
  12741. <productMenu id="phone"
  12742. type="1" >
  12743. </productMenu>
  12744. <productMenu id="fmradio"
  12745. type="0" >
  12746. </productMenu>
  12747. <productMenu id="deviceSetting"
  12748. type="1"
  12749. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12750. </productMenu>
  12751. <productMenu id="userGuide"
  12752. type="1"
  12753. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  12754. size="1.14MB" >
  12755. </productMenu>
  12756. <productID id="5595"
  12757. />
  12758. <productGroupable type="0"
  12759. />
  12760. </product>
  12761. <product id="J30"
  12762. name="J30"
  12763. series="J"
  12764. latestVersion="1.2.2"
  12765. latestVersionVoicePrompt="0.14"
  12766. show = "0" >
  12767. <productMenu id="protocol"
  12768. type="2" >
  12769. </productMenu>
  12770. <productMenu id="alexa"
  12771. type="0" >
  12772. </productMenu>
  12773. <productMenu id="ota"
  12774. type="2" >
  12775. <otaPackages>
  12776. <package
  12777. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.2-build1.img"
  12778. size="3144148"
  12779. />
  12780. </otaPackages>
  12781. </productMenu>
  12782. <productMenu id="wa"
  12783. type="0" >
  12784. </productMenu>
  12785. <productMenu id="meshIntercom"
  12786. type="30" >
  12787. </productMenu>
  12788. <productMenu id="meshIntercom+"
  12789. type="3"
  12790. url="2" >
  12791. <productMenuType version="1.0.9"
  12792. type="2"
  12793. />
  12794. </productMenu>
  12795. <productMenu id="waveIntercom"
  12796. type="1" >
  12797. <productMenuType version="1.1.9"
  12798. type="0"
  12799. />
  12800. </productMenu>
  12801. <productMenu id="phone"
  12802. type="1" >
  12803. </productMenu>
  12804. <productMenu id="music"
  12805. type="1" >
  12806. </productMenu>
  12807. <productMenu id="musicSharing"
  12808. type="0" >
  12809. </productMenu>
  12810. <productMenu id="deviceSetting"
  12811. type="1"
  12812. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  12813. <productMenuURL version="1.0.9"
  12814. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  12815. />
  12816. </productMenu>
  12817. <productMenu id="quickGuide"
  12818. type="0"
  12819. url=""
  12820. size="1.12MB" >
  12821. </productMenu>
  12822. <productMenu id="userGuide"
  12823. type="1"
  12824. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  12825. size="2.0MB" >
  12826. </productMenu>
  12827. <productMenu id="videoGuide"
  12828. type="0"
  12829. url=""
  12830. size="3.41MB" >
  12831. </productMenu>
  12832. <productMenu id="volume"
  12833. type="12" >
  12834. </productMenu>
  12835. <productMenu id="battery"
  12836. type="1" >
  12837. </productMenu>
  12838. <productID id="6848"
  12839. />
  12840. <productGroupable type="0"
  12841. />
  12842. </product>
  12843. <product id="J10"
  12844. name="J10"
  12845. series="5"
  12846. latestVersion="1.1.4"
  12847. show = "0" >
  12848. <productMenu id="protocol"
  12849. type="3" >
  12850. </productMenu>
  12851. <productMenu id="sip"
  12852. type="1" >
  12853. </productMenu>
  12854. <productMenu id="bluetoothIntercom"
  12855. type="1" >
  12856. </productMenu>
  12857. <productMenu id="phone"
  12858. type="1" >
  12859. </productMenu>
  12860. <productMenu id="fmradio"
  12861. type="0" >
  12862. </productMenu>
  12863. <productMenu id="deviceSetting"
  12864. type="1"
  12865. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12866. </productMenu>
  12867. <productMenu id="userGuide"
  12868. type="1"
  12869. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  12870. size="1.14MB" >
  12871. </productMenu>
  12872. <productID id="5598"
  12873. />
  12874. <productGroupable type="0"
  12875. />
  12876. </product>
  12877. <product id="B20"
  12878. name="B20"
  12879. series="B"
  12880. latestVersion="1.1.2"
  12881. latestVersionVoicePrompt="0.14"
  12882. show = "0" >
  12883. <productMenu id="protocol"
  12884. type="2" >
  12885. </productMenu>
  12886. <productMenu id="alexa"
  12887. type="0" >
  12888. </productMenu>
  12889. <productMenu id="ota"
  12890. type="2" >
  12891. <otaPackages>
  12892. <package
  12893. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.2-build1.img"
  12894. size="3144148"
  12895. />
  12896. </otaPackages>
  12897. </productMenu>
  12898. <productMenu id="wa"
  12899. type="0" >
  12900. </productMenu>
  12901. <productMenu id="meshIntercom"
  12902. type="30" >
  12903. </productMenu>
  12904. <productMenu id="phone"
  12905. type="1" >
  12906. </productMenu>
  12907. <productMenu id="music"
  12908. type="1" >
  12909. </productMenu>
  12910. <productMenu id="musicSharing"
  12911. type="0" >
  12912. </productMenu>
  12913. <productMenu id="deviceSetting"
  12914. type="1"
  12915. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  12916. <productMenuURL version="1.0.9"
  12917. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  12918. />
  12919. </productMenu>
  12920. <productMenu id="quickGuide"
  12921. type="0"
  12922. url=""
  12923. size="1.12MB" >
  12924. </productMenu>
  12925. <productMenu id="userGuide"
  12926. type="1"
  12927. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  12928. size="2.0MB" >
  12929. </productMenu>
  12930. <productMenu id="videoGuide"
  12931. type="0"
  12932. url=""
  12933. size="3.41MB" >
  12934. </productMenu>
  12935. <productMenu id="volume"
  12936. type="12" >
  12937. </productMenu>
  12938. <productMenu id="battery"
  12939. type="1" >
  12940. </productMenu>
  12941. <productID id="6847"
  12942. />
  12943. <productGroupable type="0"
  12944. />
  12945. </product>
  12946. <product id="B10"
  12947. name="B10"
  12948. series="5"
  12949. latestVersion="1.2.4"
  12950. show = "0" >
  12951. <productMenu id="protocol"
  12952. type="3" >
  12953. </productMenu>
  12954. <productMenu id="sip"
  12955. type="1" >
  12956. </productMenu>
  12957. <productMenu id="bluetoothIntercom"
  12958. type="1" >
  12959. </productMenu>
  12960. <productMenu id="phone"
  12961. type="1" >
  12962. </productMenu>
  12963. <productMenu id="fmradio"
  12964. type="0" >
  12965. </productMenu>
  12966. <productMenu id="deviceSetting"
  12967. type="1"
  12968. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  12969. </productMenu>
  12970. <productMenu id="userGuide"
  12971. type="1"
  12972. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  12973. size="1.14MB" >
  12974. </productMenu>
  12975. <productID id="5596"
  12976. />
  12977. <productGroupable type="0"
  12978. />
  12979. </product>
  12980. <product id="E30"
  12981. name="E30"
  12982. series="E"
  12983. latestVersion="1.1.2"
  12984. latestVersionVoicePrompt="0.14"
  12985. show = "0" >
  12986. <productMenu id="protocol"
  12987. type="2" >
  12988. </productMenu>
  12989. <productMenu id="alexa"
  12990. type="0" >
  12991. </productMenu>
  12992. <productMenu id="ota"
  12993. type="2" >
  12994. <otaPackages>
  12995. <package
  12996. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.2-build1.img"
  12997. size="3144148"
  12998. />
  12999. </otaPackages>
  13000. </productMenu>
  13001. <productMenu id="wa"
  13002. type="0" >
  13003. </productMenu>
  13004. <productMenu id="meshIntercom"
  13005. type="30" >
  13006. </productMenu>
  13007. <productMenu id="meshIntercom+"
  13008. type="3"
  13009. url="2" >
  13010. </productMenu>
  13011. <productMenu id="waveIntercom"
  13012. type="1" >
  13013. <productMenuType version="1.0.9"
  13014. type="0"
  13015. />
  13016. </productMenu>
  13017. <productMenu id="phone"
  13018. type="1" >
  13019. </productMenu>
  13020. <productMenu id="music"
  13021. type="1" >
  13022. </productMenu>
  13023. <productMenu id="musicSharing"
  13024. type="0" >
  13025. </productMenu>
  13026. <productMenu id="deviceSetting"
  13027. type="1"
  13028. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  13029. </productMenu>
  13030. <productMenu id="quickGuide"
  13031. type="0"
  13032. url=""
  13033. size="1.12MB" >
  13034. </productMenu>
  13035. <productMenu id="userGuide"
  13036. type="1"
  13037. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  13038. size="2.0MB" >
  13039. </productMenu>
  13040. <productMenu id="videoGuide"
  13041. type="0"
  13042. url=""
  13043. size="3.41MB" >
  13044. </productMenu>
  13045. <productMenu id="volume"
  13046. type="12" >
  13047. </productMenu>
  13048. <productMenu id="battery"
  13049. type="1" >
  13050. </productMenu>
  13051. <productID id="6846"
  13052. />
  13053. <productGroupable type="0"
  13054. />
  13055. </product>
  13056. <product id="ACSRAM"
  13057. name="ACS-RAM"
  13058. series="ACS"
  13059. latestVersion="1.0.5"
  13060. show = "1" >
  13061. <productMenu id="protocol"
  13062. type="3" >
  13063. </productMenu>
  13064. <productMenu id="sip"
  13065. type="1" >
  13066. </productMenu>
  13067. <productMenu id="bluetoothIntercom"
  13068. type="1" >
  13069. </productMenu>
  13070. <productMenu id="deviceSetting"
  13071. type="1"
  13072. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  13073. </productMenu>
  13074. <productMenu id="quickGuide"
  13075. type="1"
  13076. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  13077. size="344KB" >
  13078. </productMenu>
  13079. <productMenu id="userGuide"
  13080. type="1"
  13081. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  13082. size="1.14MB" >
  13083. </productMenu>
  13084. <productMenu id="connectGuide"
  13085. type="1"
  13086. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  13087. size="1.12MB" >
  13088. </productMenu>
  13089. <productID id="3400"
  13090. />
  13091. <productGroupable type="0"
  13092. />
  13093. </product>
  13094. <product id="ACS10"
  13095. name="ACS10"
  13096. series="ACS"
  13097. latestVersion="1.0.2"
  13098. show = "1" >
  13099. <productMenu id="protocol"
  13100. type="0">
  13101. </productMenu>
  13102. <productMenu id="sip"
  13103. type="1" >
  13104. </productMenu>
  13105. <productMenu id="bluetoothIntercom"
  13106. type="1" >
  13107. </productMenu>
  13108. <productMenu id="phone"
  13109. type="2" >
  13110. </productMenu>
  13111. <productMenu id="deviceSetting"
  13112. type="1"
  13113. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  13114. </productMenu>
  13115. <productMenu id="quickGuide"
  13116. type="1"
  13117. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  13118. size="970KB" >
  13119. </productMenu>
  13120. <productMenu id="userGuide"
  13121. type="1"
  13122. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  13123. size="1.26MB" >
  13124. </productMenu>
  13125. <productMenu id="connectGuide"
  13126. type="1"
  13127. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  13128. size="1.12MB" >
  13129. </productMenu>
  13130. <productID id="3300"
  13131. />
  13132. <productGroupable type="0"
  13133. />
  13134. </product>
  13135. <product id="DWO7ProMesh"
  13136. name="DWO 7 Pro Mesh"
  13137. series="50"
  13138. latestVersion="1.1"
  13139. latestVersionVoicePrompt="0.9"
  13140. show = "0" >
  13141. <productMenu id="protocol"
  13142. type="2" >
  13143. </productMenu>
  13144. <productMenu id="alexa"
  13145. type="0" >
  13146. </productMenu>
  13147. <productMenu id="ota"
  13148. type="2" >
  13149. <otaPackages>
  13150. <package
  13151. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  13152. size="2945812"
  13153. />
  13154. </otaPackages>
  13155. </productMenu>
  13156. <productMenu id="wa"
  13157. type="0" >
  13158. </productMenu>
  13159. <productMenu id="meshIntercom"
  13160. type="20" >
  13161. </productMenu>
  13162. <productMenu id="meshIntercom+"
  13163. type="3"
  13164. url="2" >
  13165. <productMenuType version="1.0.9"
  13166. type="2"
  13167. />
  13168. <productMenuURL version="2.1.1"
  13169. url="0"
  13170. />
  13171. </productMenu>
  13172. <productMenu id="waveIntercom"
  13173. type="1" >
  13174. <productMenuType version="1.0.9"
  13175. type="0"
  13176. />
  13177. </productMenu>
  13178. <productMenu id="phone"
  13179. type="1" >
  13180. </productMenu>
  13181. <productMenu id="music"
  13182. type="1" >
  13183. </productMenu>
  13184. <productMenu id="fmradio"
  13185. type="1" >
  13186. </productMenu>
  13187. <productMenu id="musicSharing"
  13188. type="0" >
  13189. </productMenu>
  13190. <productMenu id="deviceSetting"
  13191. type="1"
  13192. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  13193. <productMenuURL version="1.0.9"
  13194. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  13195. />
  13196. </productMenu>
  13197. <productMenu id="quickGuide"
  13198. type="1"
  13199. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13200. size="1.12MB" >
  13201. </productMenu>
  13202. <productMenu id="userGuide"
  13203. type="1"
  13204. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13205. size="2.0MB" >
  13206. </productMenu>
  13207. <productMenu id="volume"
  13208. type="12" >
  13209. </productMenu>
  13210. <productMenu id="battery"
  13211. type="1" >
  13212. </productMenu>
  13213. <productID id="6806"
  13214. />
  13215. <productGroupable type="0"
  13216. />
  13217. </product>
  13218. <product id="ERA1X"
  13219. name="ERA 1 X"
  13220. series="UCOM"
  13221. latestVersion="0.2.1"
  13222. latestVersionMesh="0.19"
  13223. latestVersionVoicePrompt="1.2"
  13224. show = "-1" >
  13225. <productMenu id="protocol"
  13226. type="2" >
  13227. </productMenu>
  13228. <productMenu id="ota"
  13229. type="2" >
  13230. <otaLanguages>
  13231. <otaLanguage
  13232. id="0"
  13233. name="English"
  13234. package="0"
  13235. />
  13236. <otaLanguage
  13237. id="0"
  13238. name="French"
  13239. package="1"
  13240. />
  13241. <otaLanguage
  13242. id="0"
  13243. name="Spanish"
  13244. package="2"
  13245. />
  13246. <otaLanguage
  13247. id="0"
  13248. name="Italian"
  13249. package="3"
  13250. />
  13251. <otaLanguage
  13252. id="0"
  13253. name="German"
  13254. package="4"
  13255. />
  13256. <otaLanguage
  13257. id="0"
  13258. name="Dutch"
  13259. package="5"
  13260. />
  13261. <otaLanguage
  13262. id="0"
  13263. name="Russian"
  13264. package="6"
  13265. />
  13266. <otaLanguage
  13267. id="0"
  13268. name="Chinese"
  13269. package="7"
  13270. />
  13271. <otaLanguage
  13272. id="0"
  13273. name="Korean"
  13274. package="8"
  13275. />
  13276. <otaLanguage
  13277. id="0"
  13278. name="Japanese"
  13279. package="9"
  13280. />
  13281. <otaLanguage
  13282. id="0"
  13283. name="Finnish"
  13284. package="10"
  13285. />
  13286. <otaLanguage
  13287. id="0"
  13288. name="Polish"
  13289. package="11"
  13290. />
  13291. <otaLanguage
  13292. id="0"
  13293. name="Czech"
  13294. package="12"
  13295. />
  13296. <otaLanguage
  13297. id="0"
  13298. name="Danish"
  13299. package="13"
  13300. />
  13301. <otaLanguage
  13302. id="0"
  13303. name="Norwegian"
  13304. package="14"
  13305. />
  13306. <otaLanguage
  13307. id="0"
  13308. name="Swedish"
  13309. package="15"
  13310. />
  13311. <otaLanguage
  13312. id="0"
  13313. name="Turkish"
  13314. package="16"
  13315. />
  13316. <otaLanguage
  13317. id="0"
  13318. name="Hungarian"
  13319. package="17"
  13320. />
  13321. <otaLanguage
  13322. id="0"
  13323. name="Portuguese"
  13324. package="18"
  13325. />
  13326. <otaLanguage
  13327. id="0"
  13328. name="Hebrew"
  13329. package="19"
  13330. />
  13331. <otaLanguage
  13332. id="0"
  13333. name="Greek"
  13334. package="20"
  13335. />
  13336. </otaLanguages>
  13337. <otaPackages>
  13338. <package
  13339. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13340. size="5183988"
  13341. />
  13342. <package
  13343. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13344. size="5183988"
  13345. />
  13346. <package
  13347. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13348. size="5183988"
  13349. />
  13350. <package
  13351. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13352. size="5183988"
  13353. />
  13354. <package
  13355. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13356. size="5183988"
  13357. />
  13358. <package
  13359. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13360. size="5183988"
  13361. />
  13362. <package
  13363. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13364. size="5183988"
  13365. />
  13366. <package
  13367. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13368. size="5183988"
  13369. />
  13370. <package
  13371. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13372. size="5183988"
  13373. />
  13374. <package
  13375. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13376. size="5183988"
  13377. />
  13378. <package
  13379. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13380. size="5183988"
  13381. />
  13382. <package
  13383. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13384. size="5183988"
  13385. />
  13386. <package
  13387. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13388. size="5183988"
  13389. />
  13390. <package
  13391. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13392. size="5183988"
  13393. />
  13394. <package
  13395. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13396. size="5183988"
  13397. />
  13398. <package
  13399. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13400. size="5183988"
  13401. />
  13402. <package
  13403. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13404. size="5183988"
  13405. />
  13406. <package
  13407. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13408. size="5183988"
  13409. />
  13410. <package
  13411. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13412. size="5183988"
  13413. />
  13414. <package
  13415. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13416. size="5183988"
  13417. />
  13418. <package
  13419. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13420. size="5183988"
  13421. />
  13422. </otaPackages>
  13423. </productMenu>
  13424. <productMenu id="wa"
  13425. type="0" >
  13426. </productMenu>
  13427. <productMenu id="sip"
  13428. type="1" >
  13429. </productMenu>
  13430. <productMenu id="led"
  13431. type="0" >
  13432. </productMenu>
  13433. <productMenu id="illusion"
  13434. type="1" >
  13435. </productMenu>
  13436. <productMenu id="meshIntercom"
  13437. type="30" >
  13438. </productMenu>
  13439. <productMenu id="meshIntercom+"
  13440. type="3"
  13441. url="2" >
  13442. </productMenu>
  13443. <productMenu id="waveIntercom"
  13444. type="0" >
  13445. </productMenu>
  13446. <productMenu id="bluetoothIntercom"
  13447. type="1" >
  13448. </productMenu>
  13449. <productMenu id="bluetoothIntercomGrouping"
  13450. type="0" >
  13451. </productMenu>
  13452. <productMenu id="fmradio"
  13453. type="1"
  13454. url="1" >
  13455. </productMenu>
  13456. <productMenu id="phone"
  13457. type="1" >
  13458. </productMenu>
  13459. <productMenu id="music"
  13460. type="1" >
  13461. </productMenu>
  13462. <productMenu id="musicSharing"
  13463. type="0" >
  13464. </productMenu>
  13465. <productMenu id="deviceSetting"
  13466. type="1"
  13467. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  13468. </productMenu>
  13469. <productMenu id="quickGuide"
  13470. type="0"
  13471. url=""
  13472. size="1.12MB" >
  13473. </productMenu>
  13474. <productMenu id="userGuide"
  13475. type="1"
  13476. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  13477. size="2.0MB" >
  13478. </productMenu>
  13479. <productMenu id="videoGuide"
  13480. type="0"
  13481. url=""
  13482. size="3.41MB" >
  13483. </productMenu>
  13484. <productMenu id="volume"
  13485. type="16" >
  13486. </productMenu>
  13487. <productMenu id="soundMode"
  13488. type="1" >
  13489. </productMenu>
  13490. <productMenu id="battery"
  13491. type="1" >
  13492. </productMenu>
  13493. <productID id="6A83"
  13494. />
  13495. <productGroupable type="0"
  13496. />
  13497. </product>
  13498. <product id="MeshStation"
  13499. name="Mesh Station"
  13500. series="50"
  13501. latestVersion="0.9"
  13502. show = "-1" >
  13503. <productMenu id="protocol"
  13504. type="2" >
  13505. </productMenu>
  13506. <productMenu id="meshIntercom"
  13507. type="20"
  13508. url="99" >
  13509. </productMenu>
  13510. <productID id="3161"
  13511. />
  13512. <productGroupable type="0"
  13513. />
  13514. </product>
  13515. </products>
  13516. </sna>