snm.xml 476 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260102" 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="ota"
  1012. type="2" >
  1013. <otaLanguages>
  1014. <otaLanguage
  1015. id="0"
  1016. name="English"
  1017. package="0"
  1018. />
  1019. <otaLanguage
  1020. id="0"
  1021. name="French"
  1022. package="1"
  1023. />
  1024. <otaLanguage
  1025. id="0"
  1026. name="Spanish"
  1027. package="2"
  1028. />
  1029. <otaLanguage
  1030. id="0"
  1031. name="Italian"
  1032. package="3"
  1033. />
  1034. <otaLanguage
  1035. id="0"
  1036. name="German"
  1037. package="4"
  1038. />
  1039. <otaLanguage
  1040. id="0"
  1041. name="Dutch"
  1042. package="5"
  1043. />
  1044. <otaLanguage
  1045. id="0"
  1046. name="Russian"
  1047. package="6"
  1048. />
  1049. <otaLanguage
  1050. id="0"
  1051. name="Chinese"
  1052. package="7"
  1053. />
  1054. <otaLanguage
  1055. id="0"
  1056. name="Korean"
  1057. package="8"
  1058. />
  1059. <otaLanguage
  1060. id="0"
  1061. name="Japanese"
  1062. package="9"
  1063. />
  1064. <otaLanguage
  1065. id="0"
  1066. name="Finnish"
  1067. package="10"
  1068. />
  1069. <otaLanguage
  1070. id="0"
  1071. name="Polish"
  1072. package="11"
  1073. />
  1074. </otaLanguages>
  1075. <otaPackages>
  1076. <package
  1077. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5.img"
  1078. size="5183988"
  1079. />
  1080. <package
  1081. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fr-FR.img"
  1082. size="5183988"
  1083. />
  1084. <package
  1085. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-es-ES.img"
  1086. size="5183988"
  1087. />
  1088. <package
  1089. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-it-IT.img"
  1090. size="5183988"
  1091. />
  1092. <package
  1093. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-de-DE.img"
  1094. size="5183988"
  1095. />
  1096. <package
  1097. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-nl-NL.img"
  1098. size="5183988"
  1099. />
  1100. <package
  1101. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ru-RU.img"
  1102. size="5183988"
  1103. />
  1104. <package
  1105. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-cmn-CN.img"
  1106. size="5183988"
  1107. />
  1108. <package
  1109. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ko-KR.img"
  1110. size="5183988"
  1111. />
  1112. <package
  1113. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ja-JP.img"
  1114. size="5183988"
  1115. />
  1116. <package
  1117. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fi-FI.img"
  1118. size="5183988"
  1119. />
  1120. <package
  1121. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-pl-PL.img"
  1122. size="5183988"
  1123. />
  1124. </otaPackages>
  1125. </productMenu>
  1126. <productMenu id="wa"
  1127. type="0" >
  1128. </productMenu>
  1129. <productMenu id="sip"
  1130. type="1" >
  1131. </productMenu>
  1132. <productMenu id="led"
  1133. type="1" >
  1134. </productMenu>
  1135. <productMenu id="illusion"
  1136. type="1" >
  1137. </productMenu>
  1138. <productMenu id="meshIntercom"
  1139. type="30" >
  1140. </productMenu>
  1141. <productMenu id="meshIntercom+"
  1142. type="3"
  1143. url="2" >
  1144. </productMenu>
  1145. <productMenu id="bluetoothIntercom"
  1146. type="1" >
  1147. </productMenu>
  1148. <productMenu id="fmradio"
  1149. type="1"
  1150. url="1" >
  1151. </productMenu>
  1152. <productMenu id="mic"
  1153. type="0" >
  1154. </productMenu>
  1155. <productMenu id="phone"
  1156. type="1" >
  1157. </productMenu>
  1158. <productMenu id="music"
  1159. type="1" >
  1160. </productMenu>
  1161. <productMenu id="musicSharing"
  1162. type="0" >
  1163. </productMenu>
  1164. <productMenu id="deviceSetting"
  1165. type="1"
  1166. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1167. </productMenu>
  1168. <productMenu id="quickGuide"
  1169. type="0"
  1170. url=""
  1171. size="1.12MB" >
  1172. </productMenu>
  1173. <productMenu id="userGuide"
  1174. type="0"
  1175. url=""
  1176. size="2.0MB" >
  1177. </productMenu>
  1178. <productMenu id="videoGuide"
  1179. type="0"
  1180. url=""
  1181. size="3.41MB" >
  1182. </productMenu>
  1183. <productMenu id="keySettings"
  1184. type="1"
  1185. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1186. </productMenu>
  1187. <productMenu id="volume"
  1188. type="13" >
  1189. </productMenu>
  1190. <productMenu id="volume+"
  1191. type="2"
  1192. url="0x6004" >
  1193. </productMenu>
  1194. <productMenu id="appearance"
  1195. type="1"
  1196. url="1|white,silver,black,glossy_black" >
  1197. </productMenu>
  1198. <productMenu id="battery"
  1199. type="1" >
  1200. </productMenu>
  1201. <productID id="6A03"
  1202. />
  1203. <productGroupable type="0"
  1204. />
  1205. </product>
  1206. <product id="R35"
  1207. name="R35"
  1208. series="R"
  1209. latestVersion="1.1.1"
  1210. latestVersionVoicePrompt="1.5"
  1211. show = "1" >
  1212. <productMenu id="protocol"
  1213. type="2" >
  1214. </productMenu>
  1215. <productMenu id="ota"
  1216. type="2" >
  1217. <otaLanguages>
  1218. <otaLanguage
  1219. id="0"
  1220. name="English"
  1221. package="0"
  1222. />
  1223. <otaLanguage
  1224. id="0"
  1225. name="Chinese"
  1226. package="1"
  1227. />
  1228. <otaLanguage
  1229. id="0"
  1230. name="Chinese Singapore"
  1231. package="2"
  1232. />
  1233. <otaLanguage
  1234. id="0"
  1235. name="Filipino"
  1236. package="3"
  1237. />
  1238. <otaLanguage
  1239. id="0"
  1240. name="Hebrew"
  1241. package="4"
  1242. />
  1243. <otaLanguage
  1244. id="0"
  1245. name="Hindi"
  1246. package="5"
  1247. />
  1248. <otaLanguage
  1249. id="0"
  1250. name="Indonesian"
  1251. package="6"
  1252. />
  1253. <otaLanguage
  1254. id="0"
  1255. name="Japanese"
  1256. package="7"
  1257. />
  1258. <otaLanguage
  1259. id="0"
  1260. name="Korean"
  1261. package="8"
  1262. />
  1263. <otaLanguage
  1264. id="0"
  1265. name="Malay"
  1266. package="9"
  1267. />
  1268. <otaLanguage
  1269. id="0"
  1270. name="Modern Standard Arabic"
  1271. package="10"
  1272. />
  1273. <otaLanguage
  1274. id="0"
  1275. name="Taiwanese"
  1276. package="11"
  1277. />
  1278. <otaLanguage
  1279. id="0"
  1280. name="Tamil"
  1281. package="12"
  1282. />
  1283. <otaLanguage
  1284. id="0"
  1285. name="Thai"
  1286. package="13"
  1287. />
  1288. <otaLanguage
  1289. id="0"
  1290. name="东北话"
  1291. package="14"
  1292. />
  1293. <otaLanguage
  1294. id="0"
  1295. name="广东话"
  1296. package="15"
  1297. />
  1298. <otaLanguage
  1299. id="0"
  1300. name="江浙沪"
  1301. package="16"
  1302. />
  1303. <otaLanguage
  1304. id="0"
  1305. name="四川话"
  1306. package="17"
  1307. />
  1308. <otaLanguage
  1309. id="0"
  1310. name="陕西话"
  1311. package="18"
  1312. />
  1313. </otaLanguages>
  1314. <otaPackages>
  1315. <package
  1316. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0.img"
  1317. size="5183988"
  1318. />
  1319. <package
  1320. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-CN.img"
  1321. size="5183988"
  1322. />
  1323. <package
  1324. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-SG.img"
  1325. size="5183988"
  1326. />
  1327. <package
  1328. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-tl-PH.img"
  1329. size="5183988"
  1330. />
  1331. <package
  1332. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-he-IL.img"
  1333. size="5183988"
  1334. />
  1335. <package
  1336. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-hi-IN.img"
  1337. size="5183988"
  1338. />
  1339. <package
  1340. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-id-ID.img"
  1341. size="5183988"
  1342. />
  1343. <package
  1344. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ja-JP.img"
  1345. size="5183988"
  1346. />
  1347. <package
  1348. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ko-KR.img"
  1349. size="5183988"
  1350. />
  1351. <package
  1352. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ms-MY.img"
  1353. size="5183988"
  1354. />
  1355. <package
  1356. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ar-XA.img"
  1357. size="5183988"
  1358. />
  1359. <package
  1360. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-nan-TW.img"
  1361. size="5183988"
  1362. />
  1363. <package
  1364. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ta-IN.img"
  1365. size="5183988"
  1366. />
  1367. <package
  1368. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-th-TH.img"
  1369. size="5183988"
  1370. />
  1371. <package
  1372. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zdb-CN.img"
  1373. size="5183988"
  1374. />
  1375. <package
  1376. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-yue-CN.img"
  1377. size="5183988"
  1378. />
  1379. <package
  1380. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-wuu-CN.img"
  1381. size="5183988"
  1382. />
  1383. <package
  1384. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsc-CN.img"
  1385. size="5183988"
  1386. />
  1387. <package
  1388. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsn-CN.img"
  1389. size="5183988"
  1390. />
  1391. </otaPackages>
  1392. </productMenu>
  1393. <productMenu id="sip"
  1394. type="1" >
  1395. </productMenu>
  1396. <productMenu id="illusion"
  1397. type="1" >
  1398. </productMenu>
  1399. <productMenu id="meshIntercom"
  1400. type="30" >
  1401. </productMenu>
  1402. <productMenu id="meshIntercom+"
  1403. type="3"
  1404. url="2" >
  1405. </productMenu>
  1406. <productMenu id="waveIntercom"
  1407. type="1" >
  1408. </productMenu>
  1409. <productMenu id="phone"
  1410. type="1" >
  1411. </productMenu>
  1412. <productMenu id="music"
  1413. type="1" >
  1414. </productMenu>
  1415. <productMenu id="musicSharing"
  1416. type="0" >
  1417. </productMenu>
  1418. <productMenu id="deviceSetting"
  1419. type="1"
  1420. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml" >
  1421. <productMenuURL version="1.0.3"
  1422. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1423. />
  1424. </productMenu>
  1425. <productMenu id="quickGuide"
  1426. type="0"
  1427. url=""
  1428. size="1.12MB" >
  1429. </productMenu>
  1430. <productMenu id="userGuide"
  1431. type="1"
  1432. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1433. size="2.0MB" >
  1434. </productMenu>
  1435. <productMenu id="videoGuide"
  1436. type="0"
  1437. url=""
  1438. size="3.41MB" >
  1439. </productMenu>
  1440. <productMenu id="connectGuide"
  1441. type="0"
  1442. url=""
  1443. size="1.12MB" >
  1444. </productMenu>
  1445. <productMenu id="volume"
  1446. type="16" >
  1447. </productMenu>
  1448. <productMenu id="volume+"
  1449. type="2"
  1450. url="0x6004" >
  1451. </productMenu>
  1452. <productMenu id="soundMode"
  1453. type="0" >
  1454. </productMenu>
  1455. <productMenu id="appearance"
  1456. type="1"
  1457. url="1|white,silver,chrome,black" >
  1458. </productMenu>
  1459. <productMenu id="battery"
  1460. type="1" >
  1461. </productMenu>
  1462. <productID id="6A06"
  1463. />
  1464. <productGroupable type="0"
  1465. />
  1466. </product>
  1467. <product id="COM60X"
  1468. name="BMW MOTORRAD COM 60X"
  1469. series="60"
  1470. latestVersion="1.0"
  1471. latestVersionMesh="0.19"
  1472. latestVersionVoicePrompt="1.7"
  1473. show = "-1" >
  1474. <productMenu id="protocol"
  1475. type="2" >
  1476. </productMenu>
  1477. <productMenu id="ota"
  1478. type="0" >
  1479. <otaLanguages>
  1480. <otaLanguage
  1481. id="0"
  1482. name="English"
  1483. package="0"
  1484. />
  1485. <otaLanguage
  1486. id="0"
  1487. name="French"
  1488. package="1"
  1489. />
  1490. <otaLanguage
  1491. id="0"
  1492. name="Spanish"
  1493. package="2"
  1494. />
  1495. <otaLanguage
  1496. id="0"
  1497. name="Italian"
  1498. package="3"
  1499. />
  1500. <otaLanguage
  1501. id="0"
  1502. name="German"
  1503. package="4"
  1504. />
  1505. <otaLanguage
  1506. id="0"
  1507. name="Dutch"
  1508. package="5"
  1509. />
  1510. <otaLanguage
  1511. id="0"
  1512. name="Russian"
  1513. package="6"
  1514. />
  1515. <otaLanguage
  1516. id="0"
  1517. name="Chinese"
  1518. package="7"
  1519. />
  1520. <otaLanguage
  1521. id="0"
  1522. name="Korean"
  1523. package="8"
  1524. />
  1525. <otaLanguage
  1526. id="0"
  1527. name="Japanese"
  1528. package="9"
  1529. />
  1530. <otaLanguage
  1531. id="0"
  1532. name="Finnish"
  1533. package="10"
  1534. />
  1535. <otaLanguage
  1536. id="0"
  1537. name="Polish"
  1538. package="11"
  1539. />
  1540. </otaLanguages>
  1541. <otaPackages>
  1542. <package
  1543. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5.img"
  1544. size="5183988"
  1545. />
  1546. <package
  1547. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fr-FR.img"
  1548. size="5183988"
  1549. />
  1550. <package
  1551. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-es-ES.img"
  1552. size="5183988"
  1553. />
  1554. <package
  1555. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-it-IT.img"
  1556. size="5183988"
  1557. />
  1558. <package
  1559. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-de-DE.img"
  1560. size="5183988"
  1561. />
  1562. <package
  1563. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-nl-NL.img"
  1564. size="5183988"
  1565. />
  1566. <package
  1567. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ru-RU.img"
  1568. size="5183988"
  1569. />
  1570. <package
  1571. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-cmn-CN.img"
  1572. size="5183988"
  1573. />
  1574. <package
  1575. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ko-KR.img"
  1576. size="5183988"
  1577. />
  1578. <package
  1579. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ja-JP.img"
  1580. size="5183988"
  1581. />
  1582. <package
  1583. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fi-FI.img"
  1584. size="5183988"
  1585. />
  1586. <package
  1587. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-pl-PL.img"
  1588. size="5183988"
  1589. />
  1590. </otaPackages>
  1591. </productMenu>
  1592. <productMenu id="wa"
  1593. type="0" >
  1594. </productMenu>
  1595. <productMenu id="sip"
  1596. type="1" >
  1597. </productMenu>
  1598. <productMenu id="led"
  1599. type="1" >
  1600. </productMenu>
  1601. <productMenu id="illusion"
  1602. type="1" >
  1603. </productMenu>
  1604. <productMenu id="meshIntercom"
  1605. type="30" >
  1606. </productMenu>
  1607. <productMenu id="meshIntercom+"
  1608. type="3"
  1609. url="2" >
  1610. </productMenu>
  1611. <productMenu id="bluetoothIntercom"
  1612. type="1" >
  1613. </productMenu>
  1614. <productMenu id="fmradio"
  1615. type="1"
  1616. url="1" >
  1617. </productMenu>
  1618. <productMenu id="mic"
  1619. type="0" >
  1620. </productMenu>
  1621. <productMenu id="phone"
  1622. type="1" >
  1623. </productMenu>
  1624. <productMenu id="music"
  1625. type="1" >
  1626. </productMenu>
  1627. <productMenu id="musicSharing"
  1628. type="0" >
  1629. </productMenu>
  1630. <productMenu id="deviceSetting"
  1631. type="1"
  1632. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1633. </productMenu>
  1634. <productMenu id="quickGuide"
  1635. type="0"
  1636. url=""
  1637. size="1.12MB" >
  1638. </productMenu>
  1639. <productMenu id="userGuide"
  1640. type="1"
  1641. url=""
  1642. size="2.0MB" >
  1643. </productMenu>
  1644. <productMenu id="videoGuide"
  1645. type="0"
  1646. url=""
  1647. size="3.41MB" >
  1648. </productMenu>
  1649. <productMenu id="keySettings"
  1650. type="1"
  1651. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1652. </productMenu>
  1653. <productMenu id="volume"
  1654. type="13" >
  1655. </productMenu>
  1656. <productMenu id="volume+"
  1657. type="2"
  1658. url="0x6004" >
  1659. </productMenu>
  1660. <productMenu id="battery"
  1661. type="1" >
  1662. </productMenu>
  1663. <productID id="6A1B"
  1664. />
  1665. <productGroupable type="0"
  1666. />
  1667. </product>
  1668. <product id="COMP1"
  1669. name="BMW COM P1"
  1670. series="60"
  1671. latestVersion="1.2"
  1672. latestVersionMesh="0.19"
  1673. latestVersionVoicePrompt="1.0"
  1674. show = "-1" >
  1675. <productMenu id="protocol"
  1676. type="2" >
  1677. </productMenu>
  1678. <productMenu id="ota"
  1679. type="2" >
  1680. <otaLanguages>
  1681. <otaLanguage
  1682. id="0"
  1683. name="English"
  1684. package="0"
  1685. />
  1686. <otaLanguage
  1687. id="0"
  1688. name="French"
  1689. package="1"
  1690. />
  1691. <otaLanguage
  1692. id="0"
  1693. name="Spanish"
  1694. package="2"
  1695. />
  1696. <otaLanguage
  1697. id="0"
  1698. name="Italian"
  1699. package="3"
  1700. />
  1701. <otaLanguage
  1702. id="0"
  1703. name="German"
  1704. package="4"
  1705. />
  1706. <otaLanguage
  1707. id="0"
  1708. name="Dutch"
  1709. package="5"
  1710. />
  1711. <otaLanguage
  1712. id="0"
  1713. name="Russian"
  1714. package="6"
  1715. />
  1716. <otaLanguage
  1717. id="0"
  1718. name="Chinese"
  1719. package="7"
  1720. />
  1721. <otaLanguage
  1722. id="0"
  1723. name="Korean"
  1724. package="8"
  1725. />
  1726. <otaLanguage
  1727. id="0"
  1728. name="Japanese"
  1729. package="9"
  1730. />
  1731. <otaLanguage
  1732. id="0"
  1733. name="Finnish"
  1734. package="10"
  1735. />
  1736. </otaLanguages>
  1737. <otaPackages>
  1738. <package
  1739. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0.img"
  1740. size="5183988"
  1741. />
  1742. <package
  1743. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fr-FR.img"
  1744. size="5183988"
  1745. />
  1746. <package
  1747. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-es-ES.img"
  1748. size="5183988"
  1749. />
  1750. <package
  1751. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-it-IT.img"
  1752. size="5183988"
  1753. />
  1754. <package
  1755. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-de-DE.img"
  1756. size="5183988"
  1757. />
  1758. <package
  1759. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-nl-NL.img"
  1760. size="5183988"
  1761. />
  1762. <package
  1763. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ru-RU.img"
  1764. size="5183988"
  1765. />
  1766. <package
  1767. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-cmn-CN.img"
  1768. size="5183988"
  1769. />
  1770. <package
  1771. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ko-KR.img"
  1772. size="5183988"
  1773. />
  1774. <package
  1775. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ja-JP.img"
  1776. size="5183988"
  1777. />
  1778. <package
  1779. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fi-FI.img"
  1780. size="5183988"
  1781. />
  1782. </otaPackages>
  1783. </productMenu>
  1784. <productMenu id="wa"
  1785. type="0" >
  1786. </productMenu>
  1787. <productMenu id="sip"
  1788. type="1" >
  1789. </productMenu>
  1790. <productMenu id="led"
  1791. type="0" >
  1792. </productMenu>
  1793. <productMenu id="illusion"
  1794. type="0" >
  1795. </productMenu>
  1796. <productMenu id="meshIntercom"
  1797. type="30" >
  1798. </productMenu>
  1799. <productMenu id="bluetoothIntercom"
  1800. type="1" >
  1801. </productMenu>
  1802. <productMenu id="bluetoothIntercomGrouping"
  1803. type="0" >
  1804. </productMenu>
  1805. <productMenu id="fmradio"
  1806. type="0" >
  1807. </productMenu>
  1808. <productMenu id="phone"
  1809. type="1" >
  1810. </productMenu>
  1811. <productMenu id="music"
  1812. type="1" >
  1813. </productMenu>
  1814. <productMenu id="musicSharing"
  1815. type="0" >
  1816. </productMenu>
  1817. <productMenu id="deviceSetting"
  1818. type="1"
  1819. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1820. </productMenu>
  1821. <productMenu id="quickGuide"
  1822. type="0"
  1823. url=""
  1824. size="1.12MB" >
  1825. </productMenu>
  1826. <productMenu id="userGuide"
  1827. type="0"
  1828. url=""
  1829. size="2.0MB" >
  1830. </productMenu>
  1831. <productMenu id="videoGuide"
  1832. type="0"
  1833. url=""
  1834. size="3.41MB" >
  1835. </productMenu>
  1836. <productMenu id="volume"
  1837. type="16" >
  1838. </productMenu>
  1839. <productMenu id="battery"
  1840. type="1" >
  1841. </productMenu>
  1842. <productID id="6A80"
  1843. />
  1844. <productGroupable type="0"
  1845. />
  1846. </product>
  1847. <product id="50S"
  1848. name="50S"
  1849. series="50"
  1850. latestVersion="2.7.2"
  1851. show = "1" >
  1852. <productMenu id="protocol"
  1853. type="2" >
  1854. </productMenu>
  1855. <productMenu id="alexa"
  1856. type="0" >
  1857. </productMenu>
  1858. <productMenu id="ota"
  1859. type="0"
  1860. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1861. size="1150234" >
  1862. </productMenu>
  1863. <productMenu id="wa"
  1864. type="1" >
  1865. </productMenu>
  1866. <productMenu id="sip"
  1867. type="1" >
  1868. </productMenu>
  1869. <productMenu id="meshIntercom"
  1870. type="30" >
  1871. <productMenuType version="2.1.1"
  1872. type="20"
  1873. />
  1874. </productMenu>
  1875. <productMenu id="meshIntercom+"
  1876. type="3"
  1877. url="2" >
  1878. <productMenuType version="2.5.9"
  1879. type="2"
  1880. />
  1881. <productMenuURL version="2.1.1"
  1882. url="0"
  1883. />
  1884. </productMenu>
  1885. <productMenu id="waveIntercom"
  1886. type="1" >
  1887. <productMenuType version="2.6"
  1888. type="0"
  1889. />
  1890. </productMenu>
  1891. <productMenu id="bluetoothIntercom"
  1892. type="1" >
  1893. </productMenu>
  1894. <productMenu id="phone"
  1895. type="1" >
  1896. </productMenu>
  1897. <productMenu id="music"
  1898. type="1" >
  1899. </productMenu>
  1900. <productMenu id="fmradio"
  1901. type="1" >
  1902. </productMenu>
  1903. <productMenu id="deviceSetting"
  1904. type="1"
  1905. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1906. <productMenuURL version="2.5.9"
  1907. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1908. />
  1909. <productMenuURL version="2.1.1"
  1910. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1911. />
  1912. <productMenuURL version="2.0.3"
  1913. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1914. />
  1915. </productMenu>
  1916. <productMenu id="quickGuide"
  1917. type="0"
  1918. url=""
  1919. size="934KB" >
  1920. </productMenu>
  1921. <productMenu id="userGuide"
  1922. type="1"
  1923. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1924. size="1.14MB" >
  1925. </productMenu>
  1926. <productMenu id="videoGuide"
  1927. type="1"
  1928. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1929. size="3.41MB" >
  1930. </productMenu>
  1931. <productMenu id="connectGuide"
  1932. type="1"
  1933. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1934. size="1.12MB" >
  1935. </productMenu>
  1936. <productMenu id="volume"
  1937. type="11" >
  1938. </productMenu>
  1939. <productMenu id="battery"
  1940. type="1" >
  1941. </productMenu>
  1942. <productID id="3210"
  1943. />
  1944. <productGroupable type="0"
  1945. />
  1946. </product>
  1947. <product id="50S"
  1948. name="50S"
  1949. series="50"
  1950. latestVersion="1.5.1"
  1951. show = "-1" >
  1952. <productMenu id="protocol"
  1953. type="2" >
  1954. </productMenu>
  1955. <productMenu id="alexa"
  1956. type="0" >
  1957. </productMenu>
  1958. <productMenu id="wa"
  1959. type="1" >
  1960. </productMenu>
  1961. <productMenu id="sip"
  1962. type="1" >
  1963. </productMenu>
  1964. <productMenu id="meshIntercom"
  1965. type="30" >
  1966. <productMenuType version="1.2.2"
  1967. type="20"
  1968. />
  1969. </productMenu>
  1970. <productMenu id="meshIntercom+"
  1971. type="3"
  1972. url="2" >
  1973. <productMenuType version="1.4.9"
  1974. type="2"
  1975. />
  1976. <productMenuURL version="1.2.2"
  1977. url="0"
  1978. />
  1979. </productMenu>
  1980. <productMenu id="waveIntercom"
  1981. type="1" >
  1982. <productMenuType version="1.3.9"
  1983. type="0"
  1984. />
  1985. </productMenu>
  1986. <productMenu id="bluetoothIntercom"
  1987. type="1" >
  1988. </productMenu>
  1989. <productMenu id="phone"
  1990. type="1" >
  1991. </productMenu>
  1992. <productMenu id="music"
  1993. type="1" >
  1994. </productMenu>
  1995. <productMenu id="fmradio"
  1996. type="1" >
  1997. </productMenu>
  1998. <productMenu id="deviceSetting"
  1999. type="1"
  2000. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2001. <productMenuURL version="1.4.9"
  2002. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2003. />
  2004. <productMenuURL version="1.3.9"
  2005. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2006. />
  2007. <productMenuURL version="1.2.2"
  2008. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2009. />
  2010. <productMenuURL version="1.1.1"
  2011. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2012. />
  2013. </productMenu>
  2014. <productMenu id="quickGuide"
  2015. type="0"
  2016. url=""
  2017. size="934KB" >
  2018. </productMenu>
  2019. <productMenu id="userGuide"
  2020. type="1"
  2021. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  2022. size="1.14MB" >
  2023. </productMenu>
  2024. <productMenu id="videoGuide"
  2025. type="1"
  2026. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2027. size="3.41MB" >
  2028. </productMenu>
  2029. <productMenu id="volume"
  2030. type="11" >
  2031. </productMenu>
  2032. <productMenu id="battery"
  2033. type="1" >
  2034. </productMenu>
  2035. <productID id="3132"
  2036. />
  2037. <productGroupable type="0"
  2038. />
  2039. </product>
  2040. <product id="50R"
  2041. name="50R"
  2042. series="50"
  2043. latestVersion="2.7.1"
  2044. show = "1" >
  2045. <productMenu id="protocol"
  2046. type="2" >
  2047. </productMenu>
  2048. <productMenu id="alexa"
  2049. type="0" >
  2050. </productMenu>
  2051. <productMenu id="ota"
  2052. type="0"
  2053. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2054. size="1150234" >
  2055. </productMenu>
  2056. <productMenu id="wa"
  2057. type="1" >
  2058. </productMenu>
  2059. <productMenu id="sip"
  2060. type="1" >
  2061. </productMenu>
  2062. <productMenu id="meshIntercom"
  2063. type="30" >
  2064. <productMenuType version="2.1.1"
  2065. type="20"
  2066. />
  2067. </productMenu>
  2068. <productMenu id="meshIntercom+"
  2069. type="3"
  2070. url="2" >
  2071. <productMenuType version="2.5.9"
  2072. type="2"
  2073. />
  2074. <productMenuURL version="2.1.1"
  2075. url="0"
  2076. />
  2077. </productMenu>
  2078. <productMenu id="waveIntercom"
  2079. type="1" >
  2080. <productMenuType version="2.6"
  2081. type="0"
  2082. />
  2083. </productMenu>
  2084. <productMenu id="bluetoothIntercom"
  2085. type="1" >
  2086. </productMenu>
  2087. <productMenu id="phone"
  2088. type="1" >
  2089. </productMenu>
  2090. <productMenu id="music"
  2091. type="1" >
  2092. </productMenu>
  2093. <productMenu id="fmradio"
  2094. type="1" >
  2095. </productMenu>
  2096. <productMenu id="deviceSetting"
  2097. type="1"
  2098. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2099. <productMenuURL version="2.5.9"
  2100. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2101. />
  2102. <productMenuURL version="2.1.1"
  2103. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2104. />
  2105. <productMenuURL version="2.0"
  2106. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2107. />
  2108. </productMenu>
  2109. <productMenu id="quickGuide"
  2110. type="0"
  2111. url=""
  2112. size="344KB" >
  2113. </productMenu>
  2114. <productMenu id="userGuide"
  2115. type="1"
  2116. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  2117. size="3.41MB" >
  2118. </productMenu>
  2119. <productMenu id="videoGuide"
  2120. type="1"
  2121. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2122. size="3.41MB" >
  2123. </productMenu>
  2124. <productMenu id="connectGuide"
  2125. type="1"
  2126. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  2127. size="1.12MB" >
  2128. </productMenu>
  2129. <productMenu id="volume"
  2130. type="11" >
  2131. </productMenu>
  2132. <productMenu id="battery"
  2133. type="1" >
  2134. </productMenu>
  2135. <productID id="3218"
  2136. />
  2137. <productGroupable type="0"
  2138. />
  2139. </product>
  2140. <product id="50R"
  2141. name="50R"
  2142. series="50"
  2143. latestVersion="1.5.1"
  2144. show = "-1" >
  2145. <productMenu id="protocol"
  2146. type="2" >
  2147. </productMenu>
  2148. <productMenu id="alexa"
  2149. type="0" >
  2150. </productMenu>
  2151. <productMenu id="wa"
  2152. type="1" >
  2153. </productMenu>
  2154. <productMenu id="sip"
  2155. type="1" >
  2156. </productMenu>
  2157. <productMenu id="meshIntercom"
  2158. type="30" >
  2159. <productMenuType version="1.2.2"
  2160. type="20"
  2161. />
  2162. </productMenu>
  2163. <productMenu id="meshIntercom+"
  2164. type="3"
  2165. url="2" >
  2166. <productMenuType version="1.4.9"
  2167. type="2"
  2168. />
  2169. <productMenuURL version="1.2.2"
  2170. url="0"
  2171. />
  2172. </productMenu>
  2173. <productMenu id="waveIntercom"
  2174. type="1" >
  2175. <productMenuType version="1.3.9"
  2176. type="0"
  2177. />
  2178. </productMenu>
  2179. <productMenu id="bluetoothIntercom"
  2180. type="1" >
  2181. </productMenu>
  2182. <productMenu id="phone"
  2183. type="1" >
  2184. </productMenu>
  2185. <productMenu id="music"
  2186. type="1" >
  2187. </productMenu>
  2188. <productMenu id="fmradio"
  2189. type="1" >
  2190. </productMenu>
  2191. <productMenu id="deviceSetting"
  2192. type="1"
  2193. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2194. <productMenuURL version="1.4.9"
  2195. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2196. />
  2197. <productMenuURL version="1.3.9"
  2198. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2199. />
  2200. <productMenuURL version="1.2.2"
  2201. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2202. />
  2203. <productMenuURL version="1.1.1"
  2204. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2205. />
  2206. </productMenu>
  2207. <productMenu id="quickGuide"
  2208. type="0"
  2209. url=""
  2210. size="344KB" >
  2211. </productMenu>
  2212. <productMenu id="userGuide"
  2213. type="1"
  2214. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2215. size="3.41MB" >
  2216. </productMenu>
  2217. <productMenu id="videoGuide"
  2218. type="1"
  2219. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2220. size="3.41MB" >
  2221. </productMenu>
  2222. <productMenu id="volume"
  2223. type="11" >
  2224. </productMenu>
  2225. <productMenu id="battery"
  2226. type="1" >
  2227. </productMenu>
  2228. <productID id="3134"
  2229. />
  2230. <productGroupable type="0"
  2231. />
  2232. </product>
  2233. <product id="50C"
  2234. name="50C"
  2235. series="50"
  2236. latestVersion="1.4.3"
  2237. show = "1" >
  2238. <productMenu id="protocol"
  2239. type="2" >
  2240. </productMenu>
  2241. <productMenu id="ota"
  2242. type="0" >
  2243. </productMenu>
  2244. <productMenu id="wa"
  2245. type="1" >
  2246. </productMenu>
  2247. <productMenu id="sip"
  2248. type="1" >
  2249. </productMenu>
  2250. <productMenu id="meshIntercom"
  2251. type="30" >
  2252. <productMenuType version="1.1.1"
  2253. type="20"
  2254. />
  2255. </productMenu>
  2256. <productMenu id="meshIntercom+"
  2257. type="3"
  2258. url="2" >
  2259. <productMenuType version="1.3.9"
  2260. type="2"
  2261. />
  2262. <productMenuURL version="1.1.1"
  2263. url="0"
  2264. />
  2265. </productMenu>
  2266. <productMenu id="waveIntercom"
  2267. type="1" >
  2268. <productMenuType version="1.2.9"
  2269. type="0"
  2270. />
  2271. </productMenu>
  2272. <productMenu id="bluetoothIntercom"
  2273. type="1" >
  2274. </productMenu>
  2275. <productMenu id="phone"
  2276. type="1" >
  2277. </productMenu>
  2278. <productMenu id="music"
  2279. type="1" >
  2280. </productMenu>
  2281. <productMenu id="fmradio"
  2282. type="1" >
  2283. </productMenu>
  2284. <productMenu id="deviceSetting"
  2285. type="1"
  2286. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2287. <productMenuURL version="1.3.9"
  2288. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2289. />
  2290. <productMenuURL version="1.1.1"
  2291. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2292. />
  2293. <productMenuURL version="1.0.1"
  2294. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2295. />
  2296. </productMenu>
  2297. <productMenu id="quickGuide"
  2298. type="0"
  2299. url=""
  2300. size="344KB" >
  2301. </productMenu>
  2302. <productMenu id="userGuide"
  2303. type="1"
  2304. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2305. size="3.41MB" >
  2306. </productMenu>
  2307. <productMenu id="connectGuide"
  2308. type="1"
  2309. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2310. size="1.12MB" >
  2311. </productMenu>
  2312. <productMenu id="volume"
  2313. type="11" >
  2314. </productMenu>
  2315. <productMenu id="battery"
  2316. type="1" >
  2317. </productMenu>
  2318. <productID id="3232"
  2319. />
  2320. <productGroupable type="0"
  2321. />
  2322. </product>
  2323. <product id="PHANTOMXB"
  2324. name="PHANTOM XB"
  2325. series="Helmet"
  2326. latestVersion="1.2.9"
  2327. latestVersionVoicePrompt="1.6"
  2328. show = "-1" >
  2329. <productMenu id="protocol"
  2330. type="2" >
  2331. </productMenu>
  2332. <productMenu id="ota"
  2333. type="2" >
  2334. <otaLanguages>
  2335. <otaLanguage
  2336. id="0"
  2337. name="English"
  2338. package="0"
  2339. />
  2340. <otaLanguage
  2341. id="0"
  2342. name="French"
  2343. package="1"
  2344. />
  2345. <otaLanguage
  2346. id="0"
  2347. name="Spanish"
  2348. package="2"
  2349. />
  2350. <otaLanguage
  2351. id="0"
  2352. name="Italian"
  2353. package="3"
  2354. />
  2355. <otaLanguage
  2356. id="0"
  2357. name="German"
  2358. package="4"
  2359. />
  2360. <otaLanguage
  2361. id="0"
  2362. name="Dutch"
  2363. package="5"
  2364. />
  2365. <otaLanguage
  2366. id="0"
  2367. name="Russian"
  2368. package="6"
  2369. />
  2370. <otaLanguage
  2371. id="0"
  2372. name="Chinese"
  2373. package="7"
  2374. />
  2375. <otaLanguage
  2376. id="0"
  2377. name="Korean"
  2378. package="8"
  2379. />
  2380. <otaLanguage
  2381. id="0"
  2382. name="Japanese"
  2383. package="9"
  2384. />
  2385. <otaLanguage
  2386. id="0"
  2387. name="Finnish"
  2388. package="10"
  2389. />
  2390. <otaLanguage
  2391. id="0"
  2392. name="Polish"
  2393. package="11"
  2394. />
  2395. </otaLanguages>
  2396. <otaPackages>
  2397. <package
  2398. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0.img"
  2399. size="5183988"
  2400. />
  2401. <package
  2402. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fr-FR.img"
  2403. size="5183988"
  2404. />
  2405. <package
  2406. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-es-ES.img"
  2407. size="5183988"
  2408. />
  2409. <package
  2410. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-it-IT.img"
  2411. size="5183988"
  2412. />
  2413. <package
  2414. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-de-DE.img"
  2415. size="5183988"
  2416. />
  2417. <package
  2418. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-nl-NL.img"
  2419. size="5183988"
  2420. />
  2421. <package
  2422. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ru-RU.img"
  2423. size="5183988"
  2424. />
  2425. <package
  2426. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-cmn-CN.img"
  2427. size="5183988"
  2428. />
  2429. <package
  2430. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ko-KR.img"
  2431. size="5183988"
  2432. />
  2433. <package
  2434. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ja-JP.img"
  2435. size="5183988"
  2436. />
  2437. <package
  2438. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fi-FI.img"
  2439. size="5183988"
  2440. />
  2441. <package
  2442. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-pl-PL.img"
  2443. size="5183988"
  2444. />
  2445. </otaPackages>
  2446. </productMenu>
  2447. <productMenu id="wa"
  2448. type="0" >
  2449. </productMenu>
  2450. <productMenu id="led"
  2451. type="5" >
  2452. </productMenu>
  2453. <productMenu id="led+"
  2454. type="2"
  2455. url="1" >
  2456. </productMenu>
  2457. <productMenu id="meshIntercom"
  2458. type="30" >
  2459. </productMenu>
  2460. <productMenu id="meshIntercom+"
  2461. type="3"
  2462. url="2" >
  2463. </productMenu>
  2464. <productMenu id="waveIntercom"
  2465. type="1" >
  2466. </productMenu>
  2467. <productMenu id="fmradio"
  2468. type="0" >
  2469. </productMenu>
  2470. <productMenu id="phone"
  2471. type="1" >
  2472. </productMenu>
  2473. <productMenu id="music"
  2474. type="1" >
  2475. </productMenu>
  2476. <productMenu id="musicSharing"
  2477. type="0" >
  2478. </productMenu>
  2479. <productMenu id="deviceSetting"
  2480. type="1"
  2481. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2482. <productMenuURL version="1.2.4"
  2483. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2484. />
  2485. </productMenu>
  2486. <productMenu id="quickGuide"
  2487. type="0"
  2488. url=""
  2489. size="1.12MB" >
  2490. </productMenu>
  2491. <productMenu id="userGuide"
  2492. type="1"
  2493. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2494. size="2.0MB" >
  2495. </productMenu>
  2496. <productMenu id="videoGuide"
  2497. type="0"
  2498. url=""
  2499. size="3.41MB" >
  2500. </productMenu>
  2501. <productMenu id="volume"
  2502. type="16" >
  2503. </productMenu>
  2504. <productMenu id="volume+"
  2505. type="2"
  2506. url="0x6004" >
  2507. </productMenu>
  2508. <productMenu id="battery"
  2509. type="1" >
  2510. </productMenu>
  2511. <productID id="6A0F"
  2512. />
  2513. <productGroupable type="0"
  2514. />
  2515. </product>
  2516. <product id="PHANTOMXB"
  2517. name="PHANTOM XB"
  2518. series="Helmet"
  2519. latestVersion="1.2.9"
  2520. latestVersionVoicePrompt="1.6"
  2521. show = "-1" >
  2522. <productMenu id="protocol"
  2523. type="2" >
  2524. </productMenu>
  2525. <productMenu id="ota"
  2526. type="2" >
  2527. <otaLanguages>
  2528. <otaLanguage
  2529. id="0"
  2530. name="English"
  2531. package="0"
  2532. />
  2533. <otaLanguage
  2534. id="0"
  2535. name="French"
  2536. package="1"
  2537. />
  2538. <otaLanguage
  2539. id="0"
  2540. name="Spanish"
  2541. package="2"
  2542. />
  2543. <otaLanguage
  2544. id="0"
  2545. name="Italian"
  2546. package="3"
  2547. />
  2548. <otaLanguage
  2549. id="0"
  2550. name="German"
  2551. package="4"
  2552. />
  2553. <otaLanguage
  2554. id="0"
  2555. name="Dutch"
  2556. package="5"
  2557. />
  2558. <otaLanguage
  2559. id="0"
  2560. name="Russian"
  2561. package="6"
  2562. />
  2563. <otaLanguage
  2564. id="0"
  2565. name="Chinese"
  2566. package="7"
  2567. />
  2568. <otaLanguage
  2569. id="0"
  2570. name="Korean"
  2571. package="8"
  2572. />
  2573. <otaLanguage
  2574. id="0"
  2575. name="Japanese"
  2576. package="9"
  2577. />
  2578. <otaLanguage
  2579. id="0"
  2580. name="Finnish"
  2581. package="10"
  2582. />
  2583. <otaLanguage
  2584. id="0"
  2585. name="Polish"
  2586. package="11"
  2587. />
  2588. </otaLanguages>
  2589. <otaPackages>
  2590. <package
  2591. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0.img"
  2592. size="5183988"
  2593. />
  2594. <package
  2595. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fr-FR.img"
  2596. size="5183988"
  2597. />
  2598. <package
  2599. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-es-ES.img"
  2600. size="5183988"
  2601. />
  2602. <package
  2603. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-it-IT.img"
  2604. size="5183988"
  2605. />
  2606. <package
  2607. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-de-DE.img"
  2608. size="5183988"
  2609. />
  2610. <package
  2611. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-nl-NL.img"
  2612. size="5183988"
  2613. />
  2614. <package
  2615. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ru-RU.img"
  2616. size="5183988"
  2617. />
  2618. <package
  2619. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-cmn-CN.img"
  2620. size="5183988"
  2621. />
  2622. <package
  2623. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ko-KR.img"
  2624. size="5183988"
  2625. />
  2626. <package
  2627. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ja-JP.img"
  2628. size="5183988"
  2629. />
  2630. <package
  2631. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fi-FI.img"
  2632. size="5183988"
  2633. />
  2634. <package
  2635. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-pl-PL.img"
  2636. size="5183988"
  2637. />
  2638. </otaPackages>
  2639. </productMenu>
  2640. <productMenu id="wa"
  2641. type="0" >
  2642. </productMenu>
  2643. <productMenu id="led"
  2644. type="5" >
  2645. </productMenu>
  2646. <productMenu id="led+"
  2647. type="2"
  2648. url="1" >
  2649. </productMenu>
  2650. <productMenu id="meshIntercom"
  2651. type="30" >
  2652. </productMenu>
  2653. <productMenu id="meshIntercom+"
  2654. type="3"
  2655. url="2" >
  2656. </productMenu>
  2657. <productMenu id="waveIntercom"
  2658. type="1" >
  2659. </productMenu>
  2660. <productMenu id="fmradio"
  2661. type="0" >
  2662. </productMenu>
  2663. <productMenu id="phone"
  2664. type="1" >
  2665. </productMenu>
  2666. <productMenu id="music"
  2667. type="1" >
  2668. </productMenu>
  2669. <productMenu id="musicSharing"
  2670. type="0" >
  2671. </productMenu>
  2672. <productMenu id="deviceSetting"
  2673. type="1"
  2674. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2675. <productMenuURL version="1.2.4"
  2676. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2677. />
  2678. <productMenuURL version="1.2.1"
  2679. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2680. />
  2681. </productMenu>
  2682. <productMenu id="quickGuide"
  2683. type="0"
  2684. url=""
  2685. size="1.12MB" >
  2686. </productMenu>
  2687. <productMenu id="userGuide"
  2688. type="1"
  2689. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2690. size="2.0MB" >
  2691. </productMenu>
  2692. <productMenu id="videoGuide"
  2693. type="0"
  2694. url=""
  2695. size="3.41MB" >
  2696. </productMenu>
  2697. <productMenu id="volume"
  2698. type="16" >
  2699. </productMenu>
  2700. <productMenu id="volume+"
  2701. type="2"
  2702. url="0x6004" >
  2703. </productMenu>
  2704. <productMenu id="battery"
  2705. type="1" >
  2706. </productMenu>
  2707. <productID id="6A0C"
  2708. />
  2709. <productGroupable type="0"
  2710. />
  2711. </product>
  2712. <product id="PHANTOMKV"
  2713. name="PHANTOM KV"
  2714. series="Helmet"
  2715. latestVersion="1.2.10"
  2716. latestVersionVoicePrompt="1.7"
  2717. show = "-1" >
  2718. <productMenu id="protocol"
  2719. type="2" >
  2720. </productMenu>
  2721. <productMenu id="ota"
  2722. type="2" >
  2723. <otaLanguages>
  2724. <otaLanguage
  2725. id="0"
  2726. name="English"
  2727. package="0"
  2728. />
  2729. <otaLanguage
  2730. id="0"
  2731. name="French"
  2732. package="1"
  2733. />
  2734. <otaLanguage
  2735. id="0"
  2736. name="Spanish"
  2737. package="2"
  2738. />
  2739. <otaLanguage
  2740. id="0"
  2741. name="Italian"
  2742. package="3"
  2743. />
  2744. <otaLanguage
  2745. id="0"
  2746. name="German"
  2747. package="4"
  2748. />
  2749. <otaLanguage
  2750. id="0"
  2751. name="Dutch"
  2752. package="5"
  2753. />
  2754. <otaLanguage
  2755. id="0"
  2756. name="Russian"
  2757. package="6"
  2758. />
  2759. <otaLanguage
  2760. id="0"
  2761. name="Chinese"
  2762. package="7"
  2763. />
  2764. <otaLanguage
  2765. id="0"
  2766. name="Korean"
  2767. package="8"
  2768. />
  2769. <otaLanguage
  2770. id="0"
  2771. name="Japanese"
  2772. package="9"
  2773. />
  2774. <otaLanguage
  2775. id="0"
  2776. name="Finnish"
  2777. package="10"
  2778. />
  2779. <otaLanguage
  2780. id="0"
  2781. name="Polish"
  2782. package="11"
  2783. />
  2784. </otaLanguages>
  2785. <otaPackages>
  2786. <package
  2787. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0.img"
  2788. size="5183988"
  2789. />
  2790. <package
  2791. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fr-FR.img"
  2792. size="5183988"
  2793. />
  2794. <package
  2795. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-es-ES.img"
  2796. size="5183988"
  2797. />
  2798. <package
  2799. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-it-IT.img"
  2800. size="5183988"
  2801. />
  2802. <package
  2803. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-de-DE.img"
  2804. size="5183988"
  2805. />
  2806. <package
  2807. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-nl-NL.img"
  2808. size="5183988"
  2809. />
  2810. <package
  2811. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ru-RU.img"
  2812. size="5183988"
  2813. />
  2814. <package
  2815. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-cmn-CN.img"
  2816. size="5183988"
  2817. />
  2818. <package
  2819. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ko-KR.img"
  2820. size="5183988"
  2821. />
  2822. <package
  2823. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ja-JP.img"
  2824. size="5183988"
  2825. />
  2826. <package
  2827. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fi-FI.img"
  2828. size="5183988"
  2829. />
  2830. <package
  2831. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-pl-PL.img"
  2832. size="5183988"
  2833. />
  2834. </otaPackages>
  2835. </productMenu>
  2836. <productMenu id="wa"
  2837. type="0" >
  2838. </productMenu>
  2839. <productMenu id="led"
  2840. type="5" >
  2841. </productMenu>
  2842. <productMenu id="led+"
  2843. type="2"
  2844. url="1" >
  2845. </productMenu>
  2846. <productMenu id="meshIntercom"
  2847. type="30" >
  2848. </productMenu>
  2849. <productMenu id="meshIntercom+"
  2850. type="3"
  2851. url="2" >
  2852. </productMenu>
  2853. <productMenu id="waveIntercom"
  2854. type="1" >
  2855. </productMenu>
  2856. <productMenu id="fmradio"
  2857. type="0" >
  2858. </productMenu>
  2859. <productMenu id="phone"
  2860. type="1" >
  2861. </productMenu>
  2862. <productMenu id="music"
  2863. type="1" >
  2864. </productMenu>
  2865. <productMenu id="musicSharing"
  2866. type="0" >
  2867. </productMenu>
  2868. <productMenu id="deviceSetting"
  2869. type="1"
  2870. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2871. <productMenuURL version="1.2.4"
  2872. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2873. />
  2874. </productMenu>
  2875. <productMenu id="quickGuide"
  2876. type="0"
  2877. url=""
  2878. size="1.12MB" >
  2879. </productMenu>
  2880. <productMenu id="userGuide"
  2881. type="1"
  2882. url=""
  2883. size="2.0MB" >
  2884. </productMenu>
  2885. <productMenu id="videoGuide"
  2886. type="0"
  2887. url=""
  2888. size="3.41MB" >
  2889. </productMenu>
  2890. <productMenu id="volume"
  2891. type="16" >
  2892. </productMenu>
  2893. <productMenu id="volume+"
  2894. type="2"
  2895. url="0x6004" >
  2896. </productMenu>
  2897. <productMenu id="soundMode"
  2898. type="1" >
  2899. </productMenu>
  2900. <productMenu id="battery"
  2901. type="1" >
  2902. </productMenu>
  2903. <productID id="6A13"
  2904. />
  2905. <productGroupable type="0"
  2906. />
  2907. </product>
  2908. <product id="PHANTOMCamera"
  2909. name="PHANTOM Camera"
  2910. series="Helmet"
  2911. latestVersion="1.0.1"
  2912. latestVersionVoicePrompt="0.4"
  2913. show = "-1" >
  2914. <productMenu id="protocol"
  2915. type="2" >
  2916. </productMenu>
  2917. <productMenu id="ota"
  2918. type="3" >
  2919. <otaLanguages>
  2920. <otaLanguage
  2921. id="0"
  2922. name="English"
  2923. package="0"
  2924. />
  2925. <otaLanguage
  2926. id="0"
  2927. name="French"
  2928. package="1"
  2929. />
  2930. <otaLanguage
  2931. id="0"
  2932. name="Spanish"
  2933. package="2"
  2934. />
  2935. <otaLanguage
  2936. id="0"
  2937. name="Italian"
  2938. package="3"
  2939. />
  2940. <otaLanguage
  2941. id="0"
  2942. name="German"
  2943. package="4"
  2944. />
  2945. <otaLanguage
  2946. id="0"
  2947. name="Dutch"
  2948. package="5"
  2949. />
  2950. <otaLanguage
  2951. id="0"
  2952. name="Russian"
  2953. package="6"
  2954. />
  2955. <otaLanguage
  2956. id="0"
  2957. name="Chinese"
  2958. package="7"
  2959. />
  2960. <otaLanguage
  2961. id="0"
  2962. name="Korean"
  2963. package="8"
  2964. />
  2965. <otaLanguage
  2966. id="0"
  2967. name="Japanese"
  2968. package="9"
  2969. />
  2970. <otaLanguage
  2971. id="0"
  2972. name="Finnish"
  2973. package="10"
  2974. />
  2975. <otaLanguage
  2976. id="0"
  2977. name="Polish"
  2978. package="11"
  2979. />
  2980. </otaLanguages>
  2981. <otaPackages>
  2982. <package
  2983. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2984. size="5183988"
  2985. />
  2986. <package
  2987. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  2988. size="5183988"
  2989. />
  2990. <package
  2991. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  2992. size="5183988"
  2993. />
  2994. <package
  2995. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  2996. size="5183988"
  2997. />
  2998. <package
  2999. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  3000. size="5183988"
  3001. />
  3002. <package
  3003. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  3004. size="5183988"
  3005. />
  3006. <package
  3007. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  3008. size="5183988"
  3009. />
  3010. <package
  3011. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  3012. size="5183988"
  3013. />
  3014. <package
  3015. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  3016. size="5183988"
  3017. />
  3018. <package
  3019. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  3020. size="5183988"
  3021. />
  3022. <package
  3023. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  3024. size="5183988"
  3025. />
  3026. <package
  3027. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  3028. size="5183988"
  3029. />
  3030. </otaPackages>
  3031. </productMenu>
  3032. <productMenu id="wa"
  3033. type="0" >
  3034. </productMenu>
  3035. <productMenu id="led"
  3036. type="5" >
  3037. </productMenu>
  3038. <productMenu id="led+"
  3039. type="2"
  3040. url="1" >
  3041. </productMenu>
  3042. <productMenu id="meshIntercom"
  3043. type="30" >
  3044. </productMenu>
  3045. <productMenu id="meshIntercom+"
  3046. type="3"
  3047. url="2" >
  3048. </productMenu>
  3049. <productMenu id="waveIntercom"
  3050. type="1" >
  3051. </productMenu>
  3052. <productMenu id="fmradio"
  3053. type="0" >
  3054. </productMenu>
  3055. <productMenu id="phone"
  3056. type="1" >
  3057. </productMenu>
  3058. <productMenu id="music"
  3059. type="1" >
  3060. </productMenu>
  3061. <productMenu id="musicSharing"
  3062. type="0" >
  3063. </productMenu>
  3064. <productMenu id="deviceSetting"
  3065. type="1"
  3066. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3067. </productMenu>
  3068. <productMenu id="quickGuide"
  3069. type="0"
  3070. url=""
  3071. size="1.12MB" >
  3072. </productMenu>
  3073. <productMenu id="userGuide"
  3074. type="1"
  3075. url=""
  3076. size="2.0MB" >
  3077. </productMenu>
  3078. <productMenu id="videoGuide"
  3079. type="0"
  3080. url=""
  3081. size="3.41MB" >
  3082. </productMenu>
  3083. <productMenu id="volume"
  3084. type="16" >
  3085. </productMenu>
  3086. <productMenu id="battery"
  3087. type="1" >
  3088. </productMenu>
  3089. <productID id="6A10"
  3090. />
  3091. <productGroupable type="0"
  3092. />
  3093. </product>
  3094. <product id="PHANTOMCamera"
  3095. name="PHANTOM Camera"
  3096. series="Helmet"
  3097. latestVersion="1.0.1"
  3098. latestVersionVoicePrompt="0.4"
  3099. show = "-1" >
  3100. <productMenu id="protocol"
  3101. type="2" >
  3102. </productMenu>
  3103. <productMenu id="ota"
  3104. type="3" >
  3105. <otaLanguages>
  3106. <otaLanguage
  3107. id="0"
  3108. name="English"
  3109. package="0"
  3110. />
  3111. <otaLanguage
  3112. id="0"
  3113. name="French"
  3114. package="1"
  3115. />
  3116. <otaLanguage
  3117. id="0"
  3118. name="Spanish"
  3119. package="2"
  3120. />
  3121. <otaLanguage
  3122. id="0"
  3123. name="Italian"
  3124. package="3"
  3125. />
  3126. <otaLanguage
  3127. id="0"
  3128. name="German"
  3129. package="4"
  3130. />
  3131. <otaLanguage
  3132. id="0"
  3133. name="Dutch"
  3134. package="5"
  3135. />
  3136. <otaLanguage
  3137. id="0"
  3138. name="Russian"
  3139. package="6"
  3140. />
  3141. <otaLanguage
  3142. id="0"
  3143. name="Chinese"
  3144. package="7"
  3145. />
  3146. <otaLanguage
  3147. id="0"
  3148. name="Korean"
  3149. package="8"
  3150. />
  3151. <otaLanguage
  3152. id="0"
  3153. name="Japanese"
  3154. package="9"
  3155. />
  3156. <otaLanguage
  3157. id="0"
  3158. name="Finnish"
  3159. package="10"
  3160. />
  3161. <otaLanguage
  3162. id="0"
  3163. name="Polish"
  3164. package="11"
  3165. />
  3166. </otaLanguages>
  3167. <otaPackages>
  3168. <package
  3169. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  3170. size="5183988"
  3171. />
  3172. <package
  3173. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  3174. size="5183988"
  3175. />
  3176. <package
  3177. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  3178. size="5183988"
  3179. />
  3180. <package
  3181. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  3182. size="5183988"
  3183. />
  3184. <package
  3185. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  3186. size="5183988"
  3187. />
  3188. <package
  3189. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  3190. size="5183988"
  3191. />
  3192. <package
  3193. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  3194. size="5183988"
  3195. />
  3196. <package
  3197. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  3198. size="5183988"
  3199. />
  3200. <package
  3201. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  3202. size="5183988"
  3203. />
  3204. <package
  3205. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  3206. size="5183988"
  3207. />
  3208. <package
  3209. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  3210. size="5183988"
  3211. />
  3212. <package
  3213. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  3214. size="5183988"
  3215. />
  3216. </otaPackages>
  3217. </productMenu>
  3218. <productMenu id="wa"
  3219. type="0" >
  3220. </productMenu>
  3221. <productMenu id="led"
  3222. type="5" >
  3223. </productMenu>
  3224. <productMenu id="led+"
  3225. type="2"
  3226. url="1" >
  3227. </productMenu>
  3228. <productMenu id="meshIntercom"
  3229. type="30" >
  3230. </productMenu>
  3231. <productMenu id="meshIntercom+"
  3232. type="3"
  3233. url="2" >
  3234. </productMenu>
  3235. <productMenu id="waveIntercom"
  3236. type="1" >
  3237. </productMenu>
  3238. <productMenu id="fmradio"
  3239. type="0" >
  3240. </productMenu>
  3241. <productMenu id="phone"
  3242. type="1" >
  3243. </productMenu>
  3244. <productMenu id="music"
  3245. type="1" >
  3246. </productMenu>
  3247. <productMenu id="musicSharing"
  3248. type="0" >
  3249. </productMenu>
  3250. <productMenu id="deviceSetting"
  3251. type="1"
  3252. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3253. </productMenu>
  3254. <productMenu id="quickGuide"
  3255. type="0"
  3256. url=""
  3257. size="1.12MB" >
  3258. </productMenu>
  3259. <productMenu id="userGuide"
  3260. type="1"
  3261. url=""
  3262. size="2.0MB" >
  3263. </productMenu>
  3264. <productMenu id="videoGuide"
  3265. type="0"
  3266. url=""
  3267. size="3.41MB" >
  3268. </productMenu>
  3269. <productMenu id="volume"
  3270. type="16" >
  3271. </productMenu>
  3272. <productMenu id="battery"
  3273. type="1" >
  3274. </productMenu>
  3275. <productID id="6A09"
  3276. />
  3277. <productGroupable type="0"
  3278. />
  3279. </product>
  3280. <product id="PHANTOM"
  3281. name="PHANTOM ANC"
  3282. series="Helmet"
  3283. latestVersion="1.2.9"
  3284. latestVersionVoicePrompt="1.7"
  3285. show = "1" >
  3286. <productMenu id="protocol"
  3287. type="2" >
  3288. </productMenu>
  3289. <productMenu id="ota"
  3290. type="2" >
  3291. <productMenuType version="0.6.9"
  3292. type="0"
  3293. />
  3294. <otaLanguages>
  3295. <otaLanguage
  3296. id="0"
  3297. name="English"
  3298. package="0"
  3299. />
  3300. <otaLanguage
  3301. id="0"
  3302. name="French"
  3303. package="1"
  3304. />
  3305. <otaLanguage
  3306. id="0"
  3307. name="Spanish"
  3308. package="2"
  3309. />
  3310. <otaLanguage
  3311. id="0"
  3312. name="Italian"
  3313. package="3"
  3314. />
  3315. <otaLanguage
  3316. id="0"
  3317. name="German"
  3318. package="4"
  3319. />
  3320. <otaLanguage
  3321. id="0"
  3322. name="Dutch"
  3323. package="5"
  3324. />
  3325. <otaLanguage
  3326. id="0"
  3327. name="Russian"
  3328. package="6"
  3329. />
  3330. <otaLanguage
  3331. id="0"
  3332. name="Chinese"
  3333. package="7"
  3334. />
  3335. <otaLanguage
  3336. id="0"
  3337. name="Korean"
  3338. package="8"
  3339. />
  3340. <otaLanguage
  3341. id="0"
  3342. name="Japanese"
  3343. package="9"
  3344. />
  3345. <otaLanguage
  3346. id="0"
  3347. name="Finnish"
  3348. package="10"
  3349. />
  3350. <otaLanguage
  3351. id="0"
  3352. name="Polish"
  3353. package="11"
  3354. />
  3355. </otaLanguages>
  3356. <otaPackages>
  3357. <package
  3358. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0.img"
  3359. size="5183988"
  3360. />
  3361. <package
  3362. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fr-FR.img"
  3363. size="5183988"
  3364. />
  3365. <package
  3366. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-es-ES.img"
  3367. size="5183988"
  3368. />
  3369. <package
  3370. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-it-IT.img"
  3371. size="5183988"
  3372. />
  3373. <package
  3374. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-de-DE.img"
  3375. size="5183988"
  3376. />
  3377. <package
  3378. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-nl-NL.img"
  3379. size="5183988"
  3380. />
  3381. <package
  3382. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ru-RU.img"
  3383. size="5183988"
  3384. />
  3385. <package
  3386. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-cmn-CN.img"
  3387. size="5183988"
  3388. />
  3389. <package
  3390. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ko-KR.img"
  3391. size="5183988"
  3392. />
  3393. <package
  3394. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ja-JP.img"
  3395. size="5183988"
  3396. />
  3397. <package
  3398. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fi-FI.img"
  3399. size="5183988"
  3400. />
  3401. <package
  3402. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-pl-PL.img"
  3403. size="5183988"
  3404. />
  3405. </otaPackages>
  3406. </productMenu>
  3407. <productMenu id="wa"
  3408. type="0" >
  3409. </productMenu>
  3410. <productMenu id="led"
  3411. type="5" >
  3412. </productMenu>
  3413. <productMenu id="led+"
  3414. type="2"
  3415. url="1" >
  3416. </productMenu>
  3417. <productMenu id="meshIntercom"
  3418. type="30" >
  3419. </productMenu>
  3420. <productMenu id="meshIntercom+"
  3421. type="3"
  3422. url="2" >
  3423. <productMenuURL version="1.0.4"
  3424. url="10"
  3425. />
  3426. </productMenu>
  3427. <productMenu id="waveIntercom"
  3428. type="1" >
  3429. <productMenuType version="1.0.9"
  3430. type="0"
  3431. />
  3432. </productMenu>
  3433. <productMenu id="fmradio"
  3434. type="0" >
  3435. </productMenu>
  3436. <productMenu id="phone"
  3437. type="1" >
  3438. </productMenu>
  3439. <productMenu id="music"
  3440. type="1" >
  3441. </productMenu>
  3442. <productMenu id="musicSharing"
  3443. type="0" >
  3444. </productMenu>
  3445. <productMenu id="deviceSetting"
  3446. type="1"
  3447. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3448. <productMenuURL version="1.2.4"
  3449. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3450. />
  3451. <productMenuURL version="1.2.1"
  3452. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3453. />
  3454. <productMenuURL version="1.1.2"
  3455. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3456. />
  3457. <productMenuURL version="1.0.4"
  3458. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3459. />
  3460. </productMenu>
  3461. <productMenu id="quickGuide"
  3462. type="0"
  3463. url=""
  3464. size="1.12MB" >
  3465. </productMenu>
  3466. <productMenu id="userGuide"
  3467. type="1"
  3468. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3469. size="2.0MB" >
  3470. </productMenu>
  3471. <productMenu id="videoGuide"
  3472. type="0"
  3473. url=""
  3474. size="3.41MB" >
  3475. </productMenu>
  3476. <productMenu id="volume"
  3477. type="16" >
  3478. </productMenu>
  3479. <productMenu id="volume+"
  3480. type="2"
  3481. url="0x6004" >
  3482. </productMenu>
  3483. <productMenu id="soundMode"
  3484. type="1" >
  3485. <productMenuType version="0.9.11"
  3486. type="0"
  3487. />
  3488. </productMenu>
  3489. <productMenu id="battery"
  3490. type="1" >
  3491. </productMenu>
  3492. <productID id="6A01"
  3493. />
  3494. <productGroupable type="0"
  3495. />
  3496. </product>
  3497. <product id="PHANTOM"
  3498. name="PHANTOM ANC"
  3499. series="Helmet"
  3500. latestVersion="1.2.9"
  3501. latestVersionVoicePrompt="1.7"
  3502. show = "-1" >
  3503. <productMenu id="protocol"
  3504. type="2" >
  3505. </productMenu>
  3506. <productMenu id="ota"
  3507. type="2" >
  3508. <otaLanguages>
  3509. <otaLanguage
  3510. id="0"
  3511. name="English"
  3512. package="0"
  3513. />
  3514. <otaLanguage
  3515. id="0"
  3516. name="French"
  3517. package="1"
  3518. />
  3519. <otaLanguage
  3520. id="0"
  3521. name="Spanish"
  3522. package="2"
  3523. />
  3524. <otaLanguage
  3525. id="0"
  3526. name="Italian"
  3527. package="3"
  3528. />
  3529. <otaLanguage
  3530. id="0"
  3531. name="German"
  3532. package="4"
  3533. />
  3534. <otaLanguage
  3535. id="0"
  3536. name="Dutch"
  3537. package="5"
  3538. />
  3539. <otaLanguage
  3540. id="0"
  3541. name="Russian"
  3542. package="6"
  3543. />
  3544. <otaLanguage
  3545. id="0"
  3546. name="Chinese"
  3547. package="7"
  3548. />
  3549. <otaLanguage
  3550. id="0"
  3551. name="Korean"
  3552. package="8"
  3553. />
  3554. <otaLanguage
  3555. id="0"
  3556. name="Japanese"
  3557. package="9"
  3558. />
  3559. <otaLanguage
  3560. id="0"
  3561. name="Finnish"
  3562. package="10"
  3563. />
  3564. <otaLanguage
  3565. id="0"
  3566. name="Polish"
  3567. package="11"
  3568. />
  3569. </otaLanguages>
  3570. <otaPackages>
  3571. <package
  3572. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0.img"
  3573. size="5183988"
  3574. />
  3575. <package
  3576. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fr-FR.img"
  3577. size="5183988"
  3578. />
  3579. <package
  3580. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-es-ES.img"
  3581. size="5183988"
  3582. />
  3583. <package
  3584. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-it-IT.img"
  3585. size="5183988"
  3586. />
  3587. <package
  3588. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-de-DE.img"
  3589. size="5183988"
  3590. />
  3591. <package
  3592. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-nl-NL.img"
  3593. size="5183988"
  3594. />
  3595. <package
  3596. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ru-RU.img"
  3597. size="5183988"
  3598. />
  3599. <package
  3600. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-cmn-CN.img"
  3601. size="5183988"
  3602. />
  3603. <package
  3604. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ko-KR.img"
  3605. size="5183988"
  3606. />
  3607. <package
  3608. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ja-JP.img"
  3609. size="5183988"
  3610. />
  3611. <package
  3612. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fi-FI.img"
  3613. size="5183988"
  3614. />
  3615. <package
  3616. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-pl-PL.img"
  3617. size="5183988"
  3618. />
  3619. </otaPackages>
  3620. </productMenu>
  3621. <productMenu id="led"
  3622. type="5" >
  3623. </productMenu>
  3624. <productMenu id="led+"
  3625. type="2"
  3626. url="1" >
  3627. </productMenu>
  3628. <productMenu id="meshIntercom"
  3629. type="30" >
  3630. </productMenu>
  3631. <productMenu id="meshIntercom+"
  3632. type="3"
  3633. url="2" >
  3634. </productMenu>
  3635. <productMenu id="waveIntercom"
  3636. type="1" >
  3637. </productMenu>
  3638. <productMenu id="fmradio"
  3639. type="0" >
  3640. </productMenu>
  3641. <productMenu id="phone"
  3642. type="1" >
  3643. </productMenu>
  3644. <productMenu id="music"
  3645. type="1" >
  3646. </productMenu>
  3647. <productMenu id="musicSharing"
  3648. type="0" >
  3649. </productMenu>
  3650. <productMenu id="deviceSetting"
  3651. type="1"
  3652. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3653. <productMenuURL version="1.2.4"
  3654. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3655. />
  3656. </productMenu>
  3657. <productMenu id="quickGuide"
  3658. type="0"
  3659. url=""
  3660. size="1.12MB" >
  3661. </productMenu>
  3662. <productMenu id="userGuide"
  3663. type="1"
  3664. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3665. size="2.0MB" >
  3666. </productMenu>
  3667. <productMenu id="videoGuide"
  3668. type="0"
  3669. url=""
  3670. size="3.41MB" >
  3671. </productMenu>
  3672. <productMenu id="volume"
  3673. type="16" >
  3674. </productMenu>
  3675. <productMenu id="volume+"
  3676. type="2"
  3677. url="0x6004" >
  3678. </productMenu>
  3679. <productMenu id="soundMode"
  3680. type="1" >
  3681. </productMenu>
  3682. <productMenu id="battery"
  3683. type="1" >
  3684. </productMenu>
  3685. <productID id="6A19"
  3686. />
  3687. <productGroupable type="0"
  3688. />
  3689. </product>
  3690. <product id="PHANTOM"
  3691. name="PHANTOM"
  3692. series="Helmet"
  3693. latestVersion="1.2.9"
  3694. latestVersionVoicePrompt="1.7"
  3695. show = "-1" >
  3696. <productMenu id="protocol"
  3697. type="2" >
  3698. </productMenu>
  3699. <productMenu id="ota"
  3700. type="2" >
  3701. <otaLanguages>
  3702. <otaLanguage
  3703. id="0"
  3704. name="English"
  3705. package="0"
  3706. />
  3707. <otaLanguage
  3708. id="0"
  3709. name="French"
  3710. package="1"
  3711. />
  3712. <otaLanguage
  3713. id="0"
  3714. name="Spanish"
  3715. package="2"
  3716. />
  3717. <otaLanguage
  3718. id="0"
  3719. name="Italian"
  3720. package="3"
  3721. />
  3722. <otaLanguage
  3723. id="0"
  3724. name="German"
  3725. package="4"
  3726. />
  3727. <otaLanguage
  3728. id="0"
  3729. name="Dutch"
  3730. package="5"
  3731. />
  3732. <otaLanguage
  3733. id="0"
  3734. name="Russian"
  3735. package="6"
  3736. />
  3737. <otaLanguage
  3738. id="0"
  3739. name="Chinese"
  3740. package="7"
  3741. />
  3742. <otaLanguage
  3743. id="0"
  3744. name="Korean"
  3745. package="8"
  3746. />
  3747. <otaLanguage
  3748. id="0"
  3749. name="Japanese"
  3750. package="9"
  3751. />
  3752. <otaLanguage
  3753. id="0"
  3754. name="Finnish"
  3755. package="10"
  3756. />
  3757. <otaLanguage
  3758. id="0"
  3759. name="Polish"
  3760. package="11"
  3761. />
  3762. </otaLanguages>
  3763. <otaPackages>
  3764. <package
  3765. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0.img"
  3766. size="5183988"
  3767. />
  3768. <package
  3769. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fr-FR.img"
  3770. size="5183988"
  3771. />
  3772. <package
  3773. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-es-ES.img"
  3774. size="5183988"
  3775. />
  3776. <package
  3777. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-it-IT.img"
  3778. size="5183988"
  3779. />
  3780. <package
  3781. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-de-DE.img"
  3782. size="5183988"
  3783. />
  3784. <package
  3785. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-nl-NL.img"
  3786. size="5183988"
  3787. />
  3788. <package
  3789. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ru-RU.img"
  3790. size="5183988"
  3791. />
  3792. <package
  3793. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-cmn-CN.img"
  3794. size="5183988"
  3795. />
  3796. <package
  3797. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ko-KR.img"
  3798. size="5183988"
  3799. />
  3800. <package
  3801. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ja-JP.img"
  3802. size="5183988"
  3803. />
  3804. <package
  3805. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fi-FI.img"
  3806. size="5183988"
  3807. />
  3808. <package
  3809. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-pl-PL.img"
  3810. size="5183988"
  3811. />
  3812. </otaPackages>
  3813. </productMenu>
  3814. <productMenu id="wa"
  3815. type="0" >
  3816. </productMenu>
  3817. <productMenu id="led"
  3818. type="5" >
  3819. </productMenu>
  3820. <productMenu id="led+"
  3821. type="2"
  3822. url="1" >
  3823. </productMenu>
  3824. <productMenu id="meshIntercom"
  3825. type="30" >
  3826. </productMenu>
  3827. <productMenu id="meshIntercom+"
  3828. type="3"
  3829. url="2" >
  3830. </productMenu>
  3831. <productMenu id="waveIntercom"
  3832. type="1" >
  3833. </productMenu>
  3834. <productMenu id="fmradio"
  3835. type="0" >
  3836. </productMenu>
  3837. <productMenu id="phone"
  3838. type="1" >
  3839. </productMenu>
  3840. <productMenu id="music"
  3841. type="1" >
  3842. </productMenu>
  3843. <productMenu id="musicSharing"
  3844. type="0" >
  3845. </productMenu>
  3846. <productMenu id="deviceSetting"
  3847. type="1"
  3848. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3849. <productMenuURL version="1.2.4"
  3850. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3851. />
  3852. </productMenu>
  3853. <productMenu id="quickGuide"
  3854. type="0"
  3855. url=""
  3856. size="1.52MB" >
  3857. </productMenu>
  3858. <productMenu id="userGuide"
  3859. type="1"
  3860. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3861. size="2.01MB" >
  3862. </productMenu>
  3863. <productMenu id="videoGuide"
  3864. type="0"
  3865. url=""
  3866. size="3.46MB" >
  3867. </productMenu>
  3868. <productMenu id="connectGuide"
  3869. type="1"
  3870. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3871. size="1.1MB" >
  3872. </productMenu>
  3873. <productMenu id="volume"
  3874. type="16" >
  3875. </productMenu>
  3876. <productMenu id="volume+"
  3877. type="2"
  3878. url="0x6004" >
  3879. </productMenu>
  3880. <productMenu id="battery"
  3881. type="1" >
  3882. </productMenu>
  3883. <productID id="6A0E"
  3884. />
  3885. <productGroupable type="0"
  3886. />
  3887. </product>
  3888. <product id="PHANTOM"
  3889. name="PHANTOM"
  3890. series="Helmet"
  3891. latestVersion="1.2.9"
  3892. latestVersionVoicePrompt="1.7"
  3893. show = "1" >
  3894. <productMenu id="protocol"
  3895. type="2" >
  3896. </productMenu>
  3897. <productMenu id="ota"
  3898. type="2" >
  3899. <otaLanguages>
  3900. <otaLanguage
  3901. id="0"
  3902. name="English"
  3903. package="0"
  3904. />
  3905. <otaLanguage
  3906. id="0"
  3907. name="French"
  3908. package="1"
  3909. />
  3910. <otaLanguage
  3911. id="0"
  3912. name="Spanish"
  3913. package="2"
  3914. />
  3915. <otaLanguage
  3916. id="0"
  3917. name="Italian"
  3918. package="3"
  3919. />
  3920. <otaLanguage
  3921. id="0"
  3922. name="German"
  3923. package="4"
  3924. />
  3925. <otaLanguage
  3926. id="0"
  3927. name="Dutch"
  3928. package="5"
  3929. />
  3930. <otaLanguage
  3931. id="0"
  3932. name="Russian"
  3933. package="6"
  3934. />
  3935. <otaLanguage
  3936. id="0"
  3937. name="Chinese"
  3938. package="7"
  3939. />
  3940. <otaLanguage
  3941. id="0"
  3942. name="Korean"
  3943. package="8"
  3944. />
  3945. <otaLanguage
  3946. id="0"
  3947. name="Japanese"
  3948. package="9"
  3949. />
  3950. <otaLanguage
  3951. id="0"
  3952. name="Finnish"
  3953. package="10"
  3954. />
  3955. <otaLanguage
  3956. id="0"
  3957. name="Polish"
  3958. package="11"
  3959. />
  3960. </otaLanguages>
  3961. <otaPackages>
  3962. <package
  3963. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0.img"
  3964. size="5183988"
  3965. />
  3966. <package
  3967. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fr-FR.img"
  3968. size="5183988"
  3969. />
  3970. <package
  3971. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-es-ES.img"
  3972. size="5183988"
  3973. />
  3974. <package
  3975. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-it-IT.img"
  3976. size="5183988"
  3977. />
  3978. <package
  3979. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-de-DE.img"
  3980. size="5183988"
  3981. />
  3982. <package
  3983. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-nl-NL.img"
  3984. size="5183988"
  3985. />
  3986. <package
  3987. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ru-RU.img"
  3988. size="5183988"
  3989. />
  3990. <package
  3991. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-cmn-CN.img"
  3992. size="5183988"
  3993. />
  3994. <package
  3995. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ko-KR.img"
  3996. size="5183988"
  3997. />
  3998. <package
  3999. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ja-JP.img"
  4000. size="5183988"
  4001. />
  4002. <package
  4003. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fi-FI.img"
  4004. size="5183988"
  4005. />
  4006. <package
  4007. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-pl-PL.img"
  4008. size="5183988"
  4009. />
  4010. </otaPackages>
  4011. </productMenu>
  4012. <productMenu id="wa"
  4013. type="0" >
  4014. </productMenu>
  4015. <productMenu id="led"
  4016. type="5" >
  4017. <productMenuType version="1.0.1"
  4018. type="4"
  4019. />
  4020. </productMenu>
  4021. <productMenu id="led+"
  4022. type="2"
  4023. url="1" >
  4024. <productMenuType version="1.0.1"
  4025. type="-1"
  4026. />
  4027. </productMenu>
  4028. <productMenu id="meshIntercom"
  4029. type="30" >
  4030. </productMenu>
  4031. <productMenu id="meshIntercom+"
  4032. type="3"
  4033. url="2" >
  4034. <productMenuURL version="1.0.4"
  4035. url="10"
  4036. />
  4037. </productMenu>
  4038. <productMenu id="waveIntercom"
  4039. type="1" >
  4040. <productMenuType version="1.0.9"
  4041. type="0"
  4042. />
  4043. </productMenu>
  4044. <productMenu id="fmradio"
  4045. type="0" >
  4046. </productMenu>
  4047. <productMenu id="phone"
  4048. type="1" >
  4049. </productMenu>
  4050. <productMenu id="music"
  4051. type="1" >
  4052. </productMenu>
  4053. <productMenu id="musicSharing"
  4054. type="0" >
  4055. </productMenu>
  4056. <productMenu id="deviceSetting"
  4057. type="1"
  4058. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  4059. <productMenuURL version="1.2.4"
  4060. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4061. />
  4062. <productMenuURL version="1.2.1"
  4063. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4064. />
  4065. <productMenuURL version="1.0.4"
  4066. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4067. />
  4068. <productMenuURL version="1.0.1"
  4069. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4070. />
  4071. </productMenu>
  4072. <productMenu id="quickGuide"
  4073. type="0"
  4074. url=""
  4075. size="1.12MB" >
  4076. </productMenu>
  4077. <productMenu id="userGuide"
  4078. type="1"
  4079. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4080. size="2.0MB" >
  4081. </productMenu>
  4082. <productMenu id="videoGuide"
  4083. type="0"
  4084. url=""
  4085. size="3.41MB" >
  4086. </productMenu>
  4087. <productMenu id="connectGuide"
  4088. type="1"
  4089. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4090. size="1.12MB" >
  4091. </productMenu>
  4092. <productMenu id="volume"
  4093. type="16" >
  4094. <productMenuType version="1.0"
  4095. type="13"
  4096. />
  4097. </productMenu>
  4098. <productMenu id="volume+"
  4099. type="2"
  4100. url="0x6004" >
  4101. </productMenu>
  4102. <productMenu id="battery"
  4103. type="1" >
  4104. </productMenu>
  4105. <productID id="6A04"
  4106. />
  4107. <productGroupable type="0"
  4108. />
  4109. </product>
  4110. <product id="PHANTOMEasyLink"
  4111. name="PHANTOM EasyLink"
  4112. series="Helmet"
  4113. latestVersion="0.1"
  4114. latestVersionVoicePrompt="1.2"
  4115. show = "-1" >
  4116. <productMenu id="protocol"
  4117. type="2" >
  4118. </productMenu>
  4119. <productMenu id="ota"
  4120. type="0" >
  4121. <otaLanguages>
  4122. <otaLanguage
  4123. id="0"
  4124. name="English"
  4125. package="0"
  4126. />
  4127. <otaLanguage
  4128. id="0"
  4129. name="French"
  4130. package="1"
  4131. />
  4132. <otaLanguage
  4133. id="0"
  4134. name="Spanish"
  4135. package="2"
  4136. />
  4137. <otaLanguage
  4138. id="0"
  4139. name="Italian"
  4140. package="3"
  4141. />
  4142. <otaLanguage
  4143. id="0"
  4144. name="German"
  4145. package="4"
  4146. />
  4147. <otaLanguage
  4148. id="0"
  4149. name="Dutch"
  4150. package="5"
  4151. />
  4152. <otaLanguage
  4153. id="0"
  4154. name="Russian"
  4155. package="6"
  4156. />
  4157. <otaLanguage
  4158. id="0"
  4159. name="Chinese"
  4160. package="7"
  4161. />
  4162. <otaLanguage
  4163. id="0"
  4164. name="Korean"
  4165. package="8"
  4166. />
  4167. <otaLanguage
  4168. id="0"
  4169. name="Japanese"
  4170. package="9"
  4171. />
  4172. <otaLanguage
  4173. id="0"
  4174. name="Finnish"
  4175. package="10"
  4176. />
  4177. <otaLanguage
  4178. id="0"
  4179. name="Polish"
  4180. package="11"
  4181. />
  4182. </otaLanguages>
  4183. <otaPackages>
  4184. <package
  4185. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4186. size="5183988"
  4187. />
  4188. <package
  4189. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4190. size="5183988"
  4191. />
  4192. <package
  4193. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4194. size="5183988"
  4195. />
  4196. <package
  4197. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4198. size="5183988"
  4199. />
  4200. <package
  4201. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4202. size="5183988"
  4203. />
  4204. <package
  4205. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4206. size="5183988"
  4207. />
  4208. <package
  4209. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4210. size="5183988"
  4211. />
  4212. <package
  4213. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4214. size="5183988"
  4215. />
  4216. <package
  4217. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4218. size="5183988"
  4219. />
  4220. <package
  4221. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4222. size="5183988"
  4223. />
  4224. <package
  4225. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4226. size="5183988"
  4227. />
  4228. <package
  4229. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4230. size="5183988"
  4231. />
  4232. </otaPackages>
  4233. </productMenu>
  4234. <productMenu id="meshIntercom"
  4235. type="30" >
  4236. </productMenu>
  4237. <productMenu id="meshIntercom+"
  4238. type="3"
  4239. url="2" >
  4240. </productMenu>
  4241. <productMenu id="waveIntercom"
  4242. type="1" >
  4243. </productMenu>
  4244. <productMenu id="fmradio"
  4245. type="0" >
  4246. </productMenu>
  4247. <productMenu id="phone"
  4248. type="1" >
  4249. </productMenu>
  4250. <productMenu id="music"
  4251. type="1" >
  4252. </productMenu>
  4253. <productMenu id="musicSharing"
  4254. type="0" >
  4255. </productMenu>
  4256. <productMenu id="deviceSetting"
  4257. type="1"
  4258. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4259. </productMenu>
  4260. <productMenu id="quickGuide"
  4261. type="0"
  4262. url=""
  4263. size="1.12MB" >
  4264. </productMenu>
  4265. <productMenu id="userGuide"
  4266. type="1"
  4267. url=""
  4268. size="2.0MB" >
  4269. </productMenu>
  4270. <productMenu id="videoGuide"
  4271. type="0"
  4272. url=""
  4273. size="3.41MB" >
  4274. </productMenu>
  4275. <productMenu id="connectGuide"
  4276. type="0"
  4277. url=""
  4278. size="1.12MB" >
  4279. </productMenu>
  4280. <productMenu id="volume"
  4281. type="16" >
  4282. </productMenu>
  4283. <productMenu id="battery"
  4284. type="1" >
  4285. </productMenu>
  4286. <productID id="6A18"
  4287. />
  4288. <productGroupable type="0"
  4289. />
  4290. </product>
  4291. <product id="SPIDERXSlim"
  4292. name="SPIDER X Slim"
  4293. series="SPIDER"
  4294. latestVersion="1.0"
  4295. latestVersionVoicePrompt="1.7"
  4296. show = "1" >
  4297. <productMenu id="protocol"
  4298. type="2" >
  4299. </productMenu>
  4300. <productMenu id="ota"
  4301. type="2" >
  4302. <otaLanguages>
  4303. <otaLanguage
  4304. id="0"
  4305. name="English"
  4306. package="0"
  4307. />
  4308. <otaLanguage
  4309. id="0"
  4310. name="French"
  4311. package="1"
  4312. />
  4313. <otaLanguage
  4314. id="0"
  4315. name="Spanish"
  4316. package="2"
  4317. />
  4318. <otaLanguage
  4319. id="0"
  4320. name="Italian"
  4321. package="3"
  4322. />
  4323. <otaLanguage
  4324. id="0"
  4325. name="German"
  4326. package="4"
  4327. />
  4328. <otaLanguage
  4329. id="0"
  4330. name="Dutch"
  4331. package="5"
  4332. />
  4333. <otaLanguage
  4334. id="0"
  4335. name="Russian"
  4336. package="6"
  4337. />
  4338. <otaLanguage
  4339. id="0"
  4340. name="Chinese"
  4341. package="7"
  4342. />
  4343. <otaLanguage
  4344. id="0"
  4345. name="Korean"
  4346. package="8"
  4347. />
  4348. <otaLanguage
  4349. id="0"
  4350. name="Japanese"
  4351. package="9"
  4352. />
  4353. <otaLanguage
  4354. id="0"
  4355. name="Finnish"
  4356. package="10"
  4357. />
  4358. <otaLanguage
  4359. id="0"
  4360. name="Polish"
  4361. package="11"
  4362. />
  4363. </otaLanguages>
  4364. <otaPackages>
  4365. <package
  4366. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5.img"
  4367. size="5183988"
  4368. />
  4369. <package
  4370. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fr-FR.img"
  4371. size="5183988"
  4372. />
  4373. <package
  4374. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-es-ES.img"
  4375. size="5183988"
  4376. />
  4377. <package
  4378. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-it-IT.img"
  4379. size="5183988"
  4380. />
  4381. <package
  4382. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-de-DE.img"
  4383. size="5183988"
  4384. />
  4385. <package
  4386. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-nl-NL.img"
  4387. size="5183988"
  4388. />
  4389. <package
  4390. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ru-RU.img"
  4391. size="5183988"
  4392. />
  4393. <package
  4394. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-cmn-CN.img"
  4395. size="5183988"
  4396. />
  4397. <package
  4398. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ko-KR.img"
  4399. size="5183988"
  4400. />
  4401. <package
  4402. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ja-JP.img"
  4403. size="5183988"
  4404. />
  4405. <package
  4406. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fi-FI.img"
  4407. size="5183988"
  4408. />
  4409. <package
  4410. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-pl-PL.img"
  4411. size="5183988"
  4412. />
  4413. </otaPackages>
  4414. </productMenu>
  4415. <productMenu id="meshIntercom"
  4416. type="30" >
  4417. </productMenu>
  4418. <productMenu id="meshIntercom+"
  4419. type="3"
  4420. url="2" >
  4421. </productMenu>
  4422. <productMenu id="waveIntercom"
  4423. type="1" >
  4424. </productMenu>
  4425. <productMenu id="fmradio"
  4426. type="1"
  4427. url="1" >
  4428. </productMenu>
  4429. <productMenu id="phone"
  4430. type="1" >
  4431. </productMenu>
  4432. <productMenu id="music"
  4433. type="1" >
  4434. </productMenu>
  4435. <productMenu id="musicSharing"
  4436. type="0" >
  4437. </productMenu>
  4438. <productMenu id="deviceSetting"
  4439. type="1"
  4440. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4441. </productMenu>
  4442. <productMenu id="quickGuide"
  4443. type="0"
  4444. url=""
  4445. size="1.12MB" >
  4446. </productMenu>
  4447. <productMenu id="userGuide"
  4448. type="1"
  4449. url=""
  4450. size="2.0MB" >
  4451. </productMenu>
  4452. <productMenu id="videoGuide"
  4453. type="0"
  4454. url=""
  4455. size="3.41MB" >
  4456. </productMenu>
  4457. <productMenu id="volume"
  4458. type="16" >
  4459. </productMenu>
  4460. <productMenu id="volume+"
  4461. type="2"
  4462. url="0x6004" >
  4463. </productMenu>
  4464. <productMenu id="appearance"
  4465. type="1"
  4466. url="2|white,silver,chrome,black" >
  4467. </productMenu>
  4468. <productMenu id="battery"
  4469. type="1" >
  4470. </productMenu>
  4471. <productID id="6A07"
  4472. />
  4473. <productGroupable type="0"
  4474. />
  4475. </product>
  4476. <product id="XFITM"
  4477. name="X-FIT M"
  4478. series="SPIDER"
  4479. latestVersion="0.1.11"
  4480. latestVersionVoicePrompt="1.1"
  4481. show = "-1" >
  4482. <productMenu id="protocol"
  4483. type="2" >
  4484. </productMenu>
  4485. <productMenu id="ota"
  4486. type="0" >
  4487. <otaLanguages>
  4488. <otaLanguage
  4489. id="0"
  4490. name="English"
  4491. package="0"
  4492. />
  4493. <otaLanguage
  4494. id="0"
  4495. name="French"
  4496. package="1"
  4497. />
  4498. <otaLanguage
  4499. id="0"
  4500. name="Spanish"
  4501. package="2"
  4502. />
  4503. <otaLanguage
  4504. id="0"
  4505. name="Italian"
  4506. package="3"
  4507. />
  4508. <otaLanguage
  4509. id="0"
  4510. name="German"
  4511. package="4"
  4512. />
  4513. <otaLanguage
  4514. id="0"
  4515. name="Dutch"
  4516. package="5"
  4517. />
  4518. <otaLanguage
  4519. id="0"
  4520. name="Russian"
  4521. package="6"
  4522. />
  4523. <otaLanguage
  4524. id="0"
  4525. name="Chinese"
  4526. package="7"
  4527. />
  4528. <otaLanguage
  4529. id="0"
  4530. name="Korean"
  4531. package="8"
  4532. />
  4533. <otaLanguage
  4534. id="0"
  4535. name="Japanese"
  4536. package="9"
  4537. />
  4538. <otaLanguage
  4539. id="0"
  4540. name="Finnish"
  4541. package="10"
  4542. />
  4543. <otaLanguage
  4544. id="0"
  4545. name="Polish"
  4546. package="11"
  4547. />
  4548. </otaLanguages>
  4549. <otaPackages>
  4550. <package
  4551. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4552. size="5183988"
  4553. />
  4554. <package
  4555. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4556. size="5183988"
  4557. />
  4558. <package
  4559. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4560. size="5183988"
  4561. />
  4562. <package
  4563. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4564. size="5183988"
  4565. />
  4566. <package
  4567. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4568. size="5183988"
  4569. />
  4570. <package
  4571. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4572. size="5183988"
  4573. />
  4574. <package
  4575. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4576. size="5183988"
  4577. />
  4578. <package
  4579. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4580. size="5183988"
  4581. />
  4582. <package
  4583. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4584. size="5183988"
  4585. />
  4586. <package
  4587. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4588. size="5183988"
  4589. />
  4590. <package
  4591. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4592. size="5183988"
  4593. />
  4594. <package
  4595. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4596. size="5183988"
  4597. />
  4598. </otaPackages>
  4599. </productMenu>
  4600. <productMenu id="meshIntercom"
  4601. type="30" >
  4602. </productMenu>
  4603. <productMenu id="meshIntercom+"
  4604. type="3"
  4605. url="2" >
  4606. </productMenu>
  4607. <productMenu id="waveIntercom"
  4608. type="1" >
  4609. </productMenu>
  4610. <productMenu id="fmradio"
  4611. type="1"
  4612. url="1" >
  4613. </productMenu>
  4614. <productMenu id="phone"
  4615. type="1" >
  4616. </productMenu>
  4617. <productMenu id="music"
  4618. type="1" >
  4619. </productMenu>
  4620. <productMenu id="musicSharing"
  4621. type="0" >
  4622. </productMenu>
  4623. <productMenu id="deviceSetting"
  4624. type="1"
  4625. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4626. </productMenu>
  4627. <productMenu id="quickGuide"
  4628. type="0"
  4629. url=""
  4630. size="1.12MB" >
  4631. </productMenu>
  4632. <productMenu id="userGuide"
  4633. type="1"
  4634. url=""
  4635. size="2.0MB" >
  4636. </productMenu>
  4637. <productMenu id="videoGuide"
  4638. type="0"
  4639. url=""
  4640. size="3.41MB" >
  4641. </productMenu>
  4642. <productMenu id="volume"
  4643. type="16" >
  4644. </productMenu>
  4645. <productMenu id="volume+"
  4646. type="2"
  4647. url="0x6004" >
  4648. </productMenu>
  4649. <productMenu id="battery"
  4650. type="1" >
  4651. </productMenu>
  4652. <productID id="6A17"
  4653. />
  4654. <productGroupable type="0"
  4655. />
  4656. </product>
  4657. <product id="VORTEXMESH"
  4658. name="VORTEX MESH"
  4659. series="Helmet"
  4660. latestVersion="0.1.11"
  4661. latestVersionVoicePrompt="1.1"
  4662. show = "-1" >
  4663. <productMenu id="protocol"
  4664. type="2" >
  4665. </productMenu>
  4666. <productMenu id="ota"
  4667. type="0" >
  4668. <otaLanguages>
  4669. <otaLanguage
  4670. id="0"
  4671. name="English"
  4672. package="0"
  4673. />
  4674. <otaLanguage
  4675. id="0"
  4676. name="French"
  4677. package="1"
  4678. />
  4679. <otaLanguage
  4680. id="0"
  4681. name="Spanish"
  4682. package="2"
  4683. />
  4684. <otaLanguage
  4685. id="0"
  4686. name="Italian"
  4687. package="3"
  4688. />
  4689. <otaLanguage
  4690. id="0"
  4691. name="German"
  4692. package="4"
  4693. />
  4694. <otaLanguage
  4695. id="0"
  4696. name="Dutch"
  4697. package="5"
  4698. />
  4699. <otaLanguage
  4700. id="0"
  4701. name="Russian"
  4702. package="6"
  4703. />
  4704. <otaLanguage
  4705. id="0"
  4706. name="Chinese"
  4707. package="7"
  4708. />
  4709. <otaLanguage
  4710. id="0"
  4711. name="Korean"
  4712. package="8"
  4713. />
  4714. <otaLanguage
  4715. id="0"
  4716. name="Japanese"
  4717. package="9"
  4718. />
  4719. <otaLanguage
  4720. id="0"
  4721. name="Finnish"
  4722. package="10"
  4723. />
  4724. <otaLanguage
  4725. id="0"
  4726. name="Polish"
  4727. package="11"
  4728. />
  4729. </otaLanguages>
  4730. <otaPackages>
  4731. <package
  4732. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4733. size="5183988"
  4734. />
  4735. <package
  4736. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4737. size="5183988"
  4738. />
  4739. <package
  4740. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4741. size="5183988"
  4742. />
  4743. <package
  4744. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4745. size="5183988"
  4746. />
  4747. <package
  4748. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4749. size="5183988"
  4750. />
  4751. <package
  4752. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4753. size="5183988"
  4754. />
  4755. <package
  4756. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4757. size="5183988"
  4758. />
  4759. <package
  4760. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4761. size="5183988"
  4762. />
  4763. <package
  4764. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4765. size="5183988"
  4766. />
  4767. <package
  4768. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4769. size="5183988"
  4770. />
  4771. <package
  4772. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4773. size="5183988"
  4774. />
  4775. <package
  4776. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4777. size="5183988"
  4778. />
  4779. </otaPackages>
  4780. </productMenu>
  4781. <productMenu id="wa"
  4782. type="0" >
  4783. </productMenu>
  4784. <productMenu id="led"
  4785. type="5" >
  4786. </productMenu>
  4787. <productMenu id="led+"
  4788. type="2"
  4789. url="1" >
  4790. </productMenu>
  4791. <productMenu id="meshIntercom"
  4792. type="30" >
  4793. </productMenu>
  4794. <productMenu id="meshIntercom+"
  4795. type="3"
  4796. url="2" >
  4797. </productMenu>
  4798. <productMenu id="waveIntercom"
  4799. type="1" >
  4800. </productMenu>
  4801. <productMenu id="fmradio"
  4802. type="0" >
  4803. </productMenu>
  4804. <productMenu id="phone"
  4805. type="1" >
  4806. </productMenu>
  4807. <productMenu id="music"
  4808. type="1" >
  4809. </productMenu>
  4810. <productMenu id="musicSharing"
  4811. type="0" >
  4812. </productMenu>
  4813. <productMenu id="deviceSetting"
  4814. type="1"
  4815. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4816. </productMenu>
  4817. <productMenu id="quickGuide"
  4818. type="0"
  4819. url=""
  4820. size="1.12MB" >
  4821. </productMenu>
  4822. <productMenu id="userGuide"
  4823. type="1"
  4824. url=""
  4825. size="2.0MB" >
  4826. </productMenu>
  4827. <productMenu id="videoGuide"
  4828. type="0"
  4829. url=""
  4830. size="3.41MB" >
  4831. </productMenu>
  4832. <productMenu id="volume"
  4833. type="16" >
  4834. </productMenu>
  4835. <productMenu id="battery"
  4836. type="1" >
  4837. </productMenu>
  4838. <productID id="6A12"
  4839. />
  4840. <productGroupable type="0"
  4841. />
  4842. </product>
  4843. <product id="MeshOn"
  4844. name="Mesh ON"
  4845. series="60"
  4846. latestVersion="1.0.1"
  4847. latestVersionVoicePrompt="0.7"
  4848. show = "-1" >
  4849. <productMenu id="protocol"
  4850. type="2" >
  4851. </productMenu>
  4852. <productMenu id="ota"
  4853. type="2" >
  4854. <otaPackages>
  4855. <package
  4856. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4857. size="2945812"
  4858. />
  4859. </otaPackages>
  4860. </productMenu>
  4861. <productMenu id="meshIntercom+"
  4862. type="3"
  4863. url="4" >
  4864. </productMenu>
  4865. <productMenu id="waveIntercom"
  4866. type="0" >
  4867. </productMenu>
  4868. <productMenu id="phone"
  4869. type="0" >
  4870. </productMenu>
  4871. <productMenu id="music"
  4872. type="0" >
  4873. </productMenu>
  4874. <productMenu id="musicSharing"
  4875. type="0" >
  4876. </productMenu>
  4877. <productMenu id="deviceSetting"
  4878. type="1"
  4879. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4880. </productMenu>
  4881. <productMenu id="userGuide"
  4882. type="1"
  4883. url=""
  4884. size="2.0MB" >
  4885. </productMenu>
  4886. <productMenu id="bluetoothHeadset"
  4887. type="1"
  4888. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4889. </productMenu>
  4890. <productMenu id="volume"
  4891. type="0" >
  4892. </productMenu>
  4893. <productMenu id="battery"
  4894. type="1" >
  4895. </productMenu>
  4896. <productID id="684E"
  4897. />
  4898. <productGroupable type="0"
  4899. />
  4900. </product>
  4901. <product id="Impulse"
  4902. name="Impulse"
  4903. series="Helmet"
  4904. latestVersion="1.4.1"
  4905. show = "1" >
  4906. <productMenu id="protocol"
  4907. type="2" >
  4908. </productMenu>
  4909. <productMenu id="alexa"
  4910. type="0" >
  4911. </productMenu>
  4912. <productMenu id="ota"
  4913. type="0" >
  4914. </productMenu>
  4915. <productMenu id="wa"
  4916. type="24" >
  4917. </productMenu>
  4918. <productMenu id="manager"
  4919. type="0" >
  4920. </productMenu>
  4921. <productMenu id="sip"
  4922. type="1" >
  4923. </productMenu>
  4924. <productMenu id="led"
  4925. type="1" >
  4926. <productMenuType version="1.0.1"
  4927. type="2"
  4928. />
  4929. <productMenuType version="1.0"
  4930. type="1"
  4931. />
  4932. </productMenu>
  4933. <productMenu id="meshIntercom"
  4934. type="30" >
  4935. <productMenuType version="1.1.1"
  4936. type="20"
  4937. />
  4938. </productMenu>
  4939. <productMenu id="meshIntercom+"
  4940. type="3"
  4941. url="2" >
  4942. <productMenuType version="1.3.9"
  4943. type="2"
  4944. />
  4945. <productMenuURL version="1.1.1"
  4946. url="0"
  4947. />
  4948. </productMenu>
  4949. <productMenu id="waveIntercom"
  4950. type="1" >
  4951. <productMenuType version="1.3.9"
  4952. type="0"
  4953. />
  4954. </productMenu>
  4955. <productMenu id="bluetoothIntercom"
  4956. type="1" >
  4957. </productMenu>
  4958. <productMenu id="phone"
  4959. type="1" >
  4960. </productMenu>
  4961. <productMenu id="music"
  4962. type="1" >
  4963. </productMenu>
  4964. <productMenu id="fmradio"
  4965. type="1" >
  4966. </productMenu>
  4967. <productMenu id="deviceSetting"
  4968. type="1"
  4969. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4970. <productMenuURL version="1.3.9"
  4971. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4972. />
  4973. <productMenuURL version="1.1.1"
  4974. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4975. />
  4976. <productMenuURL version="1.0.4"
  4977. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4978. />
  4979. </productMenu>
  4980. <productMenu id="quickGuide"
  4981. type="0"
  4982. url=""
  4983. size="344KB" >
  4984. </productMenu>
  4985. <productMenu id="userGuide"
  4986. type="1"
  4987. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  4988. size="3.41MB" >
  4989. </productMenu>
  4990. <productMenu id="connectGuide"
  4991. type="1"
  4992. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4993. size="1.12MB" >
  4994. </productMenu>
  4995. <productMenu id="volume"
  4996. type="11" >
  4997. </productMenu>
  4998. <productMenu id="battery"
  4999. type="1" >
  5000. </productMenu>
  5001. <productID id="3148"
  5002. />
  5003. <productGroupable type="0"
  5004. />
  5005. </product>
  5006. <product id="Impulse"
  5007. name="Impulse"
  5008. series="Helmet"
  5009. latestVersion="2.0"
  5010. show = "-1" >
  5011. <productMenu id="protocol"
  5012. type="2" >
  5013. </productMenu>
  5014. <productMenu id="alexa"
  5015. type="0" >
  5016. </productMenu>
  5017. <productMenu id="ota"
  5018. type="0" >
  5019. </productMenu>
  5020. <productMenu id="wa"
  5021. type="8" >
  5022. </productMenu>
  5023. <productMenu id="manager"
  5024. type="0" >
  5025. </productMenu>
  5026. <productMenu id="sip"
  5027. type="1" >
  5028. </productMenu>
  5029. <productMenu id="led"
  5030. type="3" >
  5031. </productMenu>
  5032. <productMenu id="meshIntercom"
  5033. type="20" >
  5034. </productMenu>
  5035. <productMenu id="bluetoothIntercom"
  5036. type="1" >
  5037. </productMenu>
  5038. <productMenu id="phone"
  5039. type="1" >
  5040. </productMenu>
  5041. <productMenu id="music"
  5042. type="1" >
  5043. </productMenu>
  5044. <productMenu id="fmradio"
  5045. type="1" >
  5046. </productMenu>
  5047. <productMenu id="deviceSetting"
  5048. type="1"
  5049. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5050. </productMenu>
  5051. <productMenu id="quickGuide"
  5052. type="1"
  5053. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5054. size="344KB" >
  5055. </productMenu>
  5056. <productMenu id="userGuide"
  5057. type="1"
  5058. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5059. size="3.41MB" >
  5060. </productMenu>
  5061. <productMenu id="volume"
  5062. type="11" >
  5063. </productMenu>
  5064. <productMenu id="battery"
  5065. type="1" >
  5066. </productMenu>
  5067. <productID id="3221"
  5068. />
  5069. <productGroupable type="0"
  5070. />
  5071. </product>
  5072. <product id="Stryker"
  5073. name="Stryker"
  5074. series="Helmet"
  5075. latestVersion="1.4.1"
  5076. show = "1" >
  5077. <productMenu id="protocol"
  5078. type="2" >
  5079. </productMenu>
  5080. <productMenu id="alexa"
  5081. type="0" >
  5082. </productMenu>
  5083. <productMenu id="ota"
  5084. type="0" >
  5085. </productMenu>
  5086. <productMenu id="wa"
  5087. type="40" >
  5088. </productMenu>
  5089. <productMenu id="manager"
  5090. type="0" >
  5091. </productMenu>
  5092. <productMenu id="sip"
  5093. type="1" >
  5094. </productMenu>
  5095. <productMenu id="led"
  5096. type="1" >
  5097. <productMenuType version="1.0.1"
  5098. type="2"
  5099. />
  5100. <productMenuType version="1.0"
  5101. type="1"
  5102. />
  5103. </productMenu>
  5104. <productMenu id="meshIntercom"
  5105. type="30" >
  5106. <productMenuType version="1.1.1"
  5107. type="20"
  5108. />
  5109. </productMenu>
  5110. <productMenu id="meshIntercom+"
  5111. type="3"
  5112. url="2" >
  5113. <productMenuType version="1.3.9"
  5114. type="2"
  5115. />
  5116. <productMenuURL version="1.1.1"
  5117. url="0"
  5118. />
  5119. </productMenu>
  5120. <productMenu id="waveIntercom"
  5121. type="1" >
  5122. <productMenuType version="1.2.9"
  5123. type="0"
  5124. />
  5125. </productMenu>
  5126. <productMenu id="bluetoothIntercom"
  5127. type="1" >
  5128. </productMenu>
  5129. <productMenu id="phone"
  5130. type="1" >
  5131. </productMenu>
  5132. <productMenu id="music"
  5133. type="1" >
  5134. </productMenu>
  5135. <productMenu id="fmradio"
  5136. type="1" >
  5137. </productMenu>
  5138. <productMenu id="deviceSetting"
  5139. type="1"
  5140. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5141. <productMenuURL version="1.3.9"
  5142. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5143. />
  5144. <productMenuURL version="1.1.1"
  5145. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5146. />
  5147. <productMenuURL version="1.0.4"
  5148. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5149. />
  5150. </productMenu>
  5151. <productMenu id="quickGuide"
  5152. type="0"
  5153. url=""
  5154. size="344KB" >
  5155. </productMenu>
  5156. <productMenu id="userGuide"
  5157. type="1"
  5158. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5159. size="3.41MB" >
  5160. </productMenu>
  5161. <productMenu id="connectGuide"
  5162. type="1"
  5163. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5164. size="1.12MB" >
  5165. </productMenu>
  5166. <productMenu id="volume"
  5167. type="11" >
  5168. </productMenu>
  5169. <productMenu id="battery"
  5170. type="1" >
  5171. </productMenu>
  5172. <productID id="3154"
  5173. />
  5174. <productGroupable type="0"
  5175. />
  5176. </product>
  5177. <product id="SRL3Plus"
  5178. name="SRL3 Plus"
  5179. series="60"
  5180. latestVersion="0.9.5"
  5181. latestVersionMesh="0.19"
  5182. latestVersionVoicePrompt="1.2"
  5183. show = "-1" >
  5184. <productMenu id="protocol"
  5185. type="2" >
  5186. </productMenu>
  5187. <productMenu id="ota"
  5188. type="2" >
  5189. <otaLanguages>
  5190. <otaLanguage
  5191. id="0"
  5192. name="English"
  5193. package="0"
  5194. />
  5195. <otaLanguage
  5196. id="0"
  5197. name="French"
  5198. package="1"
  5199. />
  5200. <otaLanguage
  5201. id="0"
  5202. name="Spanish"
  5203. package="2"
  5204. />
  5205. <otaLanguage
  5206. id="0"
  5207. name="Italian"
  5208. package="3"
  5209. />
  5210. <otaLanguage
  5211. id="0"
  5212. name="German"
  5213. package="4"
  5214. />
  5215. <otaLanguage
  5216. id="0"
  5217. name="Dutch"
  5218. package="5"
  5219. />
  5220. <otaLanguage
  5221. id="0"
  5222. name="Russian"
  5223. package="6"
  5224. />
  5225. <otaLanguage
  5226. id="0"
  5227. name="Chinese"
  5228. package="7"
  5229. />
  5230. <otaLanguage
  5231. id="0"
  5232. name="Korean"
  5233. package="8"
  5234. />
  5235. <otaLanguage
  5236. id="0"
  5237. name="Japanese"
  5238. package="9"
  5239. />
  5240. <otaLanguage
  5241. id="0"
  5242. name="Finnish"
  5243. package="10"
  5244. />
  5245. </otaLanguages>
  5246. <otaPackages>
  5247. <package
  5248. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0.img"
  5249. size="5183988"
  5250. />
  5251. <package
  5252. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fr-FR.img"
  5253. size="5183988"
  5254. />
  5255. <package
  5256. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-es-ES.img"
  5257. size="5183988"
  5258. />
  5259. <package
  5260. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-it-IT.img"
  5261. size="5183988"
  5262. />
  5263. <package
  5264. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-de-DE.img"
  5265. size="5183988"
  5266. />
  5267. <package
  5268. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-nl-NL.img"
  5269. size="5183988"
  5270. />
  5271. <package
  5272. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ru-RU.img"
  5273. size="5183988"
  5274. />
  5275. <package
  5276. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-cmn-CN.img"
  5277. size="5183988"
  5278. />
  5279. <package
  5280. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ko-KR.img"
  5281. size="5183988"
  5282. />
  5283. <package
  5284. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ja-JP.img"
  5285. size="5183988"
  5286. />
  5287. <package
  5288. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fi-FI.img"
  5289. size="5183988"
  5290. />
  5291. </otaPackages>
  5292. </productMenu>
  5293. <productMenu id="sip"
  5294. type="1" >
  5295. </productMenu>
  5296. <productMenu id="illusion"
  5297. type="1" >
  5298. </productMenu>
  5299. <productMenu id="meshIntercom+"
  5300. type="3"
  5301. url="2" >
  5302. </productMenu>
  5303. <productMenu id="waveIntercom"
  5304. type="1" >
  5305. </productMenu>
  5306. <productMenu id="bluetoothIntercom"
  5307. type="1"
  5308. url="2" >
  5309. </productMenu>
  5310. <productMenu id="bluetoothIntercomGrouping"
  5311. type="0" >
  5312. </productMenu>
  5313. <productMenu id="fmradio"
  5314. type="1"
  5315. url="1" >
  5316. </productMenu>
  5317. <productMenu id="phone"
  5318. type="1" >
  5319. </productMenu>
  5320. <productMenu id="music"
  5321. type="1" >
  5322. </productMenu>
  5323. <productMenu id="musicSharing"
  5324. type="0" >
  5325. </productMenu>
  5326. <productMenu id="deviceSetting"
  5327. type="1"
  5328. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  5329. </productMenu>
  5330. <productMenu id="quickGuide"
  5331. type="0"
  5332. url=""
  5333. size="1.12MB" >
  5334. </productMenu>
  5335. <productMenu id="userGuide"
  5336. type="0"
  5337. url=""
  5338. size="2.0MB" >
  5339. </productMenu>
  5340. <productMenu id="videoGuide"
  5341. type="0"
  5342. url=""
  5343. size="3.41MB" >
  5344. </productMenu>
  5345. <productMenu id="volume"
  5346. type="16" >
  5347. </productMenu>
  5348. <productMenu id="soundMode"
  5349. type="1" >
  5350. </productMenu>
  5351. <productMenu id="battery"
  5352. type="1" >
  5353. </productMenu>
  5354. <productID id="6A08"
  5355. />
  5356. <productGroupable type="0"
  5357. />
  5358. </product>
  5359. <product id="SRL3"
  5360. name="SRL3"
  5361. series="SRL"
  5362. latestVersion="1.5"
  5363. show = "1" >
  5364. <productMenu id="protocol"
  5365. type="2" >
  5366. </productMenu>
  5367. <productMenu id="alexa"
  5368. type="0" >
  5369. </productMenu>
  5370. <productMenu id="ota"
  5371. type="0" >
  5372. </productMenu>
  5373. <productMenu id="wa"
  5374. type="1" >
  5375. </productMenu>
  5376. <productMenu id="sip"
  5377. type="1" >
  5378. </productMenu>
  5379. <productMenu id="meshIntercom"
  5380. type="30" >
  5381. </productMenu>
  5382. <productMenu id="meshIntercom+"
  5383. type="3"
  5384. url="2" >
  5385. <productMenuType version="1.3.9"
  5386. type="2"
  5387. />
  5388. </productMenu>
  5389. <productMenu id="waveIntercom"
  5390. type="1" >
  5391. <productMenuType version="1.4.9"
  5392. type="0"
  5393. />
  5394. </productMenu>
  5395. <productMenu id="bluetoothIntercom"
  5396. type="1" >
  5397. </productMenu>
  5398. <productMenu id="phone"
  5399. type="1" >
  5400. </productMenu>
  5401. <productMenu id="music"
  5402. type="1" >
  5403. </productMenu>
  5404. <productMenu id="fmradio"
  5405. type="1" >
  5406. </productMenu>
  5407. <productMenu id="deviceSetting"
  5408. type="1"
  5409. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5410. <productMenuURL version="1.3"
  5411. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5412. />
  5413. </productMenu>
  5414. <productMenu id="quickGuide"
  5415. type="0"
  5416. url=""
  5417. size="344KB" >
  5418. </productMenu>
  5419. <productMenu id="userGuide"
  5420. type="1"
  5421. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5422. size="3.41MB" >
  5423. </productMenu>
  5424. <productMenu id="connectGuide"
  5425. type="1"
  5426. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5427. size="1.12MB" >
  5428. </productMenu>
  5429. <productMenu id="volume"
  5430. type="11" >
  5431. </productMenu>
  5432. <productMenu id="battery"
  5433. type="1" >
  5434. </productMenu>
  5435. <productID id="3219"
  5436. />
  5437. <productGroupable type="0"
  5438. />
  5439. </product>
  5440. <product id="SRL_Mesh"
  5441. name="SRL-Mesh"
  5442. series="SRL"
  5443. latestVersion="1.7.1"
  5444. show = "1" >
  5445. <productMenu id="protocol"
  5446. type="2" >
  5447. </productMenu>
  5448. <productMenu id="alexa"
  5449. type="0" >
  5450. </productMenu>
  5451. <productMenu id="ota"
  5452. type="0" >
  5453. </productMenu>
  5454. <productMenu id="wa"
  5455. type="1" >
  5456. </productMenu>
  5457. <productMenu id="sip"
  5458. type="1" >
  5459. </productMenu>
  5460. <productMenu id="meshIntercom"
  5461. type="30" >
  5462. <productMenuType version="1.1.1"
  5463. type="20"
  5464. />
  5465. </productMenu>
  5466. <productMenu id="meshIntercom+"
  5467. type="3"
  5468. url="2" >
  5469. <productMenuType version="1.5.9"
  5470. type="2"
  5471. />
  5472. <productMenuURL version="1.1.1"
  5473. url="0"
  5474. />
  5475. </productMenu>
  5476. <productMenu id="waveIntercom"
  5477. type="1" >
  5478. <productMenuType version="1.6.9"
  5479. type="0"
  5480. />
  5481. </productMenu>
  5482. <productMenu id="bluetoothIntercom"
  5483. type="1" >
  5484. </productMenu>
  5485. <productMenu id="phone"
  5486. type="1" >
  5487. </productMenu>
  5488. <productMenu id="music"
  5489. type="1" >
  5490. </productMenu>
  5491. <productMenu id="fmradio"
  5492. type="1" >
  5493. </productMenu>
  5494. <productMenu id="deviceSetting"
  5495. type="1"
  5496. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5497. <productMenuURL version="1.5"
  5498. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5499. />
  5500. <productMenuURL version="1.1.1"
  5501. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5502. />
  5503. <productMenuURL version="1.0.3"
  5504. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5505. />
  5506. </productMenu>
  5507. <productMenu id="quickGuide"
  5508. type="0"
  5509. url=""
  5510. size="344KB" >
  5511. </productMenu>
  5512. <productMenu id="userGuide"
  5513. type="1"
  5514. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5515. size="3.41MB" >
  5516. </productMenu>
  5517. <productMenu id="connectGuide"
  5518. type="1"
  5519. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5520. size="1.12MB" >
  5521. </productMenu>
  5522. <productMenu id="volume"
  5523. type="11" >
  5524. </productMenu>
  5525. <productMenu id="battery"
  5526. type="1" >
  5527. </productMenu>
  5528. <productID id="3216"
  5529. />
  5530. <productGroupable type="0"
  5531. />
  5532. </product>
  5533. <product id="SRL_EXT"
  5534. name="SRL-EXT"
  5535. series="SRL"
  5536. latestVersion="1.7.1"
  5537. show = "1" >
  5538. <productMenu id="protocol"
  5539. type="2" >
  5540. </productMenu>
  5541. <productMenu id="alexa"
  5542. type="0" >
  5543. </productMenu>
  5544. <productMenu id="ota"
  5545. type="0" >
  5546. </productMenu>
  5547. <productMenu id="wa"
  5548. type="0" >
  5549. </productMenu>
  5550. <productMenu id="sip"
  5551. type="1" >
  5552. </productMenu>
  5553. <productMenu id="meshIntercom"
  5554. type="30" >
  5555. <productMenuType version="1.1.1"
  5556. type="20"
  5557. />
  5558. </productMenu>
  5559. <productMenu id="meshIntercom+"
  5560. type="3"
  5561. url="2" >
  5562. <productMenuType version="1.5.9"
  5563. type="2"
  5564. />
  5565. <productMenuURL version="1.1.1"
  5566. url="0"
  5567. />
  5568. </productMenu>
  5569. <productMenu id="waveIntercom"
  5570. type="1" >
  5571. <productMenuType version="1.6.9"
  5572. type="0"
  5573. />
  5574. </productMenu>
  5575. <productMenu id="bluetoothIntercom"
  5576. type="1" >
  5577. </productMenu>
  5578. <productMenu id="phone"
  5579. type="1" >
  5580. </productMenu>
  5581. <productMenu id="music"
  5582. type="1" >
  5583. </productMenu>
  5584. <productMenu id="fmradio"
  5585. type="1" >
  5586. </productMenu>
  5587. <productMenu id="deviceSetting"
  5588. type="1"
  5589. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5590. <productMenuURL version="1.5"
  5591. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5592. />
  5593. <productMenuURL version="1.1.1"
  5594. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5595. />
  5596. <productMenuURL version="1.0.3"
  5597. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5598. />
  5599. </productMenu>
  5600. <productMenu id="quickGuide"
  5601. type="0"
  5602. url=""
  5603. size="344KB" >
  5604. </productMenu>
  5605. <productMenu id="userGuide"
  5606. type="1"
  5607. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5608. size="3.41MB" >
  5609. </productMenu>
  5610. <productMenu id="connectGuide"
  5611. type="1"
  5612. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5613. size="1.12MB" >
  5614. </productMenu>
  5615. <productMenu id="volume"
  5616. type="11" >
  5617. </productMenu>
  5618. <productMenu id="battery"
  5619. type="1" >
  5620. </productMenu>
  5621. <productID id="3212"
  5622. />
  5623. <productGroupable type="0"
  5624. />
  5625. </product>
  5626. <product id="SRL2"
  5627. name="SRL2"
  5628. series="SRL"
  5629. latestVersion="1.0.9"
  5630. show = "1" >
  5631. <productMenu id="protocol"
  5632. type="0">
  5633. </productMenu>
  5634. <productMenu id="sip"
  5635. type="1" >
  5636. </productMenu>
  5637. <productMenu id="bluetoothIntercom"
  5638. type="1" >
  5639. </productMenu>
  5640. <productMenu id="intercomSetting"
  5641. type="1" >
  5642. </productMenu>
  5643. <productMenu id="phone"
  5644. type="2" >
  5645. </productMenu>
  5646. <productMenu id="fmradio"
  5647. type="3" >
  5648. </productMenu>
  5649. <productMenu id="deviceSetting"
  5650. type="1"
  5651. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5652. </productMenu>
  5653. <productMenu id="quickGuide"
  5654. type="1"
  5655. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5656. size="846KB" >
  5657. </productMenu>
  5658. <productMenu id="userGuide"
  5659. type="1"
  5660. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5661. size="1.18MB" >
  5662. </productMenu>
  5663. <productMenu id="connectGuide"
  5664. type="1"
  5665. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5666. size="1.12MB" >
  5667. </productMenu>
  5668. <productID id="4530"
  5669. />
  5670. <productGroupable type="1"
  5671. />
  5672. </product>
  5673. <product id="Neotec2"
  5674. name="SRL Neotec2"
  5675. series="SRL"
  5676. latestVersion="1.1.5"
  5677. show = "1" >
  5678. <productMenu id="protocol"
  5679. type="0">
  5680. </productMenu>
  5681. <productMenu id="sip"
  5682. type="1" >
  5683. </productMenu>
  5684. <productMenu id="bluetoothIntercom"
  5685. type="1" >
  5686. </productMenu>
  5687. <productMenu id="intercomSetting"
  5688. type="1" >
  5689. </productMenu>
  5690. <productMenu id="phone"
  5691. type="2" >
  5692. </productMenu>
  5693. <productMenu id="fmradio"
  5694. type="3" >
  5695. </productMenu>
  5696. <productMenu id="deviceSetting"
  5697. type="1"
  5698. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5699. </productMenu>
  5700. <productMenu id="quickGuide"
  5701. type="0"
  5702. url=""
  5703. size="796KB" >
  5704. </productMenu>
  5705. <productMenu id="userGuide"
  5706. type="1"
  5707. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5708. size="1.90MB" >
  5709. </productMenu>
  5710. <productMenu id="connectGuide"
  5711. type="1"
  5712. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5713. size="1.12MB" >
  5714. </productMenu>
  5715. <productID id="4510"
  5716. />
  5717. <productGroupable type="1"
  5718. />
  5719. </product>
  5720. <product id="SPIDERST2ANC"
  5721. name="SPIDER ST2 ANC"
  5722. series="SPIDER"
  5723. latestVersion="0.5.1"
  5724. latestVersionVoicePrompt="0.2"
  5725. latestVersionMesh="0.8"
  5726. show = "-1" >
  5727. <productMenu id="protocol"
  5728. type="2" >
  5729. </productMenu>
  5730. <productMenu id="ota"
  5731. type="0" >
  5732. <otaPackages>
  5733. <package
  5734. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5735. size="2945812"
  5736. />
  5737. </otaPackages>
  5738. </productMenu>
  5739. <productMenu id="wa"
  5740. type="0" >
  5741. </productMenu>
  5742. <productMenu id="led"
  5743. type="1" >
  5744. </productMenu>
  5745. <productMenu id="meshIntercom"
  5746. type="30" >
  5747. </productMenu>
  5748. <productMenu id="fmradio"
  5749. type="1" >
  5750. </productMenu>
  5751. <productMenu id="phone"
  5752. type="1" >
  5753. </productMenu>
  5754. <productMenu id="music"
  5755. type="1" >
  5756. </productMenu>
  5757. <productMenu id="musicSharing"
  5758. type="0" >
  5759. </productMenu>
  5760. <productMenu id="deviceSetting"
  5761. type="1"
  5762. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  5763. </productMenu>
  5764. <productMenu id="quickGuide"
  5765. type="1"
  5766. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5767. size="1.12MB" >
  5768. </productMenu>
  5769. <productMenu id="userGuide"
  5770. type="1"
  5771. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5772. size="2.0MB" >
  5773. </productMenu>
  5774. <productMenu id="videoGuide"
  5775. type="1"
  5776. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5777. size="3.41MB" >
  5778. </productMenu>
  5779. <productMenu id="volume"
  5780. type="12" >
  5781. </productMenu>
  5782. <productMenu id="battery"
  5783. type="1" >
  5784. </productMenu>
  5785. <productID id="6A00"
  5786. />
  5787. <productGroupable type="0"
  5788. />
  5789. </product>
  5790. <product id="SPIDER_ST1"
  5791. name="SPIDER ST1"
  5792. series="SPIDER"
  5793. latestVersion="2.5.3"
  5794. latestVersionVoicePrompt="1.6"
  5795. show = "1" >
  5796. <productMenu id="protocol"
  5797. type="2" >
  5798. </productMenu>
  5799. <productMenu id="alexa"
  5800. type="0" >
  5801. </productMenu>
  5802. <productMenu id="ota"
  5803. type="2" >
  5804. <productMenuType version="2.1.9"
  5805. type="0"
  5806. />
  5807. <otaPackages>
  5808. <package
  5809. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  5810. size="2945812"
  5811. />
  5812. </otaPackages>
  5813. </productMenu>
  5814. <productMenu id="wa"
  5815. type="0" >
  5816. </productMenu>
  5817. <productMenu id="meshIntercom"
  5818. type="30" >
  5819. <productMenuType version="2.1.1"
  5820. type="20"
  5821. />
  5822. </productMenu>
  5823. <productMenu id="meshIntercom+"
  5824. type="3"
  5825. url="2" >
  5826. <productMenuType version="2.2.9"
  5827. type="2"
  5828. />
  5829. <productMenuURL version="2.1.1"
  5830. url="0"
  5831. />
  5832. </productMenu>
  5833. <productMenu id="waveIntercom"
  5834. type="1" >
  5835. <productMenuType version="2.3.9"
  5836. type="0"
  5837. />
  5838. </productMenu>
  5839. <productMenu id="phone"
  5840. type="1" >
  5841. </productMenu>
  5842. <productMenu id="music"
  5843. type="1" >
  5844. </productMenu>
  5845. <productMenu id="musicSharing"
  5846. type="0" >
  5847. </productMenu>
  5848. <productMenu id="deviceSetting"
  5849. type="1"
  5850. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5851. <productMenuURL version="2.4.9"
  5852. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5853. />
  5854. <productMenuURL version="2.2.2"
  5855. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5856. />
  5857. <productMenuURL version="2.1.1"
  5858. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5859. />
  5860. </productMenu>
  5861. <productMenu id="quickGuide"
  5862. type="0"
  5863. url=""
  5864. size="1.12MB" >
  5865. </productMenu>
  5866. <productMenu id="userGuide"
  5867. type="1"
  5868. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5869. size="2.0MB" >
  5870. </productMenu>
  5871. <productMenu id="videoGuide"
  5872. type="1"
  5873. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5874. size="3.41MB" >
  5875. </productMenu>
  5876. <productMenu id="connectGuide"
  5877. type="1"
  5878. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5879. size="1.12MB" >
  5880. </productMenu>
  5881. <productMenu id="volume"
  5882. type="12" >
  5883. </productMenu>
  5884. <productMenu id="battery"
  5885. type="1" >
  5886. </productMenu>
  5887. <productID id="6800"
  5888. />
  5889. <productGroupable type="0"
  5890. />
  5891. </product>
  5892. <product id="SPIDER_ST1"
  5893. name="SPIDER ST1"
  5894. series="SPIDER"
  5895. latestVersion="1.2.2"
  5896. show = "-1" >
  5897. <productMenu id="protocol"
  5898. type="2" >
  5899. </productMenu>
  5900. <productMenu id="alexa"
  5901. type="0" >
  5902. </productMenu>
  5903. <productMenu id="ota"
  5904. type="0" >
  5905. </productMenu>
  5906. <productMenu id="wa"
  5907. type="0" >
  5908. </productMenu>
  5909. <productMenu id="meshIntercom"
  5910. type="20" >
  5911. </productMenu>
  5912. <productMenu id="phone"
  5913. type="1" >
  5914. </productMenu>
  5915. <productMenu id="music"
  5916. type="1" >
  5917. </productMenu>
  5918. <productMenu id="deviceSetting"
  5919. type="1"
  5920. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5921. </productMenu>
  5922. <productMenu id="quickGuide"
  5923. type="0"
  5924. url=""
  5925. size="1.12MB" >
  5926. </productMenu>
  5927. <productMenu id="userGuide"
  5928. type="1"
  5929. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5930. size="2.0MB" >
  5931. </productMenu>
  5932. <productMenu id="videoGuide"
  5933. type="1"
  5934. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5935. size="3.41MB" >
  5936. </productMenu>
  5937. <productMenu id="volume"
  5938. type="13" >
  5939. <productMenuType version="1.1.6"
  5940. type="14"/>
  5941. </productMenu>
  5942. <productMenu id="battery"
  5943. type="1" >
  5944. </productMenu>
  5945. <productID id="6510"
  5946. />
  5947. <productGroupable type="0"
  5948. />
  5949. </product>
  5950. <product id="SPIDER_RT1"
  5951. name="SPIDER RT1"
  5952. series="SPIDER"
  5953. latestVersion="2.5.3"
  5954. latestVersionVoicePrompt="1.6"
  5955. show = "1" >
  5956. <productMenu id="protocol"
  5957. type="2" >
  5958. </productMenu>
  5959. <productMenu id="alexa"
  5960. type="0" >
  5961. </productMenu>
  5962. <productMenu id="ota"
  5963. type="2" >
  5964. <productMenuType version="2.1.9"
  5965. type="0"
  5966. />
  5967. <otaPackages>
  5968. <package
  5969. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  5970. size="2945812"
  5971. />
  5972. </otaPackages>
  5973. </productMenu>
  5974. <productMenu id="wa"
  5975. type="0" >
  5976. </productMenu>
  5977. <productMenu id="meshIntercom"
  5978. type="30" >
  5979. <productMenuType version="2.1.1"
  5980. type="20"
  5981. />
  5982. </productMenu>
  5983. <productMenu id="meshIntercom+"
  5984. type="3"
  5985. url="2" >
  5986. <productMenuType version="2.2.9"
  5987. type="2"
  5988. />
  5989. <productMenuURL version="2.1.1"
  5990. url="0"
  5991. />
  5992. </productMenu>
  5993. <productMenu id="waveIntercom"
  5994. type="1" >
  5995. <productMenuType version="2.3.9"
  5996. type="0"
  5997. />
  5998. </productMenu>
  5999. <productMenu id="phone"
  6000. type="1" >
  6001. </productMenu>
  6002. <productMenu id="music"
  6003. type="1" >
  6004. </productMenu>
  6005. <productMenu id="musicSharing"
  6006. type="0" >
  6007. </productMenu>
  6008. <productMenu id="deviceSetting"
  6009. type="1"
  6010. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6011. <productMenuURL version="2.4.9"
  6012. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6013. />
  6014. <productMenuURL version="2.2.2"
  6015. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6016. />
  6017. <productMenuURL version="2.1.1"
  6018. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6019. />
  6020. </productMenu>
  6021. <productMenu id="quickGuide"
  6022. type="0"
  6023. url=""
  6024. size="1.12MB" >
  6025. </productMenu>
  6026. <productMenu id="userGuide"
  6027. type="1"
  6028. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6029. size="2.0MB" >
  6030. </productMenu>
  6031. <productMenu id="videoGuide"
  6032. type="1"
  6033. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6034. size="3.41MB" >
  6035. </productMenu>
  6036. <productMenu id="connectGuide"
  6037. type="1"
  6038. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6039. size="1.12MB" >
  6040. </productMenu>
  6041. <productMenu id="volume"
  6042. type="12" >
  6043. </productMenu>
  6044. <productMenu id="battery"
  6045. type="1" >
  6046. </productMenu>
  6047. <productID id="6810"
  6048. />
  6049. <productGroupable type="0"
  6050. />
  6051. </product>
  6052. <product id="SPIDER_RT1"
  6053. name="SPIDER RT1"
  6054. series="SPIDER"
  6055. latestVersion="1.2.2"
  6056. show = "-1" >
  6057. <productMenu id="protocol"
  6058. type="2" >
  6059. </productMenu>
  6060. <productMenu id="alexa"
  6061. type="0" >
  6062. </productMenu>
  6063. <productMenu id="ota"
  6064. type="0" >
  6065. </productMenu>
  6066. <productMenu id="wa"
  6067. type="0" >
  6068. </productMenu>
  6069. <productMenu id="meshIntercom"
  6070. type="20" >
  6071. </productMenu>
  6072. <productMenu id="phone"
  6073. type="1" >
  6074. </productMenu>
  6075. <productMenu id="music"
  6076. type="1" >
  6077. </productMenu>
  6078. <productMenu id="deviceSetting"
  6079. type="1"
  6080. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6081. </productMenu>
  6082. <productMenu id="quickGuide"
  6083. type="0"
  6084. url=""
  6085. size="1.32MB" >
  6086. </productMenu>
  6087. <productMenu id="userGuide"
  6088. type="1"
  6089. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6090. size="1.79MB" >
  6091. </productMenu>
  6092. <productMenu id="videoGuide"
  6093. type="1"
  6094. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6095. size="3.41MB" >
  6096. </productMenu>
  6097. <productMenu id="volume"
  6098. type="13" >
  6099. <productMenuType version="1.1.6"
  6100. type="14"/>
  6101. </productMenu>
  6102. <productMenu id="battery"
  6103. type="1" >
  6104. </productMenu>
  6105. <productID id="6500"
  6106. />
  6107. <productGroupable type="0"
  6108. />
  6109. </product>
  6110. <product id="30K"
  6111. name="30K"
  6112. series="30"
  6113. latestVersion="4.5.1"
  6114. show = "1" >
  6115. <productMenu id="protocol"
  6116. type="2" >
  6117. </productMenu>
  6118. <productMenu id="alexa"
  6119. type="0" >
  6120. </productMenu>
  6121. <productMenu id="wa"
  6122. type="1" >
  6123. </productMenu>
  6124. <productMenu id="sip"
  6125. type="1" >
  6126. </productMenu>
  6127. <productMenu id="meshIntercom"
  6128. type="30" >
  6129. <productMenuType version="4.0.4"
  6130. type="20"
  6131. />
  6132. </productMenu>
  6133. <productMenu id="meshIntercom+"
  6134. type="3"
  6135. url="2" >
  6136. <productMenuType version="4.3.9"
  6137. type="2"
  6138. />
  6139. <productMenuURL version="4.0.4"
  6140. url="0"
  6141. />
  6142. </productMenu>
  6143. <productMenu id="waveIntercom"
  6144. type="1" >
  6145. <productMenuType version="4.4.9"
  6146. type="0"
  6147. />
  6148. </productMenu>
  6149. <productMenu id="bluetoothIntercom"
  6150. type="1" >
  6151. </productMenu>
  6152. <productMenu id="phone"
  6153. type="1" >
  6154. </productMenu>
  6155. <productMenu id="music"
  6156. type="1" >
  6157. </productMenu>
  6158. <productMenu id="fmradio"
  6159. type="1" >
  6160. </productMenu>
  6161. <productMenu id="deviceSetting"
  6162. type="1"
  6163. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6164. <productMenuURL version="4.3"
  6165. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6166. />
  6167. <productMenuURL version="4.2"
  6168. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6169. />
  6170. <productMenuURL version="4.0.4"
  6171. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6172. />
  6173. </productMenu>
  6174. <productMenu id="quickGuide"
  6175. type="0"
  6176. url=""
  6177. size="934KB" >
  6178. </productMenu>
  6179. <productMenu id="userGuide"
  6180. type="1"
  6181. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6182. size="1.14MB" >
  6183. </productMenu>
  6184. <productMenu id="connectGuide"
  6185. type="1"
  6186. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6187. size="1.12MB" >
  6188. </productMenu>
  6189. <productMenu id="volume"
  6190. type="11" >
  6191. </productMenu>
  6192. <productMenu id="battery"
  6193. type="1" >
  6194. </productMenu>
  6195. <productID id="3211"
  6196. />
  6197. <productGroupable type="0"
  6198. />
  6199. </product>
  6200. <product id="30K"
  6201. name="30K"
  6202. series="30"
  6203. latestVersion="3.5"
  6204. show = "-1" >
  6205. <productMenu id="protocol"
  6206. type="1"
  6207. url="0">
  6208. </productMenu>
  6209. <productMenu id="wa"
  6210. type="7" >
  6211. </productMenu>
  6212. <productMenu id="sip"
  6213. type="1" >
  6214. </productMenu>
  6215. <productMenu id="meshIntercom"
  6216. type="20" >
  6217. <productMenuType version="2.9.9"
  6218. type="10"
  6219. />
  6220. </productMenu>
  6221. <productMenu id="meshIntercom+"
  6222. type="3"
  6223. url="2" >
  6224. <productMenuType version="3.4.9"
  6225. type="2"
  6226. />
  6227. <productMenuType version="2.9.9"
  6228. type="1"
  6229. />
  6230. <productMenuURL version="3.3.1"
  6231. url="0"
  6232. />
  6233. </productMenu>
  6234. <productMenu id="bluetoothIntercom"
  6235. type="1" >
  6236. </productMenu>
  6237. <productMenu id="phone"
  6238. type="1" >
  6239. </productMenu>
  6240. <productMenu id="music"
  6241. type="1" >
  6242. </productMenu>
  6243. <productMenu id="fmradio"
  6244. type="1" >
  6245. </productMenu>
  6246. <productMenu id="deviceSetting"
  6247. type="1"
  6248. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6249. <productMenuURL version="3.4.9"
  6250. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6251. />
  6252. <productMenuURL version="3.3.1"
  6253. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6254. />
  6255. <productMenuURL version="3.0.1"
  6256. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6257. />
  6258. <productMenuURL version="2.3.1"
  6259. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6260. />
  6261. <productMenuURL version="2.0"
  6262. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6263. />
  6264. <productMenuURL version="1.0.3"
  6265. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6266. />
  6267. </productMenu>
  6268. <productMenu id="quickGuide"
  6269. type="0"
  6270. url=""
  6271. size="1.06MB" >
  6272. </productMenu>
  6273. <productMenu id="userGuide"
  6274. type="1"
  6275. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6276. size="3.15MB" >
  6277. </productMenu>
  6278. <productMenu id="volume"
  6279. type="1" >
  6280. </productMenu>
  6281. <productID id="3110"
  6282. />
  6283. <productGroupable type="0"
  6284. />
  6285. </product>
  6286. <product id="FURY"
  6287. name="FURY"
  6288. series="Helmet"
  6289. latestVersion="1.0"
  6290. show = "-1" >
  6291. <productMenu id="protocol"
  6292. type="2" >
  6293. </productMenu>
  6294. <productMenu id="alexa"
  6295. type="0" >
  6296. </productMenu>
  6297. <productMenu id="ota"
  6298. type="0" >
  6299. </productMenu>
  6300. <productMenu id="wa"
  6301. type="0" >
  6302. </productMenu>
  6303. <productMenu id="meshIntercom"
  6304. type="20" >
  6305. </productMenu>
  6306. <productMenu id="phone"
  6307. type="1" >
  6308. </productMenu>
  6309. <productMenu id="music"
  6310. type="1" >
  6311. </productMenu>
  6312. <productMenu id="fmradio"
  6313. type="1" >
  6314. </productMenu>
  6315. <productMenu id="deviceSetting"
  6316. type="1"
  6317. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6318. </productMenu>
  6319. <productMenu id="quickGuide"
  6320. type="1"
  6321. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6322. size="1.12MB" >
  6323. </productMenu>
  6324. <productMenu id="userGuide"
  6325. type="1"
  6326. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6327. size="2.0MB" >
  6328. </productMenu>
  6329. <productMenu id="volume"
  6330. type="13" >
  6331. </productMenu>
  6332. <productMenu id="battery"
  6333. type="1" >
  6334. </productMenu>
  6335. <productID id="5552"
  6336. />
  6337. <productGroupable type="0"
  6338. />
  6339. </product>
  6340. <product id="MomentumM"
  6341. name="Momentum EVO"
  6342. series="Helmet"
  6343. latestVersion="2.1.2"
  6344. show = "1" >
  6345. <productMenu id="protocol"
  6346. type="1"
  6347. url="0">
  6348. </productMenu>
  6349. <productMenu id="wa"
  6350. type="3" >
  6351. </productMenu>
  6352. <productMenu id="sip"
  6353. type="1" >
  6354. </productMenu>
  6355. <productMenu id="meshIntercom"
  6356. type="20" >
  6357. <productMenuType version="1.9.9"
  6358. type="10"
  6359. />
  6360. </productMenu>
  6361. <productMenu id="bluetoothIntercom"
  6362. type="1" >
  6363. </productMenu>
  6364. <productMenu id="phone"
  6365. type="1" >
  6366. </productMenu>
  6367. <productMenu id="music"
  6368. type="1" >
  6369. </productMenu>
  6370. <productMenu id="fmradio"
  6371. type="1" >
  6372. </productMenu>
  6373. <productMenu id="deviceSetting"
  6374. type="1"
  6375. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6376. <productMenuURL version="1.0.1"
  6377. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6378. />
  6379. </productMenu>
  6380. <productMenu id="quickGuide"
  6381. type="1"
  6382. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6383. size="1.06MB" >
  6384. </productMenu>
  6385. <productMenu id="userGuide"
  6386. type="1"
  6387. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6388. size="3.15MB" >
  6389. </productMenu>
  6390. <productMenu id="connectGuide"
  6391. type="1"
  6392. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6393. size="1.12MB" >
  6394. </productMenu>
  6395. <productMenu id="volume"
  6396. type="2" >
  6397. </productMenu>
  6398. <productID id="3116"
  6399. />
  6400. <productGroupable type="0"
  6401. />
  6402. </product>
  6403. <product id="Momentum"
  6404. name="Momentum"
  6405. series="Helmet"
  6406. latestVersion="1.0.9"
  6407. show = "1" >
  6408. <productMenu id="protocol"
  6409. type="0">
  6410. </productMenu>
  6411. <productMenu id="sip"
  6412. type="1" >
  6413. </productMenu>
  6414. <productMenu id="bluetoothIntercom"
  6415. type="1" >
  6416. </productMenu>
  6417. <productMenu id="intercomSetting"
  6418. type="1" >
  6419. </productMenu>
  6420. <productMenu id="phone"
  6421. type="2" >
  6422. </productMenu>
  6423. <productMenu id="fmradio"
  6424. type="3" >
  6425. </productMenu>
  6426. <productMenu id="deviceSetting"
  6427. type="1"
  6428. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6429. </productMenu>
  6430. <productMenu id="quickGuide"
  6431. type="1"
  6432. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6433. size="796KB" >
  6434. </productMenu>
  6435. <productMenu id="userGuide"
  6436. type="1"
  6437. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6438. size="1.90MB" >
  6439. </productMenu>
  6440. <productMenu id="connectGuide"
  6441. type="1"
  6442. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6443. size="1.12MB" >
  6444. </productMenu>
  6445. <productID id="4310"
  6446. />
  6447. <productGroupable type="1"
  6448. />
  6449. </product>
  6450. <product id="Momentum_Pro"
  6451. name="Momentum Pro"
  6452. series="Helmet"
  6453. latestVersion="1.0.6"
  6454. show = "1" >
  6455. <productMenu id="protocol"
  6456. type="0">
  6457. </productMenu>
  6458. <productMenu id="sip"
  6459. type="1" >
  6460. </productMenu>
  6461. <productMenu id="bluetoothIntercom"
  6462. type="1" >
  6463. </productMenu>
  6464. <productMenu id="intercomSetting"
  6465. type="1" >
  6466. </productMenu>
  6467. <productMenu id="phone"
  6468. type="2" >
  6469. </productMenu>
  6470. <productMenu id="fmradio"
  6471. type="3" >
  6472. </productMenu>
  6473. <productMenu id="deviceSetting"
  6474. type="1"
  6475. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6476. </productMenu>
  6477. <productMenu id="quickGuide"
  6478. type="1"
  6479. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6480. size="796KB" >
  6481. </productMenu>
  6482. <productMenu id="userGuide"
  6483. type="1"
  6484. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6485. size="1.90MB" >
  6486. </productMenu>
  6487. <productMenu id="connectGuide"
  6488. type="1"
  6489. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6490. size="1.12MB" >
  6491. </productMenu>
  6492. <productID id="4330"
  6493. />
  6494. <productGroupable type="1"
  6495. />
  6496. </product>
  6497. <product id="Momentum_INC"
  6498. name="Momentum INC"
  6499. series="Helmet"
  6500. latestVersion="1.0.7"
  6501. show = "1" >
  6502. <productMenu id="protocol"
  6503. type="0">
  6504. </productMenu>
  6505. <productMenu id="sip"
  6506. type="1" >
  6507. </productMenu>
  6508. <productMenu id="bluetoothIntercom"
  6509. type="1" >
  6510. </productMenu>
  6511. <productMenu id="intercomSetting"
  6512. type="1" >
  6513. </productMenu>
  6514. <productMenu id="phone"
  6515. type="2" >
  6516. </productMenu>
  6517. <productMenu id="fmradio"
  6518. type="3" >
  6519. </productMenu>
  6520. <productMenu id="deviceSetting"
  6521. type="1"
  6522. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6523. </productMenu>
  6524. <productMenu id="quickGuide"
  6525. type="1"
  6526. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6527. size="794KB" >
  6528. </productMenu>
  6529. <productMenu id="userGuide"
  6530. type="1"
  6531. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6532. size="1.53MB" >
  6533. </productMenu>
  6534. <productMenu id="connectGuide"
  6535. type="1"
  6536. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6537. size="1.12MB" >
  6538. </productMenu>
  6539. <productID id="4410"
  6540. />
  6541. <productGroupable type="1"
  6542. />
  6543. </product>
  6544. <product id="Momentum_INCP"
  6545. name="Momentum INC Pro"
  6546. series="Helmet"
  6547. latestVersion="1.0.4"
  6548. show = "1" >
  6549. <productMenu id="protocol"
  6550. type="0">
  6551. </productMenu>
  6552. <productMenu id="sip"
  6553. type="1" >
  6554. </productMenu>
  6555. <productMenu id="bluetoothIntercom"
  6556. type="1" >
  6557. </productMenu>
  6558. <productMenu id="intercomSetting"
  6559. type="1" >
  6560. </productMenu>
  6561. <productMenu id="phone"
  6562. type="2" >
  6563. </productMenu>
  6564. <productMenu id="fmradio"
  6565. type="3" >
  6566. </productMenu>
  6567. <productMenu id="deviceSetting"
  6568. type="1"
  6569. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6570. </productMenu>
  6571. <productMenu id="quickGuide"
  6572. type="1"
  6573. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6574. size="794KB" >
  6575. </productMenu>
  6576. <productMenu id="userGuide"
  6577. type="1"
  6578. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6579. size="1.53MB" >
  6580. </productMenu>
  6581. <productMenu id="connectGuide"
  6582. type="1"
  6583. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6584. size="1.12MB" >
  6585. </productMenu>
  6586. <productID id="4430"
  6587. />
  6588. <productGroupable type="1"
  6589. />
  6590. </product>
  6591. <product id="Momentum_Lite"
  6592. name="Momentum Lite"
  6593. series="Helmet"
  6594. latestVersion="2.0.3"
  6595. show = "1" >
  6596. <productMenu id="protocol"
  6597. type="0">
  6598. </productMenu>
  6599. <productMenu id="sip"
  6600. type="1" >
  6601. </productMenu>
  6602. <productMenu id="bluetoothIntercom"
  6603. type="1" >
  6604. </productMenu>
  6605. <productMenu id="phone"
  6606. type="2" >
  6607. </productMenu>
  6608. <productMenu id="fmradio"
  6609. type="3" >
  6610. </productMenu>
  6611. <productMenu id="deviceSetting"
  6612. type="1"
  6613. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6614. <productMenuURL version="1.1"
  6615. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6616. />
  6617. </productMenu>
  6618. <productMenu id="quickGuide"
  6619. type="1"
  6620. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6621. size="790KB" >
  6622. </productMenu>
  6623. <productMenu id="userGuide"
  6624. type="1"
  6625. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6626. size="1.42MB" >
  6627. </productMenu>
  6628. <productMenu id="connectGuide"
  6629. type="1"
  6630. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6631. size="1.12MB" >
  6632. </productMenu>
  6633. <productID id="5526"
  6634. />
  6635. <productGroupable type="0"
  6636. />
  6637. </product>
  6638. <product id="OUTRUSHM"
  6639. name="OUTRUSH M"
  6640. series="Helmet"
  6641. latestVersion="1.0"
  6642. show = "-1" >
  6643. <productMenu id="protocol"
  6644. type="2" >
  6645. </productMenu>
  6646. <productMenu id="alexa"
  6647. type="0" >
  6648. </productMenu>
  6649. <productMenu id="ota"
  6650. type="0" >
  6651. </productMenu>
  6652. <productMenu id="wa"
  6653. type="0" >
  6654. </productMenu>
  6655. <productMenu id="meshIntercom"
  6656. type="30" >
  6657. </productMenu>
  6658. <productMenu id="phone"
  6659. type="1" >
  6660. </productMenu>
  6661. <productMenu id="music"
  6662. type="1" >
  6663. </productMenu>
  6664. <productMenu id="fmradio"
  6665. type="1" >
  6666. </productMenu>
  6667. <productMenu id="deviceSetting"
  6668. type="1"
  6669. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6670. </productMenu>
  6671. <productMenu id="quickGuide"
  6672. type="1"
  6673. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6674. size="1.12MB" >
  6675. </productMenu>
  6676. <productMenu id="userGuide"
  6677. type="1"
  6678. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6679. size="2.0MB" >
  6680. </productMenu>
  6681. <productMenu id="volume"
  6682. type="13" >
  6683. </productMenu>
  6684. <productMenu id="battery"
  6685. type="1" >
  6686. </productMenu>
  6687. <productID id="5600"
  6688. />
  6689. <productGroupable type="0"
  6690. />
  6691. </product>
  6692. <product id="ProRideEVO"
  6693. name="ProRide EVO"
  6694. series="Helmet"
  6695. latestVersion="1.1.2"
  6696. show = "1" >
  6697. <productMenu id="protocol"
  6698. type="0">
  6699. </productMenu>
  6700. <productMenu id="sip"
  6701. type="1" >
  6702. </productMenu>
  6703. <productMenu id="bluetoothIntercom"
  6704. type="1" >
  6705. </productMenu>
  6706. <productMenu id="phone"
  6707. type="2" >
  6708. </productMenu>
  6709. <productMenu id="fmradio"
  6710. type="3" >
  6711. </productMenu>
  6712. <productMenu id="deviceSetting"
  6713. type="1"
  6714. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6715. </productMenu>
  6716. <productMenu id="userGuide"
  6717. type="1"
  6718. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6719. size="778KB" >
  6720. </productMenu>
  6721. <productMenu id="connectGuide"
  6722. type="1"
  6723. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6724. size="1.12MB" >
  6725. </productMenu>
  6726. <productID id="5426"
  6727. />
  6728. <productGroupable type="0"
  6729. />
  6730. </product>
  6731. <product id="OUTRUSHR"
  6732. name="OUTRUSH R"
  6733. series="Helmet"
  6734. latestVersion="2.1"
  6735. show = "1" >
  6736. <productMenu id="protocol"
  6737. type="3" >
  6738. </productMenu>
  6739. <productMenu id="sip"
  6740. type="1" >
  6741. </productMenu>
  6742. <productMenu id="bluetoothIntercom"
  6743. type="1" >
  6744. </productMenu>
  6745. <productMenu id="phone"
  6746. type="1" >
  6747. </productMenu>
  6748. <productMenu id="fmradio"
  6749. type="0" >
  6750. </productMenu>
  6751. <productMenu id="deviceSetting"
  6752. type="1"
  6753. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6754. </productMenu>
  6755. <productMenu id="userGuide"
  6756. type="1"
  6757. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6758. size="1.14MB" >
  6759. </productMenu>
  6760. <productMenu id="connectGuide"
  6761. type="1"
  6762. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6763. size="1.12MB" >
  6764. </productMenu>
  6765. <productID id="5440"
  6766. />
  6767. <productGroupable type="0"
  6768. />
  6769. </product>
  6770. <product id="OUTRUSHR"
  6771. name="OUTRUSH R"
  6772. series="Helmet"
  6773. latestVersion="1.1.4"
  6774. show = "-1" >
  6775. <productMenu id="protocol"
  6776. type="0">
  6777. </productMenu>
  6778. <productMenu id="sip"
  6779. type="1" >
  6780. </productMenu>
  6781. <productMenu id="bluetoothIntercom"
  6782. type="1" >
  6783. </productMenu>
  6784. <productMenu id="phone"
  6785. type="2" >
  6786. </productMenu>
  6787. <productMenu id="fmradio"
  6788. type="3" >
  6789. </productMenu>
  6790. <productMenu id="deviceSetting"
  6791. type="1"
  6792. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6793. </productMenu>
  6794. <productMenu id="userGuide"
  6795. type="1"
  6796. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6797. size="660KB" >
  6798. </productMenu>
  6799. <productMenu id="connectGuide"
  6800. type="1"
  6801. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6802. size="1.12MB" >
  6803. </productMenu>
  6804. <productID id="5424"
  6805. />
  6806. <productGroupable type="0"
  6807. />
  6808. </product>
  6809. <product id="OUTSTARS"
  6810. name="OUTSTAR S"
  6811. series="Helmet"
  6812. latestVersion="2.0.1"
  6813. show = "-1" >
  6814. <productMenu id="protocol"
  6815. type="3" >
  6816. </productMenu>
  6817. <productMenu id="sip"
  6818. type="1" >
  6819. </productMenu>
  6820. <productMenu id="bluetoothIntercom"
  6821. type="1" >
  6822. </productMenu>
  6823. <productMenu id="phone"
  6824. type="1" >
  6825. </productMenu>
  6826. <productMenu id="fmradio"
  6827. type="0" >
  6828. </productMenu>
  6829. <productMenu id="deviceSetting"
  6830. type="1"
  6831. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6832. </productMenu>
  6833. <productMenu id="userGuide"
  6834. type="0"
  6835. url=""
  6836. size="1.14MB" >
  6837. </productMenu>
  6838. <productID id="5443"
  6839. />
  6840. <productGroupable type="0"
  6841. />
  6842. </product>
  6843. <product id="OUTSTARS"
  6844. name="OUTSTAR S"
  6845. series="Helmet"
  6846. latestVersion="1.1.4"
  6847. show = "1" >
  6848. <productMenu id="protocol"
  6849. type="0">
  6850. </productMenu>
  6851. <productMenu id="sip"
  6852. type="1" >
  6853. </productMenu>
  6854. <productMenu id="bluetoothIntercom"
  6855. type="1" >
  6856. </productMenu>
  6857. <productMenu id="phone"
  6858. type="2" >
  6859. </productMenu>
  6860. <productMenu id="fmradio"
  6861. type="3" >
  6862. </productMenu>
  6863. <productMenu id="deviceSetting"
  6864. type="1"
  6865. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6866. </productMenu>
  6867. <productMenu id="quickGuide"
  6868. type="1"
  6869. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6870. size="643KB" >
  6871. </productMenu>
  6872. <productMenu id="userGuide"
  6873. type="1"
  6874. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6875. size="1.15MB" >
  6876. </productMenu>
  6877. <productMenu id="connectGuide"
  6878. type="1"
  6879. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6880. size="1.12MB" >
  6881. </productMenu>
  6882. <productID id="5428"
  6883. />
  6884. <productGroupable type="0"
  6885. />
  6886. </product>
  6887. <product id="OUTRIDE"
  6888. name="OUTRIDE"
  6889. series="Helmet"
  6890. latestVersion="1.0.1"
  6891. show = "1" >
  6892. <productMenu id="protocol"
  6893. type="0">
  6894. </productMenu>
  6895. <productMenu id="sip"
  6896. type="1" >
  6897. </productMenu>
  6898. <productMenu id="bluetoothIntercom"
  6899. type="1" >
  6900. </productMenu>
  6901. <productMenu id="phone"
  6902. type="2" >
  6903. </productMenu>
  6904. <productMenu id="fmradio"
  6905. type="3" >
  6906. </productMenu>
  6907. <productMenu id="deviceSetting"
  6908. type="1"
  6909. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6910. </productMenu>
  6911. <productMenu id="quickGuide"
  6912. type="1"
  6913. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6914. size="643KB" >
  6915. </productMenu>
  6916. <productMenu id="userGuide"
  6917. type="1"
  6918. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6919. size="660KB" >
  6920. </productMenu>
  6921. <productMenu id="connectGuide"
  6922. type="1"
  6923. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6924. size="1.12MB" >
  6925. </productMenu>
  6926. <productID id="5432"
  6927. />
  6928. <productGroupable type="0"
  6929. />
  6930. </product>
  6931. <product id="OUTFORCE"
  6932. name="OUTFORCE"
  6933. series="Helmet"
  6934. latestVersion="1.0.1"
  6935. show = "1" >
  6936. <productMenu id="protocol"
  6937. type="0">
  6938. </productMenu>
  6939. <productMenu id="sip"
  6940. type="1" >
  6941. </productMenu>
  6942. <productMenu id="bluetoothIntercom"
  6943. type="1" >
  6944. </productMenu>
  6945. <productMenu id="phone"
  6946. type="2" >
  6947. </productMenu>
  6948. <productMenu id="fmradio"
  6949. type="3" >
  6950. </productMenu>
  6951. <productMenu id="deviceSetting"
  6952. type="1"
  6953. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6954. </productMenu>
  6955. <productMenu id="quickGuide"
  6956. type="1"
  6957. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6958. size="643KB" >
  6959. </productMenu>
  6960. <productMenu id="userGuide"
  6961. type="1"
  6962. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6963. size="660KB" >
  6964. </productMenu>
  6965. <productMenu id="connectGuide"
  6966. type="1"
  6967. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6968. size="1.12MB" >
  6969. </productMenu>
  6970. <productID id="5430"
  6971. />
  6972. <productGroupable type="0"
  6973. />
  6974. </product>
  6975. <product id="Rumba"
  6976. name="Rumba"
  6977. series="30"
  6978. latestVersion="2.0"
  6979. show = "-1" >
  6980. <productMenu id="protocol"
  6981. type="3" >
  6982. </productMenu>
  6983. <productMenu id="sip"
  6984. type="1" >
  6985. </productMenu>
  6986. <productMenu id="bluetoothIntercom"
  6987. type="1" >
  6988. </productMenu>
  6989. <productMenu id="deviceSetting"
  6990. type="1"
  6991. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  6992. </productMenu>
  6993. <productMenu id="quickGuide"
  6994. type="1"
  6995. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  6996. size="344KB" >
  6997. </productMenu>
  6998. <productMenu id="userGuide"
  6999. type="1"
  7000. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  7001. size="1.14MB" >
  7002. </productMenu>
  7003. <productID id="6322"
  7004. />
  7005. <productGroupable type="0"
  7006. />
  7007. </product>
  7008. <product id="Savage"
  7009. name="Savage"
  7010. series="Helmet"
  7011. latestVersion="1.2.2"
  7012. show = "1" >
  7013. <productMenu id="protocol"
  7014. type="0">
  7015. </productMenu>
  7016. <productMenu id="sip"
  7017. type="1" >
  7018. </productMenu>
  7019. <productMenu id="bluetoothIntercom"
  7020. type="1" >
  7021. </productMenu>
  7022. <productMenu id="phone"
  7023. type="2" >
  7024. </productMenu>
  7025. <productMenu id="fmradio"
  7026. type="3" >
  7027. </productMenu>
  7028. <productMenu id="deviceSetting"
  7029. type="1"
  7030. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7031. <productMenuURL version="1.9"
  7032. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7033. />
  7034. <productMenuURL version="1.1"
  7035. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7036. />
  7037. </productMenu>
  7038. <productMenu id="quickGuide"
  7039. type="1"
  7040. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7041. size="796KB" >
  7042. </productMenu>
  7043. <productMenu id="userGuide"
  7044. type="1"
  7045. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7046. size="910KB" >
  7047. </productMenu>
  7048. <productMenu id="connectGuide"
  7049. type="1"
  7050. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7051. size="1.12MB" >
  7052. </productMenu>
  7053. <productID id="5550"
  7054. />
  7055. <productGroupable type="0"
  7056. />
  7057. </product>
  7058. <product id="SPECTER"
  7059. name="SPECTER"
  7060. series="Helmet"
  7061. latestVersion="1.0.9"
  7062. latestVersionVoicePrompt="1.7"
  7063. show = "1" >
  7064. <productMenu id="protocol"
  7065. type="2" >
  7066. </productMenu>
  7067. <productMenu id="ota"
  7068. type="2" >
  7069. <otaLanguages>
  7070. <otaLanguage
  7071. id="0"
  7072. name="English"
  7073. package="0"
  7074. />
  7075. <otaLanguage
  7076. id="0"
  7077. name="French"
  7078. package="1"
  7079. />
  7080. <otaLanguage
  7081. id="0"
  7082. name="Spanish"
  7083. package="2"
  7084. />
  7085. <otaLanguage
  7086. id="0"
  7087. name="Italian"
  7088. package="3"
  7089. />
  7090. <otaLanguage
  7091. id="0"
  7092. name="German"
  7093. package="4"
  7094. />
  7095. <otaLanguage
  7096. id="0"
  7097. name="Dutch"
  7098. package="5"
  7099. />
  7100. <otaLanguage
  7101. id="0"
  7102. name="Russian"
  7103. package="6"
  7104. />
  7105. <otaLanguage
  7106. id="0"
  7107. name="Chinese"
  7108. package="7"
  7109. />
  7110. <otaLanguage
  7111. id="0"
  7112. name="Korean"
  7113. package="8"
  7114. />
  7115. <otaLanguage
  7116. id="0"
  7117. name="Japanese"
  7118. package="9"
  7119. />
  7120. <otaLanguage
  7121. id="0"
  7122. name="Finnish"
  7123. package="10"
  7124. />
  7125. <otaLanguage
  7126. id="0"
  7127. name="Polish"
  7128. package="11"
  7129. />
  7130. </otaLanguages>
  7131. <otaPackages>
  7132. <package
  7133. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0.img"
  7134. size="5183988"
  7135. />
  7136. <package
  7137. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fr-FR.img"
  7138. size="5183988"
  7139. />
  7140. <package
  7141. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-es-ES.img"
  7142. size="5183988"
  7143. />
  7144. <package
  7145. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-it-IT.img"
  7146. size="5183988"
  7147. />
  7148. <package
  7149. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-de-DE.img"
  7150. size="5183988"
  7151. />
  7152. <package
  7153. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-nl-NL.img"
  7154. size="5183988"
  7155. />
  7156. <package
  7157. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ru-RU.img"
  7158. size="5183988"
  7159. />
  7160. <package
  7161. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-cmn-CN.img"
  7162. size="5183988"
  7163. />
  7164. <package
  7165. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ko-KR.img"
  7166. size="5183988"
  7167. />
  7168. <package
  7169. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ja-JP.img"
  7170. size="5183988"
  7171. />
  7172. <package
  7173. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fi-FI.img"
  7174. size="5183988"
  7175. />
  7176. <package
  7177. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-pl-PL.img"
  7178. size="5183988"
  7179. />
  7180. </otaPackages>
  7181. </productMenu>
  7182. <productMenu id="wa"
  7183. type="0" >
  7184. </productMenu>
  7185. <productMenu id="led"
  7186. type="5" >
  7187. </productMenu>
  7188. <productMenu id="led+"
  7189. type="2"
  7190. url="1" >
  7191. </productMenu>
  7192. <productMenu id="meshIntercom+"
  7193. type="3"
  7194. url="2" >
  7195. </productMenu>
  7196. <productMenu id="waveIntercom"
  7197. type="1" >
  7198. </productMenu>
  7199. <productMenu id="fmradio"
  7200. type="0" >
  7201. </productMenu>
  7202. <productMenu id="phone"
  7203. type="1" >
  7204. </productMenu>
  7205. <productMenu id="music"
  7206. type="1" >
  7207. </productMenu>
  7208. <productMenu id="musicSharing"
  7209. type="0" >
  7210. </productMenu>
  7211. <productMenu id="deviceSetting"
  7212. type="1"
  7213. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7214. <productMenuURL version="1.0.4"
  7215. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7216. />
  7217. </productMenu>
  7218. <productMenu id="quickGuide"
  7219. type="0"
  7220. url=""
  7221. size="1.12MB" >
  7222. </productMenu>
  7223. <productMenu id="userGuide"
  7224. type="1"
  7225. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7226. size="2.0MB" >
  7227. </productMenu>
  7228. <productMenu id="videoGuide"
  7229. type="0"
  7230. url=""
  7231. size="3.41MB" >
  7232. </productMenu>
  7233. <productMenu id="volume"
  7234. type="16" >
  7235. </productMenu>
  7236. <productMenu id="volume+"
  7237. type="2"
  7238. url="0x6004" >
  7239. </productMenu>
  7240. <productMenu id="battery"
  7241. type="1" >
  7242. </productMenu>
  7243. <productID id="6A11"
  7244. />
  7245. <productGroupable type="0"
  7246. />
  7247. </product>
  7248. <product id="SPECTER"
  7249. name="SPECTER"
  7250. series="Helmet"
  7251. latestVersion="1.0.9"
  7252. latestVersionVoicePrompt="1.7"
  7253. show = "-1" >
  7254. <productMenu id="protocol"
  7255. type="2" >
  7256. </productMenu>
  7257. <productMenu id="ota"
  7258. type="2" >
  7259. <otaLanguages>
  7260. <otaLanguage
  7261. id="0"
  7262. name="English"
  7263. package="0"
  7264. />
  7265. <otaLanguage
  7266. id="0"
  7267. name="French"
  7268. package="1"
  7269. />
  7270. <otaLanguage
  7271. id="0"
  7272. name="Spanish"
  7273. package="2"
  7274. />
  7275. <otaLanguage
  7276. id="0"
  7277. name="Italian"
  7278. package="3"
  7279. />
  7280. <otaLanguage
  7281. id="0"
  7282. name="German"
  7283. package="4"
  7284. />
  7285. <otaLanguage
  7286. id="0"
  7287. name="Dutch"
  7288. package="5"
  7289. />
  7290. <otaLanguage
  7291. id="0"
  7292. name="Russian"
  7293. package="6"
  7294. />
  7295. <otaLanguage
  7296. id="0"
  7297. name="Chinese"
  7298. package="7"
  7299. />
  7300. <otaLanguage
  7301. id="0"
  7302. name="Korean"
  7303. package="8"
  7304. />
  7305. <otaLanguage
  7306. id="0"
  7307. name="Japanese"
  7308. package="9"
  7309. />
  7310. <otaLanguage
  7311. id="0"
  7312. name="Finnish"
  7313. package="10"
  7314. />
  7315. <otaLanguage
  7316. id="0"
  7317. name="Polish"
  7318. package="11"
  7319. />
  7320. </otaLanguages>
  7321. <otaPackages>
  7322. <package
  7323. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0.img"
  7324. size="5183988"
  7325. />
  7326. <package
  7327. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fr-FR.img"
  7328. size="5183988"
  7329. />
  7330. <package
  7331. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-es-ES.img"
  7332. size="5183988"
  7333. />
  7334. <package
  7335. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-it-IT.img"
  7336. size="5183988"
  7337. />
  7338. <package
  7339. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-de-DE.img"
  7340. size="5183988"
  7341. />
  7342. <package
  7343. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-nl-NL.img"
  7344. size="5183988"
  7345. />
  7346. <package
  7347. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ru-RU.img"
  7348. size="5183988"
  7349. />
  7350. <package
  7351. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-cmn-CN.img"
  7352. size="5183988"
  7353. />
  7354. <package
  7355. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ko-KR.img"
  7356. size="5183988"
  7357. />
  7358. <package
  7359. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ja-JP.img"
  7360. size="5183988"
  7361. />
  7362. <package
  7363. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fi-FI.img"
  7364. size="5183988"
  7365. />
  7366. <package
  7367. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-pl-PL.img"
  7368. size="5183988"
  7369. />
  7370. </otaPackages>
  7371. </productMenu>
  7372. <productMenu id="wa"
  7373. type="0" >
  7374. </productMenu>
  7375. <productMenu id="led"
  7376. type="5" >
  7377. </productMenu>
  7378. <productMenu id="led+"
  7379. type="2"
  7380. url="1" >
  7381. </productMenu>
  7382. <productMenu id="meshIntercom+"
  7383. type="3"
  7384. url="2" >
  7385. </productMenu>
  7386. <productMenu id="waveIntercom"
  7387. type="1" >
  7388. </productMenu>
  7389. <productMenu id="fmradio"
  7390. type="0" >
  7391. </productMenu>
  7392. <productMenu id="phone"
  7393. type="1" >
  7394. </productMenu>
  7395. <productMenu id="music"
  7396. type="1" >
  7397. </productMenu>
  7398. <productMenu id="musicSharing"
  7399. type="0" >
  7400. </productMenu>
  7401. <productMenu id="deviceSetting"
  7402. type="1"
  7403. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7404. <productMenuURL version="1.0.4"
  7405. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7406. />
  7407. <productMenuURL version="1.0"
  7408. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7409. />
  7410. </productMenu>
  7411. <productMenu id="quickGuide"
  7412. type="0"
  7413. url=""
  7414. size="1.12MB" >
  7415. </productMenu>
  7416. <productMenu id="userGuide"
  7417. type="1"
  7418. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7419. size="2.0MB" >
  7420. </productMenu>
  7421. <productMenu id="videoGuide"
  7422. type="0"
  7423. url=""
  7424. size="3.41MB" >
  7425. </productMenu>
  7426. <productMenu id="volume"
  7427. type="16" >
  7428. </productMenu>
  7429. <productMenu id="volume+"
  7430. type="2"
  7431. url="0x6004" >
  7432. </productMenu>
  7433. <productMenu id="battery"
  7434. type="1" >
  7435. </productMenu>
  7436. <productID id="6A0A"
  7437. />
  7438. <productGroupable type="0"
  7439. />
  7440. </product>
  7441. <product id="OUTLANDER"
  7442. name="OUTLANDER"
  7443. series="Helmet"
  7444. latestVersion="1.0.9"
  7445. latestVersionVoicePrompt="1.7"
  7446. show = "1" >
  7447. <productMenu id="protocol"
  7448. type="2" >
  7449. </productMenu>
  7450. <productMenu id="ota"
  7451. type="2" >
  7452. <otaLanguages>
  7453. <otaLanguage
  7454. id="0"
  7455. name="English"
  7456. package="0"
  7457. />
  7458. <otaLanguage
  7459. id="0"
  7460. name="French"
  7461. package="1"
  7462. />
  7463. <otaLanguage
  7464. id="0"
  7465. name="Spanish"
  7466. package="2"
  7467. />
  7468. <otaLanguage
  7469. id="0"
  7470. name="Italian"
  7471. package="3"
  7472. />
  7473. <otaLanguage
  7474. id="0"
  7475. name="German"
  7476. package="4"
  7477. />
  7478. <otaLanguage
  7479. id="0"
  7480. name="Dutch"
  7481. package="5"
  7482. />
  7483. <otaLanguage
  7484. id="0"
  7485. name="Russian"
  7486. package="6"
  7487. />
  7488. <otaLanguage
  7489. id="0"
  7490. name="Chinese"
  7491. package="7"
  7492. />
  7493. <otaLanguage
  7494. id="0"
  7495. name="Korean"
  7496. package="8"
  7497. />
  7498. <otaLanguage
  7499. id="0"
  7500. name="Japanese"
  7501. package="9"
  7502. />
  7503. <otaLanguage
  7504. id="0"
  7505. name="Finnish"
  7506. package="10"
  7507. />
  7508. <otaLanguage
  7509. id="0"
  7510. name="Polish"
  7511. package="11"
  7512. />
  7513. </otaLanguages>
  7514. <otaPackages>
  7515. <package
  7516. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0.img"
  7517. size="5183988"
  7518. />
  7519. <package
  7520. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fr-FR.img"
  7521. size="5183988"
  7522. />
  7523. <package
  7524. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-es-ES.img"
  7525. size="5183988"
  7526. />
  7527. <package
  7528. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-it-IT.img"
  7529. size="5183988"
  7530. />
  7531. <package
  7532. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-de-DE.img"
  7533. size="5183988"
  7534. />
  7535. <package
  7536. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-nl-NL.img"
  7537. size="5183988"
  7538. />
  7539. <package
  7540. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ru-RU.img"
  7541. size="5183988"
  7542. />
  7543. <package
  7544. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-cmn-CN.img"
  7545. size="5183988"
  7546. />
  7547. <package
  7548. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ko-KR.img"
  7549. size="5183988"
  7550. />
  7551. <package
  7552. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ja-JP.img"
  7553. size="5183988"
  7554. />
  7555. <package
  7556. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fi-FI.img"
  7557. size="5183988"
  7558. />
  7559. <package
  7560. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-pl-PL.img"
  7561. size="5183988"
  7562. />
  7563. </otaPackages>
  7564. </productMenu>
  7565. <productMenu id="wa"
  7566. type="0" >
  7567. </productMenu>
  7568. <productMenu id="led"
  7569. type="5" >
  7570. </productMenu>
  7571. <productMenu id="led+"
  7572. type="2"
  7573. url="1" >
  7574. </productMenu>
  7575. <productMenu id="meshIntercom+"
  7576. type="3"
  7577. url="2" >
  7578. </productMenu>
  7579. <productMenu id="waveIntercom"
  7580. type="1" >
  7581. </productMenu>
  7582. <productMenu id="fmradio"
  7583. type="0" >
  7584. </productMenu>
  7585. <productMenu id="phone"
  7586. type="1" >
  7587. </productMenu>
  7588. <productMenu id="music"
  7589. type="1" >
  7590. </productMenu>
  7591. <productMenu id="musicSharing"
  7592. type="0" >
  7593. </productMenu>
  7594. <productMenu id="deviceSetting"
  7595. type="1"
  7596. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml" >
  7597. <productMenuURL version="1.0.4"
  7598. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7599. />
  7600. </productMenu>
  7601. <productMenu id="quickGuide"
  7602. type="0"
  7603. url=""
  7604. size="1.12MB" >
  7605. </productMenu>
  7606. <productMenu id="userGuide"
  7607. type="1"
  7608. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7609. size="2.0MB" >
  7610. </productMenu>
  7611. <productMenu id="videoGuide"
  7612. type="0"
  7613. url=""
  7614. size="3.41MB" >
  7615. </productMenu>
  7616. <productMenu id="volume"
  7617. type="16" >
  7618. </productMenu>
  7619. <productMenu id="volume+"
  7620. type="2"
  7621. url="0x6004" >
  7622. </productMenu>
  7623. <productMenu id="battery"
  7624. type="1" >
  7625. </productMenu>
  7626. <productID id="6A05"
  7627. />
  7628. <productGroupable type="0"
  7629. />
  7630. </product>
  7631. <product id="OUTRUSH2"
  7632. name="OUTRUSH 2"
  7633. series="Helmet"
  7634. latestVersion="1.0.2"
  7635. latestVersionVoicePrompt="1.1"
  7636. show = "1" >
  7637. <productMenu id="protocol"
  7638. type="2" >
  7639. </productMenu>
  7640. <productMenu id="alexa"
  7641. type="0" >
  7642. </productMenu>
  7643. <productMenu id="ota"
  7644. type="2" >
  7645. <otaPackages>
  7646. <package
  7647. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  7648. size="2945812"
  7649. />
  7650. </otaPackages>
  7651. </productMenu>
  7652. <productMenu id="meshIntercom+"
  7653. type="3"
  7654. url="2" >
  7655. </productMenu>
  7656. <productMenu id="waveIntercom"
  7657. type="1" >
  7658. </productMenu>
  7659. <productMenu id="phone"
  7660. type="1" >
  7661. </productMenu>
  7662. <productMenu id="music"
  7663. type="1" >
  7664. </productMenu>
  7665. <productMenu id="musicSharing"
  7666. type="0" >
  7667. </productMenu>
  7668. <productMenu id="deviceSetting"
  7669. type="1"
  7670. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7671. <productMenuURL version="1.0"
  7672. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  7673. />
  7674. </productMenu>
  7675. <productMenu id="quickGuide"
  7676. type="0"
  7677. url=""
  7678. size="1.12MB" >
  7679. </productMenu>
  7680. <productMenu id="userGuide"
  7681. type="1"
  7682. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  7683. size="2.0MB" >
  7684. </productMenu>
  7685. <productMenu id="volume"
  7686. type="12" >
  7687. </productMenu>
  7688. <productMenu id="battery"
  7689. type="1" >
  7690. </productMenu>
  7691. <productID id="684A"
  7692. />
  7693. <productGroupable type="0"
  7694. />
  7695. </product>
  7696. <product id="OUTSTAR2"
  7697. name="OUTSTAR 2"
  7698. series="Helmet"
  7699. latestVersion="1.0.1"
  7700. latestVersionVoicePrompt="1.1"
  7701. show = "1" >
  7702. <productMenu id="protocol"
  7703. type="2" >
  7704. </productMenu>
  7705. <productMenu id="alexa"
  7706. type="0" >
  7707. </productMenu>
  7708. <productMenu id="ota"
  7709. type="2" >
  7710. <otaPackages>
  7711. <package
  7712. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.1-build0.img"
  7713. size="2945812"
  7714. />
  7715. </otaPackages>
  7716. </productMenu>
  7717. <productMenu id="meshIntercom+"
  7718. type="3"
  7719. url="2" >
  7720. </productMenu>
  7721. <productMenu id="waveIntercom"
  7722. type="1" >
  7723. </productMenu>
  7724. <productMenu id="phone"
  7725. type="1" >
  7726. </productMenu>
  7727. <productMenu id="music"
  7728. type="1" >
  7729. </productMenu>
  7730. <productMenu id="musicSharing"
  7731. type="0" >
  7732. </productMenu>
  7733. <productMenu id="deviceSetting"
  7734. type="1"
  7735. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7736. </productMenu>
  7737. <productMenu id="quickGuide"
  7738. type="0"
  7739. url=""
  7740. size="1.12MB" >
  7741. </productMenu>
  7742. <productMenu id="userGuide"
  7743. type="1"
  7744. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  7745. size="2.0MB" >
  7746. </productMenu>
  7747. <productMenu id="volume"
  7748. type="12" >
  7749. </productMenu>
  7750. <productMenu id="battery"
  7751. type="1" >
  7752. </productMenu>
  7753. <productID id="684B"
  7754. />
  7755. <productGroupable type="0"
  7756. />
  7757. </product>
  7758. <product id="SURGE"
  7759. name="SURGE"
  7760. series="Helmet"
  7761. latestVersion="1.2"
  7762. latestVersionVoicePrompt="1.3"
  7763. show = "1" >
  7764. <productMenu id="protocol"
  7765. type="2" >
  7766. </productMenu>
  7767. <productMenu id="alexa"
  7768. type="0" >
  7769. </productMenu>
  7770. <productMenu id="ota"
  7771. type="2" >
  7772. <otaPackages>
  7773. <package
  7774. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  7775. size="2945812"
  7776. />
  7777. </otaPackages>
  7778. </productMenu>
  7779. <productMenu id="meshIntercom"
  7780. type="30" >
  7781. </productMenu>
  7782. <productMenu id="meshIntercom+"
  7783. type="3"
  7784. url="2" >
  7785. <productMenuType version="1.0.1"
  7786. type="2"
  7787. />
  7788. </productMenu>
  7789. <productMenu id="waveIntercom"
  7790. type="1" >
  7791. <productMenuType version="1.0.9"
  7792. type="0"
  7793. />
  7794. </productMenu>
  7795. <productMenu id="phone"
  7796. type="1" >
  7797. </productMenu>
  7798. <productMenu id="music"
  7799. type="1" >
  7800. </productMenu>
  7801. <productMenu id="musicSharing"
  7802. type="0" >
  7803. </productMenu>
  7804. <productMenu id="deviceSetting"
  7805. type="1"
  7806. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  7807. <productMenuURL version="1.1.9"
  7808. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  7809. />
  7810. <productMenuURL version="1.0.1"
  7811. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  7812. />
  7813. </productMenu>
  7814. <productMenu id="quickGuide"
  7815. type="0"
  7816. url=""
  7817. size="1.12MB" >
  7818. </productMenu>
  7819. <productMenu id="userGuide"
  7820. type="1"
  7821. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  7822. size="2.0MB" >
  7823. </productMenu>
  7824. <productMenu id="volume"
  7825. type="12" >
  7826. </productMenu>
  7827. <productMenu id="battery"
  7828. type="1" >
  7829. </productMenu>
  7830. <productID id="6840"
  7831. />
  7832. <productGroupable type="0"
  7833. />
  7834. </product>
  7835. <product id="Cavalry2"
  7836. name="Cavalry 2"
  7837. series="Helmet"
  7838. latestVersion="1.2"
  7839. latestVersionVoicePrompt="1.3"
  7840. show = "1" >
  7841. <productMenu id="protocol"
  7842. type="2" >
  7843. </productMenu>
  7844. <productMenu id="alexa"
  7845. type="0" >
  7846. </productMenu>
  7847. <productMenu id="ota"
  7848. type="2" >
  7849. <otaPackages>
  7850. <package
  7851. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  7852. size="3144148"
  7853. />
  7854. </otaPackages>
  7855. </productMenu>
  7856. <productMenu id="wa"
  7857. type="0" >
  7858. </productMenu>
  7859. <productMenu id="meshIntercom"
  7860. type="30" >
  7861. </productMenu>
  7862. <productMenu id="meshIntercom+"
  7863. type="3"
  7864. url="2" >
  7865. <productMenuType version="1.0"
  7866. type="2"
  7867. />
  7868. </productMenu>
  7869. <productMenu id="waveIntercom"
  7870. type="1" >
  7871. <productMenuType version="1.0.9"
  7872. type="0"
  7873. />
  7874. </productMenu>
  7875. <productMenu id="phone"
  7876. type="1" >
  7877. </productMenu>
  7878. <productMenu id="music"
  7879. type="1" >
  7880. </productMenu>
  7881. <productMenu id="musicSharing"
  7882. type="0" >
  7883. </productMenu>
  7884. <productMenu id="deviceSetting"
  7885. type="1"
  7886. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  7887. <productMenuURL version="1.1.9"
  7888. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  7889. />
  7890. <productMenuURL version="1.0"
  7891. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  7892. />
  7893. </productMenu>
  7894. <productMenu id="quickGuide"
  7895. type="0"
  7896. url=""
  7897. size="1.12MB" >
  7898. </productMenu>
  7899. <productMenu id="userGuide"
  7900. type="1"
  7901. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  7902. size="2.0MB" >
  7903. </productMenu>
  7904. <productMenu id="connectGuide"
  7905. type="1"
  7906. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  7907. size="1.12MB" >
  7908. </productMenu>
  7909. <productMenu id="volume"
  7910. type="12" >
  7911. </productMenu>
  7912. <productMenu id="battery"
  7913. type="1" >
  7914. </productMenu>
  7915. <productID id="6839"
  7916. />
  7917. <productGroupable type="0"
  7918. />
  7919. </product>
  7920. <product id="Cavalry"
  7921. name="Cavalry"
  7922. series="Helmet"
  7923. latestVersion="1.2.2"
  7924. show = "1" >
  7925. <productMenu id="protocol"
  7926. type="0">
  7927. </productMenu>
  7928. <productMenu id="sip"
  7929. type="1" >
  7930. </productMenu>
  7931. <productMenu id="bluetoothIntercom"
  7932. type="1" >
  7933. </productMenu>
  7934. <productMenu id="phone"
  7935. type="2" >
  7936. </productMenu>
  7937. <productMenu id="fmradio"
  7938. type="3" >
  7939. </productMenu>
  7940. <productMenu id="deviceSetting"
  7941. type="1"
  7942. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  7943. <productMenuURL version="1.9"
  7944. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  7945. />
  7946. <productMenuURL version="1.0.1"
  7947. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  7948. />
  7949. </productMenu>
  7950. <productMenu id="quickGuide"
  7951. type="1"
  7952. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  7953. size="795KB" >
  7954. </productMenu>
  7955. <productMenu id="userGuide"
  7956. type="1"
  7957. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  7958. size="1.87MB" >
  7959. </productMenu>
  7960. <productMenu id="connectGuide"
  7961. type="1"
  7962. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7963. size="1.12MB" >
  7964. </productMenu>
  7965. <productID id="5524"
  7966. />
  7967. <productGroupable type="0"
  7968. />
  7969. </product>
  7970. <product id="Cavalry_Lite"
  7971. name="Cavalry Lite"
  7972. series="Helmet"
  7973. latestVersion="1.0.2"
  7974. show = "1" >
  7975. <productMenu id="protocol"
  7976. type="0">
  7977. </productMenu>
  7978. <productMenu id="sip"
  7979. type="1" >
  7980. </productMenu>
  7981. <productMenu id="bluetoothIntercom"
  7982. type="1" >
  7983. </productMenu>
  7984. <productMenu id="phone"
  7985. type="2" >
  7986. </productMenu>
  7987. <productMenu id="fmradio"
  7988. type="3" >
  7989. </productMenu>
  7990. <productMenu id="deviceSetting"
  7991. type="1"
  7992. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7993. </productMenu>
  7994. <productMenu id="userGuide"
  7995. type="1"
  7996. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  7997. size="1.74MB" >
  7998. </productMenu>
  7999. <productMenu id="connectGuide"
  8000. type="1"
  8001. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8002. size="1.12MB" >
  8003. </productMenu>
  8004. <productID id="5536"
  8005. />
  8006. <productGroupable type="0"
  8007. />
  8008. </product>
  8009. <product id="VORTEX"
  8010. name="VORTEX"
  8011. series="VORTEX"
  8012. latestVersion="1.0"
  8013. latestVersionVoicePrompt="1.0"
  8014. show = "-1" >
  8015. <productMenu id="protocol"
  8016. type="2" >
  8017. </productMenu>
  8018. <productMenu id="ota"
  8019. type="2" >
  8020. <otaLanguages>
  8021. <otaLanguage
  8022. id="0"
  8023. name="English"
  8024. package="0"
  8025. />
  8026. <otaLanguage
  8027. id="0"
  8028. name="French"
  8029. package="1"
  8030. />
  8031. <otaLanguage
  8032. id="0"
  8033. name="Spanish"
  8034. package="2"
  8035. />
  8036. <otaLanguage
  8037. id="0"
  8038. name="Italian"
  8039. package="3"
  8040. />
  8041. <otaLanguage
  8042. id="0"
  8043. name="German"
  8044. package="4"
  8045. />
  8046. <otaLanguage
  8047. id="0"
  8048. name="Dutch"
  8049. package="5"
  8050. />
  8051. <otaLanguage
  8052. id="0"
  8053. name="Russian"
  8054. package="6"
  8055. />
  8056. <otaLanguage
  8057. id="0"
  8058. name="Chinese"
  8059. package="7"
  8060. />
  8061. <otaLanguage
  8062. id="0"
  8063. name="Korean"
  8064. package="8"
  8065. />
  8066. <otaLanguage
  8067. id="0"
  8068. name="Japanese"
  8069. package="9"
  8070. />
  8071. <otaLanguage
  8072. id="0"
  8073. name="Finnish"
  8074. package="10"
  8075. />
  8076. <otaLanguage
  8077. id="0"
  8078. name="Polish"
  8079. package="11"
  8080. />
  8081. </otaLanguages>
  8082. <otaPackages>
  8083. <package
  8084. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4.img"
  8085. size="5183988"
  8086. />
  8087. <package
  8088. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fr-FR.img"
  8089. size="5183988"
  8090. />
  8091. <package
  8092. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-es-ES.img"
  8093. size="5183988"
  8094. />
  8095. <package
  8096. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-it-IT.img"
  8097. size="5183988"
  8098. />
  8099. <package
  8100. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-de-DE.img"
  8101. size="5183988"
  8102. />
  8103. <package
  8104. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-nl-NL.img"
  8105. size="5183988"
  8106. />
  8107. <package
  8108. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ru-RU.img"
  8109. size="5183988"
  8110. />
  8111. <package
  8112. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-cmn-CN.img"
  8113. size="5183988"
  8114. />
  8115. <package
  8116. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ko-KR.img"
  8117. size="5183988"
  8118. />
  8119. <package
  8120. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ja-JP.img"
  8121. size="5183988"
  8122. />
  8123. <package
  8124. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fi-FI.img"
  8125. size="5183988"
  8126. />
  8127. <package
  8128. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-pl-PL.img"
  8129. size="5183988"
  8130. />
  8131. </otaPackages>
  8132. </productMenu>
  8133. <productMenu id="sip"
  8134. type="1" >
  8135. </productMenu>
  8136. <productMenu id="bluetoothIntercom"
  8137. type="1" >
  8138. </productMenu>
  8139. <productMenu id="phone"
  8140. type="1" >
  8141. </productMenu>
  8142. <productMenu id="music"
  8143. type="1" >
  8144. </productMenu>
  8145. <productMenu id="fmradio"
  8146. type="1"
  8147. url="1" >
  8148. </productMenu>
  8149. <productMenu id="deviceSetting"
  8150. type="1"
  8151. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8152. </productMenu>
  8153. <productMenu id="quickGuide"
  8154. type="0"
  8155. url=""
  8156. size="934KB" >
  8157. </productMenu>
  8158. <productMenu id="userGuide"
  8159. type="1"
  8160. url=""
  8161. size="1.14MB" >
  8162. </productMenu>
  8163. <productMenu id="connectGuide"
  8164. type="0"
  8165. url=""
  8166. size="1.12MB" >
  8167. </productMenu>
  8168. <productMenu id="volume"
  8169. type="15" >
  8170. </productMenu>
  8171. <productMenu id="appearance"
  8172. type="1"
  8173. url="1|white,silver,black" >
  8174. </productMenu>
  8175. <productID id="3451"
  8176. />
  8177. <productGroupable type="0"
  8178. />
  8179. </product>
  8180. <product id="SF4"
  8181. name="SF4"
  8182. series="SF"
  8183. latestVersion="1.1.5"
  8184. show = "-1" >
  8185. <productMenu id="protocol"
  8186. type="1"
  8187. url="3">
  8188. </productMenu>
  8189. <productMenu id="sip"
  8190. type="1" >
  8191. </productMenu>
  8192. <productMenu id="bluetoothIntercom"
  8193. type="1" >
  8194. </productMenu>
  8195. <productMenu id="phone"
  8196. type="1" >
  8197. </productMenu>
  8198. <productMenu id="music"
  8199. type="1" >
  8200. </productMenu>
  8201. <productMenu id="fmradio"
  8202. type="1" >
  8203. </productMenu>
  8204. <productMenu id="deviceSetting"
  8205. type="1"
  8206. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8207. <productMenuURL version="1.0.1"
  8208. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8209. />
  8210. </productMenu>
  8211. <productMenu id="quickGuide"
  8212. type="1"
  8213. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8214. size="607KB" >
  8215. </productMenu>
  8216. <productMenu id="userGuide"
  8217. type="1"
  8218. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8219. size="1.91MB" >
  8220. </productMenu>
  8221. <productMenu id="volume"
  8222. type="4" >
  8223. </productMenu>
  8224. <productID id="5414"
  8225. />
  8226. <productGroupable type="0"
  8227. />
  8228. </product>
  8229. <product id="SF4"
  8230. name="SF4"
  8231. series="SF"
  8232. latestVersion="3.4.4"
  8233. show = "1" >
  8234. <productMenu id="protocol"
  8235. type="2" >
  8236. </productMenu>
  8237. <productMenu id="sip"
  8238. type="1" >
  8239. </productMenu>
  8240. <productMenu id="bluetoothIntercom"
  8241. type="1" >
  8242. </productMenu>
  8243. <productMenu id="phone"
  8244. type="1" >
  8245. </productMenu>
  8246. <productMenu id="music"
  8247. type="1" >
  8248. </productMenu>
  8249. <productMenu id="fmradio"
  8250. type="1" >
  8251. </productMenu>
  8252. <productMenu id="deviceSetting"
  8253. type="1"
  8254. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8255. <productMenuURL version="3.0"
  8256. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8257. />
  8258. </productMenu>
  8259. <productMenu id="quickGuide"
  8260. type="0"
  8261. url=""
  8262. size="934KB" >
  8263. </productMenu>
  8264. <productMenu id="userGuide"
  8265. type="1"
  8266. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8267. size="1.14MB" >
  8268. </productMenu>
  8269. <productMenu id="connectGuide"
  8270. type="1"
  8271. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8272. size="1.12MB" >
  8273. </productMenu>
  8274. <productMenu id="volume"
  8275. type="15" >
  8276. </productMenu>
  8277. <productID id="3370"
  8278. />
  8279. <productGroupable type="0"
  8280. />
  8281. </product>
  8282. <product id="SF2"
  8283. name="SF2"
  8284. series="SF"
  8285. latestVersion="1.2.1"
  8286. show = "-1" >
  8287. <productMenu id="protocol"
  8288. type="1"
  8289. url="2">
  8290. </productMenu>
  8291. <productMenu id="sip"
  8292. type="1" >
  8293. </productMenu>
  8294. <productMenu id="bluetoothIntercom"
  8295. type="1" >
  8296. </productMenu>
  8297. <productMenu id="phone"
  8298. type="1" >
  8299. </productMenu>
  8300. <productMenu id="music"
  8301. type="1" >
  8302. </productMenu>
  8303. <productMenu id="fmradio"
  8304. type="1" >
  8305. </productMenu>
  8306. <productMenu id="deviceSetting"
  8307. type="1"
  8308. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8309. <productMenuURL version="1.0.1"
  8310. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8311. />
  8312. </productMenu>
  8313. <productMenu id="quickGuide"
  8314. type="1"
  8315. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8316. size="607KB" >
  8317. </productMenu>
  8318. <productMenu id="userGuide"
  8319. type="1"
  8320. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8321. size="1.91MB" >
  8322. </productMenu>
  8323. <productMenu id="volume"
  8324. type="4" >
  8325. </productMenu>
  8326. <productID id="5412"
  8327. />
  8328. <productGroupable type="0"
  8329. />
  8330. </product>
  8331. <product id="SF2"
  8332. name="SF2"
  8333. series="SF"
  8334. latestVersion="3.3.4"
  8335. show = "1" >
  8336. <productMenu id="protocol"
  8337. type="2" >
  8338. </productMenu>
  8339. <productMenu id="sip"
  8340. type="1" >
  8341. </productMenu>
  8342. <productMenu id="bluetoothIntercom"
  8343. type="1" >
  8344. </productMenu>
  8345. <productMenu id="phone"
  8346. type="1" >
  8347. </productMenu>
  8348. <productMenu id="music"
  8349. type="1" >
  8350. </productMenu>
  8351. <productMenu id="fmradio"
  8352. type="0" >
  8353. </productMenu>
  8354. <productMenu id="deviceSetting"
  8355. type="1"
  8356. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8357. <productMenuURL version="3.0"
  8358. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8359. />
  8360. </productMenu>
  8361. <productMenu id="quickGuide"
  8362. type="0"
  8363. url=""
  8364. size="934KB" >
  8365. </productMenu>
  8366. <productMenu id="userGuide"
  8367. type="1"
  8368. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8369. size="1.14MB" >
  8370. </productMenu>
  8371. <productMenu id="connectGuide"
  8372. type="1"
  8373. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8374. size="1.12MB" >
  8375. </productMenu>
  8376. <productMenu id="volume"
  8377. type="15" >
  8378. </productMenu>
  8379. <productID id="3360"
  8380. />
  8381. <productGroupable type="0"
  8382. />
  8383. </product>
  8384. <product id="SF1"
  8385. name="SF1"
  8386. series="SF"
  8387. latestVersion="2.0.5"
  8388. show = "-1" >
  8389. <productMenu id="protocol"
  8390. type="1"
  8391. url="1">
  8392. </productMenu>
  8393. <productMenu id="sip"
  8394. type="1" >
  8395. </productMenu>
  8396. <productMenu id="bluetoothIntercom"
  8397. type="1" >
  8398. <productMenuType version="1.1"
  8399. type="0"
  8400. />
  8401. </productMenu>
  8402. <productMenu id="phone"
  8403. type="1" >
  8404. </productMenu>
  8405. <productMenu id="music"
  8406. type="1" >
  8407. </productMenu>
  8408. <productMenu id="deviceSetting"
  8409. type="1"
  8410. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8411. <productMenuURL version="1.1"
  8412. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8413. />
  8414. <productMenuURL version="1.0"
  8415. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8416. />
  8417. </productMenu>
  8418. <productMenu id="quickGuide"
  8419. type="1"
  8420. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8421. size="401KB" >
  8422. </productMenu>
  8423. <productMenu id="userGuide"
  8424. type="1"
  8425. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8426. size="1.91MB" >
  8427. </productMenu>
  8428. <productMenu id="volume"
  8429. type="3" >
  8430. </productMenu>
  8431. <productID id="5410"
  8432. />
  8433. <productGroupable type="0"
  8434. />
  8435. </product>
  8436. <product id="SF1"
  8437. name="SF1"
  8438. series="SF"
  8439. latestVersion="3.3.4"
  8440. show = "1" >
  8441. <productMenu id="protocol"
  8442. type="2" >
  8443. </productMenu>
  8444. <productMenu id="sip"
  8445. type="1" >
  8446. </productMenu>
  8447. <productMenu id="bluetoothIntercom"
  8448. type="1" >
  8449. </productMenu>
  8450. <productMenu id="phone"
  8451. type="1" >
  8452. </productMenu>
  8453. <productMenu id="music"
  8454. type="1" >
  8455. </productMenu>
  8456. <productMenu id="fmradio"
  8457. type="0" >
  8458. </productMenu>
  8459. <productMenu id="deviceSetting"
  8460. type="1"
  8461. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8462. <productMenuURL version="3.0"
  8463. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8464. />
  8465. </productMenu>
  8466. <productMenu id="quickGuide"
  8467. type="0"
  8468. url=""
  8469. size="934KB" >
  8470. </productMenu>
  8471. <productMenu id="userGuide"
  8472. type="1"
  8473. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8474. size="1.14MB" >
  8475. </productMenu>
  8476. <productMenu id="connectGuide"
  8477. type="1"
  8478. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8479. size="1.12MB" >
  8480. </productMenu>
  8481. <productMenu id="volume"
  8482. type="15" >
  8483. </productMenu>
  8484. <productID id="3350"
  8485. />
  8486. <productGroupable type="0"
  8487. />
  8488. </product>
  8489. <product id="SFR"
  8490. name="SFR"
  8491. series="SF"
  8492. latestVersion="1.1.1"
  8493. show = "1" >
  8494. <productMenu id="protocol"
  8495. type="1"
  8496. url="3">
  8497. </productMenu>
  8498. <productMenu id="sip"
  8499. type="1" >
  8500. </productMenu>
  8501. <productMenu id="bluetoothIntercom"
  8502. type="1" >
  8503. </productMenu>
  8504. <productMenu id="phone"
  8505. type="1" >
  8506. </productMenu>
  8507. <productMenu id="music"
  8508. type="1" >
  8509. </productMenu>
  8510. <productMenu id="fmradio"
  8511. type="1" >
  8512. </productMenu>
  8513. <productMenu id="deviceSetting"
  8514. type="1"
  8515. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8516. </productMenu>
  8517. <productMenu id="quickGuide"
  8518. type="1"
  8519. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8520. size="607KB" >
  8521. </productMenu>
  8522. <productMenu id="userGuide"
  8523. type="1"
  8524. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8525. size="1.91MB" >
  8526. </productMenu>
  8527. <productMenu id="volume"
  8528. type="4" >
  8529. </productMenu>
  8530. <productID id="5418"
  8531. />
  8532. <productGroupable type="0"
  8533. />
  8534. </product>
  8535. <product id="20S"
  8536. name="20S"
  8537. series="20"
  8538. latestVersion="2.2.3"
  8539. show = "1" >
  8540. <productMenu id="protocol"
  8541. type="0">
  8542. </productMenu>
  8543. <productMenu id="wa"
  8544. type="5" >
  8545. </productMenu>
  8546. <productMenu id="sip"
  8547. type="1" >
  8548. <productMenuType version="1.0"
  8549. type="0"
  8550. />
  8551. </productMenu>
  8552. <productMenu id="bluetoothIntercom"
  8553. type="1" >
  8554. <productMenuType version="1.0"
  8555. type="0"
  8556. />
  8557. </productMenu>
  8558. <productMenu id="intercomSetting"
  8559. type="1" >
  8560. </productMenu>
  8561. <productMenu id="phone"
  8562. type="2" >
  8563. </productMenu>
  8564. <productMenu id="fmradio"
  8565. type="3" >
  8566. </productMenu>
  8567. <productMenu id="deviceSetting"
  8568. type="1"
  8569. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8570. <productMenuURL version="2.0.2"
  8571. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8572. />
  8573. <productMenuURL version="1.5"
  8574. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8575. />
  8576. <productMenuURL version="1.4.1"
  8577. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8578. />
  8579. <productMenuURL version="1.1"
  8580. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8581. />
  8582. <productMenuURL version="1.0"
  8583. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8584. />
  8585. </productMenu>
  8586. <productMenu id="quickGuide"
  8587. type="0"
  8588. url=""
  8589. size="264KB" >
  8590. </productMenu>
  8591. <productMenu id="userGuide"
  8592. type="1"
  8593. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8594. size="3.09MB" >
  8595. </productMenu>
  8596. <productMenu id="connectGuide"
  8597. type="1"
  8598. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8599. size="1.12MB" >
  8600. </productMenu>
  8601. <productID id="4210"
  8602. />
  8603. <productGroupable type="1"
  8604. />
  8605. </product>
  8606. <product id="20S_EVO"
  8607. name="20S EVO"
  8608. series="20"
  8609. latestVersion="2.2.3"
  8610. show = "1" >
  8611. <productMenu id="protocol"
  8612. type="0">
  8613. </productMenu>
  8614. <productMenu id="wa"
  8615. type="5" >
  8616. </productMenu>
  8617. <productMenu id="sip"
  8618. type="1" >
  8619. <productMenuType version="1.0"
  8620. type="0"
  8621. />
  8622. </productMenu>
  8623. <productMenu id="bluetoothIntercom"
  8624. type="1" >
  8625. <productMenuType version="1.0"
  8626. type="0"
  8627. />
  8628. </productMenu>
  8629. <productMenu id="intercomSetting"
  8630. type="1" >
  8631. </productMenu>
  8632. <productMenu id="phone"
  8633. type="2" >
  8634. </productMenu>
  8635. <productMenu id="fmradio"
  8636. type="3" >
  8637. </productMenu>
  8638. <productMenu id="deviceSetting"
  8639. type="1"
  8640. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8641. <productMenuURL version="2.0.2"
  8642. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8643. />
  8644. <productMenuURL version="1.5"
  8645. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8646. />
  8647. <productMenuURL version="1.4.1"
  8648. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8649. />
  8650. <productMenuURL version="1.1"
  8651. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8652. />
  8653. <productMenuURL version="1.0"
  8654. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8655. />
  8656. </productMenu>
  8657. <productMenu id="quickGuide"
  8658. type="0"
  8659. url=""
  8660. size="264KB" >
  8661. </productMenu>
  8662. <productMenu id="userGuide"
  8663. type="1"
  8664. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8665. size="3.09MB" >
  8666. </productMenu>
  8667. <productMenu id="connectGuide"
  8668. type="1"
  8669. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8670. size="1.12MB" >
  8671. </productMenu>
  8672. <productID id="4210"
  8673. />
  8674. <productProductKey key="16"
  8675. />
  8676. <productGroupable type="1"
  8677. />
  8678. </product>
  8679. <product id="10S"
  8680. name="10S"
  8681. series="10"
  8682. latestVersion="3.0.2"
  8683. show = "1" >
  8684. <productMenu id="protocol"
  8685. type="3" >
  8686. </productMenu>
  8687. <productMenu id="sip"
  8688. type="1" >
  8689. </productMenu>
  8690. <productMenu id="bluetoothIntercom"
  8691. type="1" >
  8692. </productMenu>
  8693. <productMenu id="phone"
  8694. type="1" >
  8695. </productMenu>
  8696. <productMenu id="deviceSetting"
  8697. type="1"
  8698. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  8699. </productMenu>
  8700. <productMenu id="quickGuide"
  8701. type="1"
  8702. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  8703. size="934KB" >
  8704. </productMenu>
  8705. <productMenu id="userGuide"
  8706. type="1"
  8707. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  8708. size="1.14MB" >
  8709. </productMenu>
  8710. <productMenu id="connectGuide"
  8711. type="1"
  8712. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  8713. size="1.12MB" >
  8714. </productMenu>
  8715. <productID id="3380"
  8716. />
  8717. <productGroupable type="0"
  8718. />
  8719. </product>
  8720. <product id="10S"
  8721. name="10S"
  8722. series="10"
  8723. latestVersion="2.1.1"
  8724. show = "-1" >
  8725. <productMenu id="protocol"
  8726. type="0">
  8727. </productMenu>
  8728. <productMenu id="sip"
  8729. type="1" >
  8730. </productMenu>
  8731. <productMenu id="bluetoothIntercom"
  8732. type="1" >
  8733. </productMenu>
  8734. <productMenu id="phone"
  8735. type="2" >
  8736. </productMenu>
  8737. <productMenu id="fmradio"
  8738. type="3" >
  8739. </productMenu>
  8740. <productMenu id="deviceSetting"
  8741. type="1"
  8742. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  8743. <productMenuURL version="1.5"
  8744. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  8745. />
  8746. <productMenuURL version="1.3.1"
  8747. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  8748. />
  8749. </productMenu>
  8750. <productMenu id="quickGuide"
  8751. type="1"
  8752. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  8753. size="310KB" >
  8754. </productMenu>
  8755. <productMenu id="userGuide"
  8756. type="1"
  8757. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  8758. size="1.57MB" >
  8759. </productMenu>
  8760. <productID id="5530"
  8761. />
  8762. <productGroupable type="0"
  8763. />
  8764. </product>
  8765. <product id="Apex"
  8766. name="Apex"
  8767. series="Apex"
  8768. latestVersion="1.0"
  8769. latestVersionVoicePrompt="1.0"
  8770. show = "-1" >
  8771. <productMenu id="protocol"
  8772. type="2" >
  8773. </productMenu>
  8774. <productMenu id="serialNumber"
  8775. type="1" >
  8776. </productMenu>
  8777. <productMenu id="ota"
  8778. type="0" >
  8779. <otaLanguages>
  8780. <otaLanguage
  8781. id="0"
  8782. name="English"
  8783. package="0"
  8784. />
  8785. <otaLanguage
  8786. id="0"
  8787. name="French"
  8788. package="1"
  8789. />
  8790. <otaLanguage
  8791. id="0"
  8792. name="Spanish"
  8793. package="2"
  8794. />
  8795. <otaLanguage
  8796. id="0"
  8797. name="Italian"
  8798. package="3"
  8799. />
  8800. <otaLanguage
  8801. id="0"
  8802. name="German"
  8803. package="4"
  8804. />
  8805. <otaLanguage
  8806. id="0"
  8807. name="Dutch"
  8808. package="5"
  8809. />
  8810. <otaLanguage
  8811. id="0"
  8812. name="Russian"
  8813. package="6"
  8814. />
  8815. <otaLanguage
  8816. id="0"
  8817. name="Chinese"
  8818. package="7"
  8819. />
  8820. <otaLanguage
  8821. id="0"
  8822. name="Korean"
  8823. package="8"
  8824. />
  8825. <otaLanguage
  8826. id="0"
  8827. name="Japanese"
  8828. package="9"
  8829. />
  8830. <otaLanguage
  8831. id="0"
  8832. name="Finnish"
  8833. package="10"
  8834. />
  8835. <otaLanguage
  8836. id="0"
  8837. name="Polish"
  8838. package="11"
  8839. />
  8840. </otaLanguages>
  8841. <otaPackages>
  8842. <package
  8843. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0.img"
  8844. size="5183988"
  8845. />
  8846. <package
  8847. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fr-FR.img"
  8848. size="5183988"
  8849. />
  8850. <package
  8851. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-es-ES.img"
  8852. size="5183988"
  8853. />
  8854. <package
  8855. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-it-IT.img"
  8856. size="5183988"
  8857. />
  8858. <package
  8859. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-de-DE.img"
  8860. size="5183988"
  8861. />
  8862. <package
  8863. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-nl-NL.img"
  8864. size="5183988"
  8865. />
  8866. <package
  8867. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ru-RU.img"
  8868. size="5183988"
  8869. />
  8870. <package
  8871. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-cmn-CN.img"
  8872. size="5183988"
  8873. />
  8874. <package
  8875. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ko-KR.img"
  8876. size="5183988"
  8877. />
  8878. <package
  8879. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ja-JP.img"
  8880. size="5183988"
  8881. />
  8882. <package
  8883. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fi-FI.img"
  8884. size="5183988"
  8885. />
  8886. <package
  8887. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-pl-PL.img"
  8888. size="5183988"
  8889. />
  8890. </otaPackages>
  8891. </productMenu>
  8892. <productMenu id="sip"
  8893. type="1" >
  8894. </productMenu>
  8895. <productMenu id="bluetoothIntercom"
  8896. type="1" >
  8897. </productMenu>
  8898. <productMenu id="phone"
  8899. type="1" >
  8900. </productMenu>
  8901. <productMenu id="music"
  8902. type="1" >
  8903. </productMenu>
  8904. <productMenu id="fmradio"
  8905. type="1"
  8906. url="1" >
  8907. </productMenu>
  8908. <productMenu id="deviceSetting"
  8909. type="1"
  8910. url="https://api.sena.com/support/test/xml/NS_Apex_test_03.xml" >
  8911. </productMenu>
  8912. <productMenu id="quickGuide"
  8913. type="0"
  8914. url=""
  8915. size="934KB" >
  8916. </productMenu>
  8917. <productMenu id="userGuide"
  8918. type="1"
  8919. url=""
  8920. size="1.14MB" >
  8921. </productMenu>
  8922. <productMenu id="volume"
  8923. type="15" >
  8924. </productMenu>
  8925. <productID id="3452"
  8926. />
  8927. <productGroupable type="0"
  8928. />
  8929. </product>
  8930. <product id="ApexPlus"
  8931. name="Apex Plus"
  8932. series="Apex"
  8933. latestVersion="1.0"
  8934. latestVersionVoicePrompt="1.0"
  8935. show = "-1" >
  8936. <productMenu id="protocol"
  8937. type="2" >
  8938. </productMenu>
  8939. <productMenu id="serialNumber"
  8940. type="1" >
  8941. </productMenu>
  8942. <productMenu id="ota"
  8943. type="0" >
  8944. <otaLanguages>
  8945. <otaLanguage
  8946. id="0"
  8947. name="English"
  8948. package="0"
  8949. />
  8950. <otaLanguage
  8951. id="0"
  8952. name="French"
  8953. package="1"
  8954. />
  8955. <otaLanguage
  8956. id="0"
  8957. name="Spanish"
  8958. package="2"
  8959. />
  8960. <otaLanguage
  8961. id="0"
  8962. name="Italian"
  8963. package="3"
  8964. />
  8965. <otaLanguage
  8966. id="0"
  8967. name="German"
  8968. package="4"
  8969. />
  8970. <otaLanguage
  8971. id="0"
  8972. name="Dutch"
  8973. package="5"
  8974. />
  8975. <otaLanguage
  8976. id="0"
  8977. name="Russian"
  8978. package="6"
  8979. />
  8980. <otaLanguage
  8981. id="0"
  8982. name="Chinese"
  8983. package="7"
  8984. />
  8985. <otaLanguage
  8986. id="0"
  8987. name="Korean"
  8988. package="8"
  8989. />
  8990. <otaLanguage
  8991. id="0"
  8992. name="Japanese"
  8993. package="9"
  8994. />
  8995. <otaLanguage
  8996. id="0"
  8997. name="Finnish"
  8998. package="10"
  8999. />
  9000. <otaLanguage
  9001. id="0"
  9002. name="Polish"
  9003. package="11"
  9004. />
  9005. </otaLanguages>
  9006. <otaPackages>
  9007. <package
  9008. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0.img"
  9009. size="5183988"
  9010. />
  9011. <package
  9012. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fr-FR.img"
  9013. size="5183988"
  9014. />
  9015. <package
  9016. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-es-ES.img"
  9017. size="5183988"
  9018. />
  9019. <package
  9020. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-it-IT.img"
  9021. size="5183988"
  9022. />
  9023. <package
  9024. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-de-DE.img"
  9025. size="5183988"
  9026. />
  9027. <package
  9028. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-nl-NL.img"
  9029. size="5183988"
  9030. />
  9031. <package
  9032. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ru-RU.img"
  9033. size="5183988"
  9034. />
  9035. <package
  9036. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-cmn-CN.img"
  9037. size="5183988"
  9038. />
  9039. <package
  9040. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ko-KR.img"
  9041. size="5183988"
  9042. />
  9043. <package
  9044. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ja-JP.img"
  9045. size="5183988"
  9046. />
  9047. <package
  9048. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fi-FI.img"
  9049. size="5183988"
  9050. />
  9051. <package
  9052. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-pl-PL.img"
  9053. size="5183988"
  9054. />
  9055. </otaPackages>
  9056. </productMenu>
  9057. <productMenu id="sip"
  9058. type="1" >
  9059. </productMenu>
  9060. <productMenu id="bluetoothIntercom"
  9061. type="1" >
  9062. </productMenu>
  9063. <productMenu id="phone"
  9064. type="1" >
  9065. </productMenu>
  9066. <productMenu id="music"
  9067. type="1" >
  9068. </productMenu>
  9069. <productMenu id="fmradio"
  9070. type="1"
  9071. url="1" >
  9072. </productMenu>
  9073. <productMenu id="deviceSetting"
  9074. type="1"
  9075. url="https://api.sena.com/support/test/xml/NS_Apex_test_03.xml" >
  9076. </productMenu>
  9077. <productMenu id="quickGuide"
  9078. type="0"
  9079. url=""
  9080. size="934KB" >
  9081. </productMenu>
  9082. <productMenu id="userGuide"
  9083. type="1"
  9084. url=""
  9085. size="1.14MB" >
  9086. </productMenu>
  9087. <productMenu id="volume"
  9088. type="15" >
  9089. </productMenu>
  9090. <productID id="3453"
  9091. />
  9092. <productGroupable type="0"
  9093. />
  9094. </product>
  9095. <product id="10R2"
  9096. name="10R 2"
  9097. series="10"
  9098. latestVersion="0.9"
  9099. latestVersionVoicePrompt="1.1"
  9100. show = "-1" >
  9101. <productMenu id="protocol"
  9102. type="2" >
  9103. </productMenu>
  9104. <productMenu id="ota"
  9105. type="2" >
  9106. <otaPackages>
  9107. <package
  9108. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9109. size="2945812"
  9110. />
  9111. </otaPackages>
  9112. </productMenu>
  9113. <productMenu id="sip"
  9114. type="1" >
  9115. </productMenu>
  9116. <productMenu id="bluetoothIntercom"
  9117. type="1" >
  9118. </productMenu>
  9119. <productMenu id="phone"
  9120. type="1" >
  9121. </productMenu>
  9122. <productMenu id="music"
  9123. type="1" >
  9124. </productMenu>
  9125. <productMenu id="fmradio"
  9126. type="1"
  9127. url="1" >
  9128. </productMenu>
  9129. <productMenu id="deviceSetting"
  9130. type="1"
  9131. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9132. </productMenu>
  9133. <productMenu id="quickGuide"
  9134. type="1"
  9135. url=""
  9136. size="934KB" >
  9137. </productMenu>
  9138. <productMenu id="userGuide"
  9139. type="0"
  9140. url=""
  9141. size="1.14MB" >
  9142. </productMenu>
  9143. <productMenu id="volume"
  9144. type="15" >
  9145. </productMenu>
  9146. <productID id="4000"
  9147. />
  9148. <productGroupable type="0"
  9149. />
  9150. </product>
  9151. <product id="10R"
  9152. name="10R"
  9153. series="10"
  9154. latestVersion="2.1.1"
  9155. show = "1" >
  9156. <productMenu id="protocol"
  9157. type="0">
  9158. </productMenu>
  9159. <productMenu id="sip"
  9160. type="1" >
  9161. <productMenuType version="1.0.2"
  9162. type="0"
  9163. />
  9164. </productMenu>
  9165. <productMenu id="bluetoothIntercom"
  9166. type="1" >
  9167. <productMenuType version="1.0.2"
  9168. type="0"
  9169. />
  9170. </productMenu>
  9171. <productMenu id="phone"
  9172. type="2" >
  9173. </productMenu>
  9174. <productMenu id="fmradio"
  9175. type="3" >
  9176. </productMenu>
  9177. <productMenu id="deviceSetting"
  9178. type="1"
  9179. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9180. <productMenuURL version="1.4"
  9181. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9182. />
  9183. <productMenuURL version="1.2.1"
  9184. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9185. />
  9186. <productMenuURL version="1.0.2"
  9187. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9188. />
  9189. <productMenuURL version="1.0"
  9190. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9191. />
  9192. </productMenu>
  9193. <productMenu id="quickGuide"
  9194. type="1"
  9195. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9196. size="400KB" >
  9197. </productMenu>
  9198. <productMenu id="userGuide"
  9199. type="1"
  9200. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9201. size="2.75MB" >
  9202. </productMenu>
  9203. <productMenu id="connectGuide"
  9204. type="1"
  9205. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9206. size="1.12MB" >
  9207. </productMenu>
  9208. <productID id="5520"
  9209. />
  9210. <productGroupable type="0"
  9211. />
  9212. </product>
  9213. <product id="10C_EVO"
  9214. name="10C EVO"
  9215. series="10"
  9216. latestVersion="1.7"
  9217. show = "1" >
  9218. <productMenu id="protocol"
  9219. type="0">
  9220. </productMenu>
  9221. <productMenu id="sip"
  9222. type="1" >
  9223. </productMenu>
  9224. <productMenu id="bluetoothIntercom"
  9225. type="1" >
  9226. </productMenu>
  9227. <productMenu id="phone"
  9228. type="2" >
  9229. </productMenu>
  9230. <productMenu id="fmradio"
  9231. type="3" >
  9232. </productMenu>
  9233. <productMenu id="deviceSetting"
  9234. type="1"
  9235. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9236. <productMenuURL version="1.3.1"
  9237. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9238. />
  9239. </productMenu>
  9240. <productMenu id="quickGuide"
  9241. type="1"
  9242. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9243. size="1.32MB" >
  9244. </productMenu>
  9245. <productMenu id="userGuide"
  9246. type="1"
  9247. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9248. size="1.68MB" >
  9249. </productMenu>
  9250. <productMenu id="connectGuide"
  9251. type="1"
  9252. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9253. size="1.12MB" >
  9254. </productMenu>
  9255. <productID id="5570"
  9256. />
  9257. <productGroupable type="0"
  9258. />
  9259. </product>
  9260. <product id="10C_Pro"
  9261. name="10C Pro"
  9262. series="10"
  9263. latestVersion="2.7.1"
  9264. show = "1" >
  9265. <productMenu id="protocol"
  9266. type="0">
  9267. </productMenu>
  9268. <productMenu id="sip"
  9269. type="1" >
  9270. </productMenu>
  9271. <productMenu id="bluetoothIntercom"
  9272. type="1" >
  9273. </productMenu>
  9274. <productMenu id="phone"
  9275. type="2" >
  9276. </productMenu>
  9277. <productMenu id="fmradio"
  9278. type="3" >
  9279. </productMenu>
  9280. <productMenu id="deviceSetting"
  9281. type="1"
  9282. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9283. <productMenuURL version="2.5.1"
  9284. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9285. />
  9286. <productMenuURL version="1.0"
  9287. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9288. />
  9289. </productMenu>
  9290. <productMenu id="quickGuide"
  9291. type="1"
  9292. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9293. size="651KB" >
  9294. </productMenu>
  9295. <productMenu id="userGuide"
  9296. type="1"
  9297. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9298. size="2.34MB" >
  9299. </productMenu>
  9300. <productMenu id="connectGuide"
  9301. type="1"
  9302. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9303. size="1.12MB" >
  9304. </productMenu>
  9305. <productID id="5580"
  9306. />
  9307. <productGroupable type="0"
  9308. />
  9309. </product>
  9310. <product id="10C"
  9311. name="10C"
  9312. series="10"
  9313. latestVersion="3.0.4"
  9314. show = "1" >
  9315. <productMenu id="protocol"
  9316. type="0">
  9317. </productMenu>
  9318. <productMenu id="sip"
  9319. type="1" >
  9320. <productMenuType version="1.0.4"
  9321. type="0"
  9322. />
  9323. </productMenu>
  9324. <productMenu id="bluetoothIntercom"
  9325. type="1" >
  9326. <productMenuType version="1.0.4"
  9327. type="0"
  9328. />
  9329. </productMenu>
  9330. <productMenu id="phone"
  9331. type="2" >
  9332. </productMenu>
  9333. <productMenu id="fmradio"
  9334. type="3" >
  9335. </productMenu>
  9336. <productMenu id="deviceSetting"
  9337. type="1"
  9338. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9339. <productMenuURL version="2.3"
  9340. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9341. />
  9342. <productMenuURL version="2.1.1"
  9343. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9344. />
  9345. <productMenuURL version="1.0.4"
  9346. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9347. />
  9348. <productMenuURL version="1.0.2"
  9349. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9350. />
  9351. </productMenu>
  9352. <productMenu id="quickGuide"
  9353. type="1"
  9354. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9355. size="935KB" >
  9356. </productMenu>
  9357. <productMenu id="userGuide"
  9358. type="1"
  9359. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9360. size="2.82MB" >
  9361. </productMenu>
  9362. <productMenu id="connectGuide"
  9363. type="1"
  9364. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9365. size="1.12MB" >
  9366. </productMenu>
  9367. <productID id="5510"
  9368. />
  9369. <productGroupable type="0"
  9370. />
  9371. </product>
  9372. <product id="10U_GT_AIR"
  9373. name="10U GT-Air"
  9374. series="10"
  9375. latestVersion="2.0.4"
  9376. show = "1" >
  9377. <productMenu id="protocol"
  9378. type="0">
  9379. </productMenu>
  9380. <productMenu id="sip"
  9381. type="1" >
  9382. <productMenuType version="1.0.2"
  9383. type="0"
  9384. />
  9385. </productMenu>
  9386. <productMenu id="bluetoothIntercom"
  9387. type="1" >
  9388. <productMenuType version="1.0.2"
  9389. type="0"
  9390. />
  9391. </productMenu>
  9392. <productMenu id="phone"
  9393. type="2" >
  9394. </productMenu>
  9395. <productMenu id="fmradio"
  9396. type="3" >
  9397. </productMenu>
  9398. <productMenu id="deviceSetting"
  9399. type="1"
  9400. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9401. <productMenuURL version="1.3.2"
  9402. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9403. />
  9404. <productMenuURL version="1.0.2"
  9405. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9406. />
  9407. </productMenu>
  9408. <productMenu id="quickGuide"
  9409. type="1"
  9410. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9411. size="685KB" >
  9412. </productMenu>
  9413. <productMenu id="userGuide"
  9414. type="1"
  9415. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9416. size="684KB" >
  9417. </productMenu>
  9418. <productMenu id="connectGuide"
  9419. type="1"
  9420. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9421. size="1.12MB" >
  9422. </productMenu>
  9423. <productID id="5610"
  9424. />
  9425. <productGroupable type="0"
  9426. />
  9427. </product>
  9428. <product id="10U_NEOTEC"
  9429. name="10U Neotec"
  9430. series="10"
  9431. latestVersion="2.0.4"
  9432. show = "1" >
  9433. <productMenu id="protocol"
  9434. type="0">
  9435. </productMenu>
  9436. <productMenu id="sip"
  9437. type="1" >
  9438. <productMenuType version="1.0.2"
  9439. type="0"
  9440. />
  9441. </productMenu>
  9442. <productMenu id="bluetoothIntercom"
  9443. type="1" >
  9444. <productMenuType version="1.0.2"
  9445. type="0"
  9446. />
  9447. </productMenu>
  9448. <productMenu id="phone"
  9449. type="2" >
  9450. </productMenu>
  9451. <productMenu id="fmradio"
  9452. type="3" >
  9453. </productMenu>
  9454. <productMenu id="deviceSetting"
  9455. type="1"
  9456. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9457. <productMenuURL version="1.3.2"
  9458. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9459. />
  9460. <productMenuURL version="1.0.2"
  9461. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9462. />
  9463. </productMenu>
  9464. <productMenu id="quickGuide"
  9465. type="1"
  9466. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9467. size="689KB" >
  9468. </productMenu>
  9469. <productMenu id="userGuide"
  9470. type="1"
  9471. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9472. size="684KB" >
  9473. </productMenu>
  9474. <productMenu id="connectGuide"
  9475. type="1"
  9476. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9477. size="1.12MB" >
  9478. </productMenu>
  9479. <productID id="5611"
  9480. />
  9481. <productGroupable type="0"
  9482. />
  9483. </product>
  9484. <product id="10U_J_CRUISE"
  9485. name="10U J-Cruise"
  9486. series="10"
  9487. latestVersion="2.0.4"
  9488. show = "1" >
  9489. <productMenu id="protocol"
  9490. type="0">
  9491. </productMenu>
  9492. <productMenu id="sip"
  9493. type="1" >
  9494. <productMenuType version="1.0.2"
  9495. type="0"
  9496. />
  9497. </productMenu>
  9498. <productMenu id="bluetoothIntercom"
  9499. type="1" >
  9500. <productMenuType version="1.0.2"
  9501. type="0"
  9502. />
  9503. </productMenu>
  9504. <productMenu id="phone"
  9505. type="2" >
  9506. </productMenu>
  9507. <productMenu id="fmradio"
  9508. type="3" >
  9509. </productMenu>
  9510. <productMenu id="deviceSetting"
  9511. type="1"
  9512. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9513. <productMenuURL version="1.3.2"
  9514. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9515. />
  9516. <productMenuURL version="1.0.2"
  9517. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9518. />
  9519. </productMenu>
  9520. <productMenu id="quickGuide"
  9521. type="1"
  9522. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9523. size="686KB" >
  9524. </productMenu>
  9525. <productMenu id="userGuide"
  9526. type="1"
  9527. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9528. size="684KB" >
  9529. </productMenu>
  9530. <productMenu id="connectGuide"
  9531. type="1"
  9532. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9533. size="1.12MB" >
  9534. </productMenu>
  9535. <productID id="5612"
  9536. />
  9537. <productGroupable type="0"
  9538. />
  9539. </product>
  9540. <product id="10U_C3"
  9541. name="10U C3/C3Pro"
  9542. series="10"
  9543. latestVersion="2.0.4"
  9544. show = "1" >
  9545. <productMenu id="protocol"
  9546. type="0">
  9547. </productMenu>
  9548. <productMenu id="sip"
  9549. type="1" >
  9550. <productMenuType version="1.0.2"
  9551. type="0"
  9552. />
  9553. </productMenu>
  9554. <productMenu id="bluetoothIntercom"
  9555. type="1" >
  9556. <productMenuType version="1.0.2"
  9557. type="0"
  9558. />
  9559. </productMenu>
  9560. <productMenu id="phone"
  9561. type="2" >
  9562. </productMenu>
  9563. <productMenu id="fmradio"
  9564. type="3" >
  9565. </productMenu>
  9566. <productMenu id="deviceSetting"
  9567. type="1"
  9568. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9569. <productMenuURL version="1.3.2"
  9570. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9571. />
  9572. <productMenuURL version="1.0.2"
  9573. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9574. />
  9575. </productMenu>
  9576. <productMenu id="quickGuide"
  9577. type="1"
  9578. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9579. size="199KB" >
  9580. </productMenu>
  9581. <productMenu id="userGuide"
  9582. type="1"
  9583. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9584. size="684KB" >
  9585. </productMenu>
  9586. <productMenu id="connectGuide"
  9587. type="1"
  9588. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9589. size="1.12MB" >
  9590. </productMenu>
  9591. <productID id="5620"
  9592. />
  9593. <productGroupable type="0"
  9594. />
  9595. </product>
  9596. <product id="10U_ARAI"
  9597. name="10U Arai"
  9598. series="10"
  9599. latestVersion="2.0.4"
  9600. show = "1" >
  9601. <productMenu id="protocol"
  9602. type="0">
  9603. </productMenu>
  9604. <productMenu id="sip"
  9605. type="1" >
  9606. <productMenuType version="1.0.2"
  9607. type="0"
  9608. />
  9609. </productMenu>
  9610. <productMenu id="bluetoothIntercom"
  9611. type="1" >
  9612. <productMenuType version="1.0.2"
  9613. type="0"
  9614. />
  9615. </productMenu>
  9616. <productMenu id="phone"
  9617. type="2" >
  9618. </productMenu>
  9619. <productMenu id="fmradio"
  9620. type="3" >
  9621. </productMenu>
  9622. <productMenu id="deviceSetting"
  9623. type="1"
  9624. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9625. <productMenuURL version="1.3.2"
  9626. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9627. />
  9628. <productMenuURL version="1.0.2"
  9629. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9630. />
  9631. </productMenu>
  9632. <productMenu id="quickGuide"
  9633. type="1"
  9634. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  9635. size="689KB" >
  9636. </productMenu>
  9637. <productMenu id="userGuide"
  9638. type="1"
  9639. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9640. size="684KB" >
  9641. </productMenu>
  9642. <productMenu id="connectGuide"
  9643. type="1"
  9644. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9645. size="1.12MB" >
  9646. </productMenu>
  9647. <productID id="5621"
  9648. />
  9649. <productGroupable type="0"
  9650. />
  9651. </product>
  9652. <product id="10Upad"
  9653. name="10Upad"
  9654. series="10"
  9655. latestVersion="2.0.3"
  9656. show = "1" >
  9657. <productMenu id="protocol"
  9658. type="0">
  9659. </productMenu>
  9660. <productMenu id="sip"
  9661. type="1" >
  9662. </productMenu>
  9663. <productMenu id="bluetoothIntercom"
  9664. type="1" >
  9665. </productMenu>
  9666. <productMenu id="phone"
  9667. type="2" >
  9668. </productMenu>
  9669. <productMenu id="fmradio"
  9670. type="3" >
  9671. </productMenu>
  9672. <productMenu id="deviceSetting"
  9673. type="1"
  9674. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  9675. <productMenuURL version="1.0.3"
  9676. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  9677. />
  9678. </productMenu>
  9679. <productMenu id="quickGuide"
  9680. type="1"
  9681. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  9682. size="615KB" >
  9683. </productMenu>
  9684. <productMenu id="userGuide"
  9685. type="1"
  9686. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  9687. size="0.99MB" >
  9688. </productMenu>
  9689. <productMenu id="connectGuide"
  9690. type="1"
  9691. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9692. size="1.12MB" >
  9693. </productMenu>
  9694. <productID id="6210"
  9695. />
  9696. <productGroupable type="0"
  9697. />
  9698. </product>
  9699. <product id="5S"
  9700. name="5S"
  9701. series="5"
  9702. latestVersion="2.3.1"
  9703. show = "1" >
  9704. <productMenu id="protocol"
  9705. type="3" >
  9706. </productMenu>
  9707. <productMenu id="sip"
  9708. type="1" >
  9709. </productMenu>
  9710. <productMenu id="bluetoothIntercom"
  9711. type="1" >
  9712. </productMenu>
  9713. <productMenu id="phone"
  9714. type="1" >
  9715. </productMenu>
  9716. <productMenu id="fmradio"
  9717. type="0" >
  9718. </productMenu>
  9719. <productMenu id="deviceSetting"
  9720. type="1"
  9721. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9722. </productMenu>
  9723. <productMenu id="quickGuide"
  9724. type="0"
  9725. url=""
  9726. size="934KB" >
  9727. </productMenu>
  9728. <productMenu id="userGuide"
  9729. type="1"
  9730. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  9731. size="1.14MB" >
  9732. </productMenu>
  9733. <productMenu id="connectGuide"
  9734. type="1"
  9735. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  9736. size="1.12MB" >
  9737. </productMenu>
  9738. <productID id="5590"
  9739. />
  9740. <productGroupable type="0"
  9741. />
  9742. </product>
  9743. <product id="5S"
  9744. name="5S"
  9745. series="5"
  9746. latestVersion="1.2"
  9747. show = "-1" >
  9748. <productMenu id="protocol"
  9749. type="0">
  9750. </productMenu>
  9751. <productMenu id="sip"
  9752. type="1" >
  9753. </productMenu>
  9754. <productMenu id="bluetoothIntercom"
  9755. type="1" >
  9756. </productMenu>
  9757. <productMenu id="phone"
  9758. type="2" >
  9759. </productMenu>
  9760. <productMenu id="fmradio"
  9761. type="3" >
  9762. </productMenu>
  9763. <productMenu id="deviceSetting"
  9764. type="1"
  9765. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  9766. </productMenu>
  9767. <productMenu id="quickGuide"
  9768. type="0"
  9769. url=""
  9770. size="970KB" >
  9771. </productMenu>
  9772. <productMenu id="userGuide"
  9773. type="1"
  9774. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  9775. size="1.26MB" >
  9776. </productMenu>
  9777. <productID id="5534"
  9778. />
  9779. <productGroupable type="0"
  9780. />
  9781. </product>
  9782. <product id="5S"
  9783. name="5S"
  9784. series="5"
  9785. latestVersion="3.0.1"
  9786. show = "-1" >
  9787. <productMenu id="protocol"
  9788. type="0">
  9789. </productMenu>
  9790. <productMenu id="sip"
  9791. type="1" >
  9792. </productMenu>
  9793. <productMenu id="bluetoothIntercom"
  9794. type="1" >
  9795. </productMenu>
  9796. <productMenu id="phone"
  9797. type="2" >
  9798. </productMenu>
  9799. <productMenu id="fmradio"
  9800. type="0" >
  9801. </productMenu>
  9802. <productMenu id="deviceSetting"
  9803. type="1"
  9804. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  9805. </productMenu>
  9806. <productMenu id="quickGuide"
  9807. type="0"
  9808. url=""
  9809. size="970KB" >
  9810. </productMenu>
  9811. <productMenu id="userGuide"
  9812. type="1"
  9813. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  9814. size="1.26MB" >
  9815. </productMenu>
  9816. <productID id="5538"
  9817. />
  9818. <productGroupable type="0"
  9819. />
  9820. </product>
  9821. <product id="3SPLUS"
  9822. name="3S PLUS"
  9823. series="3"
  9824. latestVersion="2.2"
  9825. show = "1" >
  9826. <productMenu id="protocol"
  9827. type="3" >
  9828. </productMenu>
  9829. <productMenu id="sip"
  9830. type="1" >
  9831. </productMenu>
  9832. <productMenu id="bluetoothIntercom"
  9833. type="1" >
  9834. </productMenu>
  9835. <productMenu id="deviceSetting"
  9836. type="1"
  9837. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  9838. <productMenuURL version="2.2.1"
  9839. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  9840. />
  9841. </productMenu>
  9842. <productMenu id="quickGuide"
  9843. type="1"
  9844. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9845. size="344KB" >
  9846. </productMenu>
  9847. <productMenu id="userGuide"
  9848. type="1"
  9849. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  9850. size="1.14MB" >
  9851. </productMenu>
  9852. <productMenu id="connectGuide"
  9853. type="1"
  9854. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  9855. size="1.12MB" >
  9856. </productMenu>
  9857. <productID id="4023"
  9858. />
  9859. <productGroupable type="0"
  9860. />
  9861. </product>
  9862. <product id="3SPLUS"
  9863. name="3S PLUS"
  9864. series="3"
  9865. latestVersion="1.1"
  9866. show = "-1" >
  9867. <productMenu id="protocol"
  9868. type="0">
  9869. </productMenu>
  9870. <productMenu id="sip"
  9871. type="1" >
  9872. </productMenu>
  9873. <productMenu id="bluetoothIntercom"
  9874. type="1" >
  9875. </productMenu>
  9876. <productMenu id="deviceSetting"
  9877. type="1"
  9878. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  9879. </productMenu>
  9880. <productMenu id="quickGuide"
  9881. type="1"
  9882. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9883. size="842KB" >
  9884. </productMenu>
  9885. <productMenu id="userGuide"
  9886. type="1"
  9887. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  9888. size="1.02MB" >
  9889. </productMenu>
  9890. <productID id="6320"
  9891. />
  9892. <productGroupable type="0"
  9893. />
  9894. </product>
  9895. <product id="AConnect"
  9896. name="Alpinestars A-Connect"
  9897. series="60"
  9898. latestVersion="1.0.2"
  9899. latestVersionMesh="0.19"
  9900. latestVersionVoicePrompt="1.6"
  9901. show = "-1" >
  9902. <productMenu id="protocol"
  9903. type="2" >
  9904. </productMenu>
  9905. <productMenu id="ota"
  9906. type="2" >
  9907. <otaLanguages>
  9908. <otaLanguage
  9909. id="0"
  9910. name="English"
  9911. package="0"
  9912. />
  9913. <otaLanguage
  9914. id="0"
  9915. name="French"
  9916. package="1"
  9917. />
  9918. <otaLanguage
  9919. id="0"
  9920. name="Spanish"
  9921. package="2"
  9922. />
  9923. <otaLanguage
  9924. id="0"
  9925. name="Italian"
  9926. package="3"
  9927. />
  9928. <otaLanguage
  9929. id="0"
  9930. name="German"
  9931. package="4"
  9932. />
  9933. <otaLanguage
  9934. id="0"
  9935. name="Dutch"
  9936. package="5"
  9937. />
  9938. <otaLanguage
  9939. id="0"
  9940. name="Russian"
  9941. package="6"
  9942. />
  9943. <otaLanguage
  9944. id="0"
  9945. name="Chinese"
  9946. package="7"
  9947. />
  9948. <otaLanguage
  9949. id="0"
  9950. name="Korean"
  9951. package="8"
  9952. />
  9953. <otaLanguage
  9954. id="0"
  9955. name="Japanese"
  9956. package="9"
  9957. />
  9958. <otaLanguage
  9959. id="0"
  9960. name="Finnish"
  9961. package="10"
  9962. />
  9963. <otaLanguage
  9964. id="0"
  9965. name="Polish"
  9966. package="11"
  9967. />
  9968. </otaLanguages>
  9969. <otaPackages>
  9970. <package
  9971. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  9972. size="5183988"
  9973. />
  9974. <package
  9975. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  9976. size="5183988"
  9977. />
  9978. <package
  9979. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  9980. size="5183988"
  9981. />
  9982. <package
  9983. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  9984. size="5183988"
  9985. />
  9986. <package
  9987. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  9988. size="5183988"
  9989. />
  9990. <package
  9991. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  9992. size="5183988"
  9993. />
  9994. <package
  9995. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  9996. size="5183988"
  9997. />
  9998. <package
  9999. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  10000. size="5183988"
  10001. />
  10002. <package
  10003. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  10004. size="5183988"
  10005. />
  10006. <package
  10007. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10008. size="5183988"
  10009. />
  10010. <package
  10011. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10012. size="5183988"
  10013. />
  10014. <package
  10015. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10016. size="5183988"
  10017. />
  10018. </otaPackages>
  10019. </productMenu>
  10020. <productMenu id="sip"
  10021. type="1" >
  10022. </productMenu>
  10023. <productMenu id="illusion"
  10024. type="0" >
  10025. </productMenu>
  10026. <productMenu id="meshIntercom+"
  10027. type="3"
  10028. url="2" >
  10029. </productMenu>
  10030. <productMenu id="waveIntercom"
  10031. type="1" >
  10032. </productMenu>
  10033. <productMenu id="bluetoothIntercom"
  10034. type="1"
  10035. url="2" >
  10036. </productMenu>
  10037. <productMenu id="bluetoothIntercomGrouping"
  10038. type="0" >
  10039. </productMenu>
  10040. <productMenu id="fmradio"
  10041. type="1"
  10042. url="1" >
  10043. </productMenu>
  10044. <productMenu id="phone"
  10045. type="1" >
  10046. </productMenu>
  10047. <productMenu id="music"
  10048. type="1" >
  10049. </productMenu>
  10050. <productMenu id="musicSharing"
  10051. type="0" >
  10052. </productMenu>
  10053. <productMenu id="deviceSetting"
  10054. type="1"
  10055. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  10056. </productMenu>
  10057. <productMenu id="quickGuide"
  10058. type="0"
  10059. url=""
  10060. size="1.12MB" >
  10061. </productMenu>
  10062. <productMenu id="userGuide"
  10063. type="1"
  10064. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  10065. size="2.0MB" >
  10066. </productMenu>
  10067. <productMenu id="videoGuide"
  10068. type="0"
  10069. url=""
  10070. size="3.41MB" >
  10071. </productMenu>
  10072. <productMenu id="volume"
  10073. type="16" >
  10074. </productMenu>
  10075. <productMenu id="volume+"
  10076. type="2"
  10077. url="0x6004" >
  10078. </productMenu>
  10079. <productMenu id="soundMode"
  10080. type="0" >
  10081. </productMenu>
  10082. <productMenu id="battery"
  10083. type="1" >
  10084. </productMenu>
  10085. <productID id="6A82"
  10086. />
  10087. <productGroupable type="0"
  10088. />
  10089. </product>
  10090. <product id="iCon"
  10091. name="iCon"
  10092. series="50"
  10093. latestVersion="1.2"
  10094. show = "0" >
  10095. <productMenu id="protocol"
  10096. type="2" >
  10097. </productMenu>
  10098. <productMenu id="alexa"
  10099. type="0" >
  10100. </productMenu>
  10101. <productMenu id="wa"
  10102. type="0" >
  10103. </productMenu>
  10104. <productMenu id="sip"
  10105. type="1" >
  10106. </productMenu>
  10107. <productMenu id="led"
  10108. type="3" >
  10109. </productMenu>
  10110. <productMenu id="meshIntercom"
  10111. type="20" >
  10112. </productMenu>
  10113. <productMenu id="meshIntercom+"
  10114. type="3"
  10115. url="0" >
  10116. <productMenuType version="1.0.9"
  10117. type="2"
  10118. />
  10119. </productMenu>
  10120. <productMenu id="bluetoothIntercom"
  10121. type="1" >
  10122. </productMenu>
  10123. <productMenu id="phone"
  10124. type="1" >
  10125. </productMenu>
  10126. <productMenu id="music"
  10127. type="1" >
  10128. </productMenu>
  10129. <productMenu id="fmradio"
  10130. type="1" >
  10131. </productMenu>
  10132. <productMenu id="deviceSetting"
  10133. type="1"
  10134. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10135. <productMenuURL version="1.0.9"
  10136. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10137. />
  10138. </productMenu>
  10139. <productMenu id="quickGuide"
  10140. type="1"
  10141. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10142. size="344KB" >
  10143. </productMenu>
  10144. <productMenu id="userGuide"
  10145. type="1"
  10146. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10147. size="3.41MB" >
  10148. </productMenu>
  10149. <productMenu id="volume"
  10150. type="11" >
  10151. </productMenu>
  10152. <productMenu id="battery"
  10153. type="1" >
  10154. </productMenu>
  10155. <productID id="3900"
  10156. />
  10157. <productGroupable type="0"
  10158. />
  10159. </product>
  10160. <product id="ICONHelmLinkSL"
  10161. name="ICON HelmLink SL"
  10162. series="50"
  10163. latestVersion="1.0"
  10164. latestVersionVoicePrompt="1.6"
  10165. show = "-1" >
  10166. <productMenu id="protocol"
  10167. type="2" >
  10168. </productMenu>
  10169. <productMenu id="alexa"
  10170. type="0" >
  10171. </productMenu>
  10172. <productMenu id="ota"
  10173. type="0" >
  10174. <otaPackages>
  10175. <package
  10176. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/ICON_HELMLINK_SL-v0.9-build0.img"
  10177. size="2945812"
  10178. />
  10179. </otaPackages>
  10180. </productMenu>
  10181. <productMenu id="wa"
  10182. type="0" >
  10183. </productMenu>
  10184. <productMenu id="meshIntercom"
  10185. type="30" >
  10186. </productMenu>
  10187. <productMenu id="meshIntercom+"
  10188. type="3"
  10189. url="2" >
  10190. </productMenu>
  10191. <productMenu id="waveIntercom"
  10192. type="1" >
  10193. </productMenu>
  10194. <productMenu id="phone"
  10195. type="1" >
  10196. </productMenu>
  10197. <productMenu id="music"
  10198. type="1" >
  10199. </productMenu>
  10200. <productMenu id="musicSharing"
  10201. type="0" >
  10202. </productMenu>
  10203. <productMenu id="deviceSetting"
  10204. type="1"
  10205. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10206. </productMenu>
  10207. <productMenu id="quickGuide"
  10208. type="0"
  10209. url=""
  10210. size="1.12MB" >
  10211. </productMenu>
  10212. <productMenu id="userGuide"
  10213. type="1"
  10214. url=""
  10215. size="2.0MB" >
  10216. </productMenu>
  10217. <productMenu id="volume"
  10218. type="12" >
  10219. </productMenu>
  10220. <productMenu id="battery"
  10221. type="1" >
  10222. </productMenu>
  10223. <productID id="6842"
  10224. />
  10225. <productGroupable type="0"
  10226. />
  10227. </product>
  10228. <product id="HD50S"
  10229. name="H-D Audio 50S"
  10230. series="50"
  10231. latestVersion="1.0.1"
  10232. show = "-1" >
  10233. <productMenu id="protocol"
  10234. type="2" >
  10235. </productMenu>
  10236. <productMenu id="alexa"
  10237. type="0" >
  10238. </productMenu>
  10239. <productMenu id="ota"
  10240. type="0"
  10241. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10242. size="1150234" >
  10243. </productMenu>
  10244. <productMenu id="wa"
  10245. type="1" >
  10246. </productMenu>
  10247. <productMenu id="sip"
  10248. type="1" >
  10249. </productMenu>
  10250. <productMenu id="meshIntercom"
  10251. type="20" >
  10252. </productMenu>
  10253. <productMenu id="meshIntercom+"
  10254. type="3"
  10255. url="0" >
  10256. <productMenuType version="1.0.9"
  10257. type="2"
  10258. />
  10259. </productMenu>
  10260. <productMenu id="bluetoothIntercom"
  10261. type="1" >
  10262. </productMenu>
  10263. <productMenu id="phone"
  10264. type="1" >
  10265. </productMenu>
  10266. <productMenu id="music"
  10267. type="1" >
  10268. </productMenu>
  10269. <productMenu id="fmradio"
  10270. type="1" >
  10271. </productMenu>
  10272. <productMenu id="deviceSetting"
  10273. type="1"
  10274. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10275. <productMenuURL version="1.0.9"
  10276. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10277. />
  10278. </productMenu>
  10279. <productMenu id="quickGuide"
  10280. type="1"
  10281. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10282. size="934KB" >
  10283. </productMenu>
  10284. <productMenu id="userGuide"
  10285. type="1"
  10286. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10287. size="1.14MB" >
  10288. </productMenu>
  10289. <productMenu id="volume"
  10290. type="11" >
  10291. </productMenu>
  10292. <productMenu id="battery"
  10293. type="1" >
  10294. </productMenu>
  10295. <productID id="3156"
  10296. />
  10297. <productGroupable type="0"
  10298. />
  10299. </product>
  10300. <product id="HD50S"
  10301. name="H-D Audio 50S"
  10302. series="50"
  10303. latestVersion="2.0.2"
  10304. show = "0" >
  10305. <productMenu id="protocol"
  10306. type="2" >
  10307. </productMenu>
  10308. <productMenu id="alexa"
  10309. type="0" >
  10310. </productMenu>
  10311. <productMenu id="ota"
  10312. type="0"
  10313. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10314. size="1150234" >
  10315. </productMenu>
  10316. <productMenu id="wa"
  10317. type="1" >
  10318. </productMenu>
  10319. <productMenu id="sip"
  10320. type="1" >
  10321. </productMenu>
  10322. <productMenu id="meshIntercom"
  10323. type="20" >
  10324. </productMenu>
  10325. <productMenu id="meshIntercom+"
  10326. type="3"
  10327. url="0" >
  10328. <productMenuType version="2.0.9"
  10329. type="2"
  10330. />
  10331. </productMenu>
  10332. <productMenu id="bluetoothIntercom"
  10333. type="1" >
  10334. </productMenu>
  10335. <productMenu id="phone"
  10336. type="1" >
  10337. </productMenu>
  10338. <productMenu id="music"
  10339. type="1" >
  10340. </productMenu>
  10341. <productMenu id="fmradio"
  10342. type="1" >
  10343. </productMenu>
  10344. <productMenu id="deviceSetting"
  10345. type="1"
  10346. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10347. <productMenuURL version="2.0.9"
  10348. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10349. />
  10350. </productMenu>
  10351. <productMenu id="quickGuide"
  10352. type="1"
  10353. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10354. size="934KB" >
  10355. </productMenu>
  10356. <productMenu id="userGuide"
  10357. type="1"
  10358. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10359. size="1.14MB" >
  10360. </productMenu>
  10361. <productMenu id="volume"
  10362. type="11" >
  10363. </productMenu>
  10364. <productMenu id="battery"
  10365. type="1" >
  10366. </productMenu>
  10367. <productID id="3213"
  10368. />
  10369. <productGroupable type="0"
  10370. />
  10371. </product>
  10372. <product id="HD50C"
  10373. name="H-D Audio 50C"
  10374. series="50"
  10375. latestVersion="1.0.1"
  10376. show = "0" >
  10377. <productMenu id="protocol"
  10378. type="2" >
  10379. </productMenu>
  10380. <productMenu id="ota"
  10381. type="0" >
  10382. </productMenu>
  10383. <productMenu id="wa"
  10384. type="1" >
  10385. </productMenu>
  10386. <productMenu id="sip"
  10387. type="1" >
  10388. </productMenu>
  10389. <productMenu id="meshIntercom"
  10390. type="20" >
  10391. </productMenu>
  10392. <productMenu id="meshIntercom+"
  10393. type="3"
  10394. url="0" >
  10395. <productMenuType version="1.0.9"
  10396. type="2"
  10397. />
  10398. </productMenu>
  10399. <productMenu id="bluetoothIntercom"
  10400. type="1" >
  10401. </productMenu>
  10402. <productMenu id="phone"
  10403. type="1" >
  10404. </productMenu>
  10405. <productMenu id="music"
  10406. type="1" >
  10407. </productMenu>
  10408. <productMenu id="fmradio"
  10409. type="1" >
  10410. </productMenu>
  10411. <productMenu id="deviceSetting"
  10412. type="1"
  10413. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10414. <productMenuURL version="1.0.9"
  10415. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10416. />
  10417. </productMenu>
  10418. <productMenu id="quickGuide"
  10419. type="1"
  10420. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10421. size="344KB" >
  10422. </productMenu>
  10423. <productMenu id="userGuide"
  10424. type="1"
  10425. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10426. size="3.41MB" >
  10427. </productMenu>
  10428. <productMenu id="volume"
  10429. type="11" >
  10430. </productMenu>
  10431. <productMenu id="battery"
  10432. type="1" >
  10433. </productMenu>
  10434. <productID id="3240"
  10435. />
  10436. <productGroupable type="0"
  10437. />
  10438. </product>
  10439. <product id="HD50S"
  10440. name="FURY N04"
  10441. series="Helmet"
  10442. latestVersion="1.0"
  10443. show = "0" >
  10444. <productMenu id="protocol"
  10445. type="2" >
  10446. </productMenu>
  10447. <productMenu id="alexa"
  10448. type="0" >
  10449. </productMenu>
  10450. <productMenu id="ota"
  10451. type="0" >
  10452. </productMenu>
  10453. <productMenu id="wa"
  10454. type="0" >
  10455. </productMenu>
  10456. <productMenu id="meshIntercom"
  10457. type="20" >
  10458. </productMenu>
  10459. <productMenu id="meshIntercom+"
  10460. type="3"
  10461. url="0" >
  10462. <productMenuType version="1.0.9"
  10463. type="2"
  10464. />
  10465. </productMenu>
  10466. <productMenu id="phone"
  10467. type="1" >
  10468. </productMenu>
  10469. <productMenu id="music"
  10470. type="1" >
  10471. </productMenu>
  10472. <productMenu id="fmradio"
  10473. type="1" >
  10474. </productMenu>
  10475. <productMenu id="deviceSetting"
  10476. type="1"
  10477. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10478. <productMenuURL version="1.0.9"
  10479. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10480. />
  10481. </productMenu>
  10482. <productMenu id="quickGuide"
  10483. type="1"
  10484. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10485. size="1.12MB" >
  10486. </productMenu>
  10487. <productMenu id="userGuide"
  10488. type="1"
  10489. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10490. size="2.0MB" >
  10491. </productMenu>
  10492. <productMenu id="volume"
  10493. type="13" >
  10494. </productMenu>
  10495. <productMenu id="battery"
  10496. type="1" >
  10497. </productMenu>
  10498. <productID id="5553"
  10499. />
  10500. <productGroupable type="0"
  10501. />
  10502. </product>
  10503. <product id="XCOM3Pro"
  10504. name="X-COM3 Pro"
  10505. series="50"
  10506. latestVersion="1.1"
  10507. show = "0" >
  10508. <productMenu id="protocol"
  10509. type="2" >
  10510. </productMenu>
  10511. <productMenu id="alexa"
  10512. type="0" >
  10513. </productMenu>
  10514. <productMenu id="ota"
  10515. type="0" >
  10516. </productMenu>
  10517. <productMenu id="wa"
  10518. type="0" >
  10519. </productMenu>
  10520. <productMenu id="sip"
  10521. type="1" >
  10522. </productMenu>
  10523. <productMenu id="meshIntercom"
  10524. type="30" >
  10525. </productMenu>
  10526. <productMenu id="meshIntercom+"
  10527. type="3"
  10528. url="2" >
  10529. <productMenuType version="1.1"
  10530. type="2"
  10531. />
  10532. </productMenu>
  10533. <productMenu id="waveIntercom"
  10534. type="1" >
  10535. <productMenuType version="1.1"
  10536. type="0"
  10537. />
  10538. </productMenu>
  10539. <productMenu id="bluetoothIntercom"
  10540. type="1" >
  10541. </productMenu>
  10542. <productMenu id="phone"
  10543. type="1" >
  10544. </productMenu>
  10545. <productMenu id="music"
  10546. type="1" >
  10547. </productMenu>
  10548. <productMenu id="fmradio"
  10549. type="1" >
  10550. </productMenu>
  10551. <productMenu id="deviceSetting"
  10552. type="1"
  10553. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10554. <productMenuURL version="1.1"
  10555. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10556. />
  10557. </productMenu>
  10558. <productMenu id="quickGuide"
  10559. type="0"
  10560. url=""
  10561. size="344KB" >
  10562. </productMenu>
  10563. <productMenu id="userGuide"
  10564. type="1"
  10565. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10566. size="3.41MB" >
  10567. </productMenu>
  10568. <productMenu id="volume"
  10569. type="11" >
  10570. </productMenu>
  10571. <productMenu id="battery"
  10572. type="1" >
  10573. </productMenu>
  10574. <productID id="321A"
  10575. />
  10576. <productGroupable type="0"
  10577. />
  10578. </product>
  10579. <product id="XCOM3"
  10580. name="X-COM3"
  10581. series="20"
  10582. latestVersion="1.0"
  10583. show = "0" >
  10584. <productMenu id="protocol"
  10585. type="2" >
  10586. </productMenu>
  10587. <productMenu id="sip"
  10588. type="1" >
  10589. </productMenu>
  10590. <productMenu id="bluetoothIntercom"
  10591. type="1" >
  10592. </productMenu>
  10593. <productMenu id="phone"
  10594. type="1" >
  10595. </productMenu>
  10596. <productMenu id="music"
  10597. type="1" >
  10598. </productMenu>
  10599. <productMenu id="fmradio"
  10600. type="1" >
  10601. </productMenu>
  10602. <productMenu id="deviceSetting"
  10603. type="1"
  10604. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10605. </productMenu>
  10606. <productMenu id="quickGuide"
  10607. type="0"
  10608. url=""
  10609. size="934KB" >
  10610. </productMenu>
  10611. <productMenu id="userGuide"
  10612. type="1"
  10613. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  10614. size="1.14MB" >
  10615. </productMenu>
  10616. <productMenu id="volume"
  10617. type="15" >
  10618. </productMenu>
  10619. <productID id="3410"
  10620. />
  10621. <productGroupable type="0"
  10622. />
  10623. </product>
  10624. <product id="X-COM2"
  10625. name="X-COM2"
  10626. series="20"
  10627. latestVersion="1.0.5"
  10628. show = "0" >
  10629. <productMenu id="protocol"
  10630. type="0">
  10631. </productMenu>
  10632. <productMenu id="sip"
  10633. type="1" >
  10634. </productMenu>
  10635. <productMenu id="bluetoothIntercom"
  10636. type="1" >
  10637. </productMenu>
  10638. <productMenu id="intercomSetting"
  10639. type="1" >
  10640. </productMenu>
  10641. <productMenu id="phone"
  10642. type="2" >
  10643. </productMenu>
  10644. <productMenu id="fmradio"
  10645. type="3" >
  10646. </productMenu>
  10647. <productMenu id="deviceSetting"
  10648. type="1"
  10649. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  10650. </productMenu>
  10651. <productMenu id="quickGuide"
  10652. type="1"
  10653. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  10654. size="796KB" >
  10655. </productMenu>
  10656. <productMenu id="userGuide"
  10657. type="1"
  10658. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  10659. size="1.90MB" >
  10660. </productMenu>
  10661. <productID id="2030"
  10662. />
  10663. <productGroupable type="1"
  10664. />
  10665. </product>
  10666. <product id="AVAABC"
  10667. name="AVA ABC"
  10668. series="SPIDER"
  10669. latestVersion="1.1"
  10670. show = "0" >
  10671. <productMenu id="protocol"
  10672. type="2" >
  10673. </productMenu>
  10674. <productMenu id="alexa"
  10675. type="0" >
  10676. </productMenu>
  10677. <productMenu id="ota"
  10678. type="0" >
  10679. <productMenuType version="1.0"
  10680. type="0"
  10681. />
  10682. <otaPackages>
  10683. <package
  10684. url="https://api.sena.com/support/OTA/"
  10685. size="2945812"
  10686. />
  10687. </otaPackages>
  10688. </productMenu>
  10689. <productMenu id="wa"
  10690. type="0" >
  10691. </productMenu>
  10692. <productMenu id="meshIntercom"
  10693. type="30" >
  10694. <productMenuType version="1.0"
  10695. type="20"
  10696. />
  10697. </productMenu>
  10698. <productMenu id="meshIntercom+"
  10699. type="3"
  10700. url="2" >
  10701. <productMenuType version="1.0"
  10702. type="2"
  10703. />
  10704. <productMenuURL version="1.0"
  10705. url="0"
  10706. />
  10707. </productMenu>
  10708. <productMenu id="waveIntercom"
  10709. type="1" >
  10710. <productMenuType version="1.0"
  10711. type="0"
  10712. />
  10713. </productMenu>
  10714. <productMenu id="phone"
  10715. type="1" >
  10716. </productMenu>
  10717. <productMenu id="music"
  10718. type="1" >
  10719. </productMenu>
  10720. <productMenu id="musicSharing"
  10721. type="0" >
  10722. </productMenu>
  10723. <productMenu id="deviceSetting"
  10724. type="1"
  10725. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  10726. <productMenuURL version="1.0"
  10727. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  10728. />
  10729. </productMenu>
  10730. <productMenu id="quickGuide"
  10731. type="1"
  10732. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  10733. size="1.12MB" >
  10734. </productMenu>
  10735. <productMenu id="userGuide"
  10736. type="1"
  10737. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  10738. size="2.0MB" >
  10739. </productMenu>
  10740. <productMenu id="volume"
  10741. type="12" >
  10742. </productMenu>
  10743. <productMenu id="battery"
  10744. type="1" >
  10745. </productMenu>
  10746. <productID id="6808"
  10747. />
  10748. <productGroupable type="0"
  10749. />
  10750. </product>
  10751. <product id="ADVANCEProCOM2"
  10752. name="ADVANCE ProCOM 2"
  10753. series="Helmet"
  10754. latestVersion="0.5"
  10755. latestVersionVoicePrompt="0.3"
  10756. show = "-1" >
  10757. <productMenu id="protocol"
  10758. type="2" >
  10759. </productMenu>
  10760. <productMenu id="ota"
  10761. type="2" >
  10762. <otaLanguages>
  10763. <otaLanguage
  10764. id="0"
  10765. name="English"
  10766. package="0"
  10767. />
  10768. <otaLanguage
  10769. id="0"
  10770. name="French"
  10771. package="1"
  10772. />
  10773. <otaLanguage
  10774. id="0"
  10775. name="Spanish"
  10776. package="2"
  10777. />
  10778. <otaLanguage
  10779. id="0"
  10780. name="Italian"
  10781. package="3"
  10782. />
  10783. <otaLanguage
  10784. id="0"
  10785. name="German"
  10786. package="4"
  10787. />
  10788. <otaLanguage
  10789. id="0"
  10790. name="Dutch"
  10791. package="5"
  10792. />
  10793. <otaLanguage
  10794. id="0"
  10795. name="Russian"
  10796. package="6"
  10797. />
  10798. <otaLanguage
  10799. id="0"
  10800. name="Chinese"
  10801. package="7"
  10802. />
  10803. <otaLanguage
  10804. id="0"
  10805. name="Korean"
  10806. package="8"
  10807. />
  10808. <otaLanguage
  10809. id="0"
  10810. name="Japanese"
  10811. package="9"
  10812. />
  10813. <otaLanguage
  10814. id="0"
  10815. name="Finnish"
  10816. package="10"
  10817. />
  10818. <otaLanguage
  10819. id="0"
  10820. name="Polish"
  10821. package="11"
  10822. />
  10823. </otaLanguages>
  10824. <otaPackages>
  10825. <package
  10826. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  10827. size="5183988"
  10828. />
  10829. <package
  10830. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  10831. size="5183988"
  10832. />
  10833. <package
  10834. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  10835. size="5183988"
  10836. />
  10837. <package
  10838. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  10839. size="5183988"
  10840. />
  10841. <package
  10842. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  10843. size="5183988"
  10844. />
  10845. <package
  10846. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  10847. size="5183988"
  10848. />
  10849. <package
  10850. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  10851. size="5183988"
  10852. />
  10853. <package
  10854. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  10855. size="5183988"
  10856. />
  10857. <package
  10858. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  10859. size="5183988"
  10860. />
  10861. <package
  10862. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  10863. size="5183988"
  10864. />
  10865. <package
  10866. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  10867. size="5183988"
  10868. />
  10869. <package
  10870. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  10871. size="5183988"
  10872. />
  10873. </otaPackages>
  10874. </productMenu>
  10875. <productMenu id="wa"
  10876. type="0" >
  10877. </productMenu>
  10878. <productMenu id="meshIntercom"
  10879. type="30" >
  10880. </productMenu>
  10881. <productMenu id="meshIntercom+"
  10882. type="3"
  10883. url="2" >
  10884. </productMenu>
  10885. <productMenu id="waveIntercom"
  10886. type="1" >
  10887. </productMenu>
  10888. <productMenu id="fmradio"
  10889. type="1" >
  10890. </productMenu>
  10891. <productMenu id="phone"
  10892. type="0" >
  10893. </productMenu>
  10894. <productMenu id="music"
  10895. type="1" >
  10896. </productMenu>
  10897. <productMenu id="musicSharing"
  10898. type="0" >
  10899. </productMenu>
  10900. <productMenu id="deviceSetting"
  10901. type="1"
  10902. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  10903. </productMenu>
  10904. <productMenu id="quickGuide"
  10905. type="0"
  10906. url=""
  10907. size="1.12MB" >
  10908. </productMenu>
  10909. <productMenu id="userGuide"
  10910. type="1"
  10911. url=""
  10912. size="2.0MB" >
  10913. </productMenu>
  10914. <productMenu id="videoGuide"
  10915. type="0"
  10916. url=""
  10917. size="3.41MB" >
  10918. </productMenu>
  10919. <productMenu id="connectGuide"
  10920. type="1"
  10921. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  10922. size="1.12MB" >
  10923. </productMenu>
  10924. <productMenu id="volume"
  10925. type="16" >
  10926. </productMenu>
  10927. <productMenu id="battery"
  10928. type="1" >
  10929. </productMenu>
  10930. <productID id="6A85"
  10931. />
  10932. <productGroupable type="0"
  10933. />
  10934. </product>
  10935. <product id="TRIUMPH60X"
  10936. name="TRIUMPH 60X"
  10937. series="60"
  10938. latestVersion="1.0"
  10939. latestVersionMesh="0.19"
  10940. latestVersionVoicePrompt="1.7"
  10941. show = "-1" >
  10942. <productMenu id="protocol"
  10943. type="2" >
  10944. </productMenu>
  10945. <productMenu id="ota"
  10946. type="0" >
  10947. <otaLanguages>
  10948. <otaLanguage
  10949. id="0"
  10950. name="English"
  10951. package="0"
  10952. />
  10953. <otaLanguage
  10954. id="0"
  10955. name="French"
  10956. package="1"
  10957. />
  10958. <otaLanguage
  10959. id="0"
  10960. name="Spanish"
  10961. package="2"
  10962. />
  10963. <otaLanguage
  10964. id="0"
  10965. name="Italian"
  10966. package="3"
  10967. />
  10968. <otaLanguage
  10969. id="0"
  10970. name="German"
  10971. package="4"
  10972. />
  10973. <otaLanguage
  10974. id="0"
  10975. name="Dutch"
  10976. package="5"
  10977. />
  10978. <otaLanguage
  10979. id="0"
  10980. name="Russian"
  10981. package="6"
  10982. />
  10983. <otaLanguage
  10984. id="0"
  10985. name="Chinese"
  10986. package="7"
  10987. />
  10988. <otaLanguage
  10989. id="0"
  10990. name="Korean"
  10991. package="8"
  10992. />
  10993. <otaLanguage
  10994. id="0"
  10995. name="Japanese"
  10996. package="9"
  10997. />
  10998. <otaLanguage
  10999. id="0"
  11000. name="Finnish"
  11001. package="10"
  11002. />
  11003. <otaLanguage
  11004. id="0"
  11005. name="Polish"
  11006. package="11"
  11007. />
  11008. </otaLanguages>
  11009. <otaPackages>
  11010. <package
  11011. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5.img"
  11012. size="5183988"
  11013. />
  11014. <package
  11015. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fr-FR.img"
  11016. size="5183988"
  11017. />
  11018. <package
  11019. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-es-ES.img"
  11020. size="5183988"
  11021. />
  11022. <package
  11023. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-it-IT.img"
  11024. size="5183988"
  11025. />
  11026. <package
  11027. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-de-DE.img"
  11028. size="5183988"
  11029. />
  11030. <package
  11031. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-nl-NL.img"
  11032. size="5183988"
  11033. />
  11034. <package
  11035. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ru-RU.img"
  11036. size="5183988"
  11037. />
  11038. <package
  11039. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-cmn-CN.img"
  11040. size="5183988"
  11041. />
  11042. <package
  11043. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ko-KR.img"
  11044. size="5183988"
  11045. />
  11046. <package
  11047. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ja-JP.img"
  11048. size="5183988"
  11049. />
  11050. <package
  11051. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fi-FI.img"
  11052. size="5183988"
  11053. />
  11054. <package
  11055. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-pl-PL.img"
  11056. size="5183988"
  11057. />
  11058. </otaPackages>
  11059. </productMenu>
  11060. <productMenu id="wa"
  11061. type="0" >
  11062. </productMenu>
  11063. <productMenu id="sip"
  11064. type="1" >
  11065. </productMenu>
  11066. <productMenu id="led"
  11067. type="1" >
  11068. </productMenu>
  11069. <productMenu id="illusion"
  11070. type="1" >
  11071. </productMenu>
  11072. <productMenu id="meshIntercom"
  11073. type="30" >
  11074. </productMenu>
  11075. <productMenu id="meshIntercom+"
  11076. type="3"
  11077. url="2" >
  11078. </productMenu>
  11079. <productMenu id="bluetoothIntercom"
  11080. type="1" >
  11081. </productMenu>
  11082. <productMenu id="fmradio"
  11083. type="1"
  11084. url="1" >
  11085. </productMenu>
  11086. <productMenu id="mic"
  11087. type="0" >
  11088. </productMenu>
  11089. <productMenu id="phone"
  11090. type="1" >
  11091. </productMenu>
  11092. <productMenu id="music"
  11093. type="1" >
  11094. </productMenu>
  11095. <productMenu id="musicSharing"
  11096. type="0" >
  11097. </productMenu>
  11098. <productMenu id="deviceSetting"
  11099. type="1"
  11100. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  11101. </productMenu>
  11102. <productMenu id="quickGuide"
  11103. type="0"
  11104. url=""
  11105. size="1.12MB" >
  11106. </productMenu>
  11107. <productMenu id="userGuide"
  11108. type="1"
  11109. url=""
  11110. size="2.0MB" >
  11111. </productMenu>
  11112. <productMenu id="videoGuide"
  11113. type="0"
  11114. url=""
  11115. size="3.41MB" >
  11116. </productMenu>
  11117. <productMenu id="keySettings"
  11118. type="1"
  11119. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  11120. </productMenu>
  11121. <productMenu id="volume"
  11122. type="13" >
  11123. </productMenu>
  11124. <productMenu id="volume+"
  11125. type="2"
  11126. url="0x6004" >
  11127. </productMenu>
  11128. <productMenu id="battery"
  11129. type="1" >
  11130. </productMenu>
  11131. <productID id="6A1C"
  11132. />
  11133. <productGroupable type="0"
  11134. />
  11135. </product>
  11136. <product id="Triumph_50S"
  11137. name="Triumph 50S"
  11138. series="50"
  11139. latestVersion="1.5"
  11140. show = "0" >
  11141. <productMenu id="protocol"
  11142. type="2" >
  11143. </productMenu>
  11144. <productMenu id="alexa"
  11145. type="0" >
  11146. </productMenu>
  11147. <productMenu id="ota"
  11148. type="0"
  11149. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11150. size="1150234" >
  11151. </productMenu>
  11152. <productMenu id="wa"
  11153. type="1" >
  11154. </productMenu>
  11155. <productMenu id="sip"
  11156. type="1" >
  11157. </productMenu>
  11158. <productMenu id="meshIntercom"
  11159. type="20" >
  11160. </productMenu>
  11161. <productMenu id="bluetoothIntercom"
  11162. type="1" >
  11163. </productMenu>
  11164. <productMenu id="meshIntercom+"
  11165. type="3"
  11166. url="2" >
  11167. <productMenuType version="1.2.9"
  11168. type="2"
  11169. />
  11170. <productMenuURL version="1.2.9"
  11171. url="0"
  11172. />
  11173. </productMenu>
  11174. <productMenu id="waveIntercom"
  11175. type="1" >
  11176. <productMenuType version="1.2.9"
  11177. type="0"
  11178. />
  11179. </productMenu>
  11180. <productMenu id="phone"
  11181. type="1" >
  11182. </productMenu>
  11183. <productMenu id="music"
  11184. type="1" >
  11185. </productMenu>
  11186. <productMenu id="fmradio"
  11187. type="1" >
  11188. </productMenu>
  11189. <productMenu id="deviceSetting"
  11190. type="1"
  11191. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11192. <productMenuURL version="1.2.9"
  11193. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  11194. />
  11195. <productMenuURL version="1.0"
  11196. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11197. />
  11198. </productMenu>
  11199. <productMenu id="quickGuide"
  11200. type="1"
  11201. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  11202. size="934KB" >
  11203. </productMenu>
  11204. <productMenu id="userGuide"
  11205. type="1"
  11206. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  11207. size="1.14MB" >
  11208. </productMenu>
  11209. <productMenu id="volume"
  11210. type="11" >
  11211. </productMenu>
  11212. <productMenu id="battery"
  11213. type="1" >
  11214. </productMenu>
  11215. <productID id="3264"
  11216. />
  11217. <productGroupable type="0"
  11218. />
  11219. </product>
  11220. <product id="RE50S"
  11221. name="RE 50S"
  11222. series="50"
  11223. latestVersion="2.7"
  11224. show = "0" >
  11225. <productMenu id="protocol"
  11226. type="2" >
  11227. </productMenu>
  11228. <productMenu id="alexa"
  11229. type="0" >
  11230. </productMenu>
  11231. <productMenu id="ota"
  11232. type="0"
  11233. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11234. size="1150234" >
  11235. </productMenu>
  11236. <productMenu id="wa"
  11237. type="1" >
  11238. </productMenu>
  11239. <productMenu id="sip"
  11240. type="1" >
  11241. </productMenu>
  11242. <productMenu id="meshIntercom"
  11243. type="30" >
  11244. </productMenu>
  11245. <productMenu id="meshIntercom+"
  11246. type="3"
  11247. url="2" >
  11248. <productMenuType version="2.5"
  11249. type="2"
  11250. />
  11251. </productMenu>
  11252. <productMenu id="waveIntercom"
  11253. type="1" >
  11254. <productMenuType version="2.5"
  11255. type="0"
  11256. />
  11257. </productMenu>
  11258. <productMenu id="bluetoothIntercom"
  11259. type="1" >
  11260. </productMenu>
  11261. <productMenu id="phone"
  11262. type="1" >
  11263. </productMenu>
  11264. <productMenu id="music"
  11265. type="1" >
  11266. </productMenu>
  11267. <productMenu id="fmradio"
  11268. type="1" >
  11269. </productMenu>
  11270. <productMenu id="deviceSetting"
  11271. type="1"
  11272. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11273. <productMenuURL version="2.5.9"
  11274. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11275. />
  11276. </productMenu>
  11277. <productMenu id="quickGuide"
  11278. type="1"
  11279. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11280. size="934KB" >
  11281. </productMenu>
  11282. <productMenu id="userGuide"
  11283. type="1"
  11284. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11285. size="1.14MB" >
  11286. </productMenu>
  11287. <productMenu id="videoGuide"
  11288. type="0"
  11289. url=""
  11290. size="3.41MB" >
  11291. </productMenu>
  11292. <productMenu id="volume"
  11293. type="11" >
  11294. </productMenu>
  11295. <productMenu id="battery"
  11296. type="1" >
  11297. </productMenu>
  11298. <productID id="321C"
  11299. />
  11300. <productGroupable type="0"
  11301. />
  11302. </product>
  11303. <product id="BMW_HELMET_II_U1"
  11304. name="BMW HELMET II U1"
  11305. series="50"
  11306. latestVersion="1.0"
  11307. show = "0" >
  11308. <productMenu id="protocol"
  11309. type="2" >
  11310. </productMenu>
  11311. <productMenu id="alexa"
  11312. type="0" >
  11313. </productMenu>
  11314. <productMenu id="sip"
  11315. type="1" >
  11316. </productMenu>
  11317. <productMenu id="meshIntercom"
  11318. type="20" >
  11319. </productMenu>
  11320. <productMenu id="bluetoothIntercom"
  11321. type="1" >
  11322. </productMenu>
  11323. <productMenu id="bluetoothIntercom2"
  11324. type="1" >
  11325. </productMenu>
  11326. <productMenu id="phone"
  11327. type="1" >
  11328. </productMenu>
  11329. <productMenu id="music"
  11330. type="1" >
  11331. </productMenu>
  11332. <productMenu id="fmradio"
  11333. type="1" >
  11334. </productMenu>
  11335. <productMenu id="deviceSetting"
  11336. type="1"
  11337. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11338. </productMenu>
  11339. <productMenu id="quickGuide"
  11340. type="1"
  11341. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11342. size="934KB" >
  11343. </productMenu>
  11344. <productMenu id="userGuide"
  11345. type="1"
  11346. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11347. size="1.14MB" >
  11348. </productMenu>
  11349. <productMenu id="volume"
  11350. type="11" >
  11351. </productMenu>
  11352. <productMenu id="battery"
  11353. type="1" >
  11354. </productMenu>
  11355. <productID id="3260"
  11356. />
  11357. <productGroupable type="0"
  11358. />
  11359. </product>
  11360. <product id="OUTRUSHR"
  11361. name="CX935"
  11362. series="Helmet"
  11363. latestVersion="2.1"
  11364. show = "-1" >
  11365. <productMenu id="protocol"
  11366. type="3">
  11367. </productMenu>
  11368. <productMenu id="sip"
  11369. type="1" >
  11370. </productMenu>
  11371. <productMenu id="bluetoothIntercom"
  11372. type="1" >
  11373. </productMenu>
  11374. <productMenu id="phone"
  11375. type="1" >
  11376. </productMenu>
  11377. <productMenu id="fmradio"
  11378. type="0" >
  11379. </productMenu>
  11380. <productMenu id="deviceSetting"
  11381. type="1"
  11382. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11383. </productMenu>
  11384. <productMenu id="userGuide"
  11385. type="1"
  11386. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11387. size="660KB" >
  11388. </productMenu>
  11389. <productID id="5446"
  11390. />
  11391. <productGroupable type="0"
  11392. />
  11393. </product>
  11394. <product id="LSE_01"
  11395. name="LSE-01"
  11396. series="SF"
  11397. latestVersion="1.2.3"
  11398. show = "0" >
  11399. <productMenu id="protocol"
  11400. type="1"
  11401. url="3">
  11402. </productMenu>
  11403. <productMenu id="sip"
  11404. type="1" >
  11405. </productMenu>
  11406. <productMenu id="bluetoothIntercom"
  11407. type="1" >
  11408. </productMenu>
  11409. <productMenu id="phone"
  11410. type="1" >
  11411. </productMenu>
  11412. <productMenu id="music"
  11413. type="1" >
  11414. </productMenu>
  11415. <productMenu id="fmradio"
  11416. type="1" >
  11417. </productMenu>
  11418. <productMenu id="deviceSetting"
  11419. type="1"
  11420. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11421. <productMenuURL version="1.1"
  11422. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11423. />
  11424. <productMenuURL version="1.0"
  11425. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11426. />
  11427. </productMenu>
  11428. <productMenu id="quickGuide"
  11429. type="1"
  11430. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11431. size="607KB" >
  11432. </productMenu>
  11433. <productMenu id="userGuide"
  11434. type="1"
  11435. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11436. size="1.91MB" >
  11437. </productMenu>
  11438. <productMenu id="volume"
  11439. type="4" >
  11440. </productMenu>
  11441. <productID id="5416"
  11442. />
  11443. <productGroupable type="0"
  11444. />
  11445. </product>
  11446. <product id="AGV_ARK"
  11447. name="AGV ARK"
  11448. series="SF"
  11449. latestVersion="1.0.3"
  11450. show = "0" >
  11451. <productMenu id="protocol"
  11452. type="1"
  11453. url="3">
  11454. </productMenu>
  11455. <productMenu id="sip"
  11456. type="1" >
  11457. </productMenu>
  11458. <productMenu id="bluetoothIntercom"
  11459. type="1" >
  11460. </productMenu>
  11461. <productMenu id="phone"
  11462. type="1" >
  11463. </productMenu>
  11464. <productMenu id="music"
  11465. type="1" >
  11466. </productMenu>
  11467. <productMenu id="fmradio"
  11468. type="1" >
  11469. </productMenu>
  11470. <productMenu id="deviceSetting"
  11471. type="1"
  11472. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11473. </productMenu>
  11474. <productMenu id="quickGuide"
  11475. type="1"
  11476. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11477. size="607KB" >
  11478. </productMenu>
  11479. <productMenu id="userGuide"
  11480. type="1"
  11481. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11482. size="1.91MB" >
  11483. </productMenu>
  11484. <productMenu id="volume"
  11485. type="4" >
  11486. </productMenu>
  11487. <productID id="5420"
  11488. />
  11489. <productGroupable type="0"
  11490. />
  11491. </product>
  11492. <product id="KLIM_KRIOS"
  11493. name="KLIM Krios"
  11494. series="10"
  11495. latestVersion="1.1.2"
  11496. show = "0" >
  11497. <productMenu id="protocol"
  11498. type="0">
  11499. </productMenu>
  11500. <productMenu id="sip"
  11501. type="1" >
  11502. </productMenu>
  11503. <productMenu id="bluetoothIntercom"
  11504. type="1" >
  11505. </productMenu>
  11506. <productMenu id="phone"
  11507. type="2" >
  11508. </productMenu>
  11509. <productMenu id="fmradio"
  11510. type="3" >
  11511. </productMenu>
  11512. <productMenu id="deviceSetting"
  11513. type="1"
  11514. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11515. <productMenuURL version="1.0"
  11516. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11517. />
  11518. </productMenu>
  11519. <productMenu id="quickGuide"
  11520. type="1"
  11521. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11522. size="649KB" >
  11523. </productMenu>
  11524. <productMenu id="userGuide"
  11525. type="1"
  11526. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11527. size="1.43MB" >
  11528. </productMenu>
  11529. <productID id="5910"
  11530. />
  11531. <productGroupable type="0"
  11532. />
  11533. </product>
  11534. <product id="POLARIS_SLINGSHOT"
  11535. name="Polaris Slingshot"
  11536. series="10"
  11537. latestVersion="1.1.2"
  11538. show = "0" >
  11539. <productMenu id="protocol"
  11540. type="0">
  11541. </productMenu>
  11542. <productMenu id="sip"
  11543. type="1" >
  11544. </productMenu>
  11545. <productMenu id="bluetoothIntercom"
  11546. type="1" >
  11547. </productMenu>
  11548. <productMenu id="phone"
  11549. type="2" >
  11550. </productMenu>
  11551. <productMenu id="fmradio"
  11552. type="3" >
  11553. </productMenu>
  11554. <productMenu id="deviceSetting"
  11555. type="1"
  11556. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11557. <productMenuURL version="1.0"
  11558. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11559. />
  11560. </productMenu>
  11561. <productMenu id="quickGuide"
  11562. type="1"
  11563. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11564. size="689KB" >
  11565. </productMenu>
  11566. <productMenu id="userGuide"
  11567. type="1"
  11568. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11569. size="1.43MB" >
  11570. </productMenu>
  11571. <productID id="5920"
  11572. />
  11573. <productGroupable type="0"
  11574. />
  11575. </product>
  11576. <product id="DWO6"
  11577. name="SEDICI DWO6-PRO"
  11578. series="10"
  11579. latestVersion="1.0.2"
  11580. show = "0" >
  11581. <productMenu id="protocol"
  11582. type="0">
  11583. </productMenu>
  11584. <productMenu id="sip"
  11585. type="1" >
  11586. </productMenu>
  11587. <productMenu id="bluetoothIntercom"
  11588. type="1" >
  11589. </productMenu>
  11590. <productMenu id="phone"
  11591. type="2" >
  11592. </productMenu>
  11593. <productMenu id="fmradio"
  11594. type="3" >
  11595. </productMenu>
  11596. <productMenu id="deviceSetting"
  11597. type="1"
  11598. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  11599. </productMenu>
  11600. <productMenu id="quickGuide"
  11601. type="1"
  11602. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11603. size="529KB" >
  11604. </productMenu>
  11605. <productMenu id="userGuide"
  11606. type="1"
  11607. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11608. size="4.09MB" >
  11609. </productMenu>
  11610. <productID id="6112"
  11611. />
  11612. <productGroupable type="0"
  11613. />
  11614. </product>
  11615. <product id="DWO6A"
  11616. name="SEDICI DWO-6"
  11617. series="10"
  11618. latestVersion="1.0.2"
  11619. show = "0" >
  11620. <productMenu id="protocol"
  11621. type="0">
  11622. </productMenu>
  11623. <productMenu id="sip"
  11624. type="1" >
  11625. </productMenu>
  11626. <productMenu id="bluetoothIntercom"
  11627. type="1" >
  11628. </productMenu>
  11629. <productMenu id="phone"
  11630. type="2" >
  11631. </productMenu>
  11632. <productMenu id="fmradio"
  11633. type="3" >
  11634. </productMenu>
  11635. <productMenu id="deviceSetting"
  11636. type="1"
  11637. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  11638. </productMenu>
  11639. <productMenu id="quickGuide"
  11640. type="1"
  11641. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  11642. size="522KB" >
  11643. </productMenu>
  11644. <productMenu id="userGuide"
  11645. type="1"
  11646. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  11647. size="2.71MB" >
  11648. </productMenu>
  11649. <productID id="6114"
  11650. />
  11651. <productGroupable type="0"
  11652. />
  11653. </product>
  11654. <product id="3SPLUS"
  11655. name="ZILL"
  11656. series="3"
  11657. latestVersion="1.0.4"
  11658. show = "0" >
  11659. <productMenu id="protocol"
  11660. type="0">
  11661. </productMenu>
  11662. <productMenu id="sip"
  11663. type="1" >
  11664. </productMenu>
  11665. <productMenu id="bluetoothIntercom"
  11666. type="1" >
  11667. </productMenu>
  11668. <productMenu id="deviceSetting"
  11669. type="1"
  11670. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  11671. </productMenu>
  11672. <productMenu id="quickGuide"
  11673. type="1"
  11674. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11675. size="842KB" >
  11676. </productMenu>
  11677. <productMenu id="userGuide"
  11678. type="1"
  11679. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  11680. size="1.02MB" >
  11681. </productMenu>
  11682. <productID id="6335"
  11683. />
  11684. <productGroupable type="0"
  11685. />
  11686. </product>
  11687. <product id="HD50S"
  11688. name="Boom! Audio 30K"
  11689. series="30"
  11690. latestVersion="3.4"
  11691. show = "0" >
  11692. <productMenu id="protocol"
  11693. type="1"
  11694. url="0">
  11695. </productMenu>
  11696. <productMenu id="wa"
  11697. type="0" >
  11698. </productMenu>
  11699. <productMenu id="sip"
  11700. type="1" >
  11701. </productMenu>
  11702. <productMenu id="meshIntercom"
  11703. type="20" >
  11704. <productMenuType version="2.9.9"
  11705. type="10"
  11706. />
  11707. </productMenu>
  11708. <productMenu id="bluetoothIntercom"
  11709. type="1" >
  11710. </productMenu>
  11711. <productMenu id="phone"
  11712. type="1" >
  11713. </productMenu>
  11714. <productMenu id="music"
  11715. type="1" >
  11716. </productMenu>
  11717. <productMenu id="fmradio"
  11718. type="1" >
  11719. </productMenu>
  11720. <productMenu id="deviceSetting"
  11721. type="1"
  11722. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  11723. <productMenuURL version="3.2"
  11724. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  11725. />
  11726. <productMenuURL version="3.0"
  11727. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  11728. />
  11729. <productMenuURL version="2.2"
  11730. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11731. />
  11732. </productMenu>
  11733. <productMenu id="quickGuide"
  11734. type="1"
  11735. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11736. size="1.06MB" >
  11737. </productMenu>
  11738. <productMenu id="userGuide"
  11739. type="1"
  11740. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11741. size="3.15MB" >
  11742. </productMenu>
  11743. <productMenu id="volume"
  11744. type="1" >
  11745. </productMenu>
  11746. <productID id="3112"
  11747. />
  11748. <productGroupable type="0"
  11749. />
  11750. </product>
  11751. <product id="HD50S"
  11752. name="Boom! Audio N02"
  11753. series="30"
  11754. latestVersion="3.1"
  11755. show = "0" >
  11756. <productMenu id="protocol"
  11757. type="1"
  11758. url="0">
  11759. </productMenu>
  11760. <productMenu id="wa"
  11761. type="2" >
  11762. </productMenu>
  11763. <productMenu id="sip"
  11764. type="1" >
  11765. </productMenu>
  11766. <productMenu id="meshIntercom"
  11767. type="20" >
  11768. <productMenuType version="2.9.9"
  11769. type="10"
  11770. />
  11771. </productMenu>
  11772. <productMenu id="bluetoothIntercom"
  11773. type="1" >
  11774. </productMenu>
  11775. <productMenu id="phone"
  11776. type="1" >
  11777. </productMenu>
  11778. <productMenu id="music"
  11779. type="1" >
  11780. </productMenu>
  11781. <productMenu id="fmradio"
  11782. type="1" >
  11783. </productMenu>
  11784. <productMenu id="deviceSetting"
  11785. type="1"
  11786. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  11787. <productMenuURL version="2.2"
  11788. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11789. />
  11790. </productMenu>
  11791. <productMenu id="quickGuide"
  11792. type="1"
  11793. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  11794. size="1.06MB" >
  11795. </productMenu>
  11796. <productMenu id="userGuide"
  11797. type="1"
  11798. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  11799. size="3.15MB" >
  11800. </productMenu>
  11801. <productMenu id="volume"
  11802. type="2" >
  11803. </productMenu>
  11804. <productID id="3114"
  11805. />
  11806. <productGroupable type="0"
  11807. />
  11808. </product>
  11809. <product id="HD50S"
  11810. name="Boom Audio 20S"
  11811. series="50"
  11812. latestVersion="2.5.2"
  11813. show = "0" >
  11814. <productMenu id="protocol"
  11815. type="0">
  11816. </productMenu>
  11817. <productMenu id="sip"
  11818. type="1" >
  11819. <productMenuType version="1.0"
  11820. type="0"
  11821. />
  11822. </productMenu>
  11823. <productMenu id="bluetoothIntercom"
  11824. type="1" >
  11825. <productMenuType version="1.0"
  11826. type="0"
  11827. />
  11828. </productMenu>
  11829. <productMenu id="intercomSetting"
  11830. type="1" >
  11831. </productMenu>
  11832. <productMenu id="phone"
  11833. type="2" >
  11834. </productMenu>
  11835. <productMenu id="fmradio"
  11836. type="3" >
  11837. </productMenu>
  11838. <productMenu id="deviceSetting"
  11839. type="1"
  11840. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11841. <productMenuURL version="2.4"
  11842. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11843. />
  11844. <productMenuURL version="1.5"
  11845. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11846. />
  11847. <productMenuURL version="1.4.1"
  11848. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11849. />
  11850. <productMenuURL version="1.1"
  11851. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11852. />
  11853. <productMenuURL version="1.0"
  11854. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11855. />
  11856. </productMenu>
  11857. <productMenu id="quickGuide"
  11858. type="1"
  11859. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11860. size="264KB" >
  11861. </productMenu>
  11862. <productMenu id="userGuide"
  11863. type="1"
  11864. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11865. size="3.09MB" >
  11866. </productMenu>
  11867. <productMenu id="connectGuide"
  11868. type="1"
  11869. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  11870. size="1.12MB" >
  11871. </productMenu>
  11872. <productID id="4210"
  11873. />
  11874. <productProductKey key="11"
  11875. />
  11876. <productID id="4230"
  11877. />
  11878. <productProductKey key="11"
  11879. />
  11880. <productGroupable type="1"
  11881. />
  11882. </product>
  11883. <product id="HD50S"
  11884. name="Boom Audio 20S EVO"
  11885. series="50"
  11886. latestVersion="2.5.2"
  11887. show = "0" >
  11888. <productMenu id="protocol"
  11889. type="0">
  11890. </productMenu>
  11891. <productMenu id="sip"
  11892. type="1" >
  11893. <productMenuType version="1.0"
  11894. type="0"
  11895. />
  11896. </productMenu>
  11897. <productMenu id="bluetoothIntercom"
  11898. type="1" >
  11899. <productMenuType version="1.0"
  11900. type="0"
  11901. />
  11902. </productMenu>
  11903. <productMenu id="intercomSetting"
  11904. type="1" >
  11905. </productMenu>
  11906. <productMenu id="phone"
  11907. type="2" >
  11908. </productMenu>
  11909. <productMenu id="fmradio"
  11910. type="3" >
  11911. </productMenu>
  11912. <productMenu id="deviceSetting"
  11913. type="1"
  11914. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11915. <productMenuURL version="2.4"
  11916. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11917. />
  11918. <productMenuURL version="1.5"
  11919. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11920. />
  11921. <productMenuURL version="1.4.1"
  11922. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11923. />
  11924. <productMenuURL version="1.1"
  11925. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11926. />
  11927. <productMenuURL version="1.0"
  11928. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11929. />
  11930. </productMenu>
  11931. <productMenu id="quickGuide"
  11932. type="1"
  11933. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11934. size="321KB" >
  11935. </productMenu>
  11936. <productMenu id="userGuide"
  11937. type="1"
  11938. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11939. size="2.46MB" >
  11940. </productMenu>
  11941. <productID id="4230"
  11942. />
  11943. <productProductKey key="27"
  11944. />
  11945. <productGroupable type="1"
  11946. />
  11947. </product>
  11948. <product id="HD50S"
  11949. name="Boom! Audio 10S"
  11950. series="50"
  11951. latestVersion="1.1.3"
  11952. show = "0" >
  11953. <productMenu id="protocol"
  11954. type="0">
  11955. </productMenu>
  11956. <productMenu id="sip"
  11957. type="1" >
  11958. </productMenu>
  11959. <productMenu id="bluetoothIntercom"
  11960. type="1" >
  11961. </productMenu>
  11962. <productMenu id="phone"
  11963. type="2" >
  11964. </productMenu>
  11965. <productMenu id="fmradio"
  11966. type="3" >
  11967. </productMenu>
  11968. <productMenu id="deviceSetting"
  11969. type="1"
  11970. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  11971. </productMenu>
  11972. <productMenu id="quickGuide"
  11973. type="1"
  11974. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11975. size="538KB" >
  11976. </productMenu>
  11977. <productMenu id="userGuide"
  11978. type="1"
  11979. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11980. size="1.55MB" >
  11981. </productMenu>
  11982. <productID id="5532"
  11983. />
  11984. <productGroupable type="0"
  11985. />
  11986. </product>
  11987. <product id="HD50S"
  11988. name="Boom! Audio N01 10R"
  11989. series="50"
  11990. latestVersion="1.1.3"
  11991. show = "0" >
  11992. <productMenu id="protocol"
  11993. type="0">
  11994. </productMenu>
  11995. <productMenu id="sip"
  11996. type="1" >
  11997. </productMenu>
  11998. <productMenu id="bluetoothIntercom"
  11999. type="1" >
  12000. </productMenu>
  12001. <productMenu id="phone"
  12002. type="2" >
  12003. </productMenu>
  12004. <productMenu id="fmradio"
  12005. type="3" >
  12006. </productMenu>
  12007. <productMenu id="deviceSetting"
  12008. type="1"
  12009. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  12010. </productMenu>
  12011. <productMenu id="quickGuide"
  12012. type="1"
  12013. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12014. size="766KB" >
  12015. </productMenu>
  12016. <productMenu id="userGuide"
  12017. type="1"
  12018. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12019. size="1.45MB" >
  12020. </productMenu>
  12021. <productID id="5522"
  12022. />
  12023. <productGroupable type="0"
  12024. />
  12025. </product>
  12026. <product id="HD50S"
  12027. name="OUTRUSH-R N03"
  12028. series="50"
  12029. latestVersion="1.2.1"
  12030. show = "-1" >
  12031. <productMenu id="protocol"
  12032. type="0">
  12033. </productMenu>
  12034. <productMenu id="sip"
  12035. type="1" >
  12036. </productMenu>
  12037. <productMenu id="bluetoothIntercom"
  12038. type="1" >
  12039. </productMenu>
  12040. <productMenu id="phone"
  12041. type="2" >
  12042. </productMenu>
  12043. <productMenu id="fmradio"
  12044. type="3" >
  12045. </productMenu>
  12046. <productMenu id="deviceSetting"
  12047. type="1"
  12048. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  12049. </productMenu>
  12050. <productMenu id="userGuide"
  12051. type="1"
  12052. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  12053. size="660KB" >
  12054. </productMenu>
  12055. <productID id="5434"
  12056. />
  12057. <productGroupable type="0"
  12058. />
  12059. </product>
  12060. <product id="HD50S"
  12061. name="OUTRUSH-R N03"
  12062. series="50"
  12063. latestVersion="2.0"
  12064. show = "0" >
  12065. <productMenu id="protocol"
  12066. type="3" >
  12067. </productMenu>
  12068. <productMenu id="sip"
  12069. type="1" >
  12070. </productMenu>
  12071. <productMenu id="bluetoothIntercom"
  12072. type="1" >
  12073. </productMenu>
  12074. <productMenu id="phone"
  12075. type="1" >
  12076. </productMenu>
  12077. <productMenu id="fmradio"
  12078. type="1" >
  12079. </productMenu>
  12080. <productMenu id="deviceSetting"
  12081. type="1"
  12082. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  12083. </productMenu>
  12084. <productMenu id="userGuide"
  12085. type="1"
  12086. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  12087. size="1.14MB" >
  12088. </productMenu>
  12089. <productID id="5441"
  12090. />
  12091. <productGroupable type="0"
  12092. />
  12093. </product>
  12094. <product id="5R"
  12095. name="5R"
  12096. series="5"
  12097. latestVersion="1.0.1"
  12098. show = "1" >
  12099. <productMenu id="protocol"
  12100. type="3" >
  12101. </productMenu>
  12102. <productMenu id="sip"
  12103. type="1" >
  12104. </productMenu>
  12105. <productMenu id="bluetoothIntercom"
  12106. type="1" >
  12107. </productMenu>
  12108. <productMenu id="phone"
  12109. type="1" >
  12110. </productMenu>
  12111. <productMenu id="fmradio"
  12112. type="1" >
  12113. </productMenu>
  12114. <productMenu id="deviceSetting"
  12115. type="1"
  12116. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12117. </productMenu>
  12118. <productMenu id="quickGuide"
  12119. type="0"
  12120. url=""
  12121. size="934KB" >
  12122. </productMenu>
  12123. <productMenu id="userGuide"
  12124. type="1"
  12125. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  12126. size="1.14MB" >
  12127. </productMenu>
  12128. <productMenu id="connectGuide"
  12129. type="1"
  12130. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12131. size="1.12MB" >
  12132. </productMenu>
  12133. <productID id="5591"
  12134. />
  12135. <productGroupable type="0"
  12136. />
  12137. </product>
  12138. <product id="5R"
  12139. name="5R LITE"
  12140. series="5"
  12141. latestVersion="1.0.1"
  12142. show = "1" >
  12143. <productMenu id="protocol"
  12144. type="3" >
  12145. </productMenu>
  12146. <productMenu id="sip"
  12147. type="1" >
  12148. </productMenu>
  12149. <productMenu id="bluetoothIntercom"
  12150. type="1" >
  12151. </productMenu>
  12152. <productMenu id="phone"
  12153. type="1" >
  12154. </productMenu>
  12155. <productMenu id="fmradio"
  12156. type="1" >
  12157. </productMenu>
  12158. <productMenu id="deviceSetting"
  12159. type="1"
  12160. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12161. </productMenu>
  12162. <productMenu id="quickGuide"
  12163. type="0"
  12164. url=""
  12165. size="934KB" >
  12166. </productMenu>
  12167. <productMenu id="userGuide"
  12168. type="1"
  12169. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12170. size="1.14MB" >
  12171. </productMenu>
  12172. <productMenu id="connectGuide"
  12173. type="1"
  12174. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12175. size="1.12MB" >
  12176. </productMenu>
  12177. <productID id="5592"
  12178. />
  12179. <productGroupable type="0"
  12180. />
  12181. </product>
  12182. <product id="50RLE"
  12183. name="50R LE"
  12184. series="50"
  12185. latestVersion="1.1"
  12186. show = "0" >
  12187. <productMenu id="protocol"
  12188. type="2" >
  12189. </productMenu>
  12190. <productMenu id="alexa"
  12191. type="0" >
  12192. </productMenu>
  12193. <productMenu id="sip"
  12194. type="1" >
  12195. </productMenu>
  12196. <productMenu id="meshIntercom"
  12197. type="30" >
  12198. </productMenu>
  12199. <productMenu id="meshIntercom+"
  12200. type="3"
  12201. url="2" >
  12202. <productMenuType version="1.0.9"
  12203. type="2"
  12204. />
  12205. </productMenu>
  12206. <productMenu id="waveIntercom"
  12207. type="1" >
  12208. <productMenuType version="1.0.9"
  12209. type="0"
  12210. />
  12211. </productMenu>
  12212. <productMenu id="bluetoothIntercom"
  12213. type="1" >
  12214. </productMenu>
  12215. <productMenu id="phone"
  12216. type="1" >
  12217. </productMenu>
  12218. <productMenu id="music"
  12219. type="1" >
  12220. </productMenu>
  12221. <productMenu id="fmradio"
  12222. type="0" >
  12223. </productMenu>
  12224. <productMenu id="deviceSetting"
  12225. type="1"
  12226. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  12227. <productMenuURL version="1.0.9"
  12228. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  12229. />
  12230. </productMenu>
  12231. <productMenu id="quickGuide"
  12232. type="0"
  12233. url=""
  12234. size="344KB" >
  12235. </productMenu>
  12236. <productMenu id="userGuide"
  12237. type="0"
  12238. url=""
  12239. size="3.41MB" >
  12240. </productMenu>
  12241. <productMenu id="volume"
  12242. type="11" >
  12243. </productMenu>
  12244. <productMenu id="battery"
  12245. type="1" >
  12246. </productMenu>
  12247. <productID id="3223"
  12248. />
  12249. <productGroupable type="0"
  12250. />
  12251. </product>
  12252. <product id="5RLOUIS"
  12253. name="5R LOUIS EDITION"
  12254. series="5"
  12255. latestVersion="1.0"
  12256. show = "-1" >
  12257. <productMenu id="protocol"
  12258. type="3" >
  12259. </productMenu>
  12260. <productMenu id="sip"
  12261. type="1" >
  12262. </productMenu>
  12263. <productMenu id="bluetoothIntercom"
  12264. type="1" >
  12265. </productMenu>
  12266. <productMenu id="phone"
  12267. type="1" >
  12268. </productMenu>
  12269. <productMenu id="fmradio"
  12270. type="1" >
  12271. </productMenu>
  12272. <productMenu id="deviceSetting"
  12273. type="1"
  12274. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12275. </productMenu>
  12276. <productMenu id="quickGuide"
  12277. type="0"
  12278. url=""
  12279. size="934KB" >
  12280. </productMenu>
  12281. <productMenu id="userGuide"
  12282. type="0"
  12283. url=""
  12284. size="1.14MB" >
  12285. </productMenu>
  12286. <productID id="5597"
  12287. />
  12288. <productGroupable type="0"
  12289. />
  12290. </product>
  12291. <product id="5S"
  12292. name="Ridekont 5S"
  12293. series="5"
  12294. latestVersion="2.3"
  12295. show = "-1" >
  12296. <productMenu id="protocol"
  12297. type="3" >
  12298. </productMenu>
  12299. <productMenu id="sip"
  12300. type="1" >
  12301. </productMenu>
  12302. <productMenu id="bluetoothIntercom"
  12303. type="1" >
  12304. </productMenu>
  12305. <productMenu id="phone"
  12306. type="1" >
  12307. </productMenu>
  12308. <productMenu id="fmradio"
  12309. type="0" >
  12310. </productMenu>
  12311. <productMenu id="deviceSetting"
  12312. type="1"
  12313. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12314. </productMenu>
  12315. <productMenu id="quickGuide"
  12316. type="0"
  12317. url=""
  12318. size="934KB" >
  12319. </productMenu>
  12320. <productMenu id="userGuide"
  12321. type="1"
  12322. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12323. size="1.14MB" >
  12324. </productMenu>
  12325. <productID id="5589"
  12326. />
  12327. <productGroupable type="0"
  12328. />
  12329. </product>
  12330. <product id="5R"
  12331. name="Ridekont 5R"
  12332. series="5"
  12333. latestVersion="1.0"
  12334. show = "0" >
  12335. <productMenu id="protocol"
  12336. type="3" >
  12337. </productMenu>
  12338. <productMenu id="sip"
  12339. type="1" >
  12340. </productMenu>
  12341. <productMenu id="bluetoothIntercom"
  12342. type="1" >
  12343. </productMenu>
  12344. <productMenu id="phone"
  12345. type="1" >
  12346. </productMenu>
  12347. <productMenu id="fmradio"
  12348. type="1" >
  12349. </productMenu>
  12350. <productMenu id="deviceSetting"
  12351. type="1"
  12352. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12353. </productMenu>
  12354. <productMenu id="quickGuide"
  12355. type="1"
  12356. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12357. size="934KB" >
  12358. </productMenu>
  12359. <productMenu id="userGuide"
  12360. type="1"
  12361. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12362. size="1.14MB" >
  12363. </productMenu>
  12364. <productID id="5593"
  12365. />
  12366. <productGroupable type="0"
  12367. />
  12368. </product>
  12369. <product id="5R"
  12370. name="Ridekont 5R LITE"
  12371. series="5"
  12372. latestVersion="1.0"
  12373. show = "0" >
  12374. <productMenu id="protocol"
  12375. type="3" >
  12376. </productMenu>
  12377. <productMenu id="sip"
  12378. type="1" >
  12379. </productMenu>
  12380. <productMenu id="bluetoothIntercom"
  12381. type="1" >
  12382. </productMenu>
  12383. <productMenu id="phone"
  12384. type="1" >
  12385. </productMenu>
  12386. <productMenu id="fmradio"
  12387. type="1" >
  12388. </productMenu>
  12389. <productMenu id="deviceSetting"
  12390. type="1"
  12391. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12392. </productMenu>
  12393. <productMenu id="quickGuide"
  12394. type="0"
  12395. url=""
  12396. size="934KB" >
  12397. </productMenu>
  12398. <productMenu id="userGuide"
  12399. type="1"
  12400. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12401. size="1.14MB" >
  12402. </productMenu>
  12403. <productID id="5594"
  12404. />
  12405. <productGroupable type="0"
  12406. />
  12407. </product>
  12408. <product id="SA30"
  12409. name="SA30"
  12410. series="SA"
  12411. latestVersion="1.0.1"
  12412. latestVersionVoicePrompt="0.15"
  12413. show = "-1" >
  12414. <productMenu id="protocol"
  12415. type="2" >
  12416. </productMenu>
  12417. <productMenu id="ota"
  12418. type="2" >
  12419. <otaPackages>
  12420. <package
  12421. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.1-build0.img"
  12422. size="3144148"
  12423. />
  12424. </otaPackages>
  12425. </productMenu>
  12426. <productMenu id="meshIntercom"
  12427. type="30" >
  12428. </productMenu>
  12429. <productMenu id="meshIntercom+"
  12430. type="3"
  12431. url="2" >
  12432. </productMenu>
  12433. <productMenu id="phone"
  12434. type="1" >
  12435. </productMenu>
  12436. <productMenu id="music"
  12437. type="1" >
  12438. </productMenu>
  12439. <productMenu id="musicSharing"
  12440. type="0" >
  12441. </productMenu>
  12442. <productMenu id="deviceSetting"
  12443. type="1"
  12444. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12445. </productMenu>
  12446. <productMenu id="quickGuide"
  12447. type="0"
  12448. url=""
  12449. size="1.12MB" >
  12450. </productMenu>
  12451. <productMenu id="userGuide"
  12452. type="1"
  12453. url=""
  12454. size="2.0MB" >
  12455. </productMenu>
  12456. <productMenu id="videoGuide"
  12457. type="0"
  12458. url=""
  12459. size="3.41MB" >
  12460. </productMenu>
  12461. <productMenu id="volume"
  12462. type="12" >
  12463. </productMenu>
  12464. <productMenu id="battery"
  12465. type="1" >
  12466. </productMenu>
  12467. <productID id="6852"
  12468. />
  12469. <productGroupable type="0"
  12470. />
  12471. </product>
  12472. <product id="I30"
  12473. name="I30"
  12474. series="I"
  12475. latestVersion="1.0.1"
  12476. latestVersionVoicePrompt="0.2"
  12477. show = "-1" >
  12478. <productMenu id="protocol"
  12479. type="2" >
  12480. </productMenu>
  12481. <productMenu id="ota"
  12482. type="2" >
  12483. <otaPackages>
  12484. <package
  12485. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.1-build0.img"
  12486. size="3144148"
  12487. />
  12488. </otaPackages>
  12489. </productMenu>
  12490. <productMenu id="meshIntercom"
  12491. type="30" >
  12492. </productMenu>
  12493. <productMenu id="meshIntercom+"
  12494. type="3"
  12495. url="2" >
  12496. </productMenu>
  12497. <productMenu id="phone"
  12498. type="1" >
  12499. </productMenu>
  12500. <productMenu id="music"
  12501. type="1" >
  12502. </productMenu>
  12503. <productMenu id="musicSharing"
  12504. type="0" >
  12505. </productMenu>
  12506. <productMenu id="deviceSetting"
  12507. type="1"
  12508. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12509. </productMenu>
  12510. <productMenu id="quickGuide"
  12511. type="0"
  12512. url=""
  12513. size="1.12MB" >
  12514. </productMenu>
  12515. <productMenu id="userGuide"
  12516. type="1"
  12517. url=""
  12518. size="2.10MB" >
  12519. </productMenu>
  12520. <productMenu id="videoGuide"
  12521. type="0"
  12522. url=""
  12523. size="3.11MB" >
  12524. </productMenu>
  12525. <productMenu id="volume"
  12526. type="12" >
  12527. </productMenu>
  12528. <productMenu id="battery"
  12529. type="1" >
  12530. </productMenu>
  12531. <productID id="6853"
  12532. />
  12533. <productGroupable type="0"
  12534. />
  12535. </product>
  12536. <product id="C30EVO"
  12537. name="C30 EVO"
  12538. series="C"
  12539. latestVersion="1.0"
  12540. latestVersionVoicePrompt="0.13"
  12541. show = "-1" >
  12542. <productMenu id="protocol"
  12543. type="2" >
  12544. </productMenu>
  12545. <productMenu id="ota"
  12546. type="0" >
  12547. <otaPackages>
  12548. <package
  12549. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  12550. size="3144148"
  12551. />
  12552. </otaPackages>
  12553. </productMenu>
  12554. <productMenu id="meshIntercom+"
  12555. type="3"
  12556. url="2" >
  12557. </productMenu>
  12558. <productMenu id="waveIntercom"
  12559. type="1" >
  12560. </productMenu>
  12561. <productMenu id="phone"
  12562. type="1" >
  12563. </productMenu>
  12564. <productMenu id="music"
  12565. type="1" >
  12566. </productMenu>
  12567. <productMenu id="musicSharing"
  12568. type="0" >
  12569. </productMenu>
  12570. <productMenu id="deviceSetting"
  12571. type="1"
  12572. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  12573. </productMenu>
  12574. <productMenu id="quickGuide"
  12575. type="1"
  12576. url=""
  12577. size="1.17MB" >
  12578. </productMenu>
  12579. <productMenu id="userGuide"
  12580. type="0"
  12581. url=""
  12582. size="2.0MB" >
  12583. </productMenu>
  12584. <productMenu id="videoGuide"
  12585. type="0"
  12586. url=""
  12587. size="3.41MB" >
  12588. </productMenu>
  12589. <productMenu id="volume"
  12590. type="12" >
  12591. </productMenu>
  12592. <productMenu id="battery"
  12593. type="1" >
  12594. </productMenu>
  12595. <productID id="685B"
  12596. />
  12597. <productGroupable type="0"
  12598. />
  12599. </product>
  12600. <product id="C30"
  12601. name="SENA C30"
  12602. series="C"
  12603. latestVersion="1.2.2"
  12604. latestVersionVoicePrompt="0.13"
  12605. show = "1" >
  12606. <productMenu id="protocol"
  12607. type="2" >
  12608. </productMenu>
  12609. <productMenu id="alexa"
  12610. type="0" >
  12611. </productMenu>
  12612. <productMenu id="ota"
  12613. type="2" >
  12614. <otaPackages>
  12615. <package
  12616. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.2-build0.img"
  12617. size="3144148"
  12618. />
  12619. </otaPackages>
  12620. </productMenu>
  12621. <productMenu id="wa"
  12622. type="0" >
  12623. </productMenu>
  12624. <productMenu id="meshIntercom"
  12625. type="30" >
  12626. </productMenu>
  12627. <productMenu id="meshIntercom+"
  12628. type="3"
  12629. url="2" >
  12630. <productMenuType version="1.0.9"
  12631. type="2"
  12632. />
  12633. </productMenu>
  12634. <productMenu id="waveIntercom"
  12635. type="1" >
  12636. <productMenuType version="1.1.9"
  12637. type="0"
  12638. />
  12639. </productMenu>
  12640. <productMenu id="phone"
  12641. type="1" >
  12642. </productMenu>
  12643. <productMenu id="music"
  12644. type="1" >
  12645. </productMenu>
  12646. <productMenu id="musicSharing"
  12647. type="0" >
  12648. </productMenu>
  12649. <productMenu id="deviceSetting"
  12650. type="1"
  12651. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  12652. <productMenuURL version="1.1.3"
  12653. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  12654. />
  12655. <productMenuURL version="1.0.9"
  12656. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  12657. />
  12658. </productMenu>
  12659. <productMenu id="quickGuide"
  12660. type="1"
  12661. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  12662. size="1.12MB" >
  12663. </productMenu>
  12664. <productMenu id="userGuide"
  12665. type="0"
  12666. url=""
  12667. size="2.0MB" >
  12668. </productMenu>
  12669. <productMenu id="videoGuide"
  12670. type="0"
  12671. url=""
  12672. size="3.41MB" >
  12673. </productMenu>
  12674. <productMenu id="volume"
  12675. type="12" >
  12676. </productMenu>
  12677. <productMenu id="battery"
  12678. type="1" >
  12679. </productMenu>
  12680. <productID id="683A"
  12681. />
  12682. <productGroupable type="0"
  12683. />
  12684. </product>
  12685. <product id="C20"
  12686. name="C20"
  12687. series="C"
  12688. latestVersion="1.0"
  12689. show = "1" >
  12690. <productMenu id="protocol"
  12691. type="3" >
  12692. </productMenu>
  12693. <productMenu id="sip"
  12694. type="1" >
  12695. </productMenu>
  12696. <productMenu id="bluetoothIntercom"
  12697. type="1" >
  12698. </productMenu>
  12699. <productMenu id="phone"
  12700. type="1" >
  12701. </productMenu>
  12702. <productMenu id="deviceSetting"
  12703. type="1"
  12704. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  12705. </productMenu>
  12706. <productMenu id="quickGuide"
  12707. type="1"
  12708. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  12709. size="934KB" >
  12710. </productMenu>
  12711. <productMenu id="userGuide"
  12712. type="1"
  12713. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  12714. size="1.14MB" >
  12715. </productMenu>
  12716. <productID id="3701"
  12717. />
  12718. <productGroupable type="0"
  12719. />
  12720. </product>
  12721. <product id="C10"
  12722. name="C10"
  12723. series="C"
  12724. latestVersion="1.4.4"
  12725. show = "1" >
  12726. <productMenu id="protocol"
  12727. type="3" >
  12728. </productMenu>
  12729. <productMenu id="sip"
  12730. type="1" >
  12731. </productMenu>
  12732. <productMenu id="bluetoothIntercom"
  12733. type="1" >
  12734. </productMenu>
  12735. <productMenu id="phone"
  12736. type="1" >
  12737. </productMenu>
  12738. <productMenu id="fmradio"
  12739. type="0" >
  12740. </productMenu>
  12741. <productMenu id="deviceSetting"
  12742. type="1"
  12743. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12744. </productMenu>
  12745. <productMenu id="userGuide"
  12746. type="1"
  12747. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  12748. size="1.14MB" >
  12749. </productMenu>
  12750. <productID id="5595"
  12751. />
  12752. <productGroupable type="0"
  12753. />
  12754. </product>
  12755. <product id="J30"
  12756. name="J30"
  12757. series="J"
  12758. latestVersion="1.2.2"
  12759. latestVersionVoicePrompt="0.14"
  12760. show = "0" >
  12761. <productMenu id="protocol"
  12762. type="2" >
  12763. </productMenu>
  12764. <productMenu id="alexa"
  12765. type="0" >
  12766. </productMenu>
  12767. <productMenu id="ota"
  12768. type="2" >
  12769. <otaPackages>
  12770. <package
  12771. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.2-build1.img"
  12772. size="3144148"
  12773. />
  12774. </otaPackages>
  12775. </productMenu>
  12776. <productMenu id="wa"
  12777. type="0" >
  12778. </productMenu>
  12779. <productMenu id="meshIntercom"
  12780. type="30" >
  12781. </productMenu>
  12782. <productMenu id="meshIntercom+"
  12783. type="3"
  12784. url="2" >
  12785. <productMenuType version="1.0.9"
  12786. type="2"
  12787. />
  12788. </productMenu>
  12789. <productMenu id="waveIntercom"
  12790. type="1" >
  12791. <productMenuType version="1.1.9"
  12792. type="0"
  12793. />
  12794. </productMenu>
  12795. <productMenu id="phone"
  12796. type="1" >
  12797. </productMenu>
  12798. <productMenu id="music"
  12799. type="1" >
  12800. </productMenu>
  12801. <productMenu id="musicSharing"
  12802. type="0" >
  12803. </productMenu>
  12804. <productMenu id="deviceSetting"
  12805. type="1"
  12806. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  12807. <productMenuURL version="1.0.9"
  12808. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  12809. />
  12810. </productMenu>
  12811. <productMenu id="quickGuide"
  12812. type="0"
  12813. url=""
  12814. size="1.12MB" >
  12815. </productMenu>
  12816. <productMenu id="userGuide"
  12817. type="1"
  12818. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  12819. size="2.0MB" >
  12820. </productMenu>
  12821. <productMenu id="videoGuide"
  12822. type="0"
  12823. url=""
  12824. size="3.41MB" >
  12825. </productMenu>
  12826. <productMenu id="volume"
  12827. type="12" >
  12828. </productMenu>
  12829. <productMenu id="battery"
  12830. type="1" >
  12831. </productMenu>
  12832. <productID id="6848"
  12833. />
  12834. <productGroupable type="0"
  12835. />
  12836. </product>
  12837. <product id="J10"
  12838. name="J10"
  12839. series="5"
  12840. latestVersion="1.1.4"
  12841. show = "0" >
  12842. <productMenu id="protocol"
  12843. type="3" >
  12844. </productMenu>
  12845. <productMenu id="sip"
  12846. type="1" >
  12847. </productMenu>
  12848. <productMenu id="bluetoothIntercom"
  12849. type="1" >
  12850. </productMenu>
  12851. <productMenu id="phone"
  12852. type="1" >
  12853. </productMenu>
  12854. <productMenu id="fmradio"
  12855. type="0" >
  12856. </productMenu>
  12857. <productMenu id="deviceSetting"
  12858. type="1"
  12859. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12860. </productMenu>
  12861. <productMenu id="userGuide"
  12862. type="1"
  12863. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  12864. size="1.14MB" >
  12865. </productMenu>
  12866. <productID id="5598"
  12867. />
  12868. <productGroupable type="0"
  12869. />
  12870. </product>
  12871. <product id="B20"
  12872. name="B20"
  12873. series="B"
  12874. latestVersion="1.1.2"
  12875. latestVersionVoicePrompt="0.14"
  12876. show = "0" >
  12877. <productMenu id="protocol"
  12878. type="2" >
  12879. </productMenu>
  12880. <productMenu id="alexa"
  12881. type="0" >
  12882. </productMenu>
  12883. <productMenu id="ota"
  12884. type="2" >
  12885. <otaPackages>
  12886. <package
  12887. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.2-build1.img"
  12888. size="3144148"
  12889. />
  12890. </otaPackages>
  12891. </productMenu>
  12892. <productMenu id="wa"
  12893. type="0" >
  12894. </productMenu>
  12895. <productMenu id="meshIntercom"
  12896. type="30" >
  12897. </productMenu>
  12898. <productMenu id="phone"
  12899. type="1" >
  12900. </productMenu>
  12901. <productMenu id="music"
  12902. type="1" >
  12903. </productMenu>
  12904. <productMenu id="musicSharing"
  12905. type="0" >
  12906. </productMenu>
  12907. <productMenu id="deviceSetting"
  12908. type="1"
  12909. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  12910. <productMenuURL version="1.0.9"
  12911. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  12912. />
  12913. </productMenu>
  12914. <productMenu id="quickGuide"
  12915. type="0"
  12916. url=""
  12917. size="1.12MB" >
  12918. </productMenu>
  12919. <productMenu id="userGuide"
  12920. type="1"
  12921. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  12922. size="2.0MB" >
  12923. </productMenu>
  12924. <productMenu id="videoGuide"
  12925. type="0"
  12926. url=""
  12927. size="3.41MB" >
  12928. </productMenu>
  12929. <productMenu id="volume"
  12930. type="12" >
  12931. </productMenu>
  12932. <productMenu id="battery"
  12933. type="1" >
  12934. </productMenu>
  12935. <productID id="6847"
  12936. />
  12937. <productGroupable type="0"
  12938. />
  12939. </product>
  12940. <product id="B10"
  12941. name="B10"
  12942. series="5"
  12943. latestVersion="1.2.4"
  12944. show = "0" >
  12945. <productMenu id="protocol"
  12946. type="3" >
  12947. </productMenu>
  12948. <productMenu id="sip"
  12949. type="1" >
  12950. </productMenu>
  12951. <productMenu id="bluetoothIntercom"
  12952. type="1" >
  12953. </productMenu>
  12954. <productMenu id="phone"
  12955. type="1" >
  12956. </productMenu>
  12957. <productMenu id="fmradio"
  12958. type="0" >
  12959. </productMenu>
  12960. <productMenu id="deviceSetting"
  12961. type="1"
  12962. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  12963. </productMenu>
  12964. <productMenu id="userGuide"
  12965. type="1"
  12966. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  12967. size="1.14MB" >
  12968. </productMenu>
  12969. <productID id="5596"
  12970. />
  12971. <productGroupable type="0"
  12972. />
  12973. </product>
  12974. <product id="E30"
  12975. name="E30"
  12976. series="E"
  12977. latestVersion="1.1.2"
  12978. latestVersionVoicePrompt="0.14"
  12979. show = "0" >
  12980. <productMenu id="protocol"
  12981. type="2" >
  12982. </productMenu>
  12983. <productMenu id="alexa"
  12984. type="0" >
  12985. </productMenu>
  12986. <productMenu id="ota"
  12987. type="2" >
  12988. <otaPackages>
  12989. <package
  12990. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.2-build1.img"
  12991. size="3144148"
  12992. />
  12993. </otaPackages>
  12994. </productMenu>
  12995. <productMenu id="wa"
  12996. type="0" >
  12997. </productMenu>
  12998. <productMenu id="meshIntercom"
  12999. type="30" >
  13000. </productMenu>
  13001. <productMenu id="meshIntercom+"
  13002. type="3"
  13003. url="2" >
  13004. </productMenu>
  13005. <productMenu id="waveIntercom"
  13006. type="1" >
  13007. <productMenuType version="1.0.9"
  13008. type="0"
  13009. />
  13010. </productMenu>
  13011. <productMenu id="phone"
  13012. type="1" >
  13013. </productMenu>
  13014. <productMenu id="music"
  13015. type="1" >
  13016. </productMenu>
  13017. <productMenu id="musicSharing"
  13018. type="0" >
  13019. </productMenu>
  13020. <productMenu id="deviceSetting"
  13021. type="1"
  13022. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  13023. </productMenu>
  13024. <productMenu id="quickGuide"
  13025. type="0"
  13026. url=""
  13027. size="1.12MB" >
  13028. </productMenu>
  13029. <productMenu id="userGuide"
  13030. type="1"
  13031. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  13032. size="2.0MB" >
  13033. </productMenu>
  13034. <productMenu id="videoGuide"
  13035. type="0"
  13036. url=""
  13037. size="3.41MB" >
  13038. </productMenu>
  13039. <productMenu id="volume"
  13040. type="12" >
  13041. </productMenu>
  13042. <productMenu id="battery"
  13043. type="1" >
  13044. </productMenu>
  13045. <productID id="6846"
  13046. />
  13047. <productGroupable type="0"
  13048. />
  13049. </product>
  13050. <product id="ACSRAM"
  13051. name="ACS-RAM"
  13052. series="ACS"
  13053. latestVersion="1.0.5"
  13054. show = "1" >
  13055. <productMenu id="protocol"
  13056. type="3" >
  13057. </productMenu>
  13058. <productMenu id="sip"
  13059. type="1" >
  13060. </productMenu>
  13061. <productMenu id="bluetoothIntercom"
  13062. type="1" >
  13063. </productMenu>
  13064. <productMenu id="deviceSetting"
  13065. type="1"
  13066. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  13067. </productMenu>
  13068. <productMenu id="quickGuide"
  13069. type="1"
  13070. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  13071. size="344KB" >
  13072. </productMenu>
  13073. <productMenu id="userGuide"
  13074. type="1"
  13075. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  13076. size="1.14MB" >
  13077. </productMenu>
  13078. <productMenu id="connectGuide"
  13079. type="1"
  13080. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  13081. size="1.12MB" >
  13082. </productMenu>
  13083. <productID id="3400"
  13084. />
  13085. <productGroupable type="0"
  13086. />
  13087. </product>
  13088. <product id="ACS10"
  13089. name="ACS10"
  13090. series="ACS"
  13091. latestVersion="1.0.2"
  13092. show = "1" >
  13093. <productMenu id="protocol"
  13094. type="0">
  13095. </productMenu>
  13096. <productMenu id="sip"
  13097. type="1" >
  13098. </productMenu>
  13099. <productMenu id="bluetoothIntercom"
  13100. type="1" >
  13101. </productMenu>
  13102. <productMenu id="phone"
  13103. type="2" >
  13104. </productMenu>
  13105. <productMenu id="deviceSetting"
  13106. type="1"
  13107. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  13108. </productMenu>
  13109. <productMenu id="quickGuide"
  13110. type="1"
  13111. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  13112. size="970KB" >
  13113. </productMenu>
  13114. <productMenu id="userGuide"
  13115. type="1"
  13116. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  13117. size="1.26MB" >
  13118. </productMenu>
  13119. <productMenu id="connectGuide"
  13120. type="1"
  13121. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  13122. size="1.12MB" >
  13123. </productMenu>
  13124. <productID id="3300"
  13125. />
  13126. <productGroupable type="0"
  13127. />
  13128. </product>
  13129. <product id="DWO7ProMesh"
  13130. name="DWO 7 Pro Mesh"
  13131. series="50"
  13132. latestVersion="1.1"
  13133. latestVersionVoicePrompt="0.9"
  13134. show = "0" >
  13135. <productMenu id="protocol"
  13136. type="2" >
  13137. </productMenu>
  13138. <productMenu id="alexa"
  13139. type="0" >
  13140. </productMenu>
  13141. <productMenu id="ota"
  13142. type="2" >
  13143. <otaPackages>
  13144. <package
  13145. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  13146. size="2945812"
  13147. />
  13148. </otaPackages>
  13149. </productMenu>
  13150. <productMenu id="wa"
  13151. type="0" >
  13152. </productMenu>
  13153. <productMenu id="meshIntercom"
  13154. type="20" >
  13155. </productMenu>
  13156. <productMenu id="meshIntercom+"
  13157. type="3"
  13158. url="2" >
  13159. <productMenuType version="1.0.9"
  13160. type="2"
  13161. />
  13162. <productMenuURL version="2.1.1"
  13163. url="0"
  13164. />
  13165. </productMenu>
  13166. <productMenu id="waveIntercom"
  13167. type="1" >
  13168. <productMenuType version="1.0.9"
  13169. type="0"
  13170. />
  13171. </productMenu>
  13172. <productMenu id="phone"
  13173. type="1" >
  13174. </productMenu>
  13175. <productMenu id="music"
  13176. type="1" >
  13177. </productMenu>
  13178. <productMenu id="fmradio"
  13179. type="1" >
  13180. </productMenu>
  13181. <productMenu id="musicSharing"
  13182. type="0" >
  13183. </productMenu>
  13184. <productMenu id="deviceSetting"
  13185. type="1"
  13186. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  13187. <productMenuURL version="1.0.9"
  13188. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  13189. />
  13190. </productMenu>
  13191. <productMenu id="quickGuide"
  13192. type="1"
  13193. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13194. size="1.12MB" >
  13195. </productMenu>
  13196. <productMenu id="userGuide"
  13197. type="1"
  13198. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13199. size="2.0MB" >
  13200. </productMenu>
  13201. <productMenu id="volume"
  13202. type="12" >
  13203. </productMenu>
  13204. <productMenu id="battery"
  13205. type="1" >
  13206. </productMenu>
  13207. <productID id="6806"
  13208. />
  13209. <productGroupable type="0"
  13210. />
  13211. </product>
  13212. <product id="ERA1X"
  13213. name="ERA 1 X"
  13214. series="UCOM"
  13215. latestVersion="0.2.1"
  13216. latestVersionMesh="0.19"
  13217. latestVersionVoicePrompt="1.2"
  13218. show = "-1" >
  13219. <productMenu id="protocol"
  13220. type="2" >
  13221. </productMenu>
  13222. <productMenu id="ota"
  13223. type="2" >
  13224. <otaLanguages>
  13225. <otaLanguage
  13226. id="0"
  13227. name="English"
  13228. package="0"
  13229. />
  13230. <otaLanguage
  13231. id="0"
  13232. name="French"
  13233. package="1"
  13234. />
  13235. <otaLanguage
  13236. id="0"
  13237. name="Spanish"
  13238. package="2"
  13239. />
  13240. <otaLanguage
  13241. id="0"
  13242. name="Italian"
  13243. package="3"
  13244. />
  13245. <otaLanguage
  13246. id="0"
  13247. name="German"
  13248. package="4"
  13249. />
  13250. <otaLanguage
  13251. id="0"
  13252. name="Dutch"
  13253. package="5"
  13254. />
  13255. <otaLanguage
  13256. id="0"
  13257. name="Russian"
  13258. package="6"
  13259. />
  13260. <otaLanguage
  13261. id="0"
  13262. name="Chinese"
  13263. package="7"
  13264. />
  13265. <otaLanguage
  13266. id="0"
  13267. name="Korean"
  13268. package="8"
  13269. />
  13270. <otaLanguage
  13271. id="0"
  13272. name="Japanese"
  13273. package="9"
  13274. />
  13275. <otaLanguage
  13276. id="0"
  13277. name="Finnish"
  13278. package="10"
  13279. />
  13280. <otaLanguage
  13281. id="0"
  13282. name="Polish"
  13283. package="11"
  13284. />
  13285. <otaLanguage
  13286. id="0"
  13287. name="Czech"
  13288. package="12"
  13289. />
  13290. <otaLanguage
  13291. id="0"
  13292. name="Danish"
  13293. package="13"
  13294. />
  13295. <otaLanguage
  13296. id="0"
  13297. name="Norwegian"
  13298. package="14"
  13299. />
  13300. <otaLanguage
  13301. id="0"
  13302. name="Swedish"
  13303. package="15"
  13304. />
  13305. <otaLanguage
  13306. id="0"
  13307. name="Turkish"
  13308. package="16"
  13309. />
  13310. <otaLanguage
  13311. id="0"
  13312. name="Hungarian"
  13313. package="17"
  13314. />
  13315. <otaLanguage
  13316. id="0"
  13317. name="Portuguese"
  13318. package="18"
  13319. />
  13320. <otaLanguage
  13321. id="0"
  13322. name="Hebrew"
  13323. package="19"
  13324. />
  13325. <otaLanguage
  13326. id="0"
  13327. name="Greek"
  13328. package="20"
  13329. />
  13330. </otaLanguages>
  13331. <otaPackages>
  13332. <package
  13333. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13334. size="5183988"
  13335. />
  13336. <package
  13337. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13338. size="5183988"
  13339. />
  13340. <package
  13341. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13342. size="5183988"
  13343. />
  13344. <package
  13345. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13346. size="5183988"
  13347. />
  13348. <package
  13349. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13350. size="5183988"
  13351. />
  13352. <package
  13353. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13354. size="5183988"
  13355. />
  13356. <package
  13357. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13358. size="5183988"
  13359. />
  13360. <package
  13361. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13362. size="5183988"
  13363. />
  13364. <package
  13365. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13366. size="5183988"
  13367. />
  13368. <package
  13369. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13370. size="5183988"
  13371. />
  13372. <package
  13373. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13374. size="5183988"
  13375. />
  13376. <package
  13377. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13378. size="5183988"
  13379. />
  13380. <package
  13381. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13382. size="5183988"
  13383. />
  13384. <package
  13385. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13386. size="5183988"
  13387. />
  13388. <package
  13389. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13390. size="5183988"
  13391. />
  13392. <package
  13393. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13394. size="5183988"
  13395. />
  13396. <package
  13397. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13398. size="5183988"
  13399. />
  13400. <package
  13401. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13402. size="5183988"
  13403. />
  13404. <package
  13405. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13406. size="5183988"
  13407. />
  13408. <package
  13409. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13410. size="5183988"
  13411. />
  13412. <package
  13413. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13414. size="5183988"
  13415. />
  13416. </otaPackages>
  13417. </productMenu>
  13418. <productMenu id="wa"
  13419. type="0" >
  13420. </productMenu>
  13421. <productMenu id="sip"
  13422. type="1" >
  13423. </productMenu>
  13424. <productMenu id="led"
  13425. type="0" >
  13426. </productMenu>
  13427. <productMenu id="illusion"
  13428. type="1" >
  13429. </productMenu>
  13430. <productMenu id="meshIntercom"
  13431. type="30" >
  13432. </productMenu>
  13433. <productMenu id="meshIntercom+"
  13434. type="3"
  13435. url="2" >
  13436. </productMenu>
  13437. <productMenu id="waveIntercom"
  13438. type="0" >
  13439. </productMenu>
  13440. <productMenu id="bluetoothIntercom"
  13441. type="1" >
  13442. </productMenu>
  13443. <productMenu id="bluetoothIntercomGrouping"
  13444. type="0" >
  13445. </productMenu>
  13446. <productMenu id="fmradio"
  13447. type="1"
  13448. url="1" >
  13449. </productMenu>
  13450. <productMenu id="phone"
  13451. type="1" >
  13452. </productMenu>
  13453. <productMenu id="music"
  13454. type="1" >
  13455. </productMenu>
  13456. <productMenu id="musicSharing"
  13457. type="0" >
  13458. </productMenu>
  13459. <productMenu id="deviceSetting"
  13460. type="1"
  13461. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  13462. </productMenu>
  13463. <productMenu id="quickGuide"
  13464. type="0"
  13465. url=""
  13466. size="1.12MB" >
  13467. </productMenu>
  13468. <productMenu id="userGuide"
  13469. type="1"
  13470. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  13471. size="2.0MB" >
  13472. </productMenu>
  13473. <productMenu id="videoGuide"
  13474. type="0"
  13475. url=""
  13476. size="3.41MB" >
  13477. </productMenu>
  13478. <productMenu id="volume"
  13479. type="16" >
  13480. </productMenu>
  13481. <productMenu id="soundMode"
  13482. type="1" >
  13483. </productMenu>
  13484. <productMenu id="battery"
  13485. type="1" >
  13486. </productMenu>
  13487. <productID id="6A83"
  13488. />
  13489. <productGroupable type="0"
  13490. />
  13491. </product>
  13492. <product id="MeshStation"
  13493. name="Mesh Station"
  13494. series="50"
  13495. latestVersion="0.9"
  13496. show = "-1" >
  13497. <productMenu id="protocol"
  13498. type="2" >
  13499. </productMenu>
  13500. <productMenu id="meshIntercom"
  13501. type="20"
  13502. url="99" >
  13503. </productMenu>
  13504. <productID id="3161"
  13505. />
  13506. <productGroupable type="0"
  13507. />
  13508. </product>
  13509. </products>
  13510. </sna>