snm.xml 476 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260100" 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="ota"
  1009. type="2" >
  1010. <otaLanguages>
  1011. <otaLanguage
  1012. id="0"
  1013. name="English"
  1014. package="0"
  1015. />
  1016. <otaLanguage
  1017. id="0"
  1018. name="French"
  1019. package="1"
  1020. />
  1021. <otaLanguage
  1022. id="0"
  1023. name="Spanish"
  1024. package="2"
  1025. />
  1026. <otaLanguage
  1027. id="0"
  1028. name="Italian"
  1029. package="3"
  1030. />
  1031. <otaLanguage
  1032. id="0"
  1033. name="German"
  1034. package="4"
  1035. />
  1036. <otaLanguage
  1037. id="0"
  1038. name="Dutch"
  1039. package="5"
  1040. />
  1041. <otaLanguage
  1042. id="0"
  1043. name="Russian"
  1044. package="6"
  1045. />
  1046. <otaLanguage
  1047. id="0"
  1048. name="Chinese"
  1049. package="7"
  1050. />
  1051. <otaLanguage
  1052. id="0"
  1053. name="Korean"
  1054. package="8"
  1055. />
  1056. <otaLanguage
  1057. id="0"
  1058. name="Japanese"
  1059. package="9"
  1060. />
  1061. <otaLanguage
  1062. id="0"
  1063. name="Finnish"
  1064. package="10"
  1065. />
  1066. <otaLanguage
  1067. id="0"
  1068. name="Polish"
  1069. package="11"
  1070. />
  1071. </otaLanguages>
  1072. <otaPackages>
  1073. <package
  1074. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5.img"
  1075. size="5183988"
  1076. />
  1077. <package
  1078. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fr-FR.img"
  1079. size="5183988"
  1080. />
  1081. <package
  1082. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-es-ES.img"
  1083. size="5183988"
  1084. />
  1085. <package
  1086. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-it-IT.img"
  1087. size="5183988"
  1088. />
  1089. <package
  1090. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-de-DE.img"
  1091. size="5183988"
  1092. />
  1093. <package
  1094. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-nl-NL.img"
  1095. size="5183988"
  1096. />
  1097. <package
  1098. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ru-RU.img"
  1099. size="5183988"
  1100. />
  1101. <package
  1102. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-cmn-CN.img"
  1103. size="5183988"
  1104. />
  1105. <package
  1106. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ko-KR.img"
  1107. size="5183988"
  1108. />
  1109. <package
  1110. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ja-JP.img"
  1111. size="5183988"
  1112. />
  1113. <package
  1114. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fi-FI.img"
  1115. size="5183988"
  1116. />
  1117. <package
  1118. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-pl-PL.img"
  1119. size="5183988"
  1120. />
  1121. </otaPackages>
  1122. </productMenu>
  1123. <productMenu id="wa"
  1124. type="0" >
  1125. </productMenu>
  1126. <productMenu id="sip"
  1127. type="1" >
  1128. </productMenu>
  1129. <productMenu id="led"
  1130. type="1" >
  1131. </productMenu>
  1132. <productMenu id="illusion"
  1133. type="1" >
  1134. </productMenu>
  1135. <productMenu id="meshIntercom"
  1136. type="30" >
  1137. </productMenu>
  1138. <productMenu id="meshIntercom+"
  1139. type="3"
  1140. url="2" >
  1141. </productMenu>
  1142. <productMenu id="bluetoothIntercom"
  1143. type="1" >
  1144. </productMenu>
  1145. <productMenu id="fmradio"
  1146. type="1"
  1147. url="1" >
  1148. </productMenu>
  1149. <productMenu id="mic"
  1150. type="0" >
  1151. </productMenu>
  1152. <productMenu id="phone"
  1153. type="1" >
  1154. </productMenu>
  1155. <productMenu id="music"
  1156. type="1" >
  1157. </productMenu>
  1158. <productMenu id="musicSharing"
  1159. type="0" >
  1160. </productMenu>
  1161. <productMenu id="deviceSetting"
  1162. type="1"
  1163. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1164. </productMenu>
  1165. <productMenu id="quickGuide"
  1166. type="0"
  1167. url=""
  1168. size="1.12MB" >
  1169. </productMenu>
  1170. <productMenu id="userGuide"
  1171. type="0"
  1172. url=""
  1173. size="2.0MB" >
  1174. </productMenu>
  1175. <productMenu id="videoGuide"
  1176. type="0"
  1177. url=""
  1178. size="3.41MB" >
  1179. </productMenu>
  1180. <productMenu id="keySettings"
  1181. type="1"
  1182. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1183. </productMenu>
  1184. <productMenu id="volume"
  1185. type="13" >
  1186. </productMenu>
  1187. <productMenu id="volume+"
  1188. type="2"
  1189. url="0x6004" >
  1190. </productMenu>
  1191. <productMenu id="appearance"
  1192. type="1"
  1193. url="1|white,silver,black,glossy_black" >
  1194. </productMenu>
  1195. <productMenu id="battery"
  1196. type="1" >
  1197. </productMenu>
  1198. <productID id="6A03"
  1199. />
  1200. <productGroupable type="0"
  1201. />
  1202. </product>
  1203. <product id="R35"
  1204. name="R35"
  1205. series="R"
  1206. latestVersion="1.1.1"
  1207. latestVersionVoicePrompt="1.5"
  1208. show = "1" >
  1209. <productMenu id="protocol"
  1210. type="2" >
  1211. </productMenu>
  1212. <productMenu id="ota"
  1213. type="2" >
  1214. <otaLanguages>
  1215. <otaLanguage
  1216. id="0"
  1217. name="English"
  1218. package="0"
  1219. />
  1220. <otaLanguage
  1221. id="0"
  1222. name="Chinese"
  1223. package="1"
  1224. />
  1225. <otaLanguage
  1226. id="0"
  1227. name="Chinese Singapore"
  1228. package="2"
  1229. />
  1230. <otaLanguage
  1231. id="0"
  1232. name="Filipino"
  1233. package="3"
  1234. />
  1235. <otaLanguage
  1236. id="0"
  1237. name="Hebrew"
  1238. package="4"
  1239. />
  1240. <otaLanguage
  1241. id="0"
  1242. name="Hindi"
  1243. package="5"
  1244. />
  1245. <otaLanguage
  1246. id="0"
  1247. name="Indonesian"
  1248. package="6"
  1249. />
  1250. <otaLanguage
  1251. id="0"
  1252. name="Japanese"
  1253. package="7"
  1254. />
  1255. <otaLanguage
  1256. id="0"
  1257. name="Korean"
  1258. package="8"
  1259. />
  1260. <otaLanguage
  1261. id="0"
  1262. name="Malay"
  1263. package="9"
  1264. />
  1265. <otaLanguage
  1266. id="0"
  1267. name="Modern Standard Arabic"
  1268. package="10"
  1269. />
  1270. <otaLanguage
  1271. id="0"
  1272. name="Taiwanese"
  1273. package="11"
  1274. />
  1275. <otaLanguage
  1276. id="0"
  1277. name="Tamil"
  1278. package="12"
  1279. />
  1280. <otaLanguage
  1281. id="0"
  1282. name="Thai"
  1283. package="13"
  1284. />
  1285. <otaLanguage
  1286. id="0"
  1287. name="东北话"
  1288. package="14"
  1289. />
  1290. <otaLanguage
  1291. id="0"
  1292. name="广东话"
  1293. package="15"
  1294. />
  1295. <otaLanguage
  1296. id="0"
  1297. name="江浙沪"
  1298. package="16"
  1299. />
  1300. <otaLanguage
  1301. id="0"
  1302. name="四川话"
  1303. package="17"
  1304. />
  1305. <otaLanguage
  1306. id="0"
  1307. name="陕西话"
  1308. package="18"
  1309. />
  1310. </otaLanguages>
  1311. <otaPackages>
  1312. <package
  1313. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0.img"
  1314. size="5183988"
  1315. />
  1316. <package
  1317. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-CN.img"
  1318. size="5183988"
  1319. />
  1320. <package
  1321. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-SG.img"
  1322. size="5183988"
  1323. />
  1324. <package
  1325. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-tl-PH.img"
  1326. size="5183988"
  1327. />
  1328. <package
  1329. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-he-IL.img"
  1330. size="5183988"
  1331. />
  1332. <package
  1333. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-hi-IN.img"
  1334. size="5183988"
  1335. />
  1336. <package
  1337. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-id-ID.img"
  1338. size="5183988"
  1339. />
  1340. <package
  1341. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ja-JP.img"
  1342. size="5183988"
  1343. />
  1344. <package
  1345. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ko-KR.img"
  1346. size="5183988"
  1347. />
  1348. <package
  1349. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ms-MY.img"
  1350. size="5183988"
  1351. />
  1352. <package
  1353. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ar-XA.img"
  1354. size="5183988"
  1355. />
  1356. <package
  1357. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-nan-TW.img"
  1358. size="5183988"
  1359. />
  1360. <package
  1361. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ta-IN.img"
  1362. size="5183988"
  1363. />
  1364. <package
  1365. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-th-TH.img"
  1366. size="5183988"
  1367. />
  1368. <package
  1369. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zdb-CN.img"
  1370. size="5183988"
  1371. />
  1372. <package
  1373. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-yue-CN.img"
  1374. size="5183988"
  1375. />
  1376. <package
  1377. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-wuu-CN.img"
  1378. size="5183988"
  1379. />
  1380. <package
  1381. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsc-CN.img"
  1382. size="5183988"
  1383. />
  1384. <package
  1385. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsn-CN.img"
  1386. size="5183988"
  1387. />
  1388. </otaPackages>
  1389. </productMenu>
  1390. <productMenu id="sip"
  1391. type="1" >
  1392. </productMenu>
  1393. <productMenu id="illusion"
  1394. type="1" >
  1395. </productMenu>
  1396. <productMenu id="meshIntercom"
  1397. type="30" >
  1398. </productMenu>
  1399. <productMenu id="meshIntercom+"
  1400. type="3"
  1401. url="2" >
  1402. </productMenu>
  1403. <productMenu id="waveIntercom"
  1404. type="1" >
  1405. </productMenu>
  1406. <productMenu id="phone"
  1407. type="1" >
  1408. </productMenu>
  1409. <productMenu id="music"
  1410. type="1" >
  1411. </productMenu>
  1412. <productMenu id="musicSharing"
  1413. type="0" >
  1414. </productMenu>
  1415. <productMenu id="deviceSetting"
  1416. type="1"
  1417. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml" >
  1418. <productMenuURL version="1.0.3"
  1419. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1420. />
  1421. </productMenu>
  1422. <productMenu id="quickGuide"
  1423. type="0"
  1424. url=""
  1425. size="1.12MB" >
  1426. </productMenu>
  1427. <productMenu id="userGuide"
  1428. type="1"
  1429. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1430. size="2.0MB" >
  1431. </productMenu>
  1432. <productMenu id="videoGuide"
  1433. type="0"
  1434. url=""
  1435. size="3.41MB" >
  1436. </productMenu>
  1437. <productMenu id="connectGuide"
  1438. type="0"
  1439. url=""
  1440. size="1.12MB" >
  1441. </productMenu>
  1442. <productMenu id="volume"
  1443. type="16" >
  1444. </productMenu>
  1445. <productMenu id="volume+"
  1446. type="2"
  1447. url="0x6004" >
  1448. </productMenu>
  1449. <productMenu id="soundMode"
  1450. type="0" >
  1451. </productMenu>
  1452. <productMenu id="appearance"
  1453. type="1"
  1454. url="1|white,silver,chrome,black" >
  1455. </productMenu>
  1456. <productMenu id="battery"
  1457. type="1" >
  1458. </productMenu>
  1459. <productID id="6A06"
  1460. />
  1461. <productGroupable type="0"
  1462. />
  1463. </product>
  1464. <product id="COM60X"
  1465. name="BMW MOTORRAD COM 60X"
  1466. series="60"
  1467. latestVersion="1.0"
  1468. latestVersionMesh="0.19"
  1469. latestVersionVoicePrompt="1.7"
  1470. show = "-1" >
  1471. <productMenu id="protocol"
  1472. type="2" >
  1473. </productMenu>
  1474. <productMenu id="ota"
  1475. type="0" >
  1476. <otaLanguages>
  1477. <otaLanguage
  1478. id="0"
  1479. name="English"
  1480. package="0"
  1481. />
  1482. <otaLanguage
  1483. id="0"
  1484. name="French"
  1485. package="1"
  1486. />
  1487. <otaLanguage
  1488. id="0"
  1489. name="Spanish"
  1490. package="2"
  1491. />
  1492. <otaLanguage
  1493. id="0"
  1494. name="Italian"
  1495. package="3"
  1496. />
  1497. <otaLanguage
  1498. id="0"
  1499. name="German"
  1500. package="4"
  1501. />
  1502. <otaLanguage
  1503. id="0"
  1504. name="Dutch"
  1505. package="5"
  1506. />
  1507. <otaLanguage
  1508. id="0"
  1509. name="Russian"
  1510. package="6"
  1511. />
  1512. <otaLanguage
  1513. id="0"
  1514. name="Chinese"
  1515. package="7"
  1516. />
  1517. <otaLanguage
  1518. id="0"
  1519. name="Korean"
  1520. package="8"
  1521. />
  1522. <otaLanguage
  1523. id="0"
  1524. name="Japanese"
  1525. package="9"
  1526. />
  1527. <otaLanguage
  1528. id="0"
  1529. name="Finnish"
  1530. package="10"
  1531. />
  1532. <otaLanguage
  1533. id="0"
  1534. name="Polish"
  1535. package="11"
  1536. />
  1537. </otaLanguages>
  1538. <otaPackages>
  1539. <package
  1540. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5.img"
  1541. size="5183988"
  1542. />
  1543. <package
  1544. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fr-FR.img"
  1545. size="5183988"
  1546. />
  1547. <package
  1548. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-es-ES.img"
  1549. size="5183988"
  1550. />
  1551. <package
  1552. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-it-IT.img"
  1553. size="5183988"
  1554. />
  1555. <package
  1556. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-de-DE.img"
  1557. size="5183988"
  1558. />
  1559. <package
  1560. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-nl-NL.img"
  1561. size="5183988"
  1562. />
  1563. <package
  1564. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ru-RU.img"
  1565. size="5183988"
  1566. />
  1567. <package
  1568. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-cmn-CN.img"
  1569. size="5183988"
  1570. />
  1571. <package
  1572. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ko-KR.img"
  1573. size="5183988"
  1574. />
  1575. <package
  1576. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ja-JP.img"
  1577. size="5183988"
  1578. />
  1579. <package
  1580. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fi-FI.img"
  1581. size="5183988"
  1582. />
  1583. <package
  1584. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-pl-PL.img"
  1585. size="5183988"
  1586. />
  1587. </otaPackages>
  1588. </productMenu>
  1589. <productMenu id="wa"
  1590. type="0" >
  1591. </productMenu>
  1592. <productMenu id="sip"
  1593. type="1" >
  1594. </productMenu>
  1595. <productMenu id="led"
  1596. type="1" >
  1597. </productMenu>
  1598. <productMenu id="illusion"
  1599. type="1" >
  1600. </productMenu>
  1601. <productMenu id="meshIntercom"
  1602. type="30" >
  1603. </productMenu>
  1604. <productMenu id="meshIntercom+"
  1605. type="3"
  1606. url="2" >
  1607. </productMenu>
  1608. <productMenu id="bluetoothIntercom"
  1609. type="1" >
  1610. </productMenu>
  1611. <productMenu id="fmradio"
  1612. type="1"
  1613. url="1" >
  1614. </productMenu>
  1615. <productMenu id="mic"
  1616. type="0" >
  1617. </productMenu>
  1618. <productMenu id="phone"
  1619. type="1" >
  1620. </productMenu>
  1621. <productMenu id="music"
  1622. type="1" >
  1623. </productMenu>
  1624. <productMenu id="musicSharing"
  1625. type="0" >
  1626. </productMenu>
  1627. <productMenu id="deviceSetting"
  1628. type="1"
  1629. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1630. </productMenu>
  1631. <productMenu id="quickGuide"
  1632. type="0"
  1633. url=""
  1634. size="1.12MB" >
  1635. </productMenu>
  1636. <productMenu id="userGuide"
  1637. type="1"
  1638. url=""
  1639. size="2.0MB" >
  1640. </productMenu>
  1641. <productMenu id="videoGuide"
  1642. type="0"
  1643. url=""
  1644. size="3.41MB" >
  1645. </productMenu>
  1646. <productMenu id="keySettings"
  1647. type="1"
  1648. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1649. </productMenu>
  1650. <productMenu id="volume"
  1651. type="13" >
  1652. </productMenu>
  1653. <productMenu id="volume+"
  1654. type="2"
  1655. url="0x6004" >
  1656. </productMenu>
  1657. <productMenu id="battery"
  1658. type="1" >
  1659. </productMenu>
  1660. <productID id="6A1B"
  1661. />
  1662. <productGroupable type="0"
  1663. />
  1664. </product>
  1665. <product id="COMP1"
  1666. name="BMW COM P1"
  1667. series="60"
  1668. latestVersion="1.2"
  1669. latestVersionMesh="0.19"
  1670. latestVersionVoicePrompt="1.0"
  1671. show = "-1" >
  1672. <productMenu id="protocol"
  1673. type="2" >
  1674. </productMenu>
  1675. <productMenu id="ota"
  1676. type="2" >
  1677. <otaLanguages>
  1678. <otaLanguage
  1679. id="0"
  1680. name="English"
  1681. package="0"
  1682. />
  1683. <otaLanguage
  1684. id="0"
  1685. name="French"
  1686. package="1"
  1687. />
  1688. <otaLanguage
  1689. id="0"
  1690. name="Spanish"
  1691. package="2"
  1692. />
  1693. <otaLanguage
  1694. id="0"
  1695. name="Italian"
  1696. package="3"
  1697. />
  1698. <otaLanguage
  1699. id="0"
  1700. name="German"
  1701. package="4"
  1702. />
  1703. <otaLanguage
  1704. id="0"
  1705. name="Dutch"
  1706. package="5"
  1707. />
  1708. <otaLanguage
  1709. id="0"
  1710. name="Russian"
  1711. package="6"
  1712. />
  1713. <otaLanguage
  1714. id="0"
  1715. name="Chinese"
  1716. package="7"
  1717. />
  1718. <otaLanguage
  1719. id="0"
  1720. name="Korean"
  1721. package="8"
  1722. />
  1723. <otaLanguage
  1724. id="0"
  1725. name="Japanese"
  1726. package="9"
  1727. />
  1728. <otaLanguage
  1729. id="0"
  1730. name="Finnish"
  1731. package="10"
  1732. />
  1733. </otaLanguages>
  1734. <otaPackages>
  1735. <package
  1736. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0.img"
  1737. size="5183988"
  1738. />
  1739. <package
  1740. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fr-FR.img"
  1741. size="5183988"
  1742. />
  1743. <package
  1744. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-es-ES.img"
  1745. size="5183988"
  1746. />
  1747. <package
  1748. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-it-IT.img"
  1749. size="5183988"
  1750. />
  1751. <package
  1752. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-de-DE.img"
  1753. size="5183988"
  1754. />
  1755. <package
  1756. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-nl-NL.img"
  1757. size="5183988"
  1758. />
  1759. <package
  1760. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ru-RU.img"
  1761. size="5183988"
  1762. />
  1763. <package
  1764. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-cmn-CN.img"
  1765. size="5183988"
  1766. />
  1767. <package
  1768. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ko-KR.img"
  1769. size="5183988"
  1770. />
  1771. <package
  1772. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ja-JP.img"
  1773. size="5183988"
  1774. />
  1775. <package
  1776. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fi-FI.img"
  1777. size="5183988"
  1778. />
  1779. </otaPackages>
  1780. </productMenu>
  1781. <productMenu id="wa"
  1782. type="0" >
  1783. </productMenu>
  1784. <productMenu id="sip"
  1785. type="1" >
  1786. </productMenu>
  1787. <productMenu id="led"
  1788. type="0" >
  1789. </productMenu>
  1790. <productMenu id="illusion"
  1791. type="0" >
  1792. </productMenu>
  1793. <productMenu id="meshIntercom"
  1794. type="30" >
  1795. </productMenu>
  1796. <productMenu id="bluetoothIntercom"
  1797. type="1" >
  1798. </productMenu>
  1799. <productMenu id="bluetoothIntercomGrouping"
  1800. type="0" >
  1801. </productMenu>
  1802. <productMenu id="fmradio"
  1803. type="0" >
  1804. </productMenu>
  1805. <productMenu id="phone"
  1806. type="1" >
  1807. </productMenu>
  1808. <productMenu id="music"
  1809. type="1" >
  1810. </productMenu>
  1811. <productMenu id="musicSharing"
  1812. type="0" >
  1813. </productMenu>
  1814. <productMenu id="deviceSetting"
  1815. type="1"
  1816. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1817. </productMenu>
  1818. <productMenu id="quickGuide"
  1819. type="0"
  1820. url=""
  1821. size="1.12MB" >
  1822. </productMenu>
  1823. <productMenu id="userGuide"
  1824. type="0"
  1825. url=""
  1826. size="2.0MB" >
  1827. </productMenu>
  1828. <productMenu id="videoGuide"
  1829. type="0"
  1830. url=""
  1831. size="3.41MB" >
  1832. </productMenu>
  1833. <productMenu id="volume"
  1834. type="16" >
  1835. </productMenu>
  1836. <productMenu id="battery"
  1837. type="1" >
  1838. </productMenu>
  1839. <productID id="6A80"
  1840. />
  1841. <productGroupable type="0"
  1842. />
  1843. </product>
  1844. <product id="50S"
  1845. name="50S"
  1846. series="50"
  1847. latestVersion="2.7.2"
  1848. show = "1" >
  1849. <productMenu id="protocol"
  1850. type="2" >
  1851. </productMenu>
  1852. <productMenu id="alexa"
  1853. type="0" >
  1854. </productMenu>
  1855. <productMenu id="ota"
  1856. type="0"
  1857. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1858. size="1150234" >
  1859. </productMenu>
  1860. <productMenu id="wa"
  1861. type="1" >
  1862. </productMenu>
  1863. <productMenu id="sip"
  1864. type="1" >
  1865. </productMenu>
  1866. <productMenu id="meshIntercom"
  1867. type="30" >
  1868. <productMenuType version="2.1.1"
  1869. type="20"
  1870. />
  1871. </productMenu>
  1872. <productMenu id="meshIntercom+"
  1873. type="3"
  1874. url="2" >
  1875. <productMenuType version="2.5.9"
  1876. type="2"
  1877. />
  1878. <productMenuURL version="2.1.1"
  1879. url="0"
  1880. />
  1881. </productMenu>
  1882. <productMenu id="waveIntercom"
  1883. type="1" >
  1884. <productMenuType version="2.6"
  1885. type="0"
  1886. />
  1887. </productMenu>
  1888. <productMenu id="bluetoothIntercom"
  1889. type="1" >
  1890. </productMenu>
  1891. <productMenu id="phone"
  1892. type="1" >
  1893. </productMenu>
  1894. <productMenu id="music"
  1895. type="1" >
  1896. </productMenu>
  1897. <productMenu id="fmradio"
  1898. type="1" >
  1899. </productMenu>
  1900. <productMenu id="deviceSetting"
  1901. type="1"
  1902. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1903. <productMenuURL version="2.5.9"
  1904. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1905. />
  1906. <productMenuURL version="2.1.1"
  1907. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1908. />
  1909. <productMenuURL version="2.0.3"
  1910. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1911. />
  1912. </productMenu>
  1913. <productMenu id="quickGuide"
  1914. type="0"
  1915. url=""
  1916. size="934KB" >
  1917. </productMenu>
  1918. <productMenu id="userGuide"
  1919. type="1"
  1920. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1921. size="1.14MB" >
  1922. </productMenu>
  1923. <productMenu id="videoGuide"
  1924. type="1"
  1925. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1926. size="3.41MB" >
  1927. </productMenu>
  1928. <productMenu id="connectGuide"
  1929. type="1"
  1930. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1931. size="1.12MB" >
  1932. </productMenu>
  1933. <productMenu id="volume"
  1934. type="11" >
  1935. </productMenu>
  1936. <productMenu id="battery"
  1937. type="1" >
  1938. </productMenu>
  1939. <productID id="3210"
  1940. />
  1941. <productGroupable type="0"
  1942. />
  1943. </product>
  1944. <product id="50S"
  1945. name="50S"
  1946. series="50"
  1947. latestVersion="1.5.1"
  1948. show = "-1" >
  1949. <productMenu id="protocol"
  1950. type="2" >
  1951. </productMenu>
  1952. <productMenu id="alexa"
  1953. type="0" >
  1954. </productMenu>
  1955. <productMenu id="wa"
  1956. type="1" >
  1957. </productMenu>
  1958. <productMenu id="sip"
  1959. type="1" >
  1960. </productMenu>
  1961. <productMenu id="meshIntercom"
  1962. type="30" >
  1963. <productMenuType version="1.2.2"
  1964. type="20"
  1965. />
  1966. </productMenu>
  1967. <productMenu id="meshIntercom+"
  1968. type="3"
  1969. url="2" >
  1970. <productMenuType version="1.4.9"
  1971. type="2"
  1972. />
  1973. <productMenuURL version="1.2.2"
  1974. url="0"
  1975. />
  1976. </productMenu>
  1977. <productMenu id="waveIntercom"
  1978. type="1" >
  1979. <productMenuType version="1.3.9"
  1980. type="0"
  1981. />
  1982. </productMenu>
  1983. <productMenu id="bluetoothIntercom"
  1984. type="1" >
  1985. </productMenu>
  1986. <productMenu id="phone"
  1987. type="1" >
  1988. </productMenu>
  1989. <productMenu id="music"
  1990. type="1" >
  1991. </productMenu>
  1992. <productMenu id="fmradio"
  1993. type="1" >
  1994. </productMenu>
  1995. <productMenu id="deviceSetting"
  1996. type="1"
  1997. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1998. <productMenuURL version="1.4.9"
  1999. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2000. />
  2001. <productMenuURL version="1.3.9"
  2002. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2003. />
  2004. <productMenuURL version="1.2.2"
  2005. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2006. />
  2007. <productMenuURL version="1.1.1"
  2008. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2009. />
  2010. </productMenu>
  2011. <productMenu id="quickGuide"
  2012. type="0"
  2013. url=""
  2014. size="934KB" >
  2015. </productMenu>
  2016. <productMenu id="userGuide"
  2017. type="1"
  2018. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  2019. size="1.14MB" >
  2020. </productMenu>
  2021. <productMenu id="videoGuide"
  2022. type="1"
  2023. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2024. size="3.41MB" >
  2025. </productMenu>
  2026. <productMenu id="volume"
  2027. type="11" >
  2028. </productMenu>
  2029. <productMenu id="battery"
  2030. type="1" >
  2031. </productMenu>
  2032. <productID id="3132"
  2033. />
  2034. <productGroupable type="0"
  2035. />
  2036. </product>
  2037. <product id="50R"
  2038. name="50R"
  2039. series="50"
  2040. latestVersion="2.7.1"
  2041. show = "1" >
  2042. <productMenu id="protocol"
  2043. type="2" >
  2044. </productMenu>
  2045. <productMenu id="alexa"
  2046. type="0" >
  2047. </productMenu>
  2048. <productMenu id="ota"
  2049. type="0"
  2050. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2051. size="1150234" >
  2052. </productMenu>
  2053. <productMenu id="wa"
  2054. type="1" >
  2055. </productMenu>
  2056. <productMenu id="sip"
  2057. type="1" >
  2058. </productMenu>
  2059. <productMenu id="meshIntercom"
  2060. type="30" >
  2061. <productMenuType version="2.1.1"
  2062. type="20"
  2063. />
  2064. </productMenu>
  2065. <productMenu id="meshIntercom+"
  2066. type="3"
  2067. url="2" >
  2068. <productMenuType version="2.5.9"
  2069. type="2"
  2070. />
  2071. <productMenuURL version="2.1.1"
  2072. url="0"
  2073. />
  2074. </productMenu>
  2075. <productMenu id="waveIntercom"
  2076. type="1" >
  2077. <productMenuType version="2.6"
  2078. type="0"
  2079. />
  2080. </productMenu>
  2081. <productMenu id="bluetoothIntercom"
  2082. type="1" >
  2083. </productMenu>
  2084. <productMenu id="phone"
  2085. type="1" >
  2086. </productMenu>
  2087. <productMenu id="music"
  2088. type="1" >
  2089. </productMenu>
  2090. <productMenu id="fmradio"
  2091. type="1" >
  2092. </productMenu>
  2093. <productMenu id="deviceSetting"
  2094. type="1"
  2095. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2096. <productMenuURL version="2.5.9"
  2097. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2098. />
  2099. <productMenuURL version="2.1.1"
  2100. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2101. />
  2102. <productMenuURL version="2.0"
  2103. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2104. />
  2105. </productMenu>
  2106. <productMenu id="quickGuide"
  2107. type="0"
  2108. url=""
  2109. size="344KB" >
  2110. </productMenu>
  2111. <productMenu id="userGuide"
  2112. type="1"
  2113. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  2114. size="3.41MB" >
  2115. </productMenu>
  2116. <productMenu id="videoGuide"
  2117. type="1"
  2118. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2119. size="3.41MB" >
  2120. </productMenu>
  2121. <productMenu id="connectGuide"
  2122. type="1"
  2123. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  2124. size="1.12MB" >
  2125. </productMenu>
  2126. <productMenu id="volume"
  2127. type="11" >
  2128. </productMenu>
  2129. <productMenu id="battery"
  2130. type="1" >
  2131. </productMenu>
  2132. <productID id="3218"
  2133. />
  2134. <productGroupable type="0"
  2135. />
  2136. </product>
  2137. <product id="50R"
  2138. name="50R"
  2139. series="50"
  2140. latestVersion="1.5.1"
  2141. show = "-1" >
  2142. <productMenu id="protocol"
  2143. type="2" >
  2144. </productMenu>
  2145. <productMenu id="alexa"
  2146. type="0" >
  2147. </productMenu>
  2148. <productMenu id="wa"
  2149. type="1" >
  2150. </productMenu>
  2151. <productMenu id="sip"
  2152. type="1" >
  2153. </productMenu>
  2154. <productMenu id="meshIntercom"
  2155. type="30" >
  2156. <productMenuType version="1.2.2"
  2157. type="20"
  2158. />
  2159. </productMenu>
  2160. <productMenu id="meshIntercom+"
  2161. type="3"
  2162. url="2" >
  2163. <productMenuType version="1.4.9"
  2164. type="2"
  2165. />
  2166. <productMenuURL version="1.2.2"
  2167. url="0"
  2168. />
  2169. </productMenu>
  2170. <productMenu id="waveIntercom"
  2171. type="1" >
  2172. <productMenuType version="1.3.9"
  2173. type="0"
  2174. />
  2175. </productMenu>
  2176. <productMenu id="bluetoothIntercom"
  2177. type="1" >
  2178. </productMenu>
  2179. <productMenu id="phone"
  2180. type="1" >
  2181. </productMenu>
  2182. <productMenu id="music"
  2183. type="1" >
  2184. </productMenu>
  2185. <productMenu id="fmradio"
  2186. type="1" >
  2187. </productMenu>
  2188. <productMenu id="deviceSetting"
  2189. type="1"
  2190. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2191. <productMenuURL version="1.4.9"
  2192. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2193. />
  2194. <productMenuURL version="1.3.9"
  2195. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2196. />
  2197. <productMenuURL version="1.2.2"
  2198. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2199. />
  2200. <productMenuURL version="1.1.1"
  2201. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2202. />
  2203. </productMenu>
  2204. <productMenu id="quickGuide"
  2205. type="0"
  2206. url=""
  2207. size="344KB" >
  2208. </productMenu>
  2209. <productMenu id="userGuide"
  2210. type="1"
  2211. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2212. size="3.41MB" >
  2213. </productMenu>
  2214. <productMenu id="videoGuide"
  2215. type="1"
  2216. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2217. size="3.41MB" >
  2218. </productMenu>
  2219. <productMenu id="volume"
  2220. type="11" >
  2221. </productMenu>
  2222. <productMenu id="battery"
  2223. type="1" >
  2224. </productMenu>
  2225. <productID id="3134"
  2226. />
  2227. <productGroupable type="0"
  2228. />
  2229. </product>
  2230. <product id="50C"
  2231. name="50C"
  2232. series="50"
  2233. latestVersion="1.4.3"
  2234. show = "1" >
  2235. <productMenu id="protocol"
  2236. type="2" >
  2237. </productMenu>
  2238. <productMenu id="ota"
  2239. type="0" >
  2240. </productMenu>
  2241. <productMenu id="wa"
  2242. type="1" >
  2243. </productMenu>
  2244. <productMenu id="sip"
  2245. type="1" >
  2246. </productMenu>
  2247. <productMenu id="meshIntercom"
  2248. type="30" >
  2249. <productMenuType version="1.1.1"
  2250. type="20"
  2251. />
  2252. </productMenu>
  2253. <productMenu id="meshIntercom+"
  2254. type="3"
  2255. url="2" >
  2256. <productMenuType version="1.3.9"
  2257. type="2"
  2258. />
  2259. <productMenuURL version="1.1.1"
  2260. url="0"
  2261. />
  2262. </productMenu>
  2263. <productMenu id="waveIntercom"
  2264. type="1" >
  2265. <productMenuType version="1.2.9"
  2266. type="0"
  2267. />
  2268. </productMenu>
  2269. <productMenu id="bluetoothIntercom"
  2270. type="1" >
  2271. </productMenu>
  2272. <productMenu id="phone"
  2273. type="1" >
  2274. </productMenu>
  2275. <productMenu id="music"
  2276. type="1" >
  2277. </productMenu>
  2278. <productMenu id="fmradio"
  2279. type="1" >
  2280. </productMenu>
  2281. <productMenu id="deviceSetting"
  2282. type="1"
  2283. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2284. <productMenuURL version="1.3.9"
  2285. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2286. />
  2287. <productMenuURL version="1.1.1"
  2288. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2289. />
  2290. <productMenuURL version="1.0.1"
  2291. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2292. />
  2293. </productMenu>
  2294. <productMenu id="quickGuide"
  2295. type="0"
  2296. url=""
  2297. size="344KB" >
  2298. </productMenu>
  2299. <productMenu id="userGuide"
  2300. type="1"
  2301. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2302. size="3.41MB" >
  2303. </productMenu>
  2304. <productMenu id="connectGuide"
  2305. type="1"
  2306. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2307. size="1.12MB" >
  2308. </productMenu>
  2309. <productMenu id="volume"
  2310. type="11" >
  2311. </productMenu>
  2312. <productMenu id="battery"
  2313. type="1" >
  2314. </productMenu>
  2315. <productID id="3232"
  2316. />
  2317. <productGroupable type="0"
  2318. />
  2319. </product>
  2320. <product id="PHANTOMXB"
  2321. name="PHANTOM XB"
  2322. series="Helmet"
  2323. latestVersion="1.2.7"
  2324. latestVersionVoicePrompt="1.5"
  2325. show = "-1" >
  2326. <productMenu id="protocol"
  2327. type="2" >
  2328. </productMenu>
  2329. <productMenu id="ota"
  2330. type="2" >
  2331. <otaLanguages>
  2332. <otaLanguage
  2333. id="0"
  2334. name="English"
  2335. package="0"
  2336. />
  2337. <otaLanguage
  2338. id="0"
  2339. name="French"
  2340. package="1"
  2341. />
  2342. <otaLanguage
  2343. id="0"
  2344. name="Spanish"
  2345. package="2"
  2346. />
  2347. <otaLanguage
  2348. id="0"
  2349. name="Italian"
  2350. package="3"
  2351. />
  2352. <otaLanguage
  2353. id="0"
  2354. name="German"
  2355. package="4"
  2356. />
  2357. <otaLanguage
  2358. id="0"
  2359. name="Dutch"
  2360. package="5"
  2361. />
  2362. <otaLanguage
  2363. id="0"
  2364. name="Russian"
  2365. package="6"
  2366. />
  2367. <otaLanguage
  2368. id="0"
  2369. name="Chinese"
  2370. package="7"
  2371. />
  2372. <otaLanguage
  2373. id="0"
  2374. name="Korean"
  2375. package="8"
  2376. />
  2377. <otaLanguage
  2378. id="0"
  2379. name="Japanese"
  2380. package="9"
  2381. />
  2382. <otaLanguage
  2383. id="0"
  2384. name="Finnish"
  2385. package="10"
  2386. />
  2387. <otaLanguage
  2388. id="0"
  2389. name="Polish"
  2390. package="11"
  2391. />
  2392. </otaLanguages>
  2393. <otaPackages>
  2394. <package
  2395. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1.img"
  2396. size="5183988"
  2397. />
  2398. <package
  2399. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-fr-FR.img"
  2400. size="5183988"
  2401. />
  2402. <package
  2403. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-es-ES.img"
  2404. size="5183988"
  2405. />
  2406. <package
  2407. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-it-IT.img"
  2408. size="5183988"
  2409. />
  2410. <package
  2411. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-de-DE.img"
  2412. size="5183988"
  2413. />
  2414. <package
  2415. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-nl-NL.img"
  2416. size="5183988"
  2417. />
  2418. <package
  2419. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ru-RU.img"
  2420. size="5183988"
  2421. />
  2422. <package
  2423. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-cmn-CN.img"
  2424. size="5183988"
  2425. />
  2426. <package
  2427. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ko-KR.img"
  2428. size="5183988"
  2429. />
  2430. <package
  2431. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ja-JP.img"
  2432. size="5183988"
  2433. />
  2434. <package
  2435. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-fi-FI.img"
  2436. size="5183988"
  2437. />
  2438. <package
  2439. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-pl-PL.img"
  2440. size="5183988"
  2441. />
  2442. </otaPackages>
  2443. </productMenu>
  2444. <productMenu id="wa"
  2445. type="0" >
  2446. </productMenu>
  2447. <productMenu id="led"
  2448. type="5" >
  2449. </productMenu>
  2450. <productMenu id="led+"
  2451. type="2"
  2452. url="1" >
  2453. </productMenu>
  2454. <productMenu id="meshIntercom"
  2455. type="30" >
  2456. </productMenu>
  2457. <productMenu id="meshIntercom+"
  2458. type="3"
  2459. url="2" >
  2460. </productMenu>
  2461. <productMenu id="waveIntercom"
  2462. type="1" >
  2463. </productMenu>
  2464. <productMenu id="fmradio"
  2465. type="0" >
  2466. </productMenu>
  2467. <productMenu id="phone"
  2468. type="1" >
  2469. </productMenu>
  2470. <productMenu id="music"
  2471. type="1" >
  2472. </productMenu>
  2473. <productMenu id="musicSharing"
  2474. type="0" >
  2475. </productMenu>
  2476. <productMenu id="deviceSetting"
  2477. type="1"
  2478. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2479. <productMenuURL version="1.2.4"
  2480. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2481. />
  2482. </productMenu>
  2483. <productMenu id="quickGuide"
  2484. type="0"
  2485. url=""
  2486. size="1.12MB" >
  2487. </productMenu>
  2488. <productMenu id="userGuide"
  2489. type="1"
  2490. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2491. size="2.0MB" >
  2492. </productMenu>
  2493. <productMenu id="videoGuide"
  2494. type="0"
  2495. url=""
  2496. size="3.41MB" >
  2497. </productMenu>
  2498. <productMenu id="volume"
  2499. type="16" >
  2500. </productMenu>
  2501. <productMenu id="volume+"
  2502. type="2"
  2503. url="0x6004" >
  2504. </productMenu>
  2505. <productMenu id="battery"
  2506. type="1" >
  2507. </productMenu>
  2508. <productID id="6A0F"
  2509. />
  2510. <productGroupable type="0"
  2511. />
  2512. </product>
  2513. <product id="PHANTOMXB"
  2514. name="PHANTOM XB"
  2515. series="Helmet"
  2516. latestVersion="1.2.7"
  2517. latestVersionVoicePrompt="1.5"
  2518. show = "-1" >
  2519. <productMenu id="protocol"
  2520. type="2" >
  2521. </productMenu>
  2522. <productMenu id="ota"
  2523. type="2" >
  2524. <otaLanguages>
  2525. <otaLanguage
  2526. id="0"
  2527. name="English"
  2528. package="0"
  2529. />
  2530. <otaLanguage
  2531. id="0"
  2532. name="French"
  2533. package="1"
  2534. />
  2535. <otaLanguage
  2536. id="0"
  2537. name="Spanish"
  2538. package="2"
  2539. />
  2540. <otaLanguage
  2541. id="0"
  2542. name="Italian"
  2543. package="3"
  2544. />
  2545. <otaLanguage
  2546. id="0"
  2547. name="German"
  2548. package="4"
  2549. />
  2550. <otaLanguage
  2551. id="0"
  2552. name="Dutch"
  2553. package="5"
  2554. />
  2555. <otaLanguage
  2556. id="0"
  2557. name="Russian"
  2558. package="6"
  2559. />
  2560. <otaLanguage
  2561. id="0"
  2562. name="Chinese"
  2563. package="7"
  2564. />
  2565. <otaLanguage
  2566. id="0"
  2567. name="Korean"
  2568. package="8"
  2569. />
  2570. <otaLanguage
  2571. id="0"
  2572. name="Japanese"
  2573. package="9"
  2574. />
  2575. <otaLanguage
  2576. id="0"
  2577. name="Finnish"
  2578. package="10"
  2579. />
  2580. <otaLanguage
  2581. id="0"
  2582. name="Polish"
  2583. package="11"
  2584. />
  2585. </otaLanguages>
  2586. <otaPackages>
  2587. <package
  2588. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1.img"
  2589. size="5183988"
  2590. />
  2591. <package
  2592. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-fr-FR.img"
  2593. size="5183988"
  2594. />
  2595. <package
  2596. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-es-ES.img"
  2597. size="5183988"
  2598. />
  2599. <package
  2600. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-it-IT.img"
  2601. size="5183988"
  2602. />
  2603. <package
  2604. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-de-DE.img"
  2605. size="5183988"
  2606. />
  2607. <package
  2608. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-nl-NL.img"
  2609. size="5183988"
  2610. />
  2611. <package
  2612. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ru-RU.img"
  2613. size="5183988"
  2614. />
  2615. <package
  2616. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-cmn-CN.img"
  2617. size="5183988"
  2618. />
  2619. <package
  2620. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ko-KR.img"
  2621. size="5183988"
  2622. />
  2623. <package
  2624. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ja-JP.img"
  2625. size="5183988"
  2626. />
  2627. <package
  2628. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-fi-FI.img"
  2629. size="5183988"
  2630. />
  2631. <package
  2632. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-pl-PL.img"
  2633. size="5183988"
  2634. />
  2635. </otaPackages>
  2636. </productMenu>
  2637. <productMenu id="wa"
  2638. type="0" >
  2639. </productMenu>
  2640. <productMenu id="led"
  2641. type="5" >
  2642. </productMenu>
  2643. <productMenu id="led+"
  2644. type="2"
  2645. url="1" >
  2646. </productMenu>
  2647. <productMenu id="meshIntercom"
  2648. type="30" >
  2649. </productMenu>
  2650. <productMenu id="meshIntercom+"
  2651. type="3"
  2652. url="2" >
  2653. </productMenu>
  2654. <productMenu id="waveIntercom"
  2655. type="1" >
  2656. </productMenu>
  2657. <productMenu id="fmradio"
  2658. type="0" >
  2659. </productMenu>
  2660. <productMenu id="phone"
  2661. type="1" >
  2662. </productMenu>
  2663. <productMenu id="music"
  2664. type="1" >
  2665. </productMenu>
  2666. <productMenu id="musicSharing"
  2667. type="0" >
  2668. </productMenu>
  2669. <productMenu id="deviceSetting"
  2670. type="1"
  2671. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2672. <productMenuURL version="1.2.4"
  2673. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2674. />
  2675. <productMenuURL version="1.2.1"
  2676. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2677. />
  2678. </productMenu>
  2679. <productMenu id="quickGuide"
  2680. type="0"
  2681. url=""
  2682. size="1.12MB" >
  2683. </productMenu>
  2684. <productMenu id="userGuide"
  2685. type="1"
  2686. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2687. size="2.0MB" >
  2688. </productMenu>
  2689. <productMenu id="videoGuide"
  2690. type="0"
  2691. url=""
  2692. size="3.41MB" >
  2693. </productMenu>
  2694. <productMenu id="volume"
  2695. type="16" >
  2696. </productMenu>
  2697. <productMenu id="volume+"
  2698. type="2"
  2699. url="0x6004" >
  2700. </productMenu>
  2701. <productMenu id="battery"
  2702. type="1" >
  2703. </productMenu>
  2704. <productID id="6A0C"
  2705. />
  2706. <productGroupable type="0"
  2707. />
  2708. </product>
  2709. <product id="PHANTOMKV"
  2710. name="PHANTOM KV"
  2711. series="Helmet"
  2712. latestVersion="1.2.10"
  2713. latestVersionVoicePrompt="1.7"
  2714. show = "-1" >
  2715. <productMenu id="protocol"
  2716. type="2" >
  2717. </productMenu>
  2718. <productMenu id="ota"
  2719. type="2" >
  2720. <otaLanguages>
  2721. <otaLanguage
  2722. id="0"
  2723. name="English"
  2724. package="0"
  2725. />
  2726. <otaLanguage
  2727. id="0"
  2728. name="French"
  2729. package="1"
  2730. />
  2731. <otaLanguage
  2732. id="0"
  2733. name="Spanish"
  2734. package="2"
  2735. />
  2736. <otaLanguage
  2737. id="0"
  2738. name="Italian"
  2739. package="3"
  2740. />
  2741. <otaLanguage
  2742. id="0"
  2743. name="German"
  2744. package="4"
  2745. />
  2746. <otaLanguage
  2747. id="0"
  2748. name="Dutch"
  2749. package="5"
  2750. />
  2751. <otaLanguage
  2752. id="0"
  2753. name="Russian"
  2754. package="6"
  2755. />
  2756. <otaLanguage
  2757. id="0"
  2758. name="Chinese"
  2759. package="7"
  2760. />
  2761. <otaLanguage
  2762. id="0"
  2763. name="Korean"
  2764. package="8"
  2765. />
  2766. <otaLanguage
  2767. id="0"
  2768. name="Japanese"
  2769. package="9"
  2770. />
  2771. <otaLanguage
  2772. id="0"
  2773. name="Finnish"
  2774. package="10"
  2775. />
  2776. <otaLanguage
  2777. id="0"
  2778. name="Polish"
  2779. package="11"
  2780. />
  2781. </otaLanguages>
  2782. <otaPackages>
  2783. <package
  2784. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0.img"
  2785. size="5183988"
  2786. />
  2787. <package
  2788. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fr-FR.img"
  2789. size="5183988"
  2790. />
  2791. <package
  2792. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-es-ES.img"
  2793. size="5183988"
  2794. />
  2795. <package
  2796. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-it-IT.img"
  2797. size="5183988"
  2798. />
  2799. <package
  2800. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-de-DE.img"
  2801. size="5183988"
  2802. />
  2803. <package
  2804. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-nl-NL.img"
  2805. size="5183988"
  2806. />
  2807. <package
  2808. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ru-RU.img"
  2809. size="5183988"
  2810. />
  2811. <package
  2812. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-cmn-CN.img"
  2813. size="5183988"
  2814. />
  2815. <package
  2816. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ko-KR.img"
  2817. size="5183988"
  2818. />
  2819. <package
  2820. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ja-JP.img"
  2821. size="5183988"
  2822. />
  2823. <package
  2824. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fi-FI.img"
  2825. size="5183988"
  2826. />
  2827. <package
  2828. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-pl-PL.img"
  2829. size="5183988"
  2830. />
  2831. </otaPackages>
  2832. </productMenu>
  2833. <productMenu id="wa"
  2834. type="0" >
  2835. </productMenu>
  2836. <productMenu id="led"
  2837. type="5" >
  2838. </productMenu>
  2839. <productMenu id="led+"
  2840. type="2"
  2841. url="1" >
  2842. </productMenu>
  2843. <productMenu id="meshIntercom"
  2844. type="30" >
  2845. </productMenu>
  2846. <productMenu id="meshIntercom+"
  2847. type="3"
  2848. url="2" >
  2849. </productMenu>
  2850. <productMenu id="waveIntercom"
  2851. type="1" >
  2852. </productMenu>
  2853. <productMenu id="fmradio"
  2854. type="0" >
  2855. </productMenu>
  2856. <productMenu id="phone"
  2857. type="1" >
  2858. </productMenu>
  2859. <productMenu id="music"
  2860. type="1" >
  2861. </productMenu>
  2862. <productMenu id="musicSharing"
  2863. type="0" >
  2864. </productMenu>
  2865. <productMenu id="deviceSetting"
  2866. type="1"
  2867. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2868. <productMenuURL version="1.2.4"
  2869. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2870. />
  2871. </productMenu>
  2872. <productMenu id="quickGuide"
  2873. type="0"
  2874. url=""
  2875. size="1.12MB" >
  2876. </productMenu>
  2877. <productMenu id="userGuide"
  2878. type="1"
  2879. url=""
  2880. size="2.0MB" >
  2881. </productMenu>
  2882. <productMenu id="videoGuide"
  2883. type="0"
  2884. url=""
  2885. size="3.41MB" >
  2886. </productMenu>
  2887. <productMenu id="volume"
  2888. type="16" >
  2889. </productMenu>
  2890. <productMenu id="volume+"
  2891. type="2"
  2892. url="0x6004" >
  2893. </productMenu>
  2894. <productMenu id="soundMode"
  2895. type="1" >
  2896. </productMenu>
  2897. <productMenu id="battery"
  2898. type="1" >
  2899. </productMenu>
  2900. <productID id="6A13"
  2901. />
  2902. <productGroupable type="0"
  2903. />
  2904. </product>
  2905. <product id="PHANTOMCamera"
  2906. name="PHANTOM Camera"
  2907. series="Helmet"
  2908. latestVersion="1.0.1"
  2909. latestVersionVoicePrompt="0.4"
  2910. show = "-1" >
  2911. <productMenu id="protocol"
  2912. type="2" >
  2913. </productMenu>
  2914. <productMenu id="ota"
  2915. type="3" >
  2916. <otaLanguages>
  2917. <otaLanguage
  2918. id="0"
  2919. name="English"
  2920. package="0"
  2921. />
  2922. <otaLanguage
  2923. id="0"
  2924. name="French"
  2925. package="1"
  2926. />
  2927. <otaLanguage
  2928. id="0"
  2929. name="Spanish"
  2930. package="2"
  2931. />
  2932. <otaLanguage
  2933. id="0"
  2934. name="Italian"
  2935. package="3"
  2936. />
  2937. <otaLanguage
  2938. id="0"
  2939. name="German"
  2940. package="4"
  2941. />
  2942. <otaLanguage
  2943. id="0"
  2944. name="Dutch"
  2945. package="5"
  2946. />
  2947. <otaLanguage
  2948. id="0"
  2949. name="Russian"
  2950. package="6"
  2951. />
  2952. <otaLanguage
  2953. id="0"
  2954. name="Chinese"
  2955. package="7"
  2956. />
  2957. <otaLanguage
  2958. id="0"
  2959. name="Korean"
  2960. package="8"
  2961. />
  2962. <otaLanguage
  2963. id="0"
  2964. name="Japanese"
  2965. package="9"
  2966. />
  2967. <otaLanguage
  2968. id="0"
  2969. name="Finnish"
  2970. package="10"
  2971. />
  2972. <otaLanguage
  2973. id="0"
  2974. name="Polish"
  2975. package="11"
  2976. />
  2977. </otaLanguages>
  2978. <otaPackages>
  2979. <package
  2980. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2981. size="5183988"
  2982. />
  2983. <package
  2984. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  2985. size="5183988"
  2986. />
  2987. <package
  2988. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  2989. size="5183988"
  2990. />
  2991. <package
  2992. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  2993. size="5183988"
  2994. />
  2995. <package
  2996. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  2997. size="5183988"
  2998. />
  2999. <package
  3000. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  3001. size="5183988"
  3002. />
  3003. <package
  3004. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  3005. size="5183988"
  3006. />
  3007. <package
  3008. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  3009. size="5183988"
  3010. />
  3011. <package
  3012. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  3013. size="5183988"
  3014. />
  3015. <package
  3016. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  3017. size="5183988"
  3018. />
  3019. <package
  3020. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  3021. size="5183988"
  3022. />
  3023. <package
  3024. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  3025. size="5183988"
  3026. />
  3027. </otaPackages>
  3028. </productMenu>
  3029. <productMenu id="wa"
  3030. type="0" >
  3031. </productMenu>
  3032. <productMenu id="led"
  3033. type="5" >
  3034. </productMenu>
  3035. <productMenu id="led+"
  3036. type="2"
  3037. url="1" >
  3038. </productMenu>
  3039. <productMenu id="meshIntercom"
  3040. type="30" >
  3041. </productMenu>
  3042. <productMenu id="meshIntercom+"
  3043. type="3"
  3044. url="2" >
  3045. </productMenu>
  3046. <productMenu id="waveIntercom"
  3047. type="1" >
  3048. </productMenu>
  3049. <productMenu id="fmradio"
  3050. type="0" >
  3051. </productMenu>
  3052. <productMenu id="phone"
  3053. type="1" >
  3054. </productMenu>
  3055. <productMenu id="music"
  3056. type="1" >
  3057. </productMenu>
  3058. <productMenu id="musicSharing"
  3059. type="0" >
  3060. </productMenu>
  3061. <productMenu id="deviceSetting"
  3062. type="1"
  3063. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3064. </productMenu>
  3065. <productMenu id="quickGuide"
  3066. type="0"
  3067. url=""
  3068. size="1.12MB" >
  3069. </productMenu>
  3070. <productMenu id="userGuide"
  3071. type="1"
  3072. url=""
  3073. size="2.0MB" >
  3074. </productMenu>
  3075. <productMenu id="videoGuide"
  3076. type="0"
  3077. url=""
  3078. size="3.41MB" >
  3079. </productMenu>
  3080. <productMenu id="volume"
  3081. type="16" >
  3082. </productMenu>
  3083. <productMenu id="battery"
  3084. type="1" >
  3085. </productMenu>
  3086. <productID id="6A10"
  3087. />
  3088. <productGroupable type="0"
  3089. />
  3090. </product>
  3091. <product id="PHANTOMCamera"
  3092. name="PHANTOM Camera"
  3093. series="Helmet"
  3094. latestVersion="1.0.1"
  3095. latestVersionVoicePrompt="0.4"
  3096. show = "-1" >
  3097. <productMenu id="protocol"
  3098. type="2" >
  3099. </productMenu>
  3100. <productMenu id="ota"
  3101. type="3" >
  3102. <otaLanguages>
  3103. <otaLanguage
  3104. id="0"
  3105. name="English"
  3106. package="0"
  3107. />
  3108. <otaLanguage
  3109. id="0"
  3110. name="French"
  3111. package="1"
  3112. />
  3113. <otaLanguage
  3114. id="0"
  3115. name="Spanish"
  3116. package="2"
  3117. />
  3118. <otaLanguage
  3119. id="0"
  3120. name="Italian"
  3121. package="3"
  3122. />
  3123. <otaLanguage
  3124. id="0"
  3125. name="German"
  3126. package="4"
  3127. />
  3128. <otaLanguage
  3129. id="0"
  3130. name="Dutch"
  3131. package="5"
  3132. />
  3133. <otaLanguage
  3134. id="0"
  3135. name="Russian"
  3136. package="6"
  3137. />
  3138. <otaLanguage
  3139. id="0"
  3140. name="Chinese"
  3141. package="7"
  3142. />
  3143. <otaLanguage
  3144. id="0"
  3145. name="Korean"
  3146. package="8"
  3147. />
  3148. <otaLanguage
  3149. id="0"
  3150. name="Japanese"
  3151. package="9"
  3152. />
  3153. <otaLanguage
  3154. id="0"
  3155. name="Finnish"
  3156. package="10"
  3157. />
  3158. <otaLanguage
  3159. id="0"
  3160. name="Polish"
  3161. package="11"
  3162. />
  3163. </otaLanguages>
  3164. <otaPackages>
  3165. <package
  3166. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  3167. size="5183988"
  3168. />
  3169. <package
  3170. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  3171. size="5183988"
  3172. />
  3173. <package
  3174. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  3175. size="5183988"
  3176. />
  3177. <package
  3178. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  3179. size="5183988"
  3180. />
  3181. <package
  3182. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  3183. size="5183988"
  3184. />
  3185. <package
  3186. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  3187. size="5183988"
  3188. />
  3189. <package
  3190. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  3191. size="5183988"
  3192. />
  3193. <package
  3194. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  3195. size="5183988"
  3196. />
  3197. <package
  3198. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  3199. size="5183988"
  3200. />
  3201. <package
  3202. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  3203. size="5183988"
  3204. />
  3205. <package
  3206. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  3207. size="5183988"
  3208. />
  3209. <package
  3210. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  3211. size="5183988"
  3212. />
  3213. </otaPackages>
  3214. </productMenu>
  3215. <productMenu id="wa"
  3216. type="0" >
  3217. </productMenu>
  3218. <productMenu id="led"
  3219. type="5" >
  3220. </productMenu>
  3221. <productMenu id="led+"
  3222. type="2"
  3223. url="1" >
  3224. </productMenu>
  3225. <productMenu id="meshIntercom"
  3226. type="30" >
  3227. </productMenu>
  3228. <productMenu id="meshIntercom+"
  3229. type="3"
  3230. url="2" >
  3231. </productMenu>
  3232. <productMenu id="waveIntercom"
  3233. type="1" >
  3234. </productMenu>
  3235. <productMenu id="fmradio"
  3236. type="0" >
  3237. </productMenu>
  3238. <productMenu id="phone"
  3239. type="1" >
  3240. </productMenu>
  3241. <productMenu id="music"
  3242. type="1" >
  3243. </productMenu>
  3244. <productMenu id="musicSharing"
  3245. type="0" >
  3246. </productMenu>
  3247. <productMenu id="deviceSetting"
  3248. type="1"
  3249. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3250. </productMenu>
  3251. <productMenu id="quickGuide"
  3252. type="0"
  3253. url=""
  3254. size="1.12MB" >
  3255. </productMenu>
  3256. <productMenu id="userGuide"
  3257. type="1"
  3258. url=""
  3259. size="2.0MB" >
  3260. </productMenu>
  3261. <productMenu id="videoGuide"
  3262. type="0"
  3263. url=""
  3264. size="3.41MB" >
  3265. </productMenu>
  3266. <productMenu id="volume"
  3267. type="16" >
  3268. </productMenu>
  3269. <productMenu id="battery"
  3270. type="1" >
  3271. </productMenu>
  3272. <productID id="6A09"
  3273. />
  3274. <productGroupable type="0"
  3275. />
  3276. </product>
  3277. <product id="PHANTOM"
  3278. name="PHANTOM ANC"
  3279. series="Helmet"
  3280. latestVersion="1.2.7"
  3281. latestVersionVoicePrompt="1.5"
  3282. show = "1" >
  3283. <productMenu id="protocol"
  3284. type="2" >
  3285. </productMenu>
  3286. <productMenu id="ota"
  3287. type="2" >
  3288. <productMenuType version="0.6.9"
  3289. type="0"
  3290. />
  3291. <otaLanguages>
  3292. <otaLanguage
  3293. id="0"
  3294. name="English"
  3295. package="0"
  3296. />
  3297. <otaLanguage
  3298. id="0"
  3299. name="French"
  3300. package="1"
  3301. />
  3302. <otaLanguage
  3303. id="0"
  3304. name="Spanish"
  3305. package="2"
  3306. />
  3307. <otaLanguage
  3308. id="0"
  3309. name="Italian"
  3310. package="3"
  3311. />
  3312. <otaLanguage
  3313. id="0"
  3314. name="German"
  3315. package="4"
  3316. />
  3317. <otaLanguage
  3318. id="0"
  3319. name="Dutch"
  3320. package="5"
  3321. />
  3322. <otaLanguage
  3323. id="0"
  3324. name="Russian"
  3325. package="6"
  3326. />
  3327. <otaLanguage
  3328. id="0"
  3329. name="Chinese"
  3330. package="7"
  3331. />
  3332. <otaLanguage
  3333. id="0"
  3334. name="Korean"
  3335. package="8"
  3336. />
  3337. <otaLanguage
  3338. id="0"
  3339. name="Japanese"
  3340. package="9"
  3341. />
  3342. <otaLanguage
  3343. id="0"
  3344. name="Finnish"
  3345. package="10"
  3346. />
  3347. <otaLanguage
  3348. id="0"
  3349. name="Polish"
  3350. package="11"
  3351. />
  3352. </otaLanguages>
  3353. <otaPackages>
  3354. <package
  3355. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1.img"
  3356. size="5183988"
  3357. />
  3358. <package
  3359. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-fr-FR.img"
  3360. size="5183988"
  3361. />
  3362. <package
  3363. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-es-ES.img"
  3364. size="5183988"
  3365. />
  3366. <package
  3367. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-it-IT.img"
  3368. size="5183988"
  3369. />
  3370. <package
  3371. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-de-DE.img"
  3372. size="5183988"
  3373. />
  3374. <package
  3375. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-nl-NL.img"
  3376. size="5183988"
  3377. />
  3378. <package
  3379. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ru-RU.img"
  3380. size="5183988"
  3381. />
  3382. <package
  3383. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-cmn-CN.img"
  3384. size="5183988"
  3385. />
  3386. <package
  3387. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ko-KR.img"
  3388. size="5183988"
  3389. />
  3390. <package
  3391. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ja-JP.img"
  3392. size="5183988"
  3393. />
  3394. <package
  3395. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-fi-FI.img"
  3396. size="5183988"
  3397. />
  3398. <package
  3399. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-pl-PL.img"
  3400. size="5183988"
  3401. />
  3402. </otaPackages>
  3403. </productMenu>
  3404. <productMenu id="wa"
  3405. type="0" >
  3406. </productMenu>
  3407. <productMenu id="led"
  3408. type="5" >
  3409. </productMenu>
  3410. <productMenu id="led+"
  3411. type="2"
  3412. url="1" >
  3413. </productMenu>
  3414. <productMenu id="meshIntercom"
  3415. type="30" >
  3416. </productMenu>
  3417. <productMenu id="meshIntercom+"
  3418. type="3"
  3419. url="2" >
  3420. <productMenuURL version="1.0.4"
  3421. url="10"
  3422. />
  3423. </productMenu>
  3424. <productMenu id="waveIntercom"
  3425. type="1" >
  3426. <productMenuType version="1.0.9"
  3427. type="0"
  3428. />
  3429. </productMenu>
  3430. <productMenu id="fmradio"
  3431. type="0" >
  3432. </productMenu>
  3433. <productMenu id="phone"
  3434. type="1" >
  3435. </productMenu>
  3436. <productMenu id="music"
  3437. type="1" >
  3438. </productMenu>
  3439. <productMenu id="musicSharing"
  3440. type="0" >
  3441. </productMenu>
  3442. <productMenu id="deviceSetting"
  3443. type="1"
  3444. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3445. <productMenuURL version="1.2.4"
  3446. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3447. />
  3448. <productMenuURL version="1.2.1"
  3449. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3450. />
  3451. <productMenuURL version="1.1.2"
  3452. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3453. />
  3454. <productMenuURL version="1.0.4"
  3455. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3456. />
  3457. </productMenu>
  3458. <productMenu id="quickGuide"
  3459. type="0"
  3460. url=""
  3461. size="1.12MB" >
  3462. </productMenu>
  3463. <productMenu id="userGuide"
  3464. type="1"
  3465. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3466. size="2.0MB" >
  3467. </productMenu>
  3468. <productMenu id="videoGuide"
  3469. type="0"
  3470. url=""
  3471. size="3.41MB" >
  3472. </productMenu>
  3473. <productMenu id="volume"
  3474. type="16" >
  3475. </productMenu>
  3476. <productMenu id="volume+"
  3477. type="2"
  3478. url="0x6004" >
  3479. </productMenu>
  3480. <productMenu id="soundMode"
  3481. type="1" >
  3482. <productMenuType version="0.9.11"
  3483. type="0"
  3484. />
  3485. </productMenu>
  3486. <productMenu id="battery"
  3487. type="1" >
  3488. </productMenu>
  3489. <productID id="6A01"
  3490. />
  3491. <productGroupable type="0"
  3492. />
  3493. </product>
  3494. <product id="PHANTOM"
  3495. name="PHANTOM ANC"
  3496. series="Helmet"
  3497. latestVersion="1.2.7"
  3498. latestVersionVoicePrompt="1.5"
  3499. show = "-1" >
  3500. <productMenu id="protocol"
  3501. type="2" >
  3502. </productMenu>
  3503. <productMenu id="ota"
  3504. type="2" >
  3505. <otaLanguages>
  3506. <otaLanguage
  3507. id="0"
  3508. name="English"
  3509. package="0"
  3510. />
  3511. <otaLanguage
  3512. id="0"
  3513. name="French"
  3514. package="1"
  3515. />
  3516. <otaLanguage
  3517. id="0"
  3518. name="Spanish"
  3519. package="2"
  3520. />
  3521. <otaLanguage
  3522. id="0"
  3523. name="Italian"
  3524. package="3"
  3525. />
  3526. <otaLanguage
  3527. id="0"
  3528. name="German"
  3529. package="4"
  3530. />
  3531. <otaLanguage
  3532. id="0"
  3533. name="Dutch"
  3534. package="5"
  3535. />
  3536. <otaLanguage
  3537. id="0"
  3538. name="Russian"
  3539. package="6"
  3540. />
  3541. <otaLanguage
  3542. id="0"
  3543. name="Chinese"
  3544. package="7"
  3545. />
  3546. <otaLanguage
  3547. id="0"
  3548. name="Korean"
  3549. package="8"
  3550. />
  3551. <otaLanguage
  3552. id="0"
  3553. name="Japanese"
  3554. package="9"
  3555. />
  3556. <otaLanguage
  3557. id="0"
  3558. name="Finnish"
  3559. package="10"
  3560. />
  3561. <otaLanguage
  3562. id="0"
  3563. name="Polish"
  3564. package="11"
  3565. />
  3566. </otaLanguages>
  3567. <otaPackages>
  3568. <package
  3569. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1.img"
  3570. size="5183988"
  3571. />
  3572. <package
  3573. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-fr-FR.img"
  3574. size="5183988"
  3575. />
  3576. <package
  3577. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-es-ES.img"
  3578. size="5183988"
  3579. />
  3580. <package
  3581. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-it-IT.img"
  3582. size="5183988"
  3583. />
  3584. <package
  3585. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-de-DE.img"
  3586. size="5183988"
  3587. />
  3588. <package
  3589. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-nl-NL.img"
  3590. size="5183988"
  3591. />
  3592. <package
  3593. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ru-RU.img"
  3594. size="5183988"
  3595. />
  3596. <package
  3597. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-cmn-CN.img"
  3598. size="5183988"
  3599. />
  3600. <package
  3601. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ko-KR.img"
  3602. size="5183988"
  3603. />
  3604. <package
  3605. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ja-JP.img"
  3606. size="5183988"
  3607. />
  3608. <package
  3609. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-fi-FI.img"
  3610. size="5183988"
  3611. />
  3612. <package
  3613. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-pl-PL.img"
  3614. size="5183988"
  3615. />
  3616. </otaPackages>
  3617. </productMenu>
  3618. <productMenu id="led"
  3619. type="5" >
  3620. </productMenu>
  3621. <productMenu id="led+"
  3622. type="2"
  3623. url="1" >
  3624. </productMenu>
  3625. <productMenu id="meshIntercom"
  3626. type="30" >
  3627. </productMenu>
  3628. <productMenu id="meshIntercom+"
  3629. type="3"
  3630. url="2" >
  3631. </productMenu>
  3632. <productMenu id="waveIntercom"
  3633. type="1" >
  3634. </productMenu>
  3635. <productMenu id="fmradio"
  3636. type="0" >
  3637. </productMenu>
  3638. <productMenu id="phone"
  3639. type="1" >
  3640. </productMenu>
  3641. <productMenu id="music"
  3642. type="1" >
  3643. </productMenu>
  3644. <productMenu id="musicSharing"
  3645. type="0" >
  3646. </productMenu>
  3647. <productMenu id="deviceSetting"
  3648. type="1"
  3649. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3650. <productMenuURL version="1.2.4"
  3651. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3652. />
  3653. </productMenu>
  3654. <productMenu id="quickGuide"
  3655. type="0"
  3656. url=""
  3657. size="1.12MB" >
  3658. </productMenu>
  3659. <productMenu id="userGuide"
  3660. type="1"
  3661. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3662. size="2.0MB" >
  3663. </productMenu>
  3664. <productMenu id="videoGuide"
  3665. type="0"
  3666. url=""
  3667. size="3.41MB" >
  3668. </productMenu>
  3669. <productMenu id="volume"
  3670. type="16" >
  3671. </productMenu>
  3672. <productMenu id="volume+"
  3673. type="2"
  3674. url="0x6004" >
  3675. </productMenu>
  3676. <productMenu id="soundMode"
  3677. type="1" >
  3678. </productMenu>
  3679. <productMenu id="battery"
  3680. type="1" >
  3681. </productMenu>
  3682. <productID id="6A19"
  3683. />
  3684. <productGroupable type="0"
  3685. />
  3686. </product>
  3687. <product id="PHANTOM"
  3688. name="PHANTOM"
  3689. series="Helmet"
  3690. latestVersion="1.2.9"
  3691. latestVersionVoicePrompt="1.7"
  3692. show = "-1" >
  3693. <productMenu id="protocol"
  3694. type="2" >
  3695. </productMenu>
  3696. <productMenu id="ota"
  3697. type="2" >
  3698. <otaLanguages>
  3699. <otaLanguage
  3700. id="0"
  3701. name="English"
  3702. package="0"
  3703. />
  3704. <otaLanguage
  3705. id="0"
  3706. name="French"
  3707. package="1"
  3708. />
  3709. <otaLanguage
  3710. id="0"
  3711. name="Spanish"
  3712. package="2"
  3713. />
  3714. <otaLanguage
  3715. id="0"
  3716. name="Italian"
  3717. package="3"
  3718. />
  3719. <otaLanguage
  3720. id="0"
  3721. name="German"
  3722. package="4"
  3723. />
  3724. <otaLanguage
  3725. id="0"
  3726. name="Dutch"
  3727. package="5"
  3728. />
  3729. <otaLanguage
  3730. id="0"
  3731. name="Russian"
  3732. package="6"
  3733. />
  3734. <otaLanguage
  3735. id="0"
  3736. name="Chinese"
  3737. package="7"
  3738. />
  3739. <otaLanguage
  3740. id="0"
  3741. name="Korean"
  3742. package="8"
  3743. />
  3744. <otaLanguage
  3745. id="0"
  3746. name="Japanese"
  3747. package="9"
  3748. />
  3749. <otaLanguage
  3750. id="0"
  3751. name="Finnish"
  3752. package="10"
  3753. />
  3754. <otaLanguage
  3755. id="0"
  3756. name="Polish"
  3757. package="11"
  3758. />
  3759. </otaLanguages>
  3760. <otaPackages>
  3761. <package
  3762. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0.img"
  3763. size="5183988"
  3764. />
  3765. <package
  3766. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fr-FR.img"
  3767. size="5183988"
  3768. />
  3769. <package
  3770. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-es-ES.img"
  3771. size="5183988"
  3772. />
  3773. <package
  3774. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-it-IT.img"
  3775. size="5183988"
  3776. />
  3777. <package
  3778. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-de-DE.img"
  3779. size="5183988"
  3780. />
  3781. <package
  3782. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-nl-NL.img"
  3783. size="5183988"
  3784. />
  3785. <package
  3786. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ru-RU.img"
  3787. size="5183988"
  3788. />
  3789. <package
  3790. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-cmn-CN.img"
  3791. size="5183988"
  3792. />
  3793. <package
  3794. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ko-KR.img"
  3795. size="5183988"
  3796. />
  3797. <package
  3798. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ja-JP.img"
  3799. size="5183988"
  3800. />
  3801. <package
  3802. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fi-FI.img"
  3803. size="5183988"
  3804. />
  3805. <package
  3806. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-pl-PL.img"
  3807. size="5183988"
  3808. />
  3809. </otaPackages>
  3810. </productMenu>
  3811. <productMenu id="wa"
  3812. type="0" >
  3813. </productMenu>
  3814. <productMenu id="led"
  3815. type="5" >
  3816. </productMenu>
  3817. <productMenu id="led+"
  3818. type="2"
  3819. url="1" >
  3820. </productMenu>
  3821. <productMenu id="meshIntercom"
  3822. type="30" >
  3823. </productMenu>
  3824. <productMenu id="meshIntercom+"
  3825. type="3"
  3826. url="2" >
  3827. </productMenu>
  3828. <productMenu id="waveIntercom"
  3829. type="1" >
  3830. </productMenu>
  3831. <productMenu id="fmradio"
  3832. type="0" >
  3833. </productMenu>
  3834. <productMenu id="phone"
  3835. type="1" >
  3836. </productMenu>
  3837. <productMenu id="music"
  3838. type="1" >
  3839. </productMenu>
  3840. <productMenu id="musicSharing"
  3841. type="0" >
  3842. </productMenu>
  3843. <productMenu id="deviceSetting"
  3844. type="1"
  3845. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3846. <productMenuURL version="1.2.4"
  3847. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3848. />
  3849. </productMenu>
  3850. <productMenu id="quickGuide"
  3851. type="0"
  3852. url=""
  3853. size="1.52MB" >
  3854. </productMenu>
  3855. <productMenu id="userGuide"
  3856. type="1"
  3857. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3858. size="2.01MB" >
  3859. </productMenu>
  3860. <productMenu id="videoGuide"
  3861. type="0"
  3862. url=""
  3863. size="3.46MB" >
  3864. </productMenu>
  3865. <productMenu id="connectGuide"
  3866. type="1"
  3867. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3868. size="1.1MB" >
  3869. </productMenu>
  3870. <productMenu id="volume"
  3871. type="16" >
  3872. </productMenu>
  3873. <productMenu id="volume+"
  3874. type="2"
  3875. url="0x6004" >
  3876. </productMenu>
  3877. <productMenu id="battery"
  3878. type="1" >
  3879. </productMenu>
  3880. <productID id="6A0E"
  3881. />
  3882. <productGroupable type="0"
  3883. />
  3884. </product>
  3885. <product id="PHANTOM"
  3886. name="PHANTOM"
  3887. series="Helmet"
  3888. latestVersion="1.2.9"
  3889. latestVersionVoicePrompt="1.7"
  3890. show = "1" >
  3891. <productMenu id="protocol"
  3892. type="2" >
  3893. </productMenu>
  3894. <productMenu id="ota"
  3895. type="2" >
  3896. <otaLanguages>
  3897. <otaLanguage
  3898. id="0"
  3899. name="English"
  3900. package="0"
  3901. />
  3902. <otaLanguage
  3903. id="0"
  3904. name="French"
  3905. package="1"
  3906. />
  3907. <otaLanguage
  3908. id="0"
  3909. name="Spanish"
  3910. package="2"
  3911. />
  3912. <otaLanguage
  3913. id="0"
  3914. name="Italian"
  3915. package="3"
  3916. />
  3917. <otaLanguage
  3918. id="0"
  3919. name="German"
  3920. package="4"
  3921. />
  3922. <otaLanguage
  3923. id="0"
  3924. name="Dutch"
  3925. package="5"
  3926. />
  3927. <otaLanguage
  3928. id="0"
  3929. name="Russian"
  3930. package="6"
  3931. />
  3932. <otaLanguage
  3933. id="0"
  3934. name="Chinese"
  3935. package="7"
  3936. />
  3937. <otaLanguage
  3938. id="0"
  3939. name="Korean"
  3940. package="8"
  3941. />
  3942. <otaLanguage
  3943. id="0"
  3944. name="Japanese"
  3945. package="9"
  3946. />
  3947. <otaLanguage
  3948. id="0"
  3949. name="Finnish"
  3950. package="10"
  3951. />
  3952. <otaLanguage
  3953. id="0"
  3954. name="Polish"
  3955. package="11"
  3956. />
  3957. </otaLanguages>
  3958. <otaPackages>
  3959. <package
  3960. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0.img"
  3961. size="5183988"
  3962. />
  3963. <package
  3964. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fr-FR.img"
  3965. size="5183988"
  3966. />
  3967. <package
  3968. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-es-ES.img"
  3969. size="5183988"
  3970. />
  3971. <package
  3972. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-it-IT.img"
  3973. size="5183988"
  3974. />
  3975. <package
  3976. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-de-DE.img"
  3977. size="5183988"
  3978. />
  3979. <package
  3980. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-nl-NL.img"
  3981. size="5183988"
  3982. />
  3983. <package
  3984. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ru-RU.img"
  3985. size="5183988"
  3986. />
  3987. <package
  3988. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-cmn-CN.img"
  3989. size="5183988"
  3990. />
  3991. <package
  3992. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ko-KR.img"
  3993. size="5183988"
  3994. />
  3995. <package
  3996. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ja-JP.img"
  3997. size="5183988"
  3998. />
  3999. <package
  4000. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fi-FI.img"
  4001. size="5183988"
  4002. />
  4003. <package
  4004. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-pl-PL.img"
  4005. size="5183988"
  4006. />
  4007. </otaPackages>
  4008. </productMenu>
  4009. <productMenu id="wa"
  4010. type="0" >
  4011. </productMenu>
  4012. <productMenu id="led"
  4013. type="5" >
  4014. <productMenuType version="1.0.1"
  4015. type="4"
  4016. />
  4017. </productMenu>
  4018. <productMenu id="led+"
  4019. type="2"
  4020. url="1" >
  4021. <productMenuType version="1.0.1"
  4022. type="-1"
  4023. />
  4024. </productMenu>
  4025. <productMenu id="meshIntercom"
  4026. type="30" >
  4027. </productMenu>
  4028. <productMenu id="meshIntercom+"
  4029. type="3"
  4030. url="2" >
  4031. <productMenuURL version="1.0.4"
  4032. url="10"
  4033. />
  4034. </productMenu>
  4035. <productMenu id="waveIntercom"
  4036. type="1" >
  4037. <productMenuType version="1.0.9"
  4038. type="0"
  4039. />
  4040. </productMenu>
  4041. <productMenu id="fmradio"
  4042. type="0" >
  4043. </productMenu>
  4044. <productMenu id="phone"
  4045. type="1" >
  4046. </productMenu>
  4047. <productMenu id="music"
  4048. type="1" >
  4049. </productMenu>
  4050. <productMenu id="musicSharing"
  4051. type="0" >
  4052. </productMenu>
  4053. <productMenu id="deviceSetting"
  4054. type="1"
  4055. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  4056. <productMenuURL version="1.2.4"
  4057. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4058. />
  4059. <productMenuURL version="1.2.1"
  4060. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4061. />
  4062. <productMenuURL version="1.0.4"
  4063. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4064. />
  4065. <productMenuURL version="1.0.1"
  4066. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4067. />
  4068. </productMenu>
  4069. <productMenu id="quickGuide"
  4070. type="0"
  4071. url=""
  4072. size="1.12MB" >
  4073. </productMenu>
  4074. <productMenu id="userGuide"
  4075. type="1"
  4076. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4077. size="2.0MB" >
  4078. </productMenu>
  4079. <productMenu id="videoGuide"
  4080. type="0"
  4081. url=""
  4082. size="3.41MB" >
  4083. </productMenu>
  4084. <productMenu id="connectGuide"
  4085. type="1"
  4086. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4087. size="1.12MB" >
  4088. </productMenu>
  4089. <productMenu id="volume"
  4090. type="16" >
  4091. <productMenuType version="1.0"
  4092. type="13"
  4093. />
  4094. </productMenu>
  4095. <productMenu id="volume+"
  4096. type="2"
  4097. url="0x6004" >
  4098. </productMenu>
  4099. <productMenu id="battery"
  4100. type="1" >
  4101. </productMenu>
  4102. <productID id="6A04"
  4103. />
  4104. <productGroupable type="0"
  4105. />
  4106. </product>
  4107. <product id="PHANTOMEasyLink"
  4108. name="PHANTOM EasyLink"
  4109. series="Helmet"
  4110. latestVersion="0.1"
  4111. latestVersionVoicePrompt="1.2"
  4112. show = "-1" >
  4113. <productMenu id="protocol"
  4114. type="2" >
  4115. </productMenu>
  4116. <productMenu id="ota"
  4117. type="0" >
  4118. <otaLanguages>
  4119. <otaLanguage
  4120. id="0"
  4121. name="English"
  4122. package="0"
  4123. />
  4124. <otaLanguage
  4125. id="0"
  4126. name="French"
  4127. package="1"
  4128. />
  4129. <otaLanguage
  4130. id="0"
  4131. name="Spanish"
  4132. package="2"
  4133. />
  4134. <otaLanguage
  4135. id="0"
  4136. name="Italian"
  4137. package="3"
  4138. />
  4139. <otaLanguage
  4140. id="0"
  4141. name="German"
  4142. package="4"
  4143. />
  4144. <otaLanguage
  4145. id="0"
  4146. name="Dutch"
  4147. package="5"
  4148. />
  4149. <otaLanguage
  4150. id="0"
  4151. name="Russian"
  4152. package="6"
  4153. />
  4154. <otaLanguage
  4155. id="0"
  4156. name="Chinese"
  4157. package="7"
  4158. />
  4159. <otaLanguage
  4160. id="0"
  4161. name="Korean"
  4162. package="8"
  4163. />
  4164. <otaLanguage
  4165. id="0"
  4166. name="Japanese"
  4167. package="9"
  4168. />
  4169. <otaLanguage
  4170. id="0"
  4171. name="Finnish"
  4172. package="10"
  4173. />
  4174. <otaLanguage
  4175. id="0"
  4176. name="Polish"
  4177. package="11"
  4178. />
  4179. </otaLanguages>
  4180. <otaPackages>
  4181. <package
  4182. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4183. size="5183988"
  4184. />
  4185. <package
  4186. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4187. size="5183988"
  4188. />
  4189. <package
  4190. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4191. size="5183988"
  4192. />
  4193. <package
  4194. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4195. size="5183988"
  4196. />
  4197. <package
  4198. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4199. size="5183988"
  4200. />
  4201. <package
  4202. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4203. size="5183988"
  4204. />
  4205. <package
  4206. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4207. size="5183988"
  4208. />
  4209. <package
  4210. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4211. size="5183988"
  4212. />
  4213. <package
  4214. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4215. size="5183988"
  4216. />
  4217. <package
  4218. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4219. size="5183988"
  4220. />
  4221. <package
  4222. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4223. size="5183988"
  4224. />
  4225. <package
  4226. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4227. size="5183988"
  4228. />
  4229. </otaPackages>
  4230. </productMenu>
  4231. <productMenu id="meshIntercom"
  4232. type="30" >
  4233. </productMenu>
  4234. <productMenu id="meshIntercom+"
  4235. type="3"
  4236. url="2" >
  4237. </productMenu>
  4238. <productMenu id="waveIntercom"
  4239. type="1" >
  4240. </productMenu>
  4241. <productMenu id="fmradio"
  4242. type="0" >
  4243. </productMenu>
  4244. <productMenu id="phone"
  4245. type="1" >
  4246. </productMenu>
  4247. <productMenu id="music"
  4248. type="1" >
  4249. </productMenu>
  4250. <productMenu id="musicSharing"
  4251. type="0" >
  4252. </productMenu>
  4253. <productMenu id="deviceSetting"
  4254. type="1"
  4255. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4256. </productMenu>
  4257. <productMenu id="quickGuide"
  4258. type="0"
  4259. url=""
  4260. size="1.12MB" >
  4261. </productMenu>
  4262. <productMenu id="userGuide"
  4263. type="1"
  4264. url=""
  4265. size="2.0MB" >
  4266. </productMenu>
  4267. <productMenu id="videoGuide"
  4268. type="0"
  4269. url=""
  4270. size="3.41MB" >
  4271. </productMenu>
  4272. <productMenu id="connectGuide"
  4273. type="0"
  4274. url=""
  4275. size="1.12MB" >
  4276. </productMenu>
  4277. <productMenu id="volume"
  4278. type="16" >
  4279. </productMenu>
  4280. <productMenu id="battery"
  4281. type="1" >
  4282. </productMenu>
  4283. <productID id="6A18"
  4284. />
  4285. <productGroupable type="0"
  4286. />
  4287. </product>
  4288. <product id="SPIDERXSlim"
  4289. name="SPIDER X Slim"
  4290. series="SPIDER"
  4291. latestVersion="1.0"
  4292. latestVersionVoicePrompt="1.7"
  4293. show = "1" >
  4294. <productMenu id="protocol"
  4295. type="2" >
  4296. </productMenu>
  4297. <productMenu id="ota"
  4298. type="2" >
  4299. <otaLanguages>
  4300. <otaLanguage
  4301. id="0"
  4302. name="English"
  4303. package="0"
  4304. />
  4305. <otaLanguage
  4306. id="0"
  4307. name="French"
  4308. package="1"
  4309. />
  4310. <otaLanguage
  4311. id="0"
  4312. name="Spanish"
  4313. package="2"
  4314. />
  4315. <otaLanguage
  4316. id="0"
  4317. name="Italian"
  4318. package="3"
  4319. />
  4320. <otaLanguage
  4321. id="0"
  4322. name="German"
  4323. package="4"
  4324. />
  4325. <otaLanguage
  4326. id="0"
  4327. name="Dutch"
  4328. package="5"
  4329. />
  4330. <otaLanguage
  4331. id="0"
  4332. name="Russian"
  4333. package="6"
  4334. />
  4335. <otaLanguage
  4336. id="0"
  4337. name="Chinese"
  4338. package="7"
  4339. />
  4340. <otaLanguage
  4341. id="0"
  4342. name="Korean"
  4343. package="8"
  4344. />
  4345. <otaLanguage
  4346. id="0"
  4347. name="Japanese"
  4348. package="9"
  4349. />
  4350. <otaLanguage
  4351. id="0"
  4352. name="Finnish"
  4353. package="10"
  4354. />
  4355. <otaLanguage
  4356. id="0"
  4357. name="Polish"
  4358. package="11"
  4359. />
  4360. </otaLanguages>
  4361. <otaPackages>
  4362. <package
  4363. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5.img"
  4364. size="5183988"
  4365. />
  4366. <package
  4367. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fr-FR.img"
  4368. size="5183988"
  4369. />
  4370. <package
  4371. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-es-ES.img"
  4372. size="5183988"
  4373. />
  4374. <package
  4375. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-it-IT.img"
  4376. size="5183988"
  4377. />
  4378. <package
  4379. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-de-DE.img"
  4380. size="5183988"
  4381. />
  4382. <package
  4383. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-nl-NL.img"
  4384. size="5183988"
  4385. />
  4386. <package
  4387. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ru-RU.img"
  4388. size="5183988"
  4389. />
  4390. <package
  4391. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-cmn-CN.img"
  4392. size="5183988"
  4393. />
  4394. <package
  4395. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ko-KR.img"
  4396. size="5183988"
  4397. />
  4398. <package
  4399. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ja-JP.img"
  4400. size="5183988"
  4401. />
  4402. <package
  4403. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fi-FI.img"
  4404. size="5183988"
  4405. />
  4406. <package
  4407. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-pl-PL.img"
  4408. size="5183988"
  4409. />
  4410. </otaPackages>
  4411. </productMenu>
  4412. <productMenu id="meshIntercom"
  4413. type="30" >
  4414. </productMenu>
  4415. <productMenu id="meshIntercom+"
  4416. type="3"
  4417. url="2" >
  4418. </productMenu>
  4419. <productMenu id="waveIntercom"
  4420. type="1" >
  4421. </productMenu>
  4422. <productMenu id="fmradio"
  4423. type="1"
  4424. url="1" >
  4425. </productMenu>
  4426. <productMenu id="phone"
  4427. type="1" >
  4428. </productMenu>
  4429. <productMenu id="music"
  4430. type="1" >
  4431. </productMenu>
  4432. <productMenu id="musicSharing"
  4433. type="0" >
  4434. </productMenu>
  4435. <productMenu id="deviceSetting"
  4436. type="1"
  4437. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4438. </productMenu>
  4439. <productMenu id="quickGuide"
  4440. type="0"
  4441. url=""
  4442. size="1.12MB" >
  4443. </productMenu>
  4444. <productMenu id="userGuide"
  4445. type="1"
  4446. url=""
  4447. size="2.0MB" >
  4448. </productMenu>
  4449. <productMenu id="videoGuide"
  4450. type="0"
  4451. url=""
  4452. size="3.41MB" >
  4453. </productMenu>
  4454. <productMenu id="volume"
  4455. type="16" >
  4456. </productMenu>
  4457. <productMenu id="volume+"
  4458. type="2"
  4459. url="0x6004" >
  4460. </productMenu>
  4461. <productMenu id="appearance"
  4462. type="1"
  4463. url="2|white,silver,chrome,black" >
  4464. </productMenu>
  4465. <productMenu id="battery"
  4466. type="1" >
  4467. </productMenu>
  4468. <productID id="6A07"
  4469. />
  4470. <productGroupable type="0"
  4471. />
  4472. </product>
  4473. <product id="XFITM"
  4474. name="X-FIT M"
  4475. series="SPIDER"
  4476. latestVersion="0.1.11"
  4477. latestVersionVoicePrompt="1.1"
  4478. show = "-1" >
  4479. <productMenu id="protocol"
  4480. type="2" >
  4481. </productMenu>
  4482. <productMenu id="ota"
  4483. type="0" >
  4484. <otaLanguages>
  4485. <otaLanguage
  4486. id="0"
  4487. name="English"
  4488. package="0"
  4489. />
  4490. <otaLanguage
  4491. id="0"
  4492. name="French"
  4493. package="1"
  4494. />
  4495. <otaLanguage
  4496. id="0"
  4497. name="Spanish"
  4498. package="2"
  4499. />
  4500. <otaLanguage
  4501. id="0"
  4502. name="Italian"
  4503. package="3"
  4504. />
  4505. <otaLanguage
  4506. id="0"
  4507. name="German"
  4508. package="4"
  4509. />
  4510. <otaLanguage
  4511. id="0"
  4512. name="Dutch"
  4513. package="5"
  4514. />
  4515. <otaLanguage
  4516. id="0"
  4517. name="Russian"
  4518. package="6"
  4519. />
  4520. <otaLanguage
  4521. id="0"
  4522. name="Chinese"
  4523. package="7"
  4524. />
  4525. <otaLanguage
  4526. id="0"
  4527. name="Korean"
  4528. package="8"
  4529. />
  4530. <otaLanguage
  4531. id="0"
  4532. name="Japanese"
  4533. package="9"
  4534. />
  4535. <otaLanguage
  4536. id="0"
  4537. name="Finnish"
  4538. package="10"
  4539. />
  4540. <otaLanguage
  4541. id="0"
  4542. name="Polish"
  4543. package="11"
  4544. />
  4545. </otaLanguages>
  4546. <otaPackages>
  4547. <package
  4548. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4549. size="5183988"
  4550. />
  4551. <package
  4552. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4553. size="5183988"
  4554. />
  4555. <package
  4556. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4557. size="5183988"
  4558. />
  4559. <package
  4560. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4561. size="5183988"
  4562. />
  4563. <package
  4564. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4565. size="5183988"
  4566. />
  4567. <package
  4568. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4569. size="5183988"
  4570. />
  4571. <package
  4572. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4573. size="5183988"
  4574. />
  4575. <package
  4576. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4577. size="5183988"
  4578. />
  4579. <package
  4580. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4581. size="5183988"
  4582. />
  4583. <package
  4584. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4585. size="5183988"
  4586. />
  4587. <package
  4588. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4589. size="5183988"
  4590. />
  4591. <package
  4592. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4593. size="5183988"
  4594. />
  4595. </otaPackages>
  4596. </productMenu>
  4597. <productMenu id="meshIntercom"
  4598. type="30" >
  4599. </productMenu>
  4600. <productMenu id="meshIntercom+"
  4601. type="3"
  4602. url="2" >
  4603. </productMenu>
  4604. <productMenu id="waveIntercom"
  4605. type="1" >
  4606. </productMenu>
  4607. <productMenu id="fmradio"
  4608. type="1"
  4609. url="1" >
  4610. </productMenu>
  4611. <productMenu id="phone"
  4612. type="1" >
  4613. </productMenu>
  4614. <productMenu id="music"
  4615. type="1" >
  4616. </productMenu>
  4617. <productMenu id="musicSharing"
  4618. type="0" >
  4619. </productMenu>
  4620. <productMenu id="deviceSetting"
  4621. type="1"
  4622. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4623. </productMenu>
  4624. <productMenu id="quickGuide"
  4625. type="0"
  4626. url=""
  4627. size="1.12MB" >
  4628. </productMenu>
  4629. <productMenu id="userGuide"
  4630. type="1"
  4631. url=""
  4632. size="2.0MB" >
  4633. </productMenu>
  4634. <productMenu id="videoGuide"
  4635. type="0"
  4636. url=""
  4637. size="3.41MB" >
  4638. </productMenu>
  4639. <productMenu id="volume"
  4640. type="16" >
  4641. </productMenu>
  4642. <productMenu id="volume+"
  4643. type="2"
  4644. url="0x6004" >
  4645. </productMenu>
  4646. <productMenu id="battery"
  4647. type="1" >
  4648. </productMenu>
  4649. <productID id="6A17"
  4650. />
  4651. <productGroupable type="0"
  4652. />
  4653. </product>
  4654. <product id="VORTEXMESH"
  4655. name="VORTEX MESH"
  4656. series="Helmet"
  4657. latestVersion="0.1.11"
  4658. latestVersionVoicePrompt="1.1"
  4659. show = "-1" >
  4660. <productMenu id="protocol"
  4661. type="2" >
  4662. </productMenu>
  4663. <productMenu id="ota"
  4664. type="0" >
  4665. <otaLanguages>
  4666. <otaLanguage
  4667. id="0"
  4668. name="English"
  4669. package="0"
  4670. />
  4671. <otaLanguage
  4672. id="0"
  4673. name="French"
  4674. package="1"
  4675. />
  4676. <otaLanguage
  4677. id="0"
  4678. name="Spanish"
  4679. package="2"
  4680. />
  4681. <otaLanguage
  4682. id="0"
  4683. name="Italian"
  4684. package="3"
  4685. />
  4686. <otaLanguage
  4687. id="0"
  4688. name="German"
  4689. package="4"
  4690. />
  4691. <otaLanguage
  4692. id="0"
  4693. name="Dutch"
  4694. package="5"
  4695. />
  4696. <otaLanguage
  4697. id="0"
  4698. name="Russian"
  4699. package="6"
  4700. />
  4701. <otaLanguage
  4702. id="0"
  4703. name="Chinese"
  4704. package="7"
  4705. />
  4706. <otaLanguage
  4707. id="0"
  4708. name="Korean"
  4709. package="8"
  4710. />
  4711. <otaLanguage
  4712. id="0"
  4713. name="Japanese"
  4714. package="9"
  4715. />
  4716. <otaLanguage
  4717. id="0"
  4718. name="Finnish"
  4719. package="10"
  4720. />
  4721. <otaLanguage
  4722. id="0"
  4723. name="Polish"
  4724. package="11"
  4725. />
  4726. </otaLanguages>
  4727. <otaPackages>
  4728. <package
  4729. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4730. size="5183988"
  4731. />
  4732. <package
  4733. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4734. size="5183988"
  4735. />
  4736. <package
  4737. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4738. size="5183988"
  4739. />
  4740. <package
  4741. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4742. size="5183988"
  4743. />
  4744. <package
  4745. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4746. size="5183988"
  4747. />
  4748. <package
  4749. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4750. size="5183988"
  4751. />
  4752. <package
  4753. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4754. size="5183988"
  4755. />
  4756. <package
  4757. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4758. size="5183988"
  4759. />
  4760. <package
  4761. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4762. size="5183988"
  4763. />
  4764. <package
  4765. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4766. size="5183988"
  4767. />
  4768. <package
  4769. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4770. size="5183988"
  4771. />
  4772. <package
  4773. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4774. size="5183988"
  4775. />
  4776. </otaPackages>
  4777. </productMenu>
  4778. <productMenu id="wa"
  4779. type="0" >
  4780. </productMenu>
  4781. <productMenu id="led"
  4782. type="5" >
  4783. </productMenu>
  4784. <productMenu id="led+"
  4785. type="2"
  4786. url="1" >
  4787. </productMenu>
  4788. <productMenu id="meshIntercom"
  4789. type="30" >
  4790. </productMenu>
  4791. <productMenu id="meshIntercom+"
  4792. type="3"
  4793. url="2" >
  4794. </productMenu>
  4795. <productMenu id="waveIntercom"
  4796. type="1" >
  4797. </productMenu>
  4798. <productMenu id="fmradio"
  4799. type="0" >
  4800. </productMenu>
  4801. <productMenu id="phone"
  4802. type="1" >
  4803. </productMenu>
  4804. <productMenu id="music"
  4805. type="1" >
  4806. </productMenu>
  4807. <productMenu id="musicSharing"
  4808. type="0" >
  4809. </productMenu>
  4810. <productMenu id="deviceSetting"
  4811. type="1"
  4812. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4813. </productMenu>
  4814. <productMenu id="quickGuide"
  4815. type="0"
  4816. url=""
  4817. size="1.12MB" >
  4818. </productMenu>
  4819. <productMenu id="userGuide"
  4820. type="1"
  4821. url=""
  4822. size="2.0MB" >
  4823. </productMenu>
  4824. <productMenu id="videoGuide"
  4825. type="0"
  4826. url=""
  4827. size="3.41MB" >
  4828. </productMenu>
  4829. <productMenu id="volume"
  4830. type="16" >
  4831. </productMenu>
  4832. <productMenu id="battery"
  4833. type="1" >
  4834. </productMenu>
  4835. <productID id="6A12"
  4836. />
  4837. <productGroupable type="0"
  4838. />
  4839. </product>
  4840. <product id="MeshOn"
  4841. name="Mesh ON"
  4842. series="60"
  4843. latestVersion="1.0.1"
  4844. latestVersionVoicePrompt="0.7"
  4845. show = "-1" >
  4846. <productMenu id="protocol"
  4847. type="2" >
  4848. </productMenu>
  4849. <productMenu id="ota"
  4850. type="2" >
  4851. <otaPackages>
  4852. <package
  4853. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4854. size="2945812"
  4855. />
  4856. </otaPackages>
  4857. </productMenu>
  4858. <productMenu id="meshIntercom+"
  4859. type="3"
  4860. url="4" >
  4861. </productMenu>
  4862. <productMenu id="waveIntercom"
  4863. type="0" >
  4864. </productMenu>
  4865. <productMenu id="phone"
  4866. type="0" >
  4867. </productMenu>
  4868. <productMenu id="music"
  4869. type="0" >
  4870. </productMenu>
  4871. <productMenu id="musicSharing"
  4872. type="0" >
  4873. </productMenu>
  4874. <productMenu id="deviceSetting"
  4875. type="1"
  4876. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4877. </productMenu>
  4878. <productMenu id="userGuide"
  4879. type="1"
  4880. url=""
  4881. size="2.0MB" >
  4882. </productMenu>
  4883. <productMenu id="bluetoothHeadset"
  4884. type="1"
  4885. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4886. </productMenu>
  4887. <productMenu id="volume"
  4888. type="0" >
  4889. </productMenu>
  4890. <productMenu id="battery"
  4891. type="1" >
  4892. </productMenu>
  4893. <productID id="684E"
  4894. />
  4895. <productGroupable type="0"
  4896. />
  4897. </product>
  4898. <product id="Impulse"
  4899. name="Impulse"
  4900. series="Helmet"
  4901. latestVersion="1.4.1"
  4902. show = "1" >
  4903. <productMenu id="protocol"
  4904. type="2" >
  4905. </productMenu>
  4906. <productMenu id="alexa"
  4907. type="0" >
  4908. </productMenu>
  4909. <productMenu id="ota"
  4910. type="0" >
  4911. </productMenu>
  4912. <productMenu id="wa"
  4913. type="24" >
  4914. </productMenu>
  4915. <productMenu id="manager"
  4916. type="0" >
  4917. </productMenu>
  4918. <productMenu id="sip"
  4919. type="1" >
  4920. </productMenu>
  4921. <productMenu id="led"
  4922. type="1" >
  4923. <productMenuType version="1.0.1"
  4924. type="2"
  4925. />
  4926. <productMenuType version="1.0"
  4927. type="1"
  4928. />
  4929. </productMenu>
  4930. <productMenu id="meshIntercom"
  4931. type="30" >
  4932. <productMenuType version="1.1.1"
  4933. type="20"
  4934. />
  4935. </productMenu>
  4936. <productMenu id="meshIntercom+"
  4937. type="3"
  4938. url="2" >
  4939. <productMenuType version="1.3.9"
  4940. type="2"
  4941. />
  4942. <productMenuURL version="1.1.1"
  4943. url="0"
  4944. />
  4945. </productMenu>
  4946. <productMenu id="waveIntercom"
  4947. type="1" >
  4948. <productMenuType version="1.3.9"
  4949. type="0"
  4950. />
  4951. </productMenu>
  4952. <productMenu id="bluetoothIntercom"
  4953. type="1" >
  4954. </productMenu>
  4955. <productMenu id="phone"
  4956. type="1" >
  4957. </productMenu>
  4958. <productMenu id="music"
  4959. type="1" >
  4960. </productMenu>
  4961. <productMenu id="fmradio"
  4962. type="1" >
  4963. </productMenu>
  4964. <productMenu id="deviceSetting"
  4965. type="1"
  4966. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4967. <productMenuURL version="1.3.9"
  4968. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4969. />
  4970. <productMenuURL version="1.1.1"
  4971. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4972. />
  4973. <productMenuURL version="1.0.4"
  4974. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4975. />
  4976. </productMenu>
  4977. <productMenu id="quickGuide"
  4978. type="0"
  4979. url=""
  4980. size="344KB" >
  4981. </productMenu>
  4982. <productMenu id="userGuide"
  4983. type="1"
  4984. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  4985. size="3.41MB" >
  4986. </productMenu>
  4987. <productMenu id="connectGuide"
  4988. type="1"
  4989. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4990. size="1.12MB" >
  4991. </productMenu>
  4992. <productMenu id="volume"
  4993. type="11" >
  4994. </productMenu>
  4995. <productMenu id="battery"
  4996. type="1" >
  4997. </productMenu>
  4998. <productID id="3148"
  4999. />
  5000. <productGroupable type="0"
  5001. />
  5002. </product>
  5003. <product id="Impulse"
  5004. name="Impulse"
  5005. series="Helmet"
  5006. latestVersion="2.0"
  5007. show = "-1" >
  5008. <productMenu id="protocol"
  5009. type="2" >
  5010. </productMenu>
  5011. <productMenu id="alexa"
  5012. type="0" >
  5013. </productMenu>
  5014. <productMenu id="ota"
  5015. type="0" >
  5016. </productMenu>
  5017. <productMenu id="wa"
  5018. type="8" >
  5019. </productMenu>
  5020. <productMenu id="manager"
  5021. type="0" >
  5022. </productMenu>
  5023. <productMenu id="sip"
  5024. type="1" >
  5025. </productMenu>
  5026. <productMenu id="led"
  5027. type="3" >
  5028. </productMenu>
  5029. <productMenu id="meshIntercom"
  5030. type="20" >
  5031. </productMenu>
  5032. <productMenu id="bluetoothIntercom"
  5033. type="1" >
  5034. </productMenu>
  5035. <productMenu id="phone"
  5036. type="1" >
  5037. </productMenu>
  5038. <productMenu id="music"
  5039. type="1" >
  5040. </productMenu>
  5041. <productMenu id="fmradio"
  5042. type="1" >
  5043. </productMenu>
  5044. <productMenu id="deviceSetting"
  5045. type="1"
  5046. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5047. </productMenu>
  5048. <productMenu id="quickGuide"
  5049. type="1"
  5050. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5051. size="344KB" >
  5052. </productMenu>
  5053. <productMenu id="userGuide"
  5054. type="1"
  5055. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5056. size="3.41MB" >
  5057. </productMenu>
  5058. <productMenu id="volume"
  5059. type="11" >
  5060. </productMenu>
  5061. <productMenu id="battery"
  5062. type="1" >
  5063. </productMenu>
  5064. <productID id="3221"
  5065. />
  5066. <productGroupable type="0"
  5067. />
  5068. </product>
  5069. <product id="Stryker"
  5070. name="Stryker"
  5071. series="Helmet"
  5072. latestVersion="1.4.1"
  5073. show = "1" >
  5074. <productMenu id="protocol"
  5075. type="2" >
  5076. </productMenu>
  5077. <productMenu id="alexa"
  5078. type="0" >
  5079. </productMenu>
  5080. <productMenu id="ota"
  5081. type="0" >
  5082. </productMenu>
  5083. <productMenu id="wa"
  5084. type="40" >
  5085. </productMenu>
  5086. <productMenu id="manager"
  5087. type="0" >
  5088. </productMenu>
  5089. <productMenu id="sip"
  5090. type="1" >
  5091. </productMenu>
  5092. <productMenu id="led"
  5093. type="1" >
  5094. <productMenuType version="1.0.1"
  5095. type="2"
  5096. />
  5097. <productMenuType version="1.0"
  5098. type="1"
  5099. />
  5100. </productMenu>
  5101. <productMenu id="meshIntercom"
  5102. type="30" >
  5103. <productMenuType version="1.1.1"
  5104. type="20"
  5105. />
  5106. </productMenu>
  5107. <productMenu id="meshIntercom+"
  5108. type="3"
  5109. url="2" >
  5110. <productMenuType version="1.3.9"
  5111. type="2"
  5112. />
  5113. <productMenuURL version="1.1.1"
  5114. url="0"
  5115. />
  5116. </productMenu>
  5117. <productMenu id="waveIntercom"
  5118. type="1" >
  5119. <productMenuType version="1.2.9"
  5120. type="0"
  5121. />
  5122. </productMenu>
  5123. <productMenu id="bluetoothIntercom"
  5124. type="1" >
  5125. </productMenu>
  5126. <productMenu id="phone"
  5127. type="1" >
  5128. </productMenu>
  5129. <productMenu id="music"
  5130. type="1" >
  5131. </productMenu>
  5132. <productMenu id="fmradio"
  5133. type="1" >
  5134. </productMenu>
  5135. <productMenu id="deviceSetting"
  5136. type="1"
  5137. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5138. <productMenuURL version="1.3.9"
  5139. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5140. />
  5141. <productMenuURL version="1.1.1"
  5142. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5143. />
  5144. <productMenuURL version="1.0.4"
  5145. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5146. />
  5147. </productMenu>
  5148. <productMenu id="quickGuide"
  5149. type="0"
  5150. url=""
  5151. size="344KB" >
  5152. </productMenu>
  5153. <productMenu id="userGuide"
  5154. type="1"
  5155. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5156. size="3.41MB" >
  5157. </productMenu>
  5158. <productMenu id="connectGuide"
  5159. type="1"
  5160. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5161. size="1.12MB" >
  5162. </productMenu>
  5163. <productMenu id="volume"
  5164. type="11" >
  5165. </productMenu>
  5166. <productMenu id="battery"
  5167. type="1" >
  5168. </productMenu>
  5169. <productID id="3154"
  5170. />
  5171. <productGroupable type="0"
  5172. />
  5173. </product>
  5174. <product id="SRL3Plus"
  5175. name="SRL3 Plus"
  5176. series="60"
  5177. latestVersion="0.9.5"
  5178. latestVersionMesh="0.19"
  5179. latestVersionVoicePrompt="1.2"
  5180. show = "-1" >
  5181. <productMenu id="protocol"
  5182. type="2" >
  5183. </productMenu>
  5184. <productMenu id="ota"
  5185. type="2" >
  5186. <otaLanguages>
  5187. <otaLanguage
  5188. id="0"
  5189. name="English"
  5190. package="0"
  5191. />
  5192. <otaLanguage
  5193. id="0"
  5194. name="French"
  5195. package="1"
  5196. />
  5197. <otaLanguage
  5198. id="0"
  5199. name="Spanish"
  5200. package="2"
  5201. />
  5202. <otaLanguage
  5203. id="0"
  5204. name="Italian"
  5205. package="3"
  5206. />
  5207. <otaLanguage
  5208. id="0"
  5209. name="German"
  5210. package="4"
  5211. />
  5212. <otaLanguage
  5213. id="0"
  5214. name="Dutch"
  5215. package="5"
  5216. />
  5217. <otaLanguage
  5218. id="0"
  5219. name="Russian"
  5220. package="6"
  5221. />
  5222. <otaLanguage
  5223. id="0"
  5224. name="Chinese"
  5225. package="7"
  5226. />
  5227. <otaLanguage
  5228. id="0"
  5229. name="Korean"
  5230. package="8"
  5231. />
  5232. <otaLanguage
  5233. id="0"
  5234. name="Japanese"
  5235. package="9"
  5236. />
  5237. <otaLanguage
  5238. id="0"
  5239. name="Finnish"
  5240. package="10"
  5241. />
  5242. </otaLanguages>
  5243. <otaPackages>
  5244. <package
  5245. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0.img"
  5246. size="5183988"
  5247. />
  5248. <package
  5249. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fr-FR.img"
  5250. size="5183988"
  5251. />
  5252. <package
  5253. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-es-ES.img"
  5254. size="5183988"
  5255. />
  5256. <package
  5257. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-it-IT.img"
  5258. size="5183988"
  5259. />
  5260. <package
  5261. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-de-DE.img"
  5262. size="5183988"
  5263. />
  5264. <package
  5265. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-nl-NL.img"
  5266. size="5183988"
  5267. />
  5268. <package
  5269. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ru-RU.img"
  5270. size="5183988"
  5271. />
  5272. <package
  5273. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-cmn-CN.img"
  5274. size="5183988"
  5275. />
  5276. <package
  5277. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ko-KR.img"
  5278. size="5183988"
  5279. />
  5280. <package
  5281. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ja-JP.img"
  5282. size="5183988"
  5283. />
  5284. <package
  5285. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fi-FI.img"
  5286. size="5183988"
  5287. />
  5288. </otaPackages>
  5289. </productMenu>
  5290. <productMenu id="sip"
  5291. type="1" >
  5292. </productMenu>
  5293. <productMenu id="illusion"
  5294. type="1" >
  5295. </productMenu>
  5296. <productMenu id="meshIntercom+"
  5297. type="3"
  5298. url="2" >
  5299. </productMenu>
  5300. <productMenu id="waveIntercom"
  5301. type="1" >
  5302. </productMenu>
  5303. <productMenu id="bluetoothIntercom"
  5304. type="1"
  5305. url="2" >
  5306. </productMenu>
  5307. <productMenu id="bluetoothIntercomGrouping"
  5308. type="0" >
  5309. </productMenu>
  5310. <productMenu id="fmradio"
  5311. type="1"
  5312. url="1" >
  5313. </productMenu>
  5314. <productMenu id="phone"
  5315. type="1" >
  5316. </productMenu>
  5317. <productMenu id="music"
  5318. type="1" >
  5319. </productMenu>
  5320. <productMenu id="musicSharing"
  5321. type="0" >
  5322. </productMenu>
  5323. <productMenu id="deviceSetting"
  5324. type="1"
  5325. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  5326. </productMenu>
  5327. <productMenu id="quickGuide"
  5328. type="0"
  5329. url=""
  5330. size="1.12MB" >
  5331. </productMenu>
  5332. <productMenu id="userGuide"
  5333. type="0"
  5334. url=""
  5335. size="2.0MB" >
  5336. </productMenu>
  5337. <productMenu id="videoGuide"
  5338. type="0"
  5339. url=""
  5340. size="3.41MB" >
  5341. </productMenu>
  5342. <productMenu id="volume"
  5343. type="16" >
  5344. </productMenu>
  5345. <productMenu id="soundMode"
  5346. type="1" >
  5347. </productMenu>
  5348. <productMenu id="battery"
  5349. type="1" >
  5350. </productMenu>
  5351. <productID id="6A08"
  5352. />
  5353. <productGroupable type="0"
  5354. />
  5355. </product>
  5356. <product id="SRL3"
  5357. name="SRL3"
  5358. series="SRL"
  5359. latestVersion="1.5"
  5360. show = "1" >
  5361. <productMenu id="protocol"
  5362. type="2" >
  5363. </productMenu>
  5364. <productMenu id="alexa"
  5365. type="0" >
  5366. </productMenu>
  5367. <productMenu id="ota"
  5368. type="0" >
  5369. </productMenu>
  5370. <productMenu id="wa"
  5371. type="1" >
  5372. </productMenu>
  5373. <productMenu id="sip"
  5374. type="1" >
  5375. </productMenu>
  5376. <productMenu id="meshIntercom"
  5377. type="30" >
  5378. </productMenu>
  5379. <productMenu id="meshIntercom+"
  5380. type="3"
  5381. url="2" >
  5382. <productMenuType version="1.3.9"
  5383. type="2"
  5384. />
  5385. </productMenu>
  5386. <productMenu id="waveIntercom"
  5387. type="1" >
  5388. <productMenuType version="1.4.9"
  5389. type="0"
  5390. />
  5391. </productMenu>
  5392. <productMenu id="bluetoothIntercom"
  5393. type="1" >
  5394. </productMenu>
  5395. <productMenu id="phone"
  5396. type="1" >
  5397. </productMenu>
  5398. <productMenu id="music"
  5399. type="1" >
  5400. </productMenu>
  5401. <productMenu id="fmradio"
  5402. type="1" >
  5403. </productMenu>
  5404. <productMenu id="deviceSetting"
  5405. type="1"
  5406. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5407. <productMenuURL version="1.3"
  5408. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5409. />
  5410. </productMenu>
  5411. <productMenu id="quickGuide"
  5412. type="0"
  5413. url=""
  5414. size="344KB" >
  5415. </productMenu>
  5416. <productMenu id="userGuide"
  5417. type="1"
  5418. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5419. size="3.41MB" >
  5420. </productMenu>
  5421. <productMenu id="connectGuide"
  5422. type="1"
  5423. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5424. size="1.12MB" >
  5425. </productMenu>
  5426. <productMenu id="volume"
  5427. type="11" >
  5428. </productMenu>
  5429. <productMenu id="battery"
  5430. type="1" >
  5431. </productMenu>
  5432. <productID id="3219"
  5433. />
  5434. <productGroupable type="0"
  5435. />
  5436. </product>
  5437. <product id="SRL_Mesh"
  5438. name="SRL-Mesh"
  5439. series="SRL"
  5440. latestVersion="1.7.1"
  5441. show = "1" >
  5442. <productMenu id="protocol"
  5443. type="2" >
  5444. </productMenu>
  5445. <productMenu id="alexa"
  5446. type="0" >
  5447. </productMenu>
  5448. <productMenu id="ota"
  5449. type="0" >
  5450. </productMenu>
  5451. <productMenu id="wa"
  5452. type="1" >
  5453. </productMenu>
  5454. <productMenu id="sip"
  5455. type="1" >
  5456. </productMenu>
  5457. <productMenu id="meshIntercom"
  5458. type="30" >
  5459. <productMenuType version="1.1.1"
  5460. type="20"
  5461. />
  5462. </productMenu>
  5463. <productMenu id="meshIntercom+"
  5464. type="3"
  5465. url="2" >
  5466. <productMenuType version="1.5.9"
  5467. type="2"
  5468. />
  5469. <productMenuURL version="1.1.1"
  5470. url="0"
  5471. />
  5472. </productMenu>
  5473. <productMenu id="waveIntercom"
  5474. type="1" >
  5475. <productMenuType version="1.6.9"
  5476. type="0"
  5477. />
  5478. </productMenu>
  5479. <productMenu id="bluetoothIntercom"
  5480. type="1" >
  5481. </productMenu>
  5482. <productMenu id="phone"
  5483. type="1" >
  5484. </productMenu>
  5485. <productMenu id="music"
  5486. type="1" >
  5487. </productMenu>
  5488. <productMenu id="fmradio"
  5489. type="1" >
  5490. </productMenu>
  5491. <productMenu id="deviceSetting"
  5492. type="1"
  5493. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5494. <productMenuURL version="1.5"
  5495. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5496. />
  5497. <productMenuURL version="1.1.1"
  5498. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5499. />
  5500. <productMenuURL version="1.0.3"
  5501. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5502. />
  5503. </productMenu>
  5504. <productMenu id="quickGuide"
  5505. type="0"
  5506. url=""
  5507. size="344KB" >
  5508. </productMenu>
  5509. <productMenu id="userGuide"
  5510. type="1"
  5511. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5512. size="3.41MB" >
  5513. </productMenu>
  5514. <productMenu id="connectGuide"
  5515. type="1"
  5516. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5517. size="1.12MB" >
  5518. </productMenu>
  5519. <productMenu id="volume"
  5520. type="11" >
  5521. </productMenu>
  5522. <productMenu id="battery"
  5523. type="1" >
  5524. </productMenu>
  5525. <productID id="3216"
  5526. />
  5527. <productGroupable type="0"
  5528. />
  5529. </product>
  5530. <product id="SRL_EXT"
  5531. name="SRL-EXT"
  5532. series="SRL"
  5533. latestVersion="1.7.1"
  5534. show = "1" >
  5535. <productMenu id="protocol"
  5536. type="2" >
  5537. </productMenu>
  5538. <productMenu id="alexa"
  5539. type="0" >
  5540. </productMenu>
  5541. <productMenu id="ota"
  5542. type="0" >
  5543. </productMenu>
  5544. <productMenu id="wa"
  5545. type="0" >
  5546. </productMenu>
  5547. <productMenu id="sip"
  5548. type="1" >
  5549. </productMenu>
  5550. <productMenu id="meshIntercom"
  5551. type="30" >
  5552. <productMenuType version="1.1.1"
  5553. type="20"
  5554. />
  5555. </productMenu>
  5556. <productMenu id="meshIntercom+"
  5557. type="3"
  5558. url="2" >
  5559. <productMenuType version="1.5.9"
  5560. type="2"
  5561. />
  5562. <productMenuURL version="1.1.1"
  5563. url="0"
  5564. />
  5565. </productMenu>
  5566. <productMenu id="waveIntercom"
  5567. type="1" >
  5568. <productMenuType version="1.6.9"
  5569. type="0"
  5570. />
  5571. </productMenu>
  5572. <productMenu id="bluetoothIntercom"
  5573. type="1" >
  5574. </productMenu>
  5575. <productMenu id="phone"
  5576. type="1" >
  5577. </productMenu>
  5578. <productMenu id="music"
  5579. type="1" >
  5580. </productMenu>
  5581. <productMenu id="fmradio"
  5582. type="1" >
  5583. </productMenu>
  5584. <productMenu id="deviceSetting"
  5585. type="1"
  5586. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5587. <productMenuURL version="1.5"
  5588. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5589. />
  5590. <productMenuURL version="1.1.1"
  5591. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5592. />
  5593. <productMenuURL version="1.0.3"
  5594. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5595. />
  5596. </productMenu>
  5597. <productMenu id="quickGuide"
  5598. type="0"
  5599. url=""
  5600. size="344KB" >
  5601. </productMenu>
  5602. <productMenu id="userGuide"
  5603. type="1"
  5604. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5605. size="3.41MB" >
  5606. </productMenu>
  5607. <productMenu id="connectGuide"
  5608. type="1"
  5609. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5610. size="1.12MB" >
  5611. </productMenu>
  5612. <productMenu id="volume"
  5613. type="11" >
  5614. </productMenu>
  5615. <productMenu id="battery"
  5616. type="1" >
  5617. </productMenu>
  5618. <productID id="3212"
  5619. />
  5620. <productGroupable type="0"
  5621. />
  5622. </product>
  5623. <product id="SRL2"
  5624. name="SRL2"
  5625. series="SRL"
  5626. latestVersion="1.0.9"
  5627. show = "1" >
  5628. <productMenu id="protocol"
  5629. type="0">
  5630. </productMenu>
  5631. <productMenu id="sip"
  5632. type="1" >
  5633. </productMenu>
  5634. <productMenu id="bluetoothIntercom"
  5635. type="1" >
  5636. </productMenu>
  5637. <productMenu id="intercomSetting"
  5638. type="1" >
  5639. </productMenu>
  5640. <productMenu id="phone"
  5641. type="2" >
  5642. </productMenu>
  5643. <productMenu id="fmradio"
  5644. type="3" >
  5645. </productMenu>
  5646. <productMenu id="deviceSetting"
  5647. type="1"
  5648. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5649. </productMenu>
  5650. <productMenu id="quickGuide"
  5651. type="1"
  5652. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5653. size="846KB" >
  5654. </productMenu>
  5655. <productMenu id="userGuide"
  5656. type="1"
  5657. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5658. size="1.18MB" >
  5659. </productMenu>
  5660. <productMenu id="connectGuide"
  5661. type="1"
  5662. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5663. size="1.12MB" >
  5664. </productMenu>
  5665. <productID id="4530"
  5666. />
  5667. <productGroupable type="1"
  5668. />
  5669. </product>
  5670. <product id="Neotec2"
  5671. name="SRL Neotec2"
  5672. series="SRL"
  5673. latestVersion="1.1.5"
  5674. show = "1" >
  5675. <productMenu id="protocol"
  5676. type="0">
  5677. </productMenu>
  5678. <productMenu id="sip"
  5679. type="1" >
  5680. </productMenu>
  5681. <productMenu id="bluetoothIntercom"
  5682. type="1" >
  5683. </productMenu>
  5684. <productMenu id="intercomSetting"
  5685. type="1" >
  5686. </productMenu>
  5687. <productMenu id="phone"
  5688. type="2" >
  5689. </productMenu>
  5690. <productMenu id="fmradio"
  5691. type="3" >
  5692. </productMenu>
  5693. <productMenu id="deviceSetting"
  5694. type="1"
  5695. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5696. </productMenu>
  5697. <productMenu id="quickGuide"
  5698. type="0"
  5699. url=""
  5700. size="796KB" >
  5701. </productMenu>
  5702. <productMenu id="userGuide"
  5703. type="1"
  5704. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5705. size="1.90MB" >
  5706. </productMenu>
  5707. <productMenu id="connectGuide"
  5708. type="1"
  5709. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5710. size="1.12MB" >
  5711. </productMenu>
  5712. <productID id="4510"
  5713. />
  5714. <productGroupable type="1"
  5715. />
  5716. </product>
  5717. <product id="SPIDERST2ANC"
  5718. name="SPIDER ST2 ANC"
  5719. series="SPIDER"
  5720. latestVersion="0.5.1"
  5721. latestVersionVoicePrompt="0.2"
  5722. latestVersionMesh="0.8"
  5723. show = "-1" >
  5724. <productMenu id="protocol"
  5725. type="2" >
  5726. </productMenu>
  5727. <productMenu id="ota"
  5728. type="0" >
  5729. <otaPackages>
  5730. <package
  5731. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5732. size="2945812"
  5733. />
  5734. </otaPackages>
  5735. </productMenu>
  5736. <productMenu id="wa"
  5737. type="0" >
  5738. </productMenu>
  5739. <productMenu id="led"
  5740. type="1" >
  5741. </productMenu>
  5742. <productMenu id="meshIntercom"
  5743. type="30" >
  5744. </productMenu>
  5745. <productMenu id="fmradio"
  5746. type="1" >
  5747. </productMenu>
  5748. <productMenu id="phone"
  5749. type="1" >
  5750. </productMenu>
  5751. <productMenu id="music"
  5752. type="1" >
  5753. </productMenu>
  5754. <productMenu id="musicSharing"
  5755. type="0" >
  5756. </productMenu>
  5757. <productMenu id="deviceSetting"
  5758. type="1"
  5759. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  5760. </productMenu>
  5761. <productMenu id="quickGuide"
  5762. type="1"
  5763. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5764. size="1.12MB" >
  5765. </productMenu>
  5766. <productMenu id="userGuide"
  5767. type="1"
  5768. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5769. size="2.0MB" >
  5770. </productMenu>
  5771. <productMenu id="videoGuide"
  5772. type="1"
  5773. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5774. size="3.41MB" >
  5775. </productMenu>
  5776. <productMenu id="volume"
  5777. type="12" >
  5778. </productMenu>
  5779. <productMenu id="battery"
  5780. type="1" >
  5781. </productMenu>
  5782. <productID id="6A00"
  5783. />
  5784. <productGroupable type="0"
  5785. />
  5786. </product>
  5787. <product id="SPIDER_ST1"
  5788. name="SPIDER ST1"
  5789. series="SPIDER"
  5790. latestVersion="2.5.3"
  5791. latestVersionVoicePrompt="1.6"
  5792. show = "1" >
  5793. <productMenu id="protocol"
  5794. type="2" >
  5795. </productMenu>
  5796. <productMenu id="alexa"
  5797. type="0" >
  5798. </productMenu>
  5799. <productMenu id="ota"
  5800. type="2" >
  5801. <productMenuType version="2.1.9"
  5802. type="0"
  5803. />
  5804. <otaPackages>
  5805. <package
  5806. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  5807. size="2945812"
  5808. />
  5809. </otaPackages>
  5810. </productMenu>
  5811. <productMenu id="wa"
  5812. type="0" >
  5813. </productMenu>
  5814. <productMenu id="meshIntercom"
  5815. type="30" >
  5816. <productMenuType version="2.1.1"
  5817. type="20"
  5818. />
  5819. </productMenu>
  5820. <productMenu id="meshIntercom+"
  5821. type="3"
  5822. url="2" >
  5823. <productMenuType version="2.2.9"
  5824. type="2"
  5825. />
  5826. <productMenuURL version="2.1.1"
  5827. url="0"
  5828. />
  5829. </productMenu>
  5830. <productMenu id="waveIntercom"
  5831. type="1" >
  5832. <productMenuType version="2.3.9"
  5833. type="0"
  5834. />
  5835. </productMenu>
  5836. <productMenu id="phone"
  5837. type="1" >
  5838. </productMenu>
  5839. <productMenu id="music"
  5840. type="1" >
  5841. </productMenu>
  5842. <productMenu id="musicSharing"
  5843. type="0" >
  5844. </productMenu>
  5845. <productMenu id="deviceSetting"
  5846. type="1"
  5847. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5848. <productMenuURL version="2.4.9"
  5849. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5850. />
  5851. <productMenuURL version="2.2.2"
  5852. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5853. />
  5854. <productMenuURL version="2.1.1"
  5855. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5856. />
  5857. </productMenu>
  5858. <productMenu id="quickGuide"
  5859. type="0"
  5860. url=""
  5861. size="1.12MB" >
  5862. </productMenu>
  5863. <productMenu id="userGuide"
  5864. type="1"
  5865. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5866. size="2.0MB" >
  5867. </productMenu>
  5868. <productMenu id="videoGuide"
  5869. type="1"
  5870. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5871. size="3.41MB" >
  5872. </productMenu>
  5873. <productMenu id="connectGuide"
  5874. type="1"
  5875. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5876. size="1.12MB" >
  5877. </productMenu>
  5878. <productMenu id="volume"
  5879. type="12" >
  5880. </productMenu>
  5881. <productMenu id="battery"
  5882. type="1" >
  5883. </productMenu>
  5884. <productID id="6800"
  5885. />
  5886. <productGroupable type="0"
  5887. />
  5888. </product>
  5889. <product id="SPIDER_ST1"
  5890. name="SPIDER ST1"
  5891. series="SPIDER"
  5892. latestVersion="1.2.2"
  5893. show = "-1" >
  5894. <productMenu id="protocol"
  5895. type="2" >
  5896. </productMenu>
  5897. <productMenu id="alexa"
  5898. type="0" >
  5899. </productMenu>
  5900. <productMenu id="ota"
  5901. type="0" >
  5902. </productMenu>
  5903. <productMenu id="wa"
  5904. type="0" >
  5905. </productMenu>
  5906. <productMenu id="meshIntercom"
  5907. type="20" >
  5908. </productMenu>
  5909. <productMenu id="phone"
  5910. type="1" >
  5911. </productMenu>
  5912. <productMenu id="music"
  5913. type="1" >
  5914. </productMenu>
  5915. <productMenu id="deviceSetting"
  5916. type="1"
  5917. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5918. </productMenu>
  5919. <productMenu id="quickGuide"
  5920. type="0"
  5921. url=""
  5922. size="1.12MB" >
  5923. </productMenu>
  5924. <productMenu id="userGuide"
  5925. type="1"
  5926. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5927. size="2.0MB" >
  5928. </productMenu>
  5929. <productMenu id="videoGuide"
  5930. type="1"
  5931. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5932. size="3.41MB" >
  5933. </productMenu>
  5934. <productMenu id="volume"
  5935. type="13" >
  5936. <productMenuType version="1.1.6"
  5937. type="14"/>
  5938. </productMenu>
  5939. <productMenu id="battery"
  5940. type="1" >
  5941. </productMenu>
  5942. <productID id="6510"
  5943. />
  5944. <productGroupable type="0"
  5945. />
  5946. </product>
  5947. <product id="SPIDER_RT1"
  5948. name="SPIDER RT1"
  5949. series="SPIDER"
  5950. latestVersion="2.5.3"
  5951. latestVersionVoicePrompt="1.6"
  5952. show = "1" >
  5953. <productMenu id="protocol"
  5954. type="2" >
  5955. </productMenu>
  5956. <productMenu id="alexa"
  5957. type="0" >
  5958. </productMenu>
  5959. <productMenu id="ota"
  5960. type="2" >
  5961. <productMenuType version="2.1.9"
  5962. type="0"
  5963. />
  5964. <otaPackages>
  5965. <package
  5966. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  5967. size="2945812"
  5968. />
  5969. </otaPackages>
  5970. </productMenu>
  5971. <productMenu id="wa"
  5972. type="0" >
  5973. </productMenu>
  5974. <productMenu id="meshIntercom"
  5975. type="30" >
  5976. <productMenuType version="2.1.1"
  5977. type="20"
  5978. />
  5979. </productMenu>
  5980. <productMenu id="meshIntercom+"
  5981. type="3"
  5982. url="2" >
  5983. <productMenuType version="2.2.9"
  5984. type="2"
  5985. />
  5986. <productMenuURL version="2.1.1"
  5987. url="0"
  5988. />
  5989. </productMenu>
  5990. <productMenu id="waveIntercom"
  5991. type="1" >
  5992. <productMenuType version="2.3.9"
  5993. type="0"
  5994. />
  5995. </productMenu>
  5996. <productMenu id="phone"
  5997. type="1" >
  5998. </productMenu>
  5999. <productMenu id="music"
  6000. type="1" >
  6001. </productMenu>
  6002. <productMenu id="musicSharing"
  6003. type="0" >
  6004. </productMenu>
  6005. <productMenu id="deviceSetting"
  6006. type="1"
  6007. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6008. <productMenuURL version="2.4.9"
  6009. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6010. />
  6011. <productMenuURL version="2.2.2"
  6012. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6013. />
  6014. <productMenuURL version="2.1.1"
  6015. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6016. />
  6017. </productMenu>
  6018. <productMenu id="quickGuide"
  6019. type="0"
  6020. url=""
  6021. size="1.12MB" >
  6022. </productMenu>
  6023. <productMenu id="userGuide"
  6024. type="1"
  6025. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6026. size="2.0MB" >
  6027. </productMenu>
  6028. <productMenu id="videoGuide"
  6029. type="1"
  6030. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6031. size="3.41MB" >
  6032. </productMenu>
  6033. <productMenu id="connectGuide"
  6034. type="1"
  6035. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6036. size="1.12MB" >
  6037. </productMenu>
  6038. <productMenu id="volume"
  6039. type="12" >
  6040. </productMenu>
  6041. <productMenu id="battery"
  6042. type="1" >
  6043. </productMenu>
  6044. <productID id="6810"
  6045. />
  6046. <productGroupable type="0"
  6047. />
  6048. </product>
  6049. <product id="SPIDER_RT1"
  6050. name="SPIDER RT1"
  6051. series="SPIDER"
  6052. latestVersion="1.2.2"
  6053. show = "-1" >
  6054. <productMenu id="protocol"
  6055. type="2" >
  6056. </productMenu>
  6057. <productMenu id="alexa"
  6058. type="0" >
  6059. </productMenu>
  6060. <productMenu id="ota"
  6061. type="0" >
  6062. </productMenu>
  6063. <productMenu id="wa"
  6064. type="0" >
  6065. </productMenu>
  6066. <productMenu id="meshIntercom"
  6067. type="20" >
  6068. </productMenu>
  6069. <productMenu id="phone"
  6070. type="1" >
  6071. </productMenu>
  6072. <productMenu id="music"
  6073. type="1" >
  6074. </productMenu>
  6075. <productMenu id="deviceSetting"
  6076. type="1"
  6077. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6078. </productMenu>
  6079. <productMenu id="quickGuide"
  6080. type="0"
  6081. url=""
  6082. size="1.32MB" >
  6083. </productMenu>
  6084. <productMenu id="userGuide"
  6085. type="1"
  6086. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6087. size="1.79MB" >
  6088. </productMenu>
  6089. <productMenu id="videoGuide"
  6090. type="1"
  6091. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6092. size="3.41MB" >
  6093. </productMenu>
  6094. <productMenu id="volume"
  6095. type="13" >
  6096. <productMenuType version="1.1.6"
  6097. type="14"/>
  6098. </productMenu>
  6099. <productMenu id="battery"
  6100. type="1" >
  6101. </productMenu>
  6102. <productID id="6500"
  6103. />
  6104. <productGroupable type="0"
  6105. />
  6106. </product>
  6107. <product id="30K"
  6108. name="30K"
  6109. series="30"
  6110. latestVersion="4.5.1"
  6111. show = "1" >
  6112. <productMenu id="protocol"
  6113. type="2" >
  6114. </productMenu>
  6115. <productMenu id="alexa"
  6116. type="0" >
  6117. </productMenu>
  6118. <productMenu id="wa"
  6119. type="1" >
  6120. </productMenu>
  6121. <productMenu id="sip"
  6122. type="1" >
  6123. </productMenu>
  6124. <productMenu id="meshIntercom"
  6125. type="30" >
  6126. <productMenuType version="4.0.4"
  6127. type="20"
  6128. />
  6129. </productMenu>
  6130. <productMenu id="meshIntercom+"
  6131. type="3"
  6132. url="2" >
  6133. <productMenuType version="4.3.9"
  6134. type="2"
  6135. />
  6136. <productMenuURL version="4.0.4"
  6137. url="0"
  6138. />
  6139. </productMenu>
  6140. <productMenu id="waveIntercom"
  6141. type="1" >
  6142. <productMenuType version="4.4.9"
  6143. type="0"
  6144. />
  6145. </productMenu>
  6146. <productMenu id="bluetoothIntercom"
  6147. type="1" >
  6148. </productMenu>
  6149. <productMenu id="phone"
  6150. type="1" >
  6151. </productMenu>
  6152. <productMenu id="music"
  6153. type="1" >
  6154. </productMenu>
  6155. <productMenu id="fmradio"
  6156. type="1" >
  6157. </productMenu>
  6158. <productMenu id="deviceSetting"
  6159. type="1"
  6160. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6161. <productMenuURL version="4.3"
  6162. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6163. />
  6164. <productMenuURL version="4.2"
  6165. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6166. />
  6167. <productMenuURL version="4.0.4"
  6168. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6169. />
  6170. </productMenu>
  6171. <productMenu id="quickGuide"
  6172. type="0"
  6173. url=""
  6174. size="934KB" >
  6175. </productMenu>
  6176. <productMenu id="userGuide"
  6177. type="1"
  6178. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6179. size="1.14MB" >
  6180. </productMenu>
  6181. <productMenu id="connectGuide"
  6182. type="1"
  6183. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6184. size="1.12MB" >
  6185. </productMenu>
  6186. <productMenu id="volume"
  6187. type="11" >
  6188. </productMenu>
  6189. <productMenu id="battery"
  6190. type="1" >
  6191. </productMenu>
  6192. <productID id="3211"
  6193. />
  6194. <productGroupable type="0"
  6195. />
  6196. </product>
  6197. <product id="30K"
  6198. name="30K"
  6199. series="30"
  6200. latestVersion="3.5"
  6201. show = "-1" >
  6202. <productMenu id="protocol"
  6203. type="1"
  6204. url="0">
  6205. </productMenu>
  6206. <productMenu id="wa"
  6207. type="7" >
  6208. </productMenu>
  6209. <productMenu id="sip"
  6210. type="1" >
  6211. </productMenu>
  6212. <productMenu id="meshIntercom"
  6213. type="20" >
  6214. <productMenuType version="2.9.9"
  6215. type="10"
  6216. />
  6217. </productMenu>
  6218. <productMenu id="meshIntercom+"
  6219. type="3"
  6220. url="2" >
  6221. <productMenuType version="3.4.9"
  6222. type="2"
  6223. />
  6224. <productMenuType version="2.9.9"
  6225. type="1"
  6226. />
  6227. <productMenuURL version="3.3.1"
  6228. url="0"
  6229. />
  6230. </productMenu>
  6231. <productMenu id="bluetoothIntercom"
  6232. type="1" >
  6233. </productMenu>
  6234. <productMenu id="phone"
  6235. type="1" >
  6236. </productMenu>
  6237. <productMenu id="music"
  6238. type="1" >
  6239. </productMenu>
  6240. <productMenu id="fmradio"
  6241. type="1" >
  6242. </productMenu>
  6243. <productMenu id="deviceSetting"
  6244. type="1"
  6245. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6246. <productMenuURL version="3.4.9"
  6247. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6248. />
  6249. <productMenuURL version="3.3.1"
  6250. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6251. />
  6252. <productMenuURL version="3.0.1"
  6253. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6254. />
  6255. <productMenuURL version="2.3.1"
  6256. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6257. />
  6258. <productMenuURL version="2.0"
  6259. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6260. />
  6261. <productMenuURL version="1.0.3"
  6262. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6263. />
  6264. </productMenu>
  6265. <productMenu id="quickGuide"
  6266. type="0"
  6267. url=""
  6268. size="1.06MB" >
  6269. </productMenu>
  6270. <productMenu id="userGuide"
  6271. type="1"
  6272. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6273. size="3.15MB" >
  6274. </productMenu>
  6275. <productMenu id="volume"
  6276. type="1" >
  6277. </productMenu>
  6278. <productID id="3110"
  6279. />
  6280. <productGroupable type="0"
  6281. />
  6282. </product>
  6283. <product id="FURY"
  6284. name="FURY"
  6285. series="Helmet"
  6286. latestVersion="1.0"
  6287. show = "-1" >
  6288. <productMenu id="protocol"
  6289. type="2" >
  6290. </productMenu>
  6291. <productMenu id="alexa"
  6292. type="0" >
  6293. </productMenu>
  6294. <productMenu id="ota"
  6295. type="0" >
  6296. </productMenu>
  6297. <productMenu id="wa"
  6298. type="0" >
  6299. </productMenu>
  6300. <productMenu id="meshIntercom"
  6301. type="20" >
  6302. </productMenu>
  6303. <productMenu id="phone"
  6304. type="1" >
  6305. </productMenu>
  6306. <productMenu id="music"
  6307. type="1" >
  6308. </productMenu>
  6309. <productMenu id="fmradio"
  6310. type="1" >
  6311. </productMenu>
  6312. <productMenu id="deviceSetting"
  6313. type="1"
  6314. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6315. </productMenu>
  6316. <productMenu id="quickGuide"
  6317. type="1"
  6318. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6319. size="1.12MB" >
  6320. </productMenu>
  6321. <productMenu id="userGuide"
  6322. type="1"
  6323. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6324. size="2.0MB" >
  6325. </productMenu>
  6326. <productMenu id="volume"
  6327. type="13" >
  6328. </productMenu>
  6329. <productMenu id="battery"
  6330. type="1" >
  6331. </productMenu>
  6332. <productID id="5552"
  6333. />
  6334. <productGroupable type="0"
  6335. />
  6336. </product>
  6337. <product id="MomentumM"
  6338. name="Momentum EVO"
  6339. series="Helmet"
  6340. latestVersion="2.1.2"
  6341. show = "1" >
  6342. <productMenu id="protocol"
  6343. type="1"
  6344. url="0">
  6345. </productMenu>
  6346. <productMenu id="wa"
  6347. type="3" >
  6348. </productMenu>
  6349. <productMenu id="sip"
  6350. type="1" >
  6351. </productMenu>
  6352. <productMenu id="meshIntercom"
  6353. type="20" >
  6354. <productMenuType version="1.9.9"
  6355. type="10"
  6356. />
  6357. </productMenu>
  6358. <productMenu id="bluetoothIntercom"
  6359. type="1" >
  6360. </productMenu>
  6361. <productMenu id="phone"
  6362. type="1" >
  6363. </productMenu>
  6364. <productMenu id="music"
  6365. type="1" >
  6366. </productMenu>
  6367. <productMenu id="fmradio"
  6368. type="1" >
  6369. </productMenu>
  6370. <productMenu id="deviceSetting"
  6371. type="1"
  6372. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6373. <productMenuURL version="1.0.1"
  6374. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6375. />
  6376. </productMenu>
  6377. <productMenu id="quickGuide"
  6378. type="1"
  6379. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6380. size="1.06MB" >
  6381. </productMenu>
  6382. <productMenu id="userGuide"
  6383. type="1"
  6384. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6385. size="3.15MB" >
  6386. </productMenu>
  6387. <productMenu id="connectGuide"
  6388. type="1"
  6389. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6390. size="1.12MB" >
  6391. </productMenu>
  6392. <productMenu id="volume"
  6393. type="2" >
  6394. </productMenu>
  6395. <productID id="3116"
  6396. />
  6397. <productGroupable type="0"
  6398. />
  6399. </product>
  6400. <product id="Momentum"
  6401. name="Momentum"
  6402. series="Helmet"
  6403. latestVersion="1.0.9"
  6404. show = "1" >
  6405. <productMenu id="protocol"
  6406. type="0">
  6407. </productMenu>
  6408. <productMenu id="sip"
  6409. type="1" >
  6410. </productMenu>
  6411. <productMenu id="bluetoothIntercom"
  6412. type="1" >
  6413. </productMenu>
  6414. <productMenu id="intercomSetting"
  6415. type="1" >
  6416. </productMenu>
  6417. <productMenu id="phone"
  6418. type="2" >
  6419. </productMenu>
  6420. <productMenu id="fmradio"
  6421. type="3" >
  6422. </productMenu>
  6423. <productMenu id="deviceSetting"
  6424. type="1"
  6425. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6426. </productMenu>
  6427. <productMenu id="quickGuide"
  6428. type="1"
  6429. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6430. size="796KB" >
  6431. </productMenu>
  6432. <productMenu id="userGuide"
  6433. type="1"
  6434. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6435. size="1.90MB" >
  6436. </productMenu>
  6437. <productMenu id="connectGuide"
  6438. type="1"
  6439. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6440. size="1.12MB" >
  6441. </productMenu>
  6442. <productID id="4310"
  6443. />
  6444. <productGroupable type="1"
  6445. />
  6446. </product>
  6447. <product id="Momentum_Pro"
  6448. name="Momentum Pro"
  6449. series="Helmet"
  6450. latestVersion="1.0.6"
  6451. show = "1" >
  6452. <productMenu id="protocol"
  6453. type="0">
  6454. </productMenu>
  6455. <productMenu id="sip"
  6456. type="1" >
  6457. </productMenu>
  6458. <productMenu id="bluetoothIntercom"
  6459. type="1" >
  6460. </productMenu>
  6461. <productMenu id="intercomSetting"
  6462. type="1" >
  6463. </productMenu>
  6464. <productMenu id="phone"
  6465. type="2" >
  6466. </productMenu>
  6467. <productMenu id="fmradio"
  6468. type="3" >
  6469. </productMenu>
  6470. <productMenu id="deviceSetting"
  6471. type="1"
  6472. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6473. </productMenu>
  6474. <productMenu id="quickGuide"
  6475. type="1"
  6476. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6477. size="796KB" >
  6478. </productMenu>
  6479. <productMenu id="userGuide"
  6480. type="1"
  6481. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6482. size="1.90MB" >
  6483. </productMenu>
  6484. <productMenu id="connectGuide"
  6485. type="1"
  6486. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6487. size="1.12MB" >
  6488. </productMenu>
  6489. <productID id="4330"
  6490. />
  6491. <productGroupable type="1"
  6492. />
  6493. </product>
  6494. <product id="Momentum_INC"
  6495. name="Momentum INC"
  6496. series="Helmet"
  6497. latestVersion="1.0.7"
  6498. show = "1" >
  6499. <productMenu id="protocol"
  6500. type="0">
  6501. </productMenu>
  6502. <productMenu id="sip"
  6503. type="1" >
  6504. </productMenu>
  6505. <productMenu id="bluetoothIntercom"
  6506. type="1" >
  6507. </productMenu>
  6508. <productMenu id="intercomSetting"
  6509. type="1" >
  6510. </productMenu>
  6511. <productMenu id="phone"
  6512. type="2" >
  6513. </productMenu>
  6514. <productMenu id="fmradio"
  6515. type="3" >
  6516. </productMenu>
  6517. <productMenu id="deviceSetting"
  6518. type="1"
  6519. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6520. </productMenu>
  6521. <productMenu id="quickGuide"
  6522. type="1"
  6523. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6524. size="794KB" >
  6525. </productMenu>
  6526. <productMenu id="userGuide"
  6527. type="1"
  6528. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6529. size="1.53MB" >
  6530. </productMenu>
  6531. <productMenu id="connectGuide"
  6532. type="1"
  6533. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6534. size="1.12MB" >
  6535. </productMenu>
  6536. <productID id="4410"
  6537. />
  6538. <productGroupable type="1"
  6539. />
  6540. </product>
  6541. <product id="Momentum_INCP"
  6542. name="Momentum INC Pro"
  6543. series="Helmet"
  6544. latestVersion="1.0.4"
  6545. show = "1" >
  6546. <productMenu id="protocol"
  6547. type="0">
  6548. </productMenu>
  6549. <productMenu id="sip"
  6550. type="1" >
  6551. </productMenu>
  6552. <productMenu id="bluetoothIntercom"
  6553. type="1" >
  6554. </productMenu>
  6555. <productMenu id="intercomSetting"
  6556. type="1" >
  6557. </productMenu>
  6558. <productMenu id="phone"
  6559. type="2" >
  6560. </productMenu>
  6561. <productMenu id="fmradio"
  6562. type="3" >
  6563. </productMenu>
  6564. <productMenu id="deviceSetting"
  6565. type="1"
  6566. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6567. </productMenu>
  6568. <productMenu id="quickGuide"
  6569. type="1"
  6570. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6571. size="794KB" >
  6572. </productMenu>
  6573. <productMenu id="userGuide"
  6574. type="1"
  6575. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6576. size="1.53MB" >
  6577. </productMenu>
  6578. <productMenu id="connectGuide"
  6579. type="1"
  6580. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6581. size="1.12MB" >
  6582. </productMenu>
  6583. <productID id="4430"
  6584. />
  6585. <productGroupable type="1"
  6586. />
  6587. </product>
  6588. <product id="Momentum_Lite"
  6589. name="Momentum Lite"
  6590. series="Helmet"
  6591. latestVersion="2.0.3"
  6592. show = "1" >
  6593. <productMenu id="protocol"
  6594. type="0">
  6595. </productMenu>
  6596. <productMenu id="sip"
  6597. type="1" >
  6598. </productMenu>
  6599. <productMenu id="bluetoothIntercom"
  6600. type="1" >
  6601. </productMenu>
  6602. <productMenu id="phone"
  6603. type="2" >
  6604. </productMenu>
  6605. <productMenu id="fmradio"
  6606. type="3" >
  6607. </productMenu>
  6608. <productMenu id="deviceSetting"
  6609. type="1"
  6610. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6611. <productMenuURL version="1.1"
  6612. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6613. />
  6614. </productMenu>
  6615. <productMenu id="quickGuide"
  6616. type="1"
  6617. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6618. size="790KB" >
  6619. </productMenu>
  6620. <productMenu id="userGuide"
  6621. type="1"
  6622. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6623. size="1.42MB" >
  6624. </productMenu>
  6625. <productMenu id="connectGuide"
  6626. type="1"
  6627. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6628. size="1.12MB" >
  6629. </productMenu>
  6630. <productID id="5526"
  6631. />
  6632. <productGroupable type="0"
  6633. />
  6634. </product>
  6635. <product id="OUTRUSHM"
  6636. name="OUTRUSH M"
  6637. series="Helmet"
  6638. latestVersion="1.0"
  6639. show = "-1" >
  6640. <productMenu id="protocol"
  6641. type="2" >
  6642. </productMenu>
  6643. <productMenu id="alexa"
  6644. type="0" >
  6645. </productMenu>
  6646. <productMenu id="ota"
  6647. type="0" >
  6648. </productMenu>
  6649. <productMenu id="wa"
  6650. type="0" >
  6651. </productMenu>
  6652. <productMenu id="meshIntercom"
  6653. type="30" >
  6654. </productMenu>
  6655. <productMenu id="phone"
  6656. type="1" >
  6657. </productMenu>
  6658. <productMenu id="music"
  6659. type="1" >
  6660. </productMenu>
  6661. <productMenu id="fmradio"
  6662. type="1" >
  6663. </productMenu>
  6664. <productMenu id="deviceSetting"
  6665. type="1"
  6666. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6667. </productMenu>
  6668. <productMenu id="quickGuide"
  6669. type="1"
  6670. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6671. size="1.12MB" >
  6672. </productMenu>
  6673. <productMenu id="userGuide"
  6674. type="1"
  6675. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6676. size="2.0MB" >
  6677. </productMenu>
  6678. <productMenu id="volume"
  6679. type="13" >
  6680. </productMenu>
  6681. <productMenu id="battery"
  6682. type="1" >
  6683. </productMenu>
  6684. <productID id="5600"
  6685. />
  6686. <productGroupable type="0"
  6687. />
  6688. </product>
  6689. <product id="ProRideEVO"
  6690. name="ProRide EVO"
  6691. series="Helmet"
  6692. latestVersion="1.1.2"
  6693. show = "1" >
  6694. <productMenu id="protocol"
  6695. type="0">
  6696. </productMenu>
  6697. <productMenu id="sip"
  6698. type="1" >
  6699. </productMenu>
  6700. <productMenu id="bluetoothIntercom"
  6701. type="1" >
  6702. </productMenu>
  6703. <productMenu id="phone"
  6704. type="2" >
  6705. </productMenu>
  6706. <productMenu id="fmradio"
  6707. type="3" >
  6708. </productMenu>
  6709. <productMenu id="deviceSetting"
  6710. type="1"
  6711. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6712. </productMenu>
  6713. <productMenu id="userGuide"
  6714. type="1"
  6715. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6716. size="778KB" >
  6717. </productMenu>
  6718. <productMenu id="connectGuide"
  6719. type="1"
  6720. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6721. size="1.12MB" >
  6722. </productMenu>
  6723. <productID id="5426"
  6724. />
  6725. <productGroupable type="0"
  6726. />
  6727. </product>
  6728. <product id="OUTRUSHR"
  6729. name="OUTRUSH R"
  6730. series="Helmet"
  6731. latestVersion="2.1"
  6732. show = "1" >
  6733. <productMenu id="protocol"
  6734. type="3" >
  6735. </productMenu>
  6736. <productMenu id="sip"
  6737. type="1" >
  6738. </productMenu>
  6739. <productMenu id="bluetoothIntercom"
  6740. type="1" >
  6741. </productMenu>
  6742. <productMenu id="phone"
  6743. type="1" >
  6744. </productMenu>
  6745. <productMenu id="fmradio"
  6746. type="0" >
  6747. </productMenu>
  6748. <productMenu id="deviceSetting"
  6749. type="1"
  6750. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6751. </productMenu>
  6752. <productMenu id="userGuide"
  6753. type="1"
  6754. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6755. size="1.14MB" >
  6756. </productMenu>
  6757. <productMenu id="connectGuide"
  6758. type="1"
  6759. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6760. size="1.12MB" >
  6761. </productMenu>
  6762. <productID id="5440"
  6763. />
  6764. <productGroupable type="0"
  6765. />
  6766. </product>
  6767. <product id="OUTRUSHR"
  6768. name="OUTRUSH R"
  6769. series="Helmet"
  6770. latestVersion="1.1.4"
  6771. show = "-1" >
  6772. <productMenu id="protocol"
  6773. type="0">
  6774. </productMenu>
  6775. <productMenu id="sip"
  6776. type="1" >
  6777. </productMenu>
  6778. <productMenu id="bluetoothIntercom"
  6779. type="1" >
  6780. </productMenu>
  6781. <productMenu id="phone"
  6782. type="2" >
  6783. </productMenu>
  6784. <productMenu id="fmradio"
  6785. type="3" >
  6786. </productMenu>
  6787. <productMenu id="deviceSetting"
  6788. type="1"
  6789. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6790. </productMenu>
  6791. <productMenu id="userGuide"
  6792. type="1"
  6793. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6794. size="660KB" >
  6795. </productMenu>
  6796. <productMenu id="connectGuide"
  6797. type="1"
  6798. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6799. size="1.12MB" >
  6800. </productMenu>
  6801. <productID id="5424"
  6802. />
  6803. <productGroupable type="0"
  6804. />
  6805. </product>
  6806. <product id="OUTSTARS"
  6807. name="OUTSTAR S"
  6808. series="Helmet"
  6809. latestVersion="2.0.1"
  6810. show = "-1" >
  6811. <productMenu id="protocol"
  6812. type="3" >
  6813. </productMenu>
  6814. <productMenu id="sip"
  6815. type="1" >
  6816. </productMenu>
  6817. <productMenu id="bluetoothIntercom"
  6818. type="1" >
  6819. </productMenu>
  6820. <productMenu id="phone"
  6821. type="1" >
  6822. </productMenu>
  6823. <productMenu id="fmradio"
  6824. type="0" >
  6825. </productMenu>
  6826. <productMenu id="deviceSetting"
  6827. type="1"
  6828. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6829. </productMenu>
  6830. <productMenu id="userGuide"
  6831. type="0"
  6832. url=""
  6833. size="1.14MB" >
  6834. </productMenu>
  6835. <productID id="5443"
  6836. />
  6837. <productGroupable type="0"
  6838. />
  6839. </product>
  6840. <product id="OUTSTARS"
  6841. name="OUTSTAR S"
  6842. series="Helmet"
  6843. latestVersion="1.1.4"
  6844. show = "1" >
  6845. <productMenu id="protocol"
  6846. type="0">
  6847. </productMenu>
  6848. <productMenu id="sip"
  6849. type="1" >
  6850. </productMenu>
  6851. <productMenu id="bluetoothIntercom"
  6852. type="1" >
  6853. </productMenu>
  6854. <productMenu id="phone"
  6855. type="2" >
  6856. </productMenu>
  6857. <productMenu id="fmradio"
  6858. type="3" >
  6859. </productMenu>
  6860. <productMenu id="deviceSetting"
  6861. type="1"
  6862. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6863. </productMenu>
  6864. <productMenu id="quickGuide"
  6865. type="1"
  6866. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6867. size="643KB" >
  6868. </productMenu>
  6869. <productMenu id="userGuide"
  6870. type="1"
  6871. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6872. size="1.15MB" >
  6873. </productMenu>
  6874. <productMenu id="connectGuide"
  6875. type="1"
  6876. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6877. size="1.12MB" >
  6878. </productMenu>
  6879. <productID id="5428"
  6880. />
  6881. <productGroupable type="0"
  6882. />
  6883. </product>
  6884. <product id="OUTRIDE"
  6885. name="OUTRIDE"
  6886. series="Helmet"
  6887. latestVersion="1.0.1"
  6888. show = "1" >
  6889. <productMenu id="protocol"
  6890. type="0">
  6891. </productMenu>
  6892. <productMenu id="sip"
  6893. type="1" >
  6894. </productMenu>
  6895. <productMenu id="bluetoothIntercom"
  6896. type="1" >
  6897. </productMenu>
  6898. <productMenu id="phone"
  6899. type="2" >
  6900. </productMenu>
  6901. <productMenu id="fmradio"
  6902. type="3" >
  6903. </productMenu>
  6904. <productMenu id="deviceSetting"
  6905. type="1"
  6906. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6907. </productMenu>
  6908. <productMenu id="quickGuide"
  6909. type="1"
  6910. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6911. size="643KB" >
  6912. </productMenu>
  6913. <productMenu id="userGuide"
  6914. type="1"
  6915. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6916. size="660KB" >
  6917. </productMenu>
  6918. <productMenu id="connectGuide"
  6919. type="1"
  6920. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6921. size="1.12MB" >
  6922. </productMenu>
  6923. <productID id="5432"
  6924. />
  6925. <productGroupable type="0"
  6926. />
  6927. </product>
  6928. <product id="OUTFORCE"
  6929. name="OUTFORCE"
  6930. series="Helmet"
  6931. latestVersion="1.0.1"
  6932. show = "1" >
  6933. <productMenu id="protocol"
  6934. type="0">
  6935. </productMenu>
  6936. <productMenu id="sip"
  6937. type="1" >
  6938. </productMenu>
  6939. <productMenu id="bluetoothIntercom"
  6940. type="1" >
  6941. </productMenu>
  6942. <productMenu id="phone"
  6943. type="2" >
  6944. </productMenu>
  6945. <productMenu id="fmradio"
  6946. type="3" >
  6947. </productMenu>
  6948. <productMenu id="deviceSetting"
  6949. type="1"
  6950. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6951. </productMenu>
  6952. <productMenu id="quickGuide"
  6953. type="1"
  6954. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6955. size="643KB" >
  6956. </productMenu>
  6957. <productMenu id="userGuide"
  6958. type="1"
  6959. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6960. size="660KB" >
  6961. </productMenu>
  6962. <productMenu id="connectGuide"
  6963. type="1"
  6964. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6965. size="1.12MB" >
  6966. </productMenu>
  6967. <productID id="5430"
  6968. />
  6969. <productGroupable type="0"
  6970. />
  6971. </product>
  6972. <product id="Rumba"
  6973. name="Rumba"
  6974. series="30"
  6975. latestVersion="2.0"
  6976. show = "-1" >
  6977. <productMenu id="protocol"
  6978. type="3" >
  6979. </productMenu>
  6980. <productMenu id="sip"
  6981. type="1" >
  6982. </productMenu>
  6983. <productMenu id="bluetoothIntercom"
  6984. type="1" >
  6985. </productMenu>
  6986. <productMenu id="deviceSetting"
  6987. type="1"
  6988. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  6989. </productMenu>
  6990. <productMenu id="quickGuide"
  6991. type="1"
  6992. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  6993. size="344KB" >
  6994. </productMenu>
  6995. <productMenu id="userGuide"
  6996. type="1"
  6997. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  6998. size="1.14MB" >
  6999. </productMenu>
  7000. <productID id="6322"
  7001. />
  7002. <productGroupable type="0"
  7003. />
  7004. </product>
  7005. <product id="Savage"
  7006. name="Savage"
  7007. series="Helmet"
  7008. latestVersion="1.2.2"
  7009. show = "1" >
  7010. <productMenu id="protocol"
  7011. type="0">
  7012. </productMenu>
  7013. <productMenu id="sip"
  7014. type="1" >
  7015. </productMenu>
  7016. <productMenu id="bluetoothIntercom"
  7017. type="1" >
  7018. </productMenu>
  7019. <productMenu id="phone"
  7020. type="2" >
  7021. </productMenu>
  7022. <productMenu id="fmradio"
  7023. type="3" >
  7024. </productMenu>
  7025. <productMenu id="deviceSetting"
  7026. type="1"
  7027. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7028. <productMenuURL version="1.9"
  7029. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7030. />
  7031. <productMenuURL version="1.1"
  7032. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7033. />
  7034. </productMenu>
  7035. <productMenu id="quickGuide"
  7036. type="1"
  7037. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7038. size="796KB" >
  7039. </productMenu>
  7040. <productMenu id="userGuide"
  7041. type="1"
  7042. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7043. size="910KB" >
  7044. </productMenu>
  7045. <productMenu id="connectGuide"
  7046. type="1"
  7047. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7048. size="1.12MB" >
  7049. </productMenu>
  7050. <productID id="5550"
  7051. />
  7052. <productGroupable type="0"
  7053. />
  7054. </product>
  7055. <product id="SPECTER"
  7056. name="SPECTER"
  7057. series="Helmet"
  7058. latestVersion="1.0.7"
  7059. latestVersionVoicePrompt="1.5"
  7060. show = "1" >
  7061. <productMenu id="protocol"
  7062. type="2" >
  7063. </productMenu>
  7064. <productMenu id="ota"
  7065. type="2" >
  7066. <otaLanguages>
  7067. <otaLanguage
  7068. id="0"
  7069. name="English"
  7070. package="0"
  7071. />
  7072. <otaLanguage
  7073. id="0"
  7074. name="French"
  7075. package="1"
  7076. />
  7077. <otaLanguage
  7078. id="0"
  7079. name="Spanish"
  7080. package="2"
  7081. />
  7082. <otaLanguage
  7083. id="0"
  7084. name="Italian"
  7085. package="3"
  7086. />
  7087. <otaLanguage
  7088. id="0"
  7089. name="German"
  7090. package="4"
  7091. />
  7092. <otaLanguage
  7093. id="0"
  7094. name="Dutch"
  7095. package="5"
  7096. />
  7097. <otaLanguage
  7098. id="0"
  7099. name="Russian"
  7100. package="6"
  7101. />
  7102. <otaLanguage
  7103. id="0"
  7104. name="Chinese"
  7105. package="7"
  7106. />
  7107. <otaLanguage
  7108. id="0"
  7109. name="Korean"
  7110. package="8"
  7111. />
  7112. <otaLanguage
  7113. id="0"
  7114. name="Japanese"
  7115. package="9"
  7116. />
  7117. <otaLanguage
  7118. id="0"
  7119. name="Finnish"
  7120. package="10"
  7121. />
  7122. <otaLanguage
  7123. id="0"
  7124. name="Polish"
  7125. package="11"
  7126. />
  7127. </otaLanguages>
  7128. <otaPackages>
  7129. <package
  7130. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1.img"
  7131. size="5183988"
  7132. />
  7133. <package
  7134. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-fr-FR.img"
  7135. size="5183988"
  7136. />
  7137. <package
  7138. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-es-ES.img"
  7139. size="5183988"
  7140. />
  7141. <package
  7142. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-it-IT.img"
  7143. size="5183988"
  7144. />
  7145. <package
  7146. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-de-DE.img"
  7147. size="5183988"
  7148. />
  7149. <package
  7150. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-nl-NL.img"
  7151. size="5183988"
  7152. />
  7153. <package
  7154. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ru-RU.img"
  7155. size="5183988"
  7156. />
  7157. <package
  7158. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-cmn-CN.img"
  7159. size="5183988"
  7160. />
  7161. <package
  7162. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ko-KR.img"
  7163. size="5183988"
  7164. />
  7165. <package
  7166. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ja-JP.img"
  7167. size="5183988"
  7168. />
  7169. <package
  7170. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-fi-FI.img"
  7171. size="5183988"
  7172. />
  7173. <package
  7174. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-pl-PL.img"
  7175. size="5183988"
  7176. />
  7177. </otaPackages>
  7178. </productMenu>
  7179. <productMenu id="wa"
  7180. type="0" >
  7181. </productMenu>
  7182. <productMenu id="led"
  7183. type="5" >
  7184. </productMenu>
  7185. <productMenu id="led+"
  7186. type="2"
  7187. url="1" >
  7188. </productMenu>
  7189. <productMenu id="meshIntercom+"
  7190. type="3"
  7191. url="2" >
  7192. </productMenu>
  7193. <productMenu id="waveIntercom"
  7194. type="1" >
  7195. </productMenu>
  7196. <productMenu id="fmradio"
  7197. type="0" >
  7198. </productMenu>
  7199. <productMenu id="phone"
  7200. type="1" >
  7201. </productMenu>
  7202. <productMenu id="music"
  7203. type="1" >
  7204. </productMenu>
  7205. <productMenu id="musicSharing"
  7206. type="0" >
  7207. </productMenu>
  7208. <productMenu id="deviceSetting"
  7209. type="1"
  7210. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7211. <productMenuURL version="1.0.4"
  7212. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7213. />
  7214. </productMenu>
  7215. <productMenu id="quickGuide"
  7216. type="0"
  7217. url=""
  7218. size="1.12MB" >
  7219. </productMenu>
  7220. <productMenu id="userGuide"
  7221. type="1"
  7222. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7223. size="2.0MB" >
  7224. </productMenu>
  7225. <productMenu id="videoGuide"
  7226. type="0"
  7227. url=""
  7228. size="3.41MB" >
  7229. </productMenu>
  7230. <productMenu id="volume"
  7231. type="16" >
  7232. </productMenu>
  7233. <productMenu id="volume+"
  7234. type="2"
  7235. url="0x6004" >
  7236. </productMenu>
  7237. <productMenu id="battery"
  7238. type="1" >
  7239. </productMenu>
  7240. <productID id="6A11"
  7241. />
  7242. <productGroupable type="0"
  7243. />
  7244. </product>
  7245. <product id="SPECTER"
  7246. name="SPECTER"
  7247. series="Helmet"
  7248. latestVersion="1.0.7"
  7249. latestVersionVoicePrompt="1.5"
  7250. show = "-1" >
  7251. <productMenu id="protocol"
  7252. type="2" >
  7253. </productMenu>
  7254. <productMenu id="ota"
  7255. type="2" >
  7256. <otaLanguages>
  7257. <otaLanguage
  7258. id="0"
  7259. name="English"
  7260. package="0"
  7261. />
  7262. <otaLanguage
  7263. id="0"
  7264. name="French"
  7265. package="1"
  7266. />
  7267. <otaLanguage
  7268. id="0"
  7269. name="Spanish"
  7270. package="2"
  7271. />
  7272. <otaLanguage
  7273. id="0"
  7274. name="Italian"
  7275. package="3"
  7276. />
  7277. <otaLanguage
  7278. id="0"
  7279. name="German"
  7280. package="4"
  7281. />
  7282. <otaLanguage
  7283. id="0"
  7284. name="Dutch"
  7285. package="5"
  7286. />
  7287. <otaLanguage
  7288. id="0"
  7289. name="Russian"
  7290. package="6"
  7291. />
  7292. <otaLanguage
  7293. id="0"
  7294. name="Chinese"
  7295. package="7"
  7296. />
  7297. <otaLanguage
  7298. id="0"
  7299. name="Korean"
  7300. package="8"
  7301. />
  7302. <otaLanguage
  7303. id="0"
  7304. name="Japanese"
  7305. package="9"
  7306. />
  7307. <otaLanguage
  7308. id="0"
  7309. name="Finnish"
  7310. package="10"
  7311. />
  7312. <otaLanguage
  7313. id="0"
  7314. name="Polish"
  7315. package="11"
  7316. />
  7317. </otaLanguages>
  7318. <otaPackages>
  7319. <package
  7320. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1.img"
  7321. size="5183988"
  7322. />
  7323. <package
  7324. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-fr-FR.img"
  7325. size="5183988"
  7326. />
  7327. <package
  7328. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-es-ES.img"
  7329. size="5183988"
  7330. />
  7331. <package
  7332. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-it-IT.img"
  7333. size="5183988"
  7334. />
  7335. <package
  7336. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-de-DE.img"
  7337. size="5183988"
  7338. />
  7339. <package
  7340. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-nl-NL.img"
  7341. size="5183988"
  7342. />
  7343. <package
  7344. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ru-RU.img"
  7345. size="5183988"
  7346. />
  7347. <package
  7348. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-cmn-CN.img"
  7349. size="5183988"
  7350. />
  7351. <package
  7352. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ko-KR.img"
  7353. size="5183988"
  7354. />
  7355. <package
  7356. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ja-JP.img"
  7357. size="5183988"
  7358. />
  7359. <package
  7360. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-fi-FI.img"
  7361. size="5183988"
  7362. />
  7363. <package
  7364. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-pl-PL.img"
  7365. size="5183988"
  7366. />
  7367. </otaPackages>
  7368. </productMenu>
  7369. <productMenu id="wa"
  7370. type="0" >
  7371. </productMenu>
  7372. <productMenu id="led"
  7373. type="5" >
  7374. </productMenu>
  7375. <productMenu id="led+"
  7376. type="2"
  7377. url="1" >
  7378. </productMenu>
  7379. <productMenu id="meshIntercom+"
  7380. type="3"
  7381. url="2" >
  7382. </productMenu>
  7383. <productMenu id="waveIntercom"
  7384. type="1" >
  7385. </productMenu>
  7386. <productMenu id="fmradio"
  7387. type="0" >
  7388. </productMenu>
  7389. <productMenu id="phone"
  7390. type="1" >
  7391. </productMenu>
  7392. <productMenu id="music"
  7393. type="1" >
  7394. </productMenu>
  7395. <productMenu id="musicSharing"
  7396. type="0" >
  7397. </productMenu>
  7398. <productMenu id="deviceSetting"
  7399. type="1"
  7400. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7401. <productMenuURL version="1.0.4"
  7402. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7403. />
  7404. <productMenuURL version="1.0"
  7405. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7406. />
  7407. </productMenu>
  7408. <productMenu id="quickGuide"
  7409. type="0"
  7410. url=""
  7411. size="1.12MB" >
  7412. </productMenu>
  7413. <productMenu id="userGuide"
  7414. type="1"
  7415. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7416. size="2.0MB" >
  7417. </productMenu>
  7418. <productMenu id="videoGuide"
  7419. type="0"
  7420. url=""
  7421. size="3.41MB" >
  7422. </productMenu>
  7423. <productMenu id="volume"
  7424. type="16" >
  7425. </productMenu>
  7426. <productMenu id="volume+"
  7427. type="2"
  7428. url="0x6004" >
  7429. </productMenu>
  7430. <productMenu id="battery"
  7431. type="1" >
  7432. </productMenu>
  7433. <productID id="6A0A"
  7434. />
  7435. <productGroupable type="0"
  7436. />
  7437. </product>
  7438. <product id="OUTLANDER"
  7439. name="OUTLANDER"
  7440. series="Helmet"
  7441. latestVersion="1.0.9"
  7442. latestVersionVoicePrompt="1.7"
  7443. show = "1" >
  7444. <productMenu id="protocol"
  7445. type="2" >
  7446. </productMenu>
  7447. <productMenu id="ota"
  7448. type="2" >
  7449. <otaLanguages>
  7450. <otaLanguage
  7451. id="0"
  7452. name="English"
  7453. package="0"
  7454. />
  7455. <otaLanguage
  7456. id="0"
  7457. name="French"
  7458. package="1"
  7459. />
  7460. <otaLanguage
  7461. id="0"
  7462. name="Spanish"
  7463. package="2"
  7464. />
  7465. <otaLanguage
  7466. id="0"
  7467. name="Italian"
  7468. package="3"
  7469. />
  7470. <otaLanguage
  7471. id="0"
  7472. name="German"
  7473. package="4"
  7474. />
  7475. <otaLanguage
  7476. id="0"
  7477. name="Dutch"
  7478. package="5"
  7479. />
  7480. <otaLanguage
  7481. id="0"
  7482. name="Russian"
  7483. package="6"
  7484. />
  7485. <otaLanguage
  7486. id="0"
  7487. name="Chinese"
  7488. package="7"
  7489. />
  7490. <otaLanguage
  7491. id="0"
  7492. name="Korean"
  7493. package="8"
  7494. />
  7495. <otaLanguage
  7496. id="0"
  7497. name="Japanese"
  7498. package="9"
  7499. />
  7500. <otaLanguage
  7501. id="0"
  7502. name="Finnish"
  7503. package="10"
  7504. />
  7505. <otaLanguage
  7506. id="0"
  7507. name="Polish"
  7508. package="11"
  7509. />
  7510. </otaLanguages>
  7511. <otaPackages>
  7512. <package
  7513. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0.img"
  7514. size="5183988"
  7515. />
  7516. <package
  7517. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fr-FR.img"
  7518. size="5183988"
  7519. />
  7520. <package
  7521. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-es-ES.img"
  7522. size="5183988"
  7523. />
  7524. <package
  7525. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-it-IT.img"
  7526. size="5183988"
  7527. />
  7528. <package
  7529. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-de-DE.img"
  7530. size="5183988"
  7531. />
  7532. <package
  7533. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-nl-NL.img"
  7534. size="5183988"
  7535. />
  7536. <package
  7537. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ru-RU.img"
  7538. size="5183988"
  7539. />
  7540. <package
  7541. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-cmn-CN.img"
  7542. size="5183988"
  7543. />
  7544. <package
  7545. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ko-KR.img"
  7546. size="5183988"
  7547. />
  7548. <package
  7549. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ja-JP.img"
  7550. size="5183988"
  7551. />
  7552. <package
  7553. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fi-FI.img"
  7554. size="5183988"
  7555. />
  7556. <package
  7557. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-pl-PL.img"
  7558. size="5183988"
  7559. />
  7560. </otaPackages>
  7561. </productMenu>
  7562. <productMenu id="wa"
  7563. type="0" >
  7564. </productMenu>
  7565. <productMenu id="led"
  7566. type="5" >
  7567. </productMenu>
  7568. <productMenu id="led+"
  7569. type="2"
  7570. url="1" >
  7571. </productMenu>
  7572. <productMenu id="meshIntercom+"
  7573. type="3"
  7574. url="2" >
  7575. </productMenu>
  7576. <productMenu id="waveIntercom"
  7577. type="1" >
  7578. </productMenu>
  7579. <productMenu id="fmradio"
  7580. type="0" >
  7581. </productMenu>
  7582. <productMenu id="phone"
  7583. type="1" >
  7584. </productMenu>
  7585. <productMenu id="music"
  7586. type="1" >
  7587. </productMenu>
  7588. <productMenu id="musicSharing"
  7589. type="0" >
  7590. </productMenu>
  7591. <productMenu id="deviceSetting"
  7592. type="1"
  7593. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml" >
  7594. <productMenuURL version="1.0.4"
  7595. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7596. />
  7597. </productMenu>
  7598. <productMenu id="quickGuide"
  7599. type="0"
  7600. url=""
  7601. size="1.12MB" >
  7602. </productMenu>
  7603. <productMenu id="userGuide"
  7604. type="1"
  7605. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7606. size="2.0MB" >
  7607. </productMenu>
  7608. <productMenu id="videoGuide"
  7609. type="0"
  7610. url=""
  7611. size="3.41MB" >
  7612. </productMenu>
  7613. <productMenu id="volume"
  7614. type="16" >
  7615. </productMenu>
  7616. <productMenu id="volume+"
  7617. type="2"
  7618. url="0x6004" >
  7619. </productMenu>
  7620. <productMenu id="battery"
  7621. type="1" >
  7622. </productMenu>
  7623. <productID id="6A05"
  7624. />
  7625. <productGroupable type="0"
  7626. />
  7627. </product>
  7628. <product id="OUTRUSH2"
  7629. name="OUTRUSH 2"
  7630. series="Helmet"
  7631. latestVersion="1.0.2"
  7632. latestVersionVoicePrompt="1.1"
  7633. show = "1" >
  7634. <productMenu id="protocol"
  7635. type="2" >
  7636. </productMenu>
  7637. <productMenu id="alexa"
  7638. type="0" >
  7639. </productMenu>
  7640. <productMenu id="ota"
  7641. type="2" >
  7642. <otaPackages>
  7643. <package
  7644. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  7645. size="2945812"
  7646. />
  7647. </otaPackages>
  7648. </productMenu>
  7649. <productMenu id="meshIntercom+"
  7650. type="3"
  7651. url="2" >
  7652. </productMenu>
  7653. <productMenu id="waveIntercom"
  7654. type="1" >
  7655. </productMenu>
  7656. <productMenu id="phone"
  7657. type="1" >
  7658. </productMenu>
  7659. <productMenu id="music"
  7660. type="1" >
  7661. </productMenu>
  7662. <productMenu id="musicSharing"
  7663. type="0" >
  7664. </productMenu>
  7665. <productMenu id="deviceSetting"
  7666. type="1"
  7667. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7668. <productMenuURL version="1.0"
  7669. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  7670. />
  7671. </productMenu>
  7672. <productMenu id="quickGuide"
  7673. type="0"
  7674. url=""
  7675. size="1.12MB" >
  7676. </productMenu>
  7677. <productMenu id="userGuide"
  7678. type="1"
  7679. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  7680. size="2.0MB" >
  7681. </productMenu>
  7682. <productMenu id="volume"
  7683. type="12" >
  7684. </productMenu>
  7685. <productMenu id="battery"
  7686. type="1" >
  7687. </productMenu>
  7688. <productID id="684A"
  7689. />
  7690. <productGroupable type="0"
  7691. />
  7692. </product>
  7693. <product id="OUTSTAR2"
  7694. name="OUTSTAR 2"
  7695. series="Helmet"
  7696. latestVersion="1.0.1"
  7697. latestVersionVoicePrompt="1.1"
  7698. show = "1" >
  7699. <productMenu id="protocol"
  7700. type="2" >
  7701. </productMenu>
  7702. <productMenu id="alexa"
  7703. type="0" >
  7704. </productMenu>
  7705. <productMenu id="ota"
  7706. type="2" >
  7707. <otaPackages>
  7708. <package
  7709. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.1-build0.img"
  7710. size="2945812"
  7711. />
  7712. </otaPackages>
  7713. </productMenu>
  7714. <productMenu id="meshIntercom+"
  7715. type="3"
  7716. url="2" >
  7717. </productMenu>
  7718. <productMenu id="waveIntercom"
  7719. type="1" >
  7720. </productMenu>
  7721. <productMenu id="phone"
  7722. type="1" >
  7723. </productMenu>
  7724. <productMenu id="music"
  7725. type="1" >
  7726. </productMenu>
  7727. <productMenu id="musicSharing"
  7728. type="0" >
  7729. </productMenu>
  7730. <productMenu id="deviceSetting"
  7731. type="1"
  7732. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7733. </productMenu>
  7734. <productMenu id="quickGuide"
  7735. type="0"
  7736. url=""
  7737. size="1.12MB" >
  7738. </productMenu>
  7739. <productMenu id="userGuide"
  7740. type="1"
  7741. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  7742. size="2.0MB" >
  7743. </productMenu>
  7744. <productMenu id="volume"
  7745. type="12" >
  7746. </productMenu>
  7747. <productMenu id="battery"
  7748. type="1" >
  7749. </productMenu>
  7750. <productID id="684B"
  7751. />
  7752. <productGroupable type="0"
  7753. />
  7754. </product>
  7755. <product id="SURGE"
  7756. name="SURGE"
  7757. series="Helmet"
  7758. latestVersion="1.2"
  7759. latestVersionVoicePrompt="1.3"
  7760. show = "1" >
  7761. <productMenu id="protocol"
  7762. type="2" >
  7763. </productMenu>
  7764. <productMenu id="alexa"
  7765. type="0" >
  7766. </productMenu>
  7767. <productMenu id="ota"
  7768. type="2" >
  7769. <otaPackages>
  7770. <package
  7771. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  7772. size="2945812"
  7773. />
  7774. </otaPackages>
  7775. </productMenu>
  7776. <productMenu id="meshIntercom"
  7777. type="30" >
  7778. </productMenu>
  7779. <productMenu id="meshIntercom+"
  7780. type="3"
  7781. url="2" >
  7782. <productMenuType version="1.0.1"
  7783. type="2"
  7784. />
  7785. </productMenu>
  7786. <productMenu id="waveIntercom"
  7787. type="1" >
  7788. <productMenuType version="1.0.9"
  7789. type="0"
  7790. />
  7791. </productMenu>
  7792. <productMenu id="phone"
  7793. type="1" >
  7794. </productMenu>
  7795. <productMenu id="music"
  7796. type="1" >
  7797. </productMenu>
  7798. <productMenu id="musicSharing"
  7799. type="0" >
  7800. </productMenu>
  7801. <productMenu id="deviceSetting"
  7802. type="1"
  7803. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  7804. <productMenuURL version="1.1.9"
  7805. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  7806. />
  7807. <productMenuURL version="1.0.1"
  7808. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  7809. />
  7810. </productMenu>
  7811. <productMenu id="quickGuide"
  7812. type="0"
  7813. url=""
  7814. size="1.12MB" >
  7815. </productMenu>
  7816. <productMenu id="userGuide"
  7817. type="1"
  7818. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  7819. size="2.0MB" >
  7820. </productMenu>
  7821. <productMenu id="volume"
  7822. type="12" >
  7823. </productMenu>
  7824. <productMenu id="battery"
  7825. type="1" >
  7826. </productMenu>
  7827. <productID id="6840"
  7828. />
  7829. <productGroupable type="0"
  7830. />
  7831. </product>
  7832. <product id="Cavalry2"
  7833. name="Cavalry 2"
  7834. series="Helmet"
  7835. latestVersion="1.2"
  7836. latestVersionVoicePrompt="1.3"
  7837. show = "1" >
  7838. <productMenu id="protocol"
  7839. type="2" >
  7840. </productMenu>
  7841. <productMenu id="alexa"
  7842. type="0" >
  7843. </productMenu>
  7844. <productMenu id="ota"
  7845. type="2" >
  7846. <otaPackages>
  7847. <package
  7848. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  7849. size="3144148"
  7850. />
  7851. </otaPackages>
  7852. </productMenu>
  7853. <productMenu id="wa"
  7854. type="0" >
  7855. </productMenu>
  7856. <productMenu id="meshIntercom"
  7857. type="30" >
  7858. </productMenu>
  7859. <productMenu id="meshIntercom+"
  7860. type="3"
  7861. url="2" >
  7862. <productMenuType version="1.0"
  7863. type="2"
  7864. />
  7865. </productMenu>
  7866. <productMenu id="waveIntercom"
  7867. type="1" >
  7868. <productMenuType version="1.0.9"
  7869. type="0"
  7870. />
  7871. </productMenu>
  7872. <productMenu id="phone"
  7873. type="1" >
  7874. </productMenu>
  7875. <productMenu id="music"
  7876. type="1" >
  7877. </productMenu>
  7878. <productMenu id="musicSharing"
  7879. type="0" >
  7880. </productMenu>
  7881. <productMenu id="deviceSetting"
  7882. type="1"
  7883. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  7884. <productMenuURL version="1.1.9"
  7885. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  7886. />
  7887. <productMenuURL version="1.0"
  7888. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  7889. />
  7890. </productMenu>
  7891. <productMenu id="quickGuide"
  7892. type="0"
  7893. url=""
  7894. size="1.12MB" >
  7895. </productMenu>
  7896. <productMenu id="userGuide"
  7897. type="1"
  7898. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  7899. size="2.0MB" >
  7900. </productMenu>
  7901. <productMenu id="connectGuide"
  7902. type="1"
  7903. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  7904. size="1.12MB" >
  7905. </productMenu>
  7906. <productMenu id="volume"
  7907. type="12" >
  7908. </productMenu>
  7909. <productMenu id="battery"
  7910. type="1" >
  7911. </productMenu>
  7912. <productID id="6839"
  7913. />
  7914. <productGroupable type="0"
  7915. />
  7916. </product>
  7917. <product id="Cavalry"
  7918. name="Cavalry"
  7919. series="Helmet"
  7920. latestVersion="1.2.2"
  7921. show = "1" >
  7922. <productMenu id="protocol"
  7923. type="0">
  7924. </productMenu>
  7925. <productMenu id="sip"
  7926. type="1" >
  7927. </productMenu>
  7928. <productMenu id="bluetoothIntercom"
  7929. type="1" >
  7930. </productMenu>
  7931. <productMenu id="phone"
  7932. type="2" >
  7933. </productMenu>
  7934. <productMenu id="fmradio"
  7935. type="3" >
  7936. </productMenu>
  7937. <productMenu id="deviceSetting"
  7938. type="1"
  7939. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  7940. <productMenuURL version="1.9"
  7941. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  7942. />
  7943. <productMenuURL version="1.0.1"
  7944. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  7945. />
  7946. </productMenu>
  7947. <productMenu id="quickGuide"
  7948. type="1"
  7949. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  7950. size="795KB" >
  7951. </productMenu>
  7952. <productMenu id="userGuide"
  7953. type="1"
  7954. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  7955. size="1.87MB" >
  7956. </productMenu>
  7957. <productMenu id="connectGuide"
  7958. type="1"
  7959. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7960. size="1.12MB" >
  7961. </productMenu>
  7962. <productID id="5524"
  7963. />
  7964. <productGroupable type="0"
  7965. />
  7966. </product>
  7967. <product id="Cavalry_Lite"
  7968. name="Cavalry Lite"
  7969. series="Helmet"
  7970. latestVersion="1.0.2"
  7971. show = "1" >
  7972. <productMenu id="protocol"
  7973. type="0">
  7974. </productMenu>
  7975. <productMenu id="sip"
  7976. type="1" >
  7977. </productMenu>
  7978. <productMenu id="bluetoothIntercom"
  7979. type="1" >
  7980. </productMenu>
  7981. <productMenu id="phone"
  7982. type="2" >
  7983. </productMenu>
  7984. <productMenu id="fmradio"
  7985. type="3" >
  7986. </productMenu>
  7987. <productMenu id="deviceSetting"
  7988. type="1"
  7989. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7990. </productMenu>
  7991. <productMenu id="userGuide"
  7992. type="1"
  7993. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  7994. size="1.74MB" >
  7995. </productMenu>
  7996. <productMenu id="connectGuide"
  7997. type="1"
  7998. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7999. size="1.12MB" >
  8000. </productMenu>
  8001. <productID id="5536"
  8002. />
  8003. <productGroupable type="0"
  8004. />
  8005. </product>
  8006. <product id="VORTEX"
  8007. name="VORTEX"
  8008. series="VORTEX"
  8009. latestVersion="1.0"
  8010. latestVersionVoicePrompt="1.0"
  8011. show = "-1" >
  8012. <productMenu id="protocol"
  8013. type="2" >
  8014. </productMenu>
  8015. <productMenu id="ota"
  8016. type="2" >
  8017. <otaLanguages>
  8018. <otaLanguage
  8019. id="0"
  8020. name="English"
  8021. package="0"
  8022. />
  8023. <otaLanguage
  8024. id="0"
  8025. name="French"
  8026. package="1"
  8027. />
  8028. <otaLanguage
  8029. id="0"
  8030. name="Spanish"
  8031. package="2"
  8032. />
  8033. <otaLanguage
  8034. id="0"
  8035. name="Italian"
  8036. package="3"
  8037. />
  8038. <otaLanguage
  8039. id="0"
  8040. name="German"
  8041. package="4"
  8042. />
  8043. <otaLanguage
  8044. id="0"
  8045. name="Dutch"
  8046. package="5"
  8047. />
  8048. <otaLanguage
  8049. id="0"
  8050. name="Russian"
  8051. package="6"
  8052. />
  8053. <otaLanguage
  8054. id="0"
  8055. name="Chinese"
  8056. package="7"
  8057. />
  8058. <otaLanguage
  8059. id="0"
  8060. name="Korean"
  8061. package="8"
  8062. />
  8063. <otaLanguage
  8064. id="0"
  8065. name="Japanese"
  8066. package="9"
  8067. />
  8068. <otaLanguage
  8069. id="0"
  8070. name="Finnish"
  8071. package="10"
  8072. />
  8073. <otaLanguage
  8074. id="0"
  8075. name="Polish"
  8076. package="11"
  8077. />
  8078. </otaLanguages>
  8079. <otaPackages>
  8080. <package
  8081. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4.img"
  8082. size="5183988"
  8083. />
  8084. <package
  8085. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fr-FR.img"
  8086. size="5183988"
  8087. />
  8088. <package
  8089. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-es-ES.img"
  8090. size="5183988"
  8091. />
  8092. <package
  8093. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-it-IT.img"
  8094. size="5183988"
  8095. />
  8096. <package
  8097. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-de-DE.img"
  8098. size="5183988"
  8099. />
  8100. <package
  8101. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-nl-NL.img"
  8102. size="5183988"
  8103. />
  8104. <package
  8105. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ru-RU.img"
  8106. size="5183988"
  8107. />
  8108. <package
  8109. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-cmn-CN.img"
  8110. size="5183988"
  8111. />
  8112. <package
  8113. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ko-KR.img"
  8114. size="5183988"
  8115. />
  8116. <package
  8117. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ja-JP.img"
  8118. size="5183988"
  8119. />
  8120. <package
  8121. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fi-FI.img"
  8122. size="5183988"
  8123. />
  8124. <package
  8125. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-pl-PL.img"
  8126. size="5183988"
  8127. />
  8128. </otaPackages>
  8129. </productMenu>
  8130. <productMenu id="sip"
  8131. type="1" >
  8132. </productMenu>
  8133. <productMenu id="bluetoothIntercom"
  8134. type="1" >
  8135. </productMenu>
  8136. <productMenu id="phone"
  8137. type="1" >
  8138. </productMenu>
  8139. <productMenu id="music"
  8140. type="1" >
  8141. </productMenu>
  8142. <productMenu id="fmradio"
  8143. type="1"
  8144. url="1" >
  8145. </productMenu>
  8146. <productMenu id="deviceSetting"
  8147. type="1"
  8148. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8149. </productMenu>
  8150. <productMenu id="quickGuide"
  8151. type="0"
  8152. url=""
  8153. size="934KB" >
  8154. </productMenu>
  8155. <productMenu id="userGuide"
  8156. type="1"
  8157. url=""
  8158. size="1.14MB" >
  8159. </productMenu>
  8160. <productMenu id="connectGuide"
  8161. type="0"
  8162. url=""
  8163. size="1.12MB" >
  8164. </productMenu>
  8165. <productMenu id="volume"
  8166. type="15" >
  8167. </productMenu>
  8168. <productMenu id="appearance"
  8169. type="1"
  8170. url="1|white,silver,black" >
  8171. </productMenu>
  8172. <productID id="3451"
  8173. />
  8174. <productGroupable type="0"
  8175. />
  8176. </product>
  8177. <product id="SF4"
  8178. name="SF4"
  8179. series="SF"
  8180. latestVersion="1.1.5"
  8181. show = "-1" >
  8182. <productMenu id="protocol"
  8183. type="1"
  8184. url="3">
  8185. </productMenu>
  8186. <productMenu id="sip"
  8187. type="1" >
  8188. </productMenu>
  8189. <productMenu id="bluetoothIntercom"
  8190. type="1" >
  8191. </productMenu>
  8192. <productMenu id="phone"
  8193. type="1" >
  8194. </productMenu>
  8195. <productMenu id="music"
  8196. type="1" >
  8197. </productMenu>
  8198. <productMenu id="fmradio"
  8199. type="1" >
  8200. </productMenu>
  8201. <productMenu id="deviceSetting"
  8202. type="1"
  8203. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8204. <productMenuURL version="1.0.1"
  8205. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8206. />
  8207. </productMenu>
  8208. <productMenu id="quickGuide"
  8209. type="1"
  8210. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8211. size="607KB" >
  8212. </productMenu>
  8213. <productMenu id="userGuide"
  8214. type="1"
  8215. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8216. size="1.91MB" >
  8217. </productMenu>
  8218. <productMenu id="volume"
  8219. type="4" >
  8220. </productMenu>
  8221. <productID id="5414"
  8222. />
  8223. <productGroupable type="0"
  8224. />
  8225. </product>
  8226. <product id="SF4"
  8227. name="SF4"
  8228. series="SF"
  8229. latestVersion="3.4.4"
  8230. show = "1" >
  8231. <productMenu id="protocol"
  8232. type="2" >
  8233. </productMenu>
  8234. <productMenu id="sip"
  8235. type="1" >
  8236. </productMenu>
  8237. <productMenu id="bluetoothIntercom"
  8238. type="1" >
  8239. </productMenu>
  8240. <productMenu id="phone"
  8241. type="1" >
  8242. </productMenu>
  8243. <productMenu id="music"
  8244. type="1" >
  8245. </productMenu>
  8246. <productMenu id="fmradio"
  8247. type="1" >
  8248. </productMenu>
  8249. <productMenu id="deviceSetting"
  8250. type="1"
  8251. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8252. <productMenuURL version="3.0"
  8253. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8254. />
  8255. </productMenu>
  8256. <productMenu id="quickGuide"
  8257. type="0"
  8258. url=""
  8259. size="934KB" >
  8260. </productMenu>
  8261. <productMenu id="userGuide"
  8262. type="1"
  8263. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8264. size="1.14MB" >
  8265. </productMenu>
  8266. <productMenu id="connectGuide"
  8267. type="1"
  8268. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8269. size="1.12MB" >
  8270. </productMenu>
  8271. <productMenu id="volume"
  8272. type="15" >
  8273. </productMenu>
  8274. <productID id="3370"
  8275. />
  8276. <productGroupable type="0"
  8277. />
  8278. </product>
  8279. <product id="SF2"
  8280. name="SF2"
  8281. series="SF"
  8282. latestVersion="1.2.1"
  8283. show = "-1" >
  8284. <productMenu id="protocol"
  8285. type="1"
  8286. url="2">
  8287. </productMenu>
  8288. <productMenu id="sip"
  8289. type="1" >
  8290. </productMenu>
  8291. <productMenu id="bluetoothIntercom"
  8292. type="1" >
  8293. </productMenu>
  8294. <productMenu id="phone"
  8295. type="1" >
  8296. </productMenu>
  8297. <productMenu id="music"
  8298. type="1" >
  8299. </productMenu>
  8300. <productMenu id="fmradio"
  8301. type="1" >
  8302. </productMenu>
  8303. <productMenu id="deviceSetting"
  8304. type="1"
  8305. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8306. <productMenuURL version="1.0.1"
  8307. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8308. />
  8309. </productMenu>
  8310. <productMenu id="quickGuide"
  8311. type="1"
  8312. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8313. size="607KB" >
  8314. </productMenu>
  8315. <productMenu id="userGuide"
  8316. type="1"
  8317. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8318. size="1.91MB" >
  8319. </productMenu>
  8320. <productMenu id="volume"
  8321. type="4" >
  8322. </productMenu>
  8323. <productID id="5412"
  8324. />
  8325. <productGroupable type="0"
  8326. />
  8327. </product>
  8328. <product id="SF2"
  8329. name="SF2"
  8330. series="SF"
  8331. latestVersion="3.3.4"
  8332. show = "1" >
  8333. <productMenu id="protocol"
  8334. type="2" >
  8335. </productMenu>
  8336. <productMenu id="sip"
  8337. type="1" >
  8338. </productMenu>
  8339. <productMenu id="bluetoothIntercom"
  8340. type="1" >
  8341. </productMenu>
  8342. <productMenu id="phone"
  8343. type="1" >
  8344. </productMenu>
  8345. <productMenu id="music"
  8346. type="1" >
  8347. </productMenu>
  8348. <productMenu id="fmradio"
  8349. type="0" >
  8350. </productMenu>
  8351. <productMenu id="deviceSetting"
  8352. type="1"
  8353. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8354. <productMenuURL version="3.0"
  8355. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8356. />
  8357. </productMenu>
  8358. <productMenu id="quickGuide"
  8359. type="0"
  8360. url=""
  8361. size="934KB" >
  8362. </productMenu>
  8363. <productMenu id="userGuide"
  8364. type="1"
  8365. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8366. size="1.14MB" >
  8367. </productMenu>
  8368. <productMenu id="connectGuide"
  8369. type="1"
  8370. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8371. size="1.12MB" >
  8372. </productMenu>
  8373. <productMenu id="volume"
  8374. type="15" >
  8375. </productMenu>
  8376. <productID id="3360"
  8377. />
  8378. <productGroupable type="0"
  8379. />
  8380. </product>
  8381. <product id="SF1"
  8382. name="SF1"
  8383. series="SF"
  8384. latestVersion="2.0.5"
  8385. show = "-1" >
  8386. <productMenu id="protocol"
  8387. type="1"
  8388. url="1">
  8389. </productMenu>
  8390. <productMenu id="sip"
  8391. type="1" >
  8392. </productMenu>
  8393. <productMenu id="bluetoothIntercom"
  8394. type="1" >
  8395. <productMenuType version="1.1"
  8396. type="0"
  8397. />
  8398. </productMenu>
  8399. <productMenu id="phone"
  8400. type="1" >
  8401. </productMenu>
  8402. <productMenu id="music"
  8403. type="1" >
  8404. </productMenu>
  8405. <productMenu id="deviceSetting"
  8406. type="1"
  8407. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8408. <productMenuURL version="1.1"
  8409. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8410. />
  8411. <productMenuURL version="1.0"
  8412. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8413. />
  8414. </productMenu>
  8415. <productMenu id="quickGuide"
  8416. type="1"
  8417. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8418. size="401KB" >
  8419. </productMenu>
  8420. <productMenu id="userGuide"
  8421. type="1"
  8422. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8423. size="1.91MB" >
  8424. </productMenu>
  8425. <productMenu id="volume"
  8426. type="3" >
  8427. </productMenu>
  8428. <productID id="5410"
  8429. />
  8430. <productGroupable type="0"
  8431. />
  8432. </product>
  8433. <product id="SF1"
  8434. name="SF1"
  8435. series="SF"
  8436. latestVersion="3.3.4"
  8437. show = "1" >
  8438. <productMenu id="protocol"
  8439. type="2" >
  8440. </productMenu>
  8441. <productMenu id="sip"
  8442. type="1" >
  8443. </productMenu>
  8444. <productMenu id="bluetoothIntercom"
  8445. type="1" >
  8446. </productMenu>
  8447. <productMenu id="phone"
  8448. type="1" >
  8449. </productMenu>
  8450. <productMenu id="music"
  8451. type="1" >
  8452. </productMenu>
  8453. <productMenu id="fmradio"
  8454. type="0" >
  8455. </productMenu>
  8456. <productMenu id="deviceSetting"
  8457. type="1"
  8458. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8459. <productMenuURL version="3.0"
  8460. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8461. />
  8462. </productMenu>
  8463. <productMenu id="quickGuide"
  8464. type="0"
  8465. url=""
  8466. size="934KB" >
  8467. </productMenu>
  8468. <productMenu id="userGuide"
  8469. type="1"
  8470. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8471. size="1.14MB" >
  8472. </productMenu>
  8473. <productMenu id="connectGuide"
  8474. type="1"
  8475. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8476. size="1.12MB" >
  8477. </productMenu>
  8478. <productMenu id="volume"
  8479. type="15" >
  8480. </productMenu>
  8481. <productID id="3350"
  8482. />
  8483. <productGroupable type="0"
  8484. />
  8485. </product>
  8486. <product id="SFR"
  8487. name="SFR"
  8488. series="SF"
  8489. latestVersion="1.1.1"
  8490. show = "1" >
  8491. <productMenu id="protocol"
  8492. type="1"
  8493. url="3">
  8494. </productMenu>
  8495. <productMenu id="sip"
  8496. type="1" >
  8497. </productMenu>
  8498. <productMenu id="bluetoothIntercom"
  8499. type="1" >
  8500. </productMenu>
  8501. <productMenu id="phone"
  8502. type="1" >
  8503. </productMenu>
  8504. <productMenu id="music"
  8505. type="1" >
  8506. </productMenu>
  8507. <productMenu id="fmradio"
  8508. type="1" >
  8509. </productMenu>
  8510. <productMenu id="deviceSetting"
  8511. type="1"
  8512. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8513. </productMenu>
  8514. <productMenu id="quickGuide"
  8515. type="1"
  8516. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8517. size="607KB" >
  8518. </productMenu>
  8519. <productMenu id="userGuide"
  8520. type="1"
  8521. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8522. size="1.91MB" >
  8523. </productMenu>
  8524. <productMenu id="volume"
  8525. type="4" >
  8526. </productMenu>
  8527. <productID id="5418"
  8528. />
  8529. <productGroupable type="0"
  8530. />
  8531. </product>
  8532. <product id="20S"
  8533. name="20S"
  8534. series="20"
  8535. latestVersion="2.2.3"
  8536. show = "1" >
  8537. <productMenu id="protocol"
  8538. type="0">
  8539. </productMenu>
  8540. <productMenu id="wa"
  8541. type="5" >
  8542. </productMenu>
  8543. <productMenu id="sip"
  8544. type="1" >
  8545. <productMenuType version="1.0"
  8546. type="0"
  8547. />
  8548. </productMenu>
  8549. <productMenu id="bluetoothIntercom"
  8550. type="1" >
  8551. <productMenuType version="1.0"
  8552. type="0"
  8553. />
  8554. </productMenu>
  8555. <productMenu id="intercomSetting"
  8556. type="1" >
  8557. </productMenu>
  8558. <productMenu id="phone"
  8559. type="2" >
  8560. </productMenu>
  8561. <productMenu id="fmradio"
  8562. type="3" >
  8563. </productMenu>
  8564. <productMenu id="deviceSetting"
  8565. type="1"
  8566. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8567. <productMenuURL version="2.0.2"
  8568. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8569. />
  8570. <productMenuURL version="1.5"
  8571. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8572. />
  8573. <productMenuURL version="1.4.1"
  8574. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8575. />
  8576. <productMenuURL version="1.1"
  8577. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8578. />
  8579. <productMenuURL version="1.0"
  8580. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8581. />
  8582. </productMenu>
  8583. <productMenu id="quickGuide"
  8584. type="0"
  8585. url=""
  8586. size="264KB" >
  8587. </productMenu>
  8588. <productMenu id="userGuide"
  8589. type="1"
  8590. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8591. size="3.09MB" >
  8592. </productMenu>
  8593. <productMenu id="connectGuide"
  8594. type="1"
  8595. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8596. size="1.12MB" >
  8597. </productMenu>
  8598. <productID id="4210"
  8599. />
  8600. <productGroupable type="1"
  8601. />
  8602. </product>
  8603. <product id="20S_EVO"
  8604. name="20S EVO"
  8605. series="20"
  8606. latestVersion="2.2.3"
  8607. show = "1" >
  8608. <productMenu id="protocol"
  8609. type="0">
  8610. </productMenu>
  8611. <productMenu id="wa"
  8612. type="5" >
  8613. </productMenu>
  8614. <productMenu id="sip"
  8615. type="1" >
  8616. <productMenuType version="1.0"
  8617. type="0"
  8618. />
  8619. </productMenu>
  8620. <productMenu id="bluetoothIntercom"
  8621. type="1" >
  8622. <productMenuType version="1.0"
  8623. type="0"
  8624. />
  8625. </productMenu>
  8626. <productMenu id="intercomSetting"
  8627. type="1" >
  8628. </productMenu>
  8629. <productMenu id="phone"
  8630. type="2" >
  8631. </productMenu>
  8632. <productMenu id="fmradio"
  8633. type="3" >
  8634. </productMenu>
  8635. <productMenu id="deviceSetting"
  8636. type="1"
  8637. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8638. <productMenuURL version="2.0.2"
  8639. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8640. />
  8641. <productMenuURL version="1.5"
  8642. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8643. />
  8644. <productMenuURL version="1.4.1"
  8645. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8646. />
  8647. <productMenuURL version="1.1"
  8648. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8649. />
  8650. <productMenuURL version="1.0"
  8651. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8652. />
  8653. </productMenu>
  8654. <productMenu id="quickGuide"
  8655. type="0"
  8656. url=""
  8657. size="264KB" >
  8658. </productMenu>
  8659. <productMenu id="userGuide"
  8660. type="1"
  8661. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8662. size="3.09MB" >
  8663. </productMenu>
  8664. <productMenu id="connectGuide"
  8665. type="1"
  8666. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8667. size="1.12MB" >
  8668. </productMenu>
  8669. <productID id="4210"
  8670. />
  8671. <productProductKey key="16"
  8672. />
  8673. <productGroupable type="1"
  8674. />
  8675. </product>
  8676. <product id="10S"
  8677. name="10S"
  8678. series="10"
  8679. latestVersion="3.0.2"
  8680. show = "1" >
  8681. <productMenu id="protocol"
  8682. type="3" >
  8683. </productMenu>
  8684. <productMenu id="sip"
  8685. type="1" >
  8686. </productMenu>
  8687. <productMenu id="bluetoothIntercom"
  8688. type="1" >
  8689. </productMenu>
  8690. <productMenu id="phone"
  8691. type="1" >
  8692. </productMenu>
  8693. <productMenu id="deviceSetting"
  8694. type="1"
  8695. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  8696. </productMenu>
  8697. <productMenu id="quickGuide"
  8698. type="1"
  8699. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  8700. size="934KB" >
  8701. </productMenu>
  8702. <productMenu id="userGuide"
  8703. type="1"
  8704. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  8705. size="1.14MB" >
  8706. </productMenu>
  8707. <productMenu id="connectGuide"
  8708. type="1"
  8709. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  8710. size="1.12MB" >
  8711. </productMenu>
  8712. <productID id="3380"
  8713. />
  8714. <productGroupable type="0"
  8715. />
  8716. </product>
  8717. <product id="10S"
  8718. name="10S"
  8719. series="10"
  8720. latestVersion="2.1.1"
  8721. show = "-1" >
  8722. <productMenu id="protocol"
  8723. type="0">
  8724. </productMenu>
  8725. <productMenu id="sip"
  8726. type="1" >
  8727. </productMenu>
  8728. <productMenu id="bluetoothIntercom"
  8729. type="1" >
  8730. </productMenu>
  8731. <productMenu id="phone"
  8732. type="2" >
  8733. </productMenu>
  8734. <productMenu id="fmradio"
  8735. type="3" >
  8736. </productMenu>
  8737. <productMenu id="deviceSetting"
  8738. type="1"
  8739. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  8740. <productMenuURL version="1.5"
  8741. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  8742. />
  8743. <productMenuURL version="1.3.1"
  8744. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  8745. />
  8746. </productMenu>
  8747. <productMenu id="quickGuide"
  8748. type="1"
  8749. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  8750. size="310KB" >
  8751. </productMenu>
  8752. <productMenu id="userGuide"
  8753. type="1"
  8754. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  8755. size="1.57MB" >
  8756. </productMenu>
  8757. <productID id="5530"
  8758. />
  8759. <productGroupable type="0"
  8760. />
  8761. </product>
  8762. <product id="Apex"
  8763. name="Apex"
  8764. series="Apex"
  8765. latestVersion="1.0"
  8766. latestVersionVoicePrompt="1.0"
  8767. show = "-1" >
  8768. <productMenu id="protocol"
  8769. type="2" >
  8770. </productMenu>
  8771. <productMenu id="serialNumber"
  8772. type="1" >
  8773. </productMenu>
  8774. <productMenu id="ota"
  8775. type="0" >
  8776. <otaLanguages>
  8777. <otaLanguage
  8778. id="0"
  8779. name="English"
  8780. package="0"
  8781. />
  8782. <otaLanguage
  8783. id="0"
  8784. name="French"
  8785. package="1"
  8786. />
  8787. <otaLanguage
  8788. id="0"
  8789. name="Spanish"
  8790. package="2"
  8791. />
  8792. <otaLanguage
  8793. id="0"
  8794. name="Italian"
  8795. package="3"
  8796. />
  8797. <otaLanguage
  8798. id="0"
  8799. name="German"
  8800. package="4"
  8801. />
  8802. <otaLanguage
  8803. id="0"
  8804. name="Dutch"
  8805. package="5"
  8806. />
  8807. <otaLanguage
  8808. id="0"
  8809. name="Russian"
  8810. package="6"
  8811. />
  8812. <otaLanguage
  8813. id="0"
  8814. name="Chinese"
  8815. package="7"
  8816. />
  8817. <otaLanguage
  8818. id="0"
  8819. name="Korean"
  8820. package="8"
  8821. />
  8822. <otaLanguage
  8823. id="0"
  8824. name="Japanese"
  8825. package="9"
  8826. />
  8827. <otaLanguage
  8828. id="0"
  8829. name="Finnish"
  8830. package="10"
  8831. />
  8832. <otaLanguage
  8833. id="0"
  8834. name="Polish"
  8835. package="11"
  8836. />
  8837. </otaLanguages>
  8838. <otaPackages>
  8839. <package
  8840. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0.img"
  8841. size="5183988"
  8842. />
  8843. <package
  8844. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fr-FR.img"
  8845. size="5183988"
  8846. />
  8847. <package
  8848. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-es-ES.img"
  8849. size="5183988"
  8850. />
  8851. <package
  8852. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-it-IT.img"
  8853. size="5183988"
  8854. />
  8855. <package
  8856. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-de-DE.img"
  8857. size="5183988"
  8858. />
  8859. <package
  8860. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-nl-NL.img"
  8861. size="5183988"
  8862. />
  8863. <package
  8864. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ru-RU.img"
  8865. size="5183988"
  8866. />
  8867. <package
  8868. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-cmn-CN.img"
  8869. size="5183988"
  8870. />
  8871. <package
  8872. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ko-KR.img"
  8873. size="5183988"
  8874. />
  8875. <package
  8876. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ja-JP.img"
  8877. size="5183988"
  8878. />
  8879. <package
  8880. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fi-FI.img"
  8881. size="5183988"
  8882. />
  8883. <package
  8884. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-pl-PL.img"
  8885. size="5183988"
  8886. />
  8887. </otaPackages>
  8888. </productMenu>
  8889. <productMenu id="sip"
  8890. type="1" >
  8891. </productMenu>
  8892. <productMenu id="bluetoothIntercom"
  8893. type="1" >
  8894. </productMenu>
  8895. <productMenu id="phone"
  8896. type="1" >
  8897. </productMenu>
  8898. <productMenu id="music"
  8899. type="1" >
  8900. </productMenu>
  8901. <productMenu id="fmradio"
  8902. type="1"
  8903. url="1" >
  8904. </productMenu>
  8905. <productMenu id="deviceSetting"
  8906. type="1"
  8907. url="https://api.sena.com/support/test/xml/NS_Apex_test_03.xml" >
  8908. </productMenu>
  8909. <productMenu id="quickGuide"
  8910. type="0"
  8911. url=""
  8912. size="934KB" >
  8913. </productMenu>
  8914. <productMenu id="userGuide"
  8915. type="1"
  8916. url=""
  8917. size="1.14MB" >
  8918. </productMenu>
  8919. <productMenu id="volume"
  8920. type="15" >
  8921. </productMenu>
  8922. <productID id="3452"
  8923. />
  8924. <productGroupable type="0"
  8925. />
  8926. </product>
  8927. <product id="ApexPlus"
  8928. name="Apex Plus"
  8929. series="Apex"
  8930. latestVersion="1.0"
  8931. latestVersionVoicePrompt="1.0"
  8932. show = "-1" >
  8933. <productMenu id="protocol"
  8934. type="2" >
  8935. </productMenu>
  8936. <productMenu id="serialNumber"
  8937. type="1" >
  8938. </productMenu>
  8939. <productMenu id="ota"
  8940. type="0" >
  8941. <otaLanguages>
  8942. <otaLanguage
  8943. id="0"
  8944. name="English"
  8945. package="0"
  8946. />
  8947. <otaLanguage
  8948. id="0"
  8949. name="French"
  8950. package="1"
  8951. />
  8952. <otaLanguage
  8953. id="0"
  8954. name="Spanish"
  8955. package="2"
  8956. />
  8957. <otaLanguage
  8958. id="0"
  8959. name="Italian"
  8960. package="3"
  8961. />
  8962. <otaLanguage
  8963. id="0"
  8964. name="German"
  8965. package="4"
  8966. />
  8967. <otaLanguage
  8968. id="0"
  8969. name="Dutch"
  8970. package="5"
  8971. />
  8972. <otaLanguage
  8973. id="0"
  8974. name="Russian"
  8975. package="6"
  8976. />
  8977. <otaLanguage
  8978. id="0"
  8979. name="Chinese"
  8980. package="7"
  8981. />
  8982. <otaLanguage
  8983. id="0"
  8984. name="Korean"
  8985. package="8"
  8986. />
  8987. <otaLanguage
  8988. id="0"
  8989. name="Japanese"
  8990. package="9"
  8991. />
  8992. <otaLanguage
  8993. id="0"
  8994. name="Finnish"
  8995. package="10"
  8996. />
  8997. <otaLanguage
  8998. id="0"
  8999. name="Polish"
  9000. package="11"
  9001. />
  9002. </otaLanguages>
  9003. <otaPackages>
  9004. <package
  9005. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0.img"
  9006. size="5183988"
  9007. />
  9008. <package
  9009. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fr-FR.img"
  9010. size="5183988"
  9011. />
  9012. <package
  9013. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-es-ES.img"
  9014. size="5183988"
  9015. />
  9016. <package
  9017. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-it-IT.img"
  9018. size="5183988"
  9019. />
  9020. <package
  9021. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-de-DE.img"
  9022. size="5183988"
  9023. />
  9024. <package
  9025. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-nl-NL.img"
  9026. size="5183988"
  9027. />
  9028. <package
  9029. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ru-RU.img"
  9030. size="5183988"
  9031. />
  9032. <package
  9033. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-cmn-CN.img"
  9034. size="5183988"
  9035. />
  9036. <package
  9037. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ko-KR.img"
  9038. size="5183988"
  9039. />
  9040. <package
  9041. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ja-JP.img"
  9042. size="5183988"
  9043. />
  9044. <package
  9045. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fi-FI.img"
  9046. size="5183988"
  9047. />
  9048. <package
  9049. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-pl-PL.img"
  9050. size="5183988"
  9051. />
  9052. </otaPackages>
  9053. </productMenu>
  9054. <productMenu id="sip"
  9055. type="1" >
  9056. </productMenu>
  9057. <productMenu id="bluetoothIntercom"
  9058. type="1" >
  9059. </productMenu>
  9060. <productMenu id="phone"
  9061. type="1" >
  9062. </productMenu>
  9063. <productMenu id="music"
  9064. type="1" >
  9065. </productMenu>
  9066. <productMenu id="fmradio"
  9067. type="1"
  9068. url="1" >
  9069. </productMenu>
  9070. <productMenu id="deviceSetting"
  9071. type="1"
  9072. url="https://api.sena.com/support/test/xml/NS_Apex_test_03.xml" >
  9073. </productMenu>
  9074. <productMenu id="quickGuide"
  9075. type="0"
  9076. url=""
  9077. size="934KB" >
  9078. </productMenu>
  9079. <productMenu id="userGuide"
  9080. type="1"
  9081. url=""
  9082. size="1.14MB" >
  9083. </productMenu>
  9084. <productMenu id="volume"
  9085. type="15" >
  9086. </productMenu>
  9087. <productID id="3453"
  9088. />
  9089. <productGroupable type="0"
  9090. />
  9091. </product>
  9092. <product id="10R2"
  9093. name="10R 2"
  9094. series="10"
  9095. latestVersion="0.9"
  9096. latestVersionVoicePrompt="1.1"
  9097. show = "-1" >
  9098. <productMenu id="protocol"
  9099. type="2" >
  9100. </productMenu>
  9101. <productMenu id="ota"
  9102. type="2" >
  9103. <otaPackages>
  9104. <package
  9105. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9106. size="2945812"
  9107. />
  9108. </otaPackages>
  9109. </productMenu>
  9110. <productMenu id="sip"
  9111. type="1" >
  9112. </productMenu>
  9113. <productMenu id="bluetoothIntercom"
  9114. type="1" >
  9115. </productMenu>
  9116. <productMenu id="phone"
  9117. type="1" >
  9118. </productMenu>
  9119. <productMenu id="music"
  9120. type="1" >
  9121. </productMenu>
  9122. <productMenu id="fmradio"
  9123. type="1"
  9124. url="1" >
  9125. </productMenu>
  9126. <productMenu id="deviceSetting"
  9127. type="1"
  9128. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9129. </productMenu>
  9130. <productMenu id="quickGuide"
  9131. type="1"
  9132. url=""
  9133. size="934KB" >
  9134. </productMenu>
  9135. <productMenu id="userGuide"
  9136. type="0"
  9137. url=""
  9138. size="1.14MB" >
  9139. </productMenu>
  9140. <productMenu id="volume"
  9141. type="15" >
  9142. </productMenu>
  9143. <productID id="4000"
  9144. />
  9145. <productGroupable type="0"
  9146. />
  9147. </product>
  9148. <product id="10R"
  9149. name="10R"
  9150. series="10"
  9151. latestVersion="2.1.1"
  9152. show = "1" >
  9153. <productMenu id="protocol"
  9154. type="0">
  9155. </productMenu>
  9156. <productMenu id="sip"
  9157. type="1" >
  9158. <productMenuType version="1.0.2"
  9159. type="0"
  9160. />
  9161. </productMenu>
  9162. <productMenu id="bluetoothIntercom"
  9163. type="1" >
  9164. <productMenuType version="1.0.2"
  9165. type="0"
  9166. />
  9167. </productMenu>
  9168. <productMenu id="phone"
  9169. type="2" >
  9170. </productMenu>
  9171. <productMenu id="fmradio"
  9172. type="3" >
  9173. </productMenu>
  9174. <productMenu id="deviceSetting"
  9175. type="1"
  9176. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9177. <productMenuURL version="1.4"
  9178. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9179. />
  9180. <productMenuURL version="1.2.1"
  9181. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9182. />
  9183. <productMenuURL version="1.0.2"
  9184. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9185. />
  9186. <productMenuURL version="1.0"
  9187. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9188. />
  9189. </productMenu>
  9190. <productMenu id="quickGuide"
  9191. type="1"
  9192. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9193. size="400KB" >
  9194. </productMenu>
  9195. <productMenu id="userGuide"
  9196. type="1"
  9197. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9198. size="2.75MB" >
  9199. </productMenu>
  9200. <productMenu id="connectGuide"
  9201. type="1"
  9202. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9203. size="1.12MB" >
  9204. </productMenu>
  9205. <productID id="5520"
  9206. />
  9207. <productGroupable type="0"
  9208. />
  9209. </product>
  9210. <product id="10C_EVO"
  9211. name="10C EVO"
  9212. series="10"
  9213. latestVersion="1.7"
  9214. show = "1" >
  9215. <productMenu id="protocol"
  9216. type="0">
  9217. </productMenu>
  9218. <productMenu id="sip"
  9219. type="1" >
  9220. </productMenu>
  9221. <productMenu id="bluetoothIntercom"
  9222. type="1" >
  9223. </productMenu>
  9224. <productMenu id="phone"
  9225. type="2" >
  9226. </productMenu>
  9227. <productMenu id="fmradio"
  9228. type="3" >
  9229. </productMenu>
  9230. <productMenu id="deviceSetting"
  9231. type="1"
  9232. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9233. <productMenuURL version="1.3.1"
  9234. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9235. />
  9236. </productMenu>
  9237. <productMenu id="quickGuide"
  9238. type="1"
  9239. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9240. size="1.32MB" >
  9241. </productMenu>
  9242. <productMenu id="userGuide"
  9243. type="1"
  9244. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9245. size="1.68MB" >
  9246. </productMenu>
  9247. <productMenu id="connectGuide"
  9248. type="1"
  9249. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9250. size="1.12MB" >
  9251. </productMenu>
  9252. <productID id="5570"
  9253. />
  9254. <productGroupable type="0"
  9255. />
  9256. </product>
  9257. <product id="10C_Pro"
  9258. name="10C Pro"
  9259. series="10"
  9260. latestVersion="2.7.1"
  9261. show = "1" >
  9262. <productMenu id="protocol"
  9263. type="0">
  9264. </productMenu>
  9265. <productMenu id="sip"
  9266. type="1" >
  9267. </productMenu>
  9268. <productMenu id="bluetoothIntercom"
  9269. type="1" >
  9270. </productMenu>
  9271. <productMenu id="phone"
  9272. type="2" >
  9273. </productMenu>
  9274. <productMenu id="fmradio"
  9275. type="3" >
  9276. </productMenu>
  9277. <productMenu id="deviceSetting"
  9278. type="1"
  9279. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9280. <productMenuURL version="2.5.1"
  9281. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9282. />
  9283. <productMenuURL version="1.0"
  9284. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9285. />
  9286. </productMenu>
  9287. <productMenu id="quickGuide"
  9288. type="1"
  9289. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9290. size="651KB" >
  9291. </productMenu>
  9292. <productMenu id="userGuide"
  9293. type="1"
  9294. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9295. size="2.34MB" >
  9296. </productMenu>
  9297. <productMenu id="connectGuide"
  9298. type="1"
  9299. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9300. size="1.12MB" >
  9301. </productMenu>
  9302. <productID id="5580"
  9303. />
  9304. <productGroupable type="0"
  9305. />
  9306. </product>
  9307. <product id="10C"
  9308. name="10C"
  9309. series="10"
  9310. latestVersion="3.0.4"
  9311. show = "1" >
  9312. <productMenu id="protocol"
  9313. type="0">
  9314. </productMenu>
  9315. <productMenu id="sip"
  9316. type="1" >
  9317. <productMenuType version="1.0.4"
  9318. type="0"
  9319. />
  9320. </productMenu>
  9321. <productMenu id="bluetoothIntercom"
  9322. type="1" >
  9323. <productMenuType version="1.0.4"
  9324. type="0"
  9325. />
  9326. </productMenu>
  9327. <productMenu id="phone"
  9328. type="2" >
  9329. </productMenu>
  9330. <productMenu id="fmradio"
  9331. type="3" >
  9332. </productMenu>
  9333. <productMenu id="deviceSetting"
  9334. type="1"
  9335. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9336. <productMenuURL version="2.3"
  9337. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9338. />
  9339. <productMenuURL version="2.1.1"
  9340. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9341. />
  9342. <productMenuURL version="1.0.4"
  9343. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9344. />
  9345. <productMenuURL version="1.0.2"
  9346. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9347. />
  9348. </productMenu>
  9349. <productMenu id="quickGuide"
  9350. type="1"
  9351. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9352. size="935KB" >
  9353. </productMenu>
  9354. <productMenu id="userGuide"
  9355. type="1"
  9356. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9357. size="2.82MB" >
  9358. </productMenu>
  9359. <productMenu id="connectGuide"
  9360. type="1"
  9361. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9362. size="1.12MB" >
  9363. </productMenu>
  9364. <productID id="5510"
  9365. />
  9366. <productGroupable type="0"
  9367. />
  9368. </product>
  9369. <product id="10U_GT_AIR"
  9370. name="10U GT-Air"
  9371. series="10"
  9372. latestVersion="2.0.4"
  9373. show = "1" >
  9374. <productMenu id="protocol"
  9375. type="0">
  9376. </productMenu>
  9377. <productMenu id="sip"
  9378. type="1" >
  9379. <productMenuType version="1.0.2"
  9380. type="0"
  9381. />
  9382. </productMenu>
  9383. <productMenu id="bluetoothIntercom"
  9384. type="1" >
  9385. <productMenuType version="1.0.2"
  9386. type="0"
  9387. />
  9388. </productMenu>
  9389. <productMenu id="phone"
  9390. type="2" >
  9391. </productMenu>
  9392. <productMenu id="fmradio"
  9393. type="3" >
  9394. </productMenu>
  9395. <productMenu id="deviceSetting"
  9396. type="1"
  9397. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9398. <productMenuURL version="1.3.2"
  9399. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9400. />
  9401. <productMenuURL version="1.0.2"
  9402. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9403. />
  9404. </productMenu>
  9405. <productMenu id="quickGuide"
  9406. type="1"
  9407. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9408. size="685KB" >
  9409. </productMenu>
  9410. <productMenu id="userGuide"
  9411. type="1"
  9412. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9413. size="684KB" >
  9414. </productMenu>
  9415. <productMenu id="connectGuide"
  9416. type="1"
  9417. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9418. size="1.12MB" >
  9419. </productMenu>
  9420. <productID id="5610"
  9421. />
  9422. <productGroupable type="0"
  9423. />
  9424. </product>
  9425. <product id="10U_NEOTEC"
  9426. name="10U Neotec"
  9427. series="10"
  9428. latestVersion="2.0.4"
  9429. show = "1" >
  9430. <productMenu id="protocol"
  9431. type="0">
  9432. </productMenu>
  9433. <productMenu id="sip"
  9434. type="1" >
  9435. <productMenuType version="1.0.2"
  9436. type="0"
  9437. />
  9438. </productMenu>
  9439. <productMenu id="bluetoothIntercom"
  9440. type="1" >
  9441. <productMenuType version="1.0.2"
  9442. type="0"
  9443. />
  9444. </productMenu>
  9445. <productMenu id="phone"
  9446. type="2" >
  9447. </productMenu>
  9448. <productMenu id="fmradio"
  9449. type="3" >
  9450. </productMenu>
  9451. <productMenu id="deviceSetting"
  9452. type="1"
  9453. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9454. <productMenuURL version="1.3.2"
  9455. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9456. />
  9457. <productMenuURL version="1.0.2"
  9458. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9459. />
  9460. </productMenu>
  9461. <productMenu id="quickGuide"
  9462. type="1"
  9463. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9464. size="689KB" >
  9465. </productMenu>
  9466. <productMenu id="userGuide"
  9467. type="1"
  9468. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9469. size="684KB" >
  9470. </productMenu>
  9471. <productMenu id="connectGuide"
  9472. type="1"
  9473. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9474. size="1.12MB" >
  9475. </productMenu>
  9476. <productID id="5611"
  9477. />
  9478. <productGroupable type="0"
  9479. />
  9480. </product>
  9481. <product id="10U_J_CRUISE"
  9482. name="10U J-Cruise"
  9483. series="10"
  9484. latestVersion="2.0.4"
  9485. show = "1" >
  9486. <productMenu id="protocol"
  9487. type="0">
  9488. </productMenu>
  9489. <productMenu id="sip"
  9490. type="1" >
  9491. <productMenuType version="1.0.2"
  9492. type="0"
  9493. />
  9494. </productMenu>
  9495. <productMenu id="bluetoothIntercom"
  9496. type="1" >
  9497. <productMenuType version="1.0.2"
  9498. type="0"
  9499. />
  9500. </productMenu>
  9501. <productMenu id="phone"
  9502. type="2" >
  9503. </productMenu>
  9504. <productMenu id="fmradio"
  9505. type="3" >
  9506. </productMenu>
  9507. <productMenu id="deviceSetting"
  9508. type="1"
  9509. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9510. <productMenuURL version="1.3.2"
  9511. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9512. />
  9513. <productMenuURL version="1.0.2"
  9514. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9515. />
  9516. </productMenu>
  9517. <productMenu id="quickGuide"
  9518. type="1"
  9519. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9520. size="686KB" >
  9521. </productMenu>
  9522. <productMenu id="userGuide"
  9523. type="1"
  9524. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9525. size="684KB" >
  9526. </productMenu>
  9527. <productMenu id="connectGuide"
  9528. type="1"
  9529. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9530. size="1.12MB" >
  9531. </productMenu>
  9532. <productID id="5612"
  9533. />
  9534. <productGroupable type="0"
  9535. />
  9536. </product>
  9537. <product id="10U_C3"
  9538. name="10U C3/C3Pro"
  9539. series="10"
  9540. latestVersion="2.0.4"
  9541. show = "1" >
  9542. <productMenu id="protocol"
  9543. type="0">
  9544. </productMenu>
  9545. <productMenu id="sip"
  9546. type="1" >
  9547. <productMenuType version="1.0.2"
  9548. type="0"
  9549. />
  9550. </productMenu>
  9551. <productMenu id="bluetoothIntercom"
  9552. type="1" >
  9553. <productMenuType version="1.0.2"
  9554. type="0"
  9555. />
  9556. </productMenu>
  9557. <productMenu id="phone"
  9558. type="2" >
  9559. </productMenu>
  9560. <productMenu id="fmradio"
  9561. type="3" >
  9562. </productMenu>
  9563. <productMenu id="deviceSetting"
  9564. type="1"
  9565. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9566. <productMenuURL version="1.3.2"
  9567. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9568. />
  9569. <productMenuURL version="1.0.2"
  9570. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9571. />
  9572. </productMenu>
  9573. <productMenu id="quickGuide"
  9574. type="1"
  9575. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9576. size="199KB" >
  9577. </productMenu>
  9578. <productMenu id="userGuide"
  9579. type="1"
  9580. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9581. size="684KB" >
  9582. </productMenu>
  9583. <productMenu id="connectGuide"
  9584. type="1"
  9585. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9586. size="1.12MB" >
  9587. </productMenu>
  9588. <productID id="5620"
  9589. />
  9590. <productGroupable type="0"
  9591. />
  9592. </product>
  9593. <product id="10U_ARAI"
  9594. name="10U Arai"
  9595. series="10"
  9596. latestVersion="2.0.4"
  9597. show = "1" >
  9598. <productMenu id="protocol"
  9599. type="0">
  9600. </productMenu>
  9601. <productMenu id="sip"
  9602. type="1" >
  9603. <productMenuType version="1.0.2"
  9604. type="0"
  9605. />
  9606. </productMenu>
  9607. <productMenu id="bluetoothIntercom"
  9608. type="1" >
  9609. <productMenuType version="1.0.2"
  9610. type="0"
  9611. />
  9612. </productMenu>
  9613. <productMenu id="phone"
  9614. type="2" >
  9615. </productMenu>
  9616. <productMenu id="fmradio"
  9617. type="3" >
  9618. </productMenu>
  9619. <productMenu id="deviceSetting"
  9620. type="1"
  9621. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9622. <productMenuURL version="1.3.2"
  9623. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9624. />
  9625. <productMenuURL version="1.0.2"
  9626. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9627. />
  9628. </productMenu>
  9629. <productMenu id="quickGuide"
  9630. type="1"
  9631. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  9632. size="689KB" >
  9633. </productMenu>
  9634. <productMenu id="userGuide"
  9635. type="1"
  9636. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9637. size="684KB" >
  9638. </productMenu>
  9639. <productMenu id="connectGuide"
  9640. type="1"
  9641. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9642. size="1.12MB" >
  9643. </productMenu>
  9644. <productID id="5621"
  9645. />
  9646. <productGroupable type="0"
  9647. />
  9648. </product>
  9649. <product id="10Upad"
  9650. name="10Upad"
  9651. series="10"
  9652. latestVersion="2.0.3"
  9653. show = "1" >
  9654. <productMenu id="protocol"
  9655. type="0">
  9656. </productMenu>
  9657. <productMenu id="sip"
  9658. type="1" >
  9659. </productMenu>
  9660. <productMenu id="bluetoothIntercom"
  9661. type="1" >
  9662. </productMenu>
  9663. <productMenu id="phone"
  9664. type="2" >
  9665. </productMenu>
  9666. <productMenu id="fmradio"
  9667. type="3" >
  9668. </productMenu>
  9669. <productMenu id="deviceSetting"
  9670. type="1"
  9671. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  9672. <productMenuURL version="1.0.3"
  9673. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  9674. />
  9675. </productMenu>
  9676. <productMenu id="quickGuide"
  9677. type="1"
  9678. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  9679. size="615KB" >
  9680. </productMenu>
  9681. <productMenu id="userGuide"
  9682. type="1"
  9683. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  9684. size="0.99MB" >
  9685. </productMenu>
  9686. <productMenu id="connectGuide"
  9687. type="1"
  9688. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9689. size="1.12MB" >
  9690. </productMenu>
  9691. <productID id="6210"
  9692. />
  9693. <productGroupable type="0"
  9694. />
  9695. </product>
  9696. <product id="5S"
  9697. name="5S"
  9698. series="5"
  9699. latestVersion="2.3.1"
  9700. show = "1" >
  9701. <productMenu id="protocol"
  9702. type="3" >
  9703. </productMenu>
  9704. <productMenu id="sip"
  9705. type="1" >
  9706. </productMenu>
  9707. <productMenu id="bluetoothIntercom"
  9708. type="1" >
  9709. </productMenu>
  9710. <productMenu id="phone"
  9711. type="1" >
  9712. </productMenu>
  9713. <productMenu id="fmradio"
  9714. type="0" >
  9715. </productMenu>
  9716. <productMenu id="deviceSetting"
  9717. type="1"
  9718. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9719. </productMenu>
  9720. <productMenu id="quickGuide"
  9721. type="0"
  9722. url=""
  9723. size="934KB" >
  9724. </productMenu>
  9725. <productMenu id="userGuide"
  9726. type="1"
  9727. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  9728. size="1.14MB" >
  9729. </productMenu>
  9730. <productMenu id="connectGuide"
  9731. type="1"
  9732. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  9733. size="1.12MB" >
  9734. </productMenu>
  9735. <productID id="5590"
  9736. />
  9737. <productGroupable type="0"
  9738. />
  9739. </product>
  9740. <product id="5S"
  9741. name="5S"
  9742. series="5"
  9743. latestVersion="1.2"
  9744. show = "-1" >
  9745. <productMenu id="protocol"
  9746. type="0">
  9747. </productMenu>
  9748. <productMenu id="sip"
  9749. type="1" >
  9750. </productMenu>
  9751. <productMenu id="bluetoothIntercom"
  9752. type="1" >
  9753. </productMenu>
  9754. <productMenu id="phone"
  9755. type="2" >
  9756. </productMenu>
  9757. <productMenu id="fmradio"
  9758. type="3" >
  9759. </productMenu>
  9760. <productMenu id="deviceSetting"
  9761. type="1"
  9762. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  9763. </productMenu>
  9764. <productMenu id="quickGuide"
  9765. type="0"
  9766. url=""
  9767. size="970KB" >
  9768. </productMenu>
  9769. <productMenu id="userGuide"
  9770. type="1"
  9771. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  9772. size="1.26MB" >
  9773. </productMenu>
  9774. <productID id="5534"
  9775. />
  9776. <productGroupable type="0"
  9777. />
  9778. </product>
  9779. <product id="5S"
  9780. name="5S"
  9781. series="5"
  9782. latestVersion="3.0.1"
  9783. show = "-1" >
  9784. <productMenu id="protocol"
  9785. type="0">
  9786. </productMenu>
  9787. <productMenu id="sip"
  9788. type="1" >
  9789. </productMenu>
  9790. <productMenu id="bluetoothIntercom"
  9791. type="1" >
  9792. </productMenu>
  9793. <productMenu id="phone"
  9794. type="2" >
  9795. </productMenu>
  9796. <productMenu id="fmradio"
  9797. type="0" >
  9798. </productMenu>
  9799. <productMenu id="deviceSetting"
  9800. type="1"
  9801. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  9802. </productMenu>
  9803. <productMenu id="quickGuide"
  9804. type="0"
  9805. url=""
  9806. size="970KB" >
  9807. </productMenu>
  9808. <productMenu id="userGuide"
  9809. type="1"
  9810. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  9811. size="1.26MB" >
  9812. </productMenu>
  9813. <productID id="5538"
  9814. />
  9815. <productGroupable type="0"
  9816. />
  9817. </product>
  9818. <product id="3SPLUS"
  9819. name="3S PLUS"
  9820. series="3"
  9821. latestVersion="2.2"
  9822. show = "1" >
  9823. <productMenu id="protocol"
  9824. type="3" >
  9825. </productMenu>
  9826. <productMenu id="sip"
  9827. type="1" >
  9828. </productMenu>
  9829. <productMenu id="bluetoothIntercom"
  9830. type="1" >
  9831. </productMenu>
  9832. <productMenu id="deviceSetting"
  9833. type="1"
  9834. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  9835. <productMenuURL version="2.2.1"
  9836. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  9837. />
  9838. </productMenu>
  9839. <productMenu id="quickGuide"
  9840. type="1"
  9841. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9842. size="344KB" >
  9843. </productMenu>
  9844. <productMenu id="userGuide"
  9845. type="1"
  9846. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  9847. size="1.14MB" >
  9848. </productMenu>
  9849. <productMenu id="connectGuide"
  9850. type="1"
  9851. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  9852. size="1.12MB" >
  9853. </productMenu>
  9854. <productID id="4023"
  9855. />
  9856. <productGroupable type="0"
  9857. />
  9858. </product>
  9859. <product id="3SPLUS"
  9860. name="3S PLUS"
  9861. series="3"
  9862. latestVersion="1.1"
  9863. show = "-1" >
  9864. <productMenu id="protocol"
  9865. type="0">
  9866. </productMenu>
  9867. <productMenu id="sip"
  9868. type="1" >
  9869. </productMenu>
  9870. <productMenu id="bluetoothIntercom"
  9871. type="1" >
  9872. </productMenu>
  9873. <productMenu id="deviceSetting"
  9874. type="1"
  9875. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  9876. </productMenu>
  9877. <productMenu id="quickGuide"
  9878. type="1"
  9879. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9880. size="842KB" >
  9881. </productMenu>
  9882. <productMenu id="userGuide"
  9883. type="1"
  9884. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  9885. size="1.02MB" >
  9886. </productMenu>
  9887. <productID id="6320"
  9888. />
  9889. <productGroupable type="0"
  9890. />
  9891. </product>
  9892. <product id="AConnect"
  9893. name="Alpinestars A-Connect"
  9894. series="60"
  9895. latestVersion="1.0.2"
  9896. latestVersionMesh="0.19"
  9897. latestVersionVoicePrompt="1.6"
  9898. show = "-1" >
  9899. <productMenu id="protocol"
  9900. type="2" >
  9901. </productMenu>
  9902. <productMenu id="ota"
  9903. type="2" >
  9904. <otaLanguages>
  9905. <otaLanguage
  9906. id="0"
  9907. name="English"
  9908. package="0"
  9909. />
  9910. <otaLanguage
  9911. id="0"
  9912. name="French"
  9913. package="1"
  9914. />
  9915. <otaLanguage
  9916. id="0"
  9917. name="Spanish"
  9918. package="2"
  9919. />
  9920. <otaLanguage
  9921. id="0"
  9922. name="Italian"
  9923. package="3"
  9924. />
  9925. <otaLanguage
  9926. id="0"
  9927. name="German"
  9928. package="4"
  9929. />
  9930. <otaLanguage
  9931. id="0"
  9932. name="Dutch"
  9933. package="5"
  9934. />
  9935. <otaLanguage
  9936. id="0"
  9937. name="Russian"
  9938. package="6"
  9939. />
  9940. <otaLanguage
  9941. id="0"
  9942. name="Chinese"
  9943. package="7"
  9944. />
  9945. <otaLanguage
  9946. id="0"
  9947. name="Korean"
  9948. package="8"
  9949. />
  9950. <otaLanguage
  9951. id="0"
  9952. name="Japanese"
  9953. package="9"
  9954. />
  9955. <otaLanguage
  9956. id="0"
  9957. name="Finnish"
  9958. package="10"
  9959. />
  9960. <otaLanguage
  9961. id="0"
  9962. name="Polish"
  9963. package="11"
  9964. />
  9965. </otaLanguages>
  9966. <otaPackages>
  9967. <package
  9968. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  9969. size="5183988"
  9970. />
  9971. <package
  9972. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  9973. size="5183988"
  9974. />
  9975. <package
  9976. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  9977. size="5183988"
  9978. />
  9979. <package
  9980. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  9981. size="5183988"
  9982. />
  9983. <package
  9984. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  9985. size="5183988"
  9986. />
  9987. <package
  9988. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  9989. size="5183988"
  9990. />
  9991. <package
  9992. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  9993. size="5183988"
  9994. />
  9995. <package
  9996. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  9997. size="5183988"
  9998. />
  9999. <package
  10000. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  10001. size="5183988"
  10002. />
  10003. <package
  10004. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10005. size="5183988"
  10006. />
  10007. <package
  10008. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10009. size="5183988"
  10010. />
  10011. <package
  10012. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10013. size="5183988"
  10014. />
  10015. </otaPackages>
  10016. </productMenu>
  10017. <productMenu id="sip"
  10018. type="1" >
  10019. </productMenu>
  10020. <productMenu id="illusion"
  10021. type="0" >
  10022. </productMenu>
  10023. <productMenu id="meshIntercom+"
  10024. type="3"
  10025. url="2" >
  10026. </productMenu>
  10027. <productMenu id="waveIntercom"
  10028. type="1" >
  10029. </productMenu>
  10030. <productMenu id="bluetoothIntercom"
  10031. type="1"
  10032. url="2" >
  10033. </productMenu>
  10034. <productMenu id="bluetoothIntercomGrouping"
  10035. type="0" >
  10036. </productMenu>
  10037. <productMenu id="fmradio"
  10038. type="1"
  10039. url="1" >
  10040. </productMenu>
  10041. <productMenu id="phone"
  10042. type="1" >
  10043. </productMenu>
  10044. <productMenu id="music"
  10045. type="1" >
  10046. </productMenu>
  10047. <productMenu id="musicSharing"
  10048. type="0" >
  10049. </productMenu>
  10050. <productMenu id="deviceSetting"
  10051. type="1"
  10052. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  10053. </productMenu>
  10054. <productMenu id="quickGuide"
  10055. type="0"
  10056. url=""
  10057. size="1.12MB" >
  10058. </productMenu>
  10059. <productMenu id="userGuide"
  10060. type="1"
  10061. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  10062. size="2.0MB" >
  10063. </productMenu>
  10064. <productMenu id="videoGuide"
  10065. type="0"
  10066. url=""
  10067. size="3.41MB" >
  10068. </productMenu>
  10069. <productMenu id="volume"
  10070. type="16" >
  10071. </productMenu>
  10072. <productMenu id="volume+"
  10073. type="2"
  10074. url="0x6004" >
  10075. </productMenu>
  10076. <productMenu id="soundMode"
  10077. type="0" >
  10078. </productMenu>
  10079. <productMenu id="battery"
  10080. type="1" >
  10081. </productMenu>
  10082. <productID id="6A82"
  10083. />
  10084. <productGroupable type="0"
  10085. />
  10086. </product>
  10087. <product id="iCon"
  10088. name="iCon"
  10089. series="50"
  10090. latestVersion="1.2"
  10091. show = "0" >
  10092. <productMenu id="protocol"
  10093. type="2" >
  10094. </productMenu>
  10095. <productMenu id="alexa"
  10096. type="0" >
  10097. </productMenu>
  10098. <productMenu id="wa"
  10099. type="0" >
  10100. </productMenu>
  10101. <productMenu id="sip"
  10102. type="1" >
  10103. </productMenu>
  10104. <productMenu id="led"
  10105. type="3" >
  10106. </productMenu>
  10107. <productMenu id="meshIntercom"
  10108. type="20" >
  10109. </productMenu>
  10110. <productMenu id="meshIntercom+"
  10111. type="3"
  10112. url="0" >
  10113. <productMenuType version="1.0.9"
  10114. type="2"
  10115. />
  10116. </productMenu>
  10117. <productMenu id="bluetoothIntercom"
  10118. type="1" >
  10119. </productMenu>
  10120. <productMenu id="phone"
  10121. type="1" >
  10122. </productMenu>
  10123. <productMenu id="music"
  10124. type="1" >
  10125. </productMenu>
  10126. <productMenu id="fmradio"
  10127. type="1" >
  10128. </productMenu>
  10129. <productMenu id="deviceSetting"
  10130. type="1"
  10131. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10132. <productMenuURL version="1.0.9"
  10133. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10134. />
  10135. </productMenu>
  10136. <productMenu id="quickGuide"
  10137. type="1"
  10138. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10139. size="344KB" >
  10140. </productMenu>
  10141. <productMenu id="userGuide"
  10142. type="1"
  10143. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10144. size="3.41MB" >
  10145. </productMenu>
  10146. <productMenu id="volume"
  10147. type="11" >
  10148. </productMenu>
  10149. <productMenu id="battery"
  10150. type="1" >
  10151. </productMenu>
  10152. <productID id="3900"
  10153. />
  10154. <productGroupable type="0"
  10155. />
  10156. </product>
  10157. <product id="ICONHelmLinkSL"
  10158. name="ICON HelmLink SL"
  10159. series="50"
  10160. latestVersion="1.0"
  10161. latestVersionVoicePrompt="1.6"
  10162. show = "-1" >
  10163. <productMenu id="protocol"
  10164. type="2" >
  10165. </productMenu>
  10166. <productMenu id="alexa"
  10167. type="0" >
  10168. </productMenu>
  10169. <productMenu id="ota"
  10170. type="0" >
  10171. <otaPackages>
  10172. <package
  10173. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/ICON_HELMLINK_SL-v0.9-build0.img"
  10174. size="2945812"
  10175. />
  10176. </otaPackages>
  10177. </productMenu>
  10178. <productMenu id="wa"
  10179. type="0" >
  10180. </productMenu>
  10181. <productMenu id="meshIntercom"
  10182. type="30" >
  10183. </productMenu>
  10184. <productMenu id="meshIntercom+"
  10185. type="3"
  10186. url="2" >
  10187. </productMenu>
  10188. <productMenu id="waveIntercom"
  10189. type="1" >
  10190. </productMenu>
  10191. <productMenu id="phone"
  10192. type="1" >
  10193. </productMenu>
  10194. <productMenu id="music"
  10195. type="1" >
  10196. </productMenu>
  10197. <productMenu id="musicSharing"
  10198. type="0" >
  10199. </productMenu>
  10200. <productMenu id="deviceSetting"
  10201. type="1"
  10202. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10203. </productMenu>
  10204. <productMenu id="quickGuide"
  10205. type="0"
  10206. url=""
  10207. size="1.12MB" >
  10208. </productMenu>
  10209. <productMenu id="userGuide"
  10210. type="1"
  10211. url=""
  10212. size="2.0MB" >
  10213. </productMenu>
  10214. <productMenu id="volume"
  10215. type="12" >
  10216. </productMenu>
  10217. <productMenu id="battery"
  10218. type="1" >
  10219. </productMenu>
  10220. <productID id="6842"
  10221. />
  10222. <productGroupable type="0"
  10223. />
  10224. </product>
  10225. <product id="HD50S"
  10226. name="H-D Audio 50S"
  10227. series="50"
  10228. latestVersion="1.0.1"
  10229. show = "-1" >
  10230. <productMenu id="protocol"
  10231. type="2" >
  10232. </productMenu>
  10233. <productMenu id="alexa"
  10234. type="0" >
  10235. </productMenu>
  10236. <productMenu id="ota"
  10237. type="0"
  10238. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10239. size="1150234" >
  10240. </productMenu>
  10241. <productMenu id="wa"
  10242. type="1" >
  10243. </productMenu>
  10244. <productMenu id="sip"
  10245. type="1" >
  10246. </productMenu>
  10247. <productMenu id="meshIntercom"
  10248. type="20" >
  10249. </productMenu>
  10250. <productMenu id="meshIntercom+"
  10251. type="3"
  10252. url="0" >
  10253. <productMenuType version="1.0.9"
  10254. type="2"
  10255. />
  10256. </productMenu>
  10257. <productMenu id="bluetoothIntercom"
  10258. type="1" >
  10259. </productMenu>
  10260. <productMenu id="phone"
  10261. type="1" >
  10262. </productMenu>
  10263. <productMenu id="music"
  10264. type="1" >
  10265. </productMenu>
  10266. <productMenu id="fmradio"
  10267. type="1" >
  10268. </productMenu>
  10269. <productMenu id="deviceSetting"
  10270. type="1"
  10271. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10272. <productMenuURL version="1.0.9"
  10273. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10274. />
  10275. </productMenu>
  10276. <productMenu id="quickGuide"
  10277. type="1"
  10278. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10279. size="934KB" >
  10280. </productMenu>
  10281. <productMenu id="userGuide"
  10282. type="1"
  10283. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10284. size="1.14MB" >
  10285. </productMenu>
  10286. <productMenu id="volume"
  10287. type="11" >
  10288. </productMenu>
  10289. <productMenu id="battery"
  10290. type="1" >
  10291. </productMenu>
  10292. <productID id="3156"
  10293. />
  10294. <productGroupable type="0"
  10295. />
  10296. </product>
  10297. <product id="HD50S"
  10298. name="H-D Audio 50S"
  10299. series="50"
  10300. latestVersion="2.0.2"
  10301. show = "0" >
  10302. <productMenu id="protocol"
  10303. type="2" >
  10304. </productMenu>
  10305. <productMenu id="alexa"
  10306. type="0" >
  10307. </productMenu>
  10308. <productMenu id="ota"
  10309. type="0"
  10310. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10311. size="1150234" >
  10312. </productMenu>
  10313. <productMenu id="wa"
  10314. type="1" >
  10315. </productMenu>
  10316. <productMenu id="sip"
  10317. type="1" >
  10318. </productMenu>
  10319. <productMenu id="meshIntercom"
  10320. type="20" >
  10321. </productMenu>
  10322. <productMenu id="meshIntercom+"
  10323. type="3"
  10324. url="0" >
  10325. <productMenuType version="2.0.9"
  10326. type="2"
  10327. />
  10328. </productMenu>
  10329. <productMenu id="bluetoothIntercom"
  10330. type="1" >
  10331. </productMenu>
  10332. <productMenu id="phone"
  10333. type="1" >
  10334. </productMenu>
  10335. <productMenu id="music"
  10336. type="1" >
  10337. </productMenu>
  10338. <productMenu id="fmradio"
  10339. type="1" >
  10340. </productMenu>
  10341. <productMenu id="deviceSetting"
  10342. type="1"
  10343. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10344. <productMenuURL version="2.0.9"
  10345. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10346. />
  10347. </productMenu>
  10348. <productMenu id="quickGuide"
  10349. type="1"
  10350. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10351. size="934KB" >
  10352. </productMenu>
  10353. <productMenu id="userGuide"
  10354. type="1"
  10355. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10356. size="1.14MB" >
  10357. </productMenu>
  10358. <productMenu id="volume"
  10359. type="11" >
  10360. </productMenu>
  10361. <productMenu id="battery"
  10362. type="1" >
  10363. </productMenu>
  10364. <productID id="3213"
  10365. />
  10366. <productGroupable type="0"
  10367. />
  10368. </product>
  10369. <product id="HD50C"
  10370. name="H-D Audio 50C"
  10371. series="50"
  10372. latestVersion="1.0.1"
  10373. show = "0" >
  10374. <productMenu id="protocol"
  10375. type="2" >
  10376. </productMenu>
  10377. <productMenu id="ota"
  10378. type="0" >
  10379. </productMenu>
  10380. <productMenu id="wa"
  10381. type="1" >
  10382. </productMenu>
  10383. <productMenu id="sip"
  10384. type="1" >
  10385. </productMenu>
  10386. <productMenu id="meshIntercom"
  10387. type="20" >
  10388. </productMenu>
  10389. <productMenu id="meshIntercom+"
  10390. type="3"
  10391. url="0" >
  10392. <productMenuType version="1.0.9"
  10393. type="2"
  10394. />
  10395. </productMenu>
  10396. <productMenu id="bluetoothIntercom"
  10397. type="1" >
  10398. </productMenu>
  10399. <productMenu id="phone"
  10400. type="1" >
  10401. </productMenu>
  10402. <productMenu id="music"
  10403. type="1" >
  10404. </productMenu>
  10405. <productMenu id="fmradio"
  10406. type="1" >
  10407. </productMenu>
  10408. <productMenu id="deviceSetting"
  10409. type="1"
  10410. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10411. <productMenuURL version="1.0.9"
  10412. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10413. />
  10414. </productMenu>
  10415. <productMenu id="quickGuide"
  10416. type="1"
  10417. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10418. size="344KB" >
  10419. </productMenu>
  10420. <productMenu id="userGuide"
  10421. type="1"
  10422. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10423. size="3.41MB" >
  10424. </productMenu>
  10425. <productMenu id="volume"
  10426. type="11" >
  10427. </productMenu>
  10428. <productMenu id="battery"
  10429. type="1" >
  10430. </productMenu>
  10431. <productID id="3240"
  10432. />
  10433. <productGroupable type="0"
  10434. />
  10435. </product>
  10436. <product id="HD50S"
  10437. name="FURY N04"
  10438. series="Helmet"
  10439. latestVersion="1.0"
  10440. show = "0" >
  10441. <productMenu id="protocol"
  10442. type="2" >
  10443. </productMenu>
  10444. <productMenu id="alexa"
  10445. type="0" >
  10446. </productMenu>
  10447. <productMenu id="ota"
  10448. type="0" >
  10449. </productMenu>
  10450. <productMenu id="wa"
  10451. type="0" >
  10452. </productMenu>
  10453. <productMenu id="meshIntercom"
  10454. type="20" >
  10455. </productMenu>
  10456. <productMenu id="meshIntercom+"
  10457. type="3"
  10458. url="0" >
  10459. <productMenuType version="1.0.9"
  10460. type="2"
  10461. />
  10462. </productMenu>
  10463. <productMenu id="phone"
  10464. type="1" >
  10465. </productMenu>
  10466. <productMenu id="music"
  10467. type="1" >
  10468. </productMenu>
  10469. <productMenu id="fmradio"
  10470. type="1" >
  10471. </productMenu>
  10472. <productMenu id="deviceSetting"
  10473. type="1"
  10474. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10475. <productMenuURL version="1.0.9"
  10476. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10477. />
  10478. </productMenu>
  10479. <productMenu id="quickGuide"
  10480. type="1"
  10481. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10482. size="1.12MB" >
  10483. </productMenu>
  10484. <productMenu id="userGuide"
  10485. type="1"
  10486. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10487. size="2.0MB" >
  10488. </productMenu>
  10489. <productMenu id="volume"
  10490. type="13" >
  10491. </productMenu>
  10492. <productMenu id="battery"
  10493. type="1" >
  10494. </productMenu>
  10495. <productID id="5553"
  10496. />
  10497. <productGroupable type="0"
  10498. />
  10499. </product>
  10500. <product id="XCOM3Pro"
  10501. name="X-COM3 Pro"
  10502. series="50"
  10503. latestVersion="1.1"
  10504. show = "0" >
  10505. <productMenu id="protocol"
  10506. type="2" >
  10507. </productMenu>
  10508. <productMenu id="alexa"
  10509. type="0" >
  10510. </productMenu>
  10511. <productMenu id="ota"
  10512. type="0" >
  10513. </productMenu>
  10514. <productMenu id="wa"
  10515. type="0" >
  10516. </productMenu>
  10517. <productMenu id="sip"
  10518. type="1" >
  10519. </productMenu>
  10520. <productMenu id="meshIntercom"
  10521. type="30" >
  10522. </productMenu>
  10523. <productMenu id="meshIntercom+"
  10524. type="3"
  10525. url="2" >
  10526. <productMenuType version="1.1"
  10527. type="2"
  10528. />
  10529. </productMenu>
  10530. <productMenu id="waveIntercom"
  10531. type="1" >
  10532. <productMenuType version="1.1"
  10533. type="0"
  10534. />
  10535. </productMenu>
  10536. <productMenu id="bluetoothIntercom"
  10537. type="1" >
  10538. </productMenu>
  10539. <productMenu id="phone"
  10540. type="1" >
  10541. </productMenu>
  10542. <productMenu id="music"
  10543. type="1" >
  10544. </productMenu>
  10545. <productMenu id="fmradio"
  10546. type="1" >
  10547. </productMenu>
  10548. <productMenu id="deviceSetting"
  10549. type="1"
  10550. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10551. <productMenuURL version="1.1"
  10552. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10553. />
  10554. </productMenu>
  10555. <productMenu id="quickGuide"
  10556. type="0"
  10557. url=""
  10558. size="344KB" >
  10559. </productMenu>
  10560. <productMenu id="userGuide"
  10561. type="1"
  10562. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10563. size="3.41MB" >
  10564. </productMenu>
  10565. <productMenu id="volume"
  10566. type="11" >
  10567. </productMenu>
  10568. <productMenu id="battery"
  10569. type="1" >
  10570. </productMenu>
  10571. <productID id="321A"
  10572. />
  10573. <productGroupable type="0"
  10574. />
  10575. </product>
  10576. <product id="XCOM3"
  10577. name="X-COM3"
  10578. series="20"
  10579. latestVersion="1.0"
  10580. show = "0" >
  10581. <productMenu id="protocol"
  10582. type="2" >
  10583. </productMenu>
  10584. <productMenu id="sip"
  10585. type="1" >
  10586. </productMenu>
  10587. <productMenu id="bluetoothIntercom"
  10588. type="1" >
  10589. </productMenu>
  10590. <productMenu id="phone"
  10591. type="1" >
  10592. </productMenu>
  10593. <productMenu id="music"
  10594. type="1" >
  10595. </productMenu>
  10596. <productMenu id="fmradio"
  10597. type="1" >
  10598. </productMenu>
  10599. <productMenu id="deviceSetting"
  10600. type="1"
  10601. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10602. </productMenu>
  10603. <productMenu id="quickGuide"
  10604. type="0"
  10605. url=""
  10606. size="934KB" >
  10607. </productMenu>
  10608. <productMenu id="userGuide"
  10609. type="1"
  10610. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  10611. size="1.14MB" >
  10612. </productMenu>
  10613. <productMenu id="volume"
  10614. type="15" >
  10615. </productMenu>
  10616. <productID id="3410"
  10617. />
  10618. <productGroupable type="0"
  10619. />
  10620. </product>
  10621. <product id="X-COM2"
  10622. name="X-COM2"
  10623. series="20"
  10624. latestVersion="1.0.5"
  10625. show = "0" >
  10626. <productMenu id="protocol"
  10627. type="0">
  10628. </productMenu>
  10629. <productMenu id="sip"
  10630. type="1" >
  10631. </productMenu>
  10632. <productMenu id="bluetoothIntercom"
  10633. type="1" >
  10634. </productMenu>
  10635. <productMenu id="intercomSetting"
  10636. type="1" >
  10637. </productMenu>
  10638. <productMenu id="phone"
  10639. type="2" >
  10640. </productMenu>
  10641. <productMenu id="fmradio"
  10642. type="3" >
  10643. </productMenu>
  10644. <productMenu id="deviceSetting"
  10645. type="1"
  10646. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  10647. </productMenu>
  10648. <productMenu id="quickGuide"
  10649. type="1"
  10650. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  10651. size="796KB" >
  10652. </productMenu>
  10653. <productMenu id="userGuide"
  10654. type="1"
  10655. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  10656. size="1.90MB" >
  10657. </productMenu>
  10658. <productID id="2030"
  10659. />
  10660. <productGroupable type="1"
  10661. />
  10662. </product>
  10663. <product id="AVAABC"
  10664. name="AVA ABC"
  10665. series="SPIDER"
  10666. latestVersion="1.1"
  10667. show = "0" >
  10668. <productMenu id="protocol"
  10669. type="2" >
  10670. </productMenu>
  10671. <productMenu id="alexa"
  10672. type="0" >
  10673. </productMenu>
  10674. <productMenu id="ota"
  10675. type="0" >
  10676. <productMenuType version="1.0"
  10677. type="0"
  10678. />
  10679. <otaPackages>
  10680. <package
  10681. url="https://api.sena.com/support/OTA/"
  10682. size="2945812"
  10683. />
  10684. </otaPackages>
  10685. </productMenu>
  10686. <productMenu id="wa"
  10687. type="0" >
  10688. </productMenu>
  10689. <productMenu id="meshIntercom"
  10690. type="30" >
  10691. <productMenuType version="1.0"
  10692. type="20"
  10693. />
  10694. </productMenu>
  10695. <productMenu id="meshIntercom+"
  10696. type="3"
  10697. url="2" >
  10698. <productMenuType version="1.0"
  10699. type="2"
  10700. />
  10701. <productMenuURL version="1.0"
  10702. url="0"
  10703. />
  10704. </productMenu>
  10705. <productMenu id="waveIntercom"
  10706. type="1" >
  10707. <productMenuType version="1.0"
  10708. type="0"
  10709. />
  10710. </productMenu>
  10711. <productMenu id="phone"
  10712. type="1" >
  10713. </productMenu>
  10714. <productMenu id="music"
  10715. type="1" >
  10716. </productMenu>
  10717. <productMenu id="musicSharing"
  10718. type="0" >
  10719. </productMenu>
  10720. <productMenu id="deviceSetting"
  10721. type="1"
  10722. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  10723. <productMenuURL version="1.0"
  10724. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  10725. />
  10726. </productMenu>
  10727. <productMenu id="quickGuide"
  10728. type="1"
  10729. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  10730. size="1.12MB" >
  10731. </productMenu>
  10732. <productMenu id="userGuide"
  10733. type="1"
  10734. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  10735. size="2.0MB" >
  10736. </productMenu>
  10737. <productMenu id="volume"
  10738. type="12" >
  10739. </productMenu>
  10740. <productMenu id="battery"
  10741. type="1" >
  10742. </productMenu>
  10743. <productID id="6808"
  10744. />
  10745. <productGroupable type="0"
  10746. />
  10747. </product>
  10748. <product id="ADVANCEProCOM2"
  10749. name="ADVANCE ProCOM 2"
  10750. series="Helmet"
  10751. latestVersion="0.5"
  10752. latestVersionVoicePrompt="0.3"
  10753. show = "-1" >
  10754. <productMenu id="protocol"
  10755. type="2" >
  10756. </productMenu>
  10757. <productMenu id="ota"
  10758. type="2" >
  10759. <otaLanguages>
  10760. <otaLanguage
  10761. id="0"
  10762. name="English"
  10763. package="0"
  10764. />
  10765. <otaLanguage
  10766. id="0"
  10767. name="French"
  10768. package="1"
  10769. />
  10770. <otaLanguage
  10771. id="0"
  10772. name="Spanish"
  10773. package="2"
  10774. />
  10775. <otaLanguage
  10776. id="0"
  10777. name="Italian"
  10778. package="3"
  10779. />
  10780. <otaLanguage
  10781. id="0"
  10782. name="German"
  10783. package="4"
  10784. />
  10785. <otaLanguage
  10786. id="0"
  10787. name="Dutch"
  10788. package="5"
  10789. />
  10790. <otaLanguage
  10791. id="0"
  10792. name="Russian"
  10793. package="6"
  10794. />
  10795. <otaLanguage
  10796. id="0"
  10797. name="Chinese"
  10798. package="7"
  10799. />
  10800. <otaLanguage
  10801. id="0"
  10802. name="Korean"
  10803. package="8"
  10804. />
  10805. <otaLanguage
  10806. id="0"
  10807. name="Japanese"
  10808. package="9"
  10809. />
  10810. <otaLanguage
  10811. id="0"
  10812. name="Finnish"
  10813. package="10"
  10814. />
  10815. <otaLanguage
  10816. id="0"
  10817. name="Polish"
  10818. package="11"
  10819. />
  10820. </otaLanguages>
  10821. <otaPackages>
  10822. <package
  10823. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  10824. size="5183988"
  10825. />
  10826. <package
  10827. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  10828. size="5183988"
  10829. />
  10830. <package
  10831. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  10832. size="5183988"
  10833. />
  10834. <package
  10835. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  10836. size="5183988"
  10837. />
  10838. <package
  10839. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  10840. size="5183988"
  10841. />
  10842. <package
  10843. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  10844. size="5183988"
  10845. />
  10846. <package
  10847. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  10848. size="5183988"
  10849. />
  10850. <package
  10851. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  10852. size="5183988"
  10853. />
  10854. <package
  10855. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  10856. size="5183988"
  10857. />
  10858. <package
  10859. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  10860. size="5183988"
  10861. />
  10862. <package
  10863. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  10864. size="5183988"
  10865. />
  10866. <package
  10867. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  10868. size="5183988"
  10869. />
  10870. </otaPackages>
  10871. </productMenu>
  10872. <productMenu id="wa"
  10873. type="0" >
  10874. </productMenu>
  10875. <productMenu id="meshIntercom"
  10876. type="30" >
  10877. </productMenu>
  10878. <productMenu id="meshIntercom+"
  10879. type="3"
  10880. url="2" >
  10881. </productMenu>
  10882. <productMenu id="waveIntercom"
  10883. type="1" >
  10884. </productMenu>
  10885. <productMenu id="fmradio"
  10886. type="1" >
  10887. </productMenu>
  10888. <productMenu id="phone"
  10889. type="0" >
  10890. </productMenu>
  10891. <productMenu id="music"
  10892. type="1" >
  10893. </productMenu>
  10894. <productMenu id="musicSharing"
  10895. type="0" >
  10896. </productMenu>
  10897. <productMenu id="deviceSetting"
  10898. type="1"
  10899. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  10900. </productMenu>
  10901. <productMenu id="quickGuide"
  10902. type="0"
  10903. url=""
  10904. size="1.12MB" >
  10905. </productMenu>
  10906. <productMenu id="userGuide"
  10907. type="1"
  10908. url=""
  10909. size="2.0MB" >
  10910. </productMenu>
  10911. <productMenu id="videoGuide"
  10912. type="0"
  10913. url=""
  10914. size="3.41MB" >
  10915. </productMenu>
  10916. <productMenu id="connectGuide"
  10917. type="1"
  10918. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  10919. size="1.12MB" >
  10920. </productMenu>
  10921. <productMenu id="volume"
  10922. type="16" >
  10923. </productMenu>
  10924. <productMenu id="battery"
  10925. type="1" >
  10926. </productMenu>
  10927. <productID id="6A85"
  10928. />
  10929. <productGroupable type="0"
  10930. />
  10931. </product>
  10932. <product id="TRIUMPH60X"
  10933. name="TRIUMPH 60X"
  10934. series="60"
  10935. latestVersion="1.0"
  10936. latestVersionMesh="0.19"
  10937. latestVersionVoicePrompt="1.7"
  10938. show = "-1" >
  10939. <productMenu id="protocol"
  10940. type="2" >
  10941. </productMenu>
  10942. <productMenu id="ota"
  10943. type="0" >
  10944. <otaLanguages>
  10945. <otaLanguage
  10946. id="0"
  10947. name="English"
  10948. package="0"
  10949. />
  10950. <otaLanguage
  10951. id="0"
  10952. name="French"
  10953. package="1"
  10954. />
  10955. <otaLanguage
  10956. id="0"
  10957. name="Spanish"
  10958. package="2"
  10959. />
  10960. <otaLanguage
  10961. id="0"
  10962. name="Italian"
  10963. package="3"
  10964. />
  10965. <otaLanguage
  10966. id="0"
  10967. name="German"
  10968. package="4"
  10969. />
  10970. <otaLanguage
  10971. id="0"
  10972. name="Dutch"
  10973. package="5"
  10974. />
  10975. <otaLanguage
  10976. id="0"
  10977. name="Russian"
  10978. package="6"
  10979. />
  10980. <otaLanguage
  10981. id="0"
  10982. name="Chinese"
  10983. package="7"
  10984. />
  10985. <otaLanguage
  10986. id="0"
  10987. name="Korean"
  10988. package="8"
  10989. />
  10990. <otaLanguage
  10991. id="0"
  10992. name="Japanese"
  10993. package="9"
  10994. />
  10995. <otaLanguage
  10996. id="0"
  10997. name="Finnish"
  10998. package="10"
  10999. />
  11000. <otaLanguage
  11001. id="0"
  11002. name="Polish"
  11003. package="11"
  11004. />
  11005. </otaLanguages>
  11006. <otaPackages>
  11007. <package
  11008. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5.img"
  11009. size="5183988"
  11010. />
  11011. <package
  11012. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fr-FR.img"
  11013. size="5183988"
  11014. />
  11015. <package
  11016. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-es-ES.img"
  11017. size="5183988"
  11018. />
  11019. <package
  11020. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-it-IT.img"
  11021. size="5183988"
  11022. />
  11023. <package
  11024. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-de-DE.img"
  11025. size="5183988"
  11026. />
  11027. <package
  11028. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-nl-NL.img"
  11029. size="5183988"
  11030. />
  11031. <package
  11032. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ru-RU.img"
  11033. size="5183988"
  11034. />
  11035. <package
  11036. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-cmn-CN.img"
  11037. size="5183988"
  11038. />
  11039. <package
  11040. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ko-KR.img"
  11041. size="5183988"
  11042. />
  11043. <package
  11044. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ja-JP.img"
  11045. size="5183988"
  11046. />
  11047. <package
  11048. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fi-FI.img"
  11049. size="5183988"
  11050. />
  11051. <package
  11052. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-pl-PL.img"
  11053. size="5183988"
  11054. />
  11055. </otaPackages>
  11056. </productMenu>
  11057. <productMenu id="wa"
  11058. type="0" >
  11059. </productMenu>
  11060. <productMenu id="sip"
  11061. type="1" >
  11062. </productMenu>
  11063. <productMenu id="led"
  11064. type="1" >
  11065. </productMenu>
  11066. <productMenu id="illusion"
  11067. type="1" >
  11068. </productMenu>
  11069. <productMenu id="meshIntercom"
  11070. type="30" >
  11071. </productMenu>
  11072. <productMenu id="meshIntercom+"
  11073. type="3"
  11074. url="2" >
  11075. </productMenu>
  11076. <productMenu id="bluetoothIntercom"
  11077. type="1" >
  11078. </productMenu>
  11079. <productMenu id="fmradio"
  11080. type="1"
  11081. url="1" >
  11082. </productMenu>
  11083. <productMenu id="mic"
  11084. type="0" >
  11085. </productMenu>
  11086. <productMenu id="phone"
  11087. type="1" >
  11088. </productMenu>
  11089. <productMenu id="music"
  11090. type="1" >
  11091. </productMenu>
  11092. <productMenu id="musicSharing"
  11093. type="0" >
  11094. </productMenu>
  11095. <productMenu id="deviceSetting"
  11096. type="1"
  11097. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  11098. </productMenu>
  11099. <productMenu id="quickGuide"
  11100. type="0"
  11101. url=""
  11102. size="1.12MB" >
  11103. </productMenu>
  11104. <productMenu id="userGuide"
  11105. type="1"
  11106. url=""
  11107. size="2.0MB" >
  11108. </productMenu>
  11109. <productMenu id="videoGuide"
  11110. type="0"
  11111. url=""
  11112. size="3.41MB" >
  11113. </productMenu>
  11114. <productMenu id="keySettings"
  11115. type="1"
  11116. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  11117. </productMenu>
  11118. <productMenu id="volume"
  11119. type="13" >
  11120. </productMenu>
  11121. <productMenu id="volume+"
  11122. type="2"
  11123. url="0x6004" >
  11124. </productMenu>
  11125. <productMenu id="battery"
  11126. type="1" >
  11127. </productMenu>
  11128. <productID id="6A1C"
  11129. />
  11130. <productGroupable type="0"
  11131. />
  11132. </product>
  11133. <product id="Triumph_50S"
  11134. name="Triumph 50S"
  11135. series="50"
  11136. latestVersion="1.5"
  11137. show = "0" >
  11138. <productMenu id="protocol"
  11139. type="2" >
  11140. </productMenu>
  11141. <productMenu id="alexa"
  11142. type="0" >
  11143. </productMenu>
  11144. <productMenu id="ota"
  11145. type="0"
  11146. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11147. size="1150234" >
  11148. </productMenu>
  11149. <productMenu id="wa"
  11150. type="1" >
  11151. </productMenu>
  11152. <productMenu id="sip"
  11153. type="1" >
  11154. </productMenu>
  11155. <productMenu id="meshIntercom"
  11156. type="20" >
  11157. </productMenu>
  11158. <productMenu id="bluetoothIntercom"
  11159. type="1" >
  11160. </productMenu>
  11161. <productMenu id="meshIntercom+"
  11162. type="3"
  11163. url="2" >
  11164. <productMenuType version="1.2.9"
  11165. type="2"
  11166. />
  11167. <productMenuURL version="1.2.9"
  11168. url="0"
  11169. />
  11170. </productMenu>
  11171. <productMenu id="waveIntercom"
  11172. type="1" >
  11173. <productMenuType version="1.2.9"
  11174. type="0"
  11175. />
  11176. </productMenu>
  11177. <productMenu id="phone"
  11178. type="1" >
  11179. </productMenu>
  11180. <productMenu id="music"
  11181. type="1" >
  11182. </productMenu>
  11183. <productMenu id="fmradio"
  11184. type="1" >
  11185. </productMenu>
  11186. <productMenu id="deviceSetting"
  11187. type="1"
  11188. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11189. <productMenuURL version="1.2.9"
  11190. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  11191. />
  11192. <productMenuURL version="1.0"
  11193. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11194. />
  11195. </productMenu>
  11196. <productMenu id="quickGuide"
  11197. type="1"
  11198. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  11199. size="934KB" >
  11200. </productMenu>
  11201. <productMenu id="userGuide"
  11202. type="1"
  11203. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  11204. size="1.14MB" >
  11205. </productMenu>
  11206. <productMenu id="volume"
  11207. type="11" >
  11208. </productMenu>
  11209. <productMenu id="battery"
  11210. type="1" >
  11211. </productMenu>
  11212. <productID id="3264"
  11213. />
  11214. <productGroupable type="0"
  11215. />
  11216. </product>
  11217. <product id="RE50S"
  11218. name="RE 50S"
  11219. series="50"
  11220. latestVersion="2.7"
  11221. show = "0" >
  11222. <productMenu id="protocol"
  11223. type="2" >
  11224. </productMenu>
  11225. <productMenu id="alexa"
  11226. type="0" >
  11227. </productMenu>
  11228. <productMenu id="ota"
  11229. type="0"
  11230. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11231. size="1150234" >
  11232. </productMenu>
  11233. <productMenu id="wa"
  11234. type="1" >
  11235. </productMenu>
  11236. <productMenu id="sip"
  11237. type="1" >
  11238. </productMenu>
  11239. <productMenu id="meshIntercom"
  11240. type="30" >
  11241. </productMenu>
  11242. <productMenu id="meshIntercom+"
  11243. type="3"
  11244. url="2" >
  11245. <productMenuType version="2.5"
  11246. type="2"
  11247. />
  11248. </productMenu>
  11249. <productMenu id="waveIntercom"
  11250. type="1" >
  11251. <productMenuType version="2.5"
  11252. type="0"
  11253. />
  11254. </productMenu>
  11255. <productMenu id="bluetoothIntercom"
  11256. type="1" >
  11257. </productMenu>
  11258. <productMenu id="phone"
  11259. type="1" >
  11260. </productMenu>
  11261. <productMenu id="music"
  11262. type="1" >
  11263. </productMenu>
  11264. <productMenu id="fmradio"
  11265. type="1" >
  11266. </productMenu>
  11267. <productMenu id="deviceSetting"
  11268. type="1"
  11269. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11270. <productMenuURL version="2.5.9"
  11271. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11272. />
  11273. </productMenu>
  11274. <productMenu id="quickGuide"
  11275. type="1"
  11276. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11277. size="934KB" >
  11278. </productMenu>
  11279. <productMenu id="userGuide"
  11280. type="1"
  11281. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11282. size="1.14MB" >
  11283. </productMenu>
  11284. <productMenu id="videoGuide"
  11285. type="0"
  11286. url=""
  11287. size="3.41MB" >
  11288. </productMenu>
  11289. <productMenu id="volume"
  11290. type="11" >
  11291. </productMenu>
  11292. <productMenu id="battery"
  11293. type="1" >
  11294. </productMenu>
  11295. <productID id="321C"
  11296. />
  11297. <productGroupable type="0"
  11298. />
  11299. </product>
  11300. <product id="BMW_HELMET_II_U1"
  11301. name="BMW HELMET II U1"
  11302. series="50"
  11303. latestVersion="1.0"
  11304. show = "0" >
  11305. <productMenu id="protocol"
  11306. type="2" >
  11307. </productMenu>
  11308. <productMenu id="alexa"
  11309. type="0" >
  11310. </productMenu>
  11311. <productMenu id="sip"
  11312. type="1" >
  11313. </productMenu>
  11314. <productMenu id="meshIntercom"
  11315. type="20" >
  11316. </productMenu>
  11317. <productMenu id="bluetoothIntercom"
  11318. type="1" >
  11319. </productMenu>
  11320. <productMenu id="bluetoothIntercom2"
  11321. type="1" >
  11322. </productMenu>
  11323. <productMenu id="phone"
  11324. type="1" >
  11325. </productMenu>
  11326. <productMenu id="music"
  11327. type="1" >
  11328. </productMenu>
  11329. <productMenu id="fmradio"
  11330. type="1" >
  11331. </productMenu>
  11332. <productMenu id="deviceSetting"
  11333. type="1"
  11334. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11335. </productMenu>
  11336. <productMenu id="quickGuide"
  11337. type="1"
  11338. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11339. size="934KB" >
  11340. </productMenu>
  11341. <productMenu id="userGuide"
  11342. type="1"
  11343. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11344. size="1.14MB" >
  11345. </productMenu>
  11346. <productMenu id="volume"
  11347. type="11" >
  11348. </productMenu>
  11349. <productMenu id="battery"
  11350. type="1" >
  11351. </productMenu>
  11352. <productID id="3260"
  11353. />
  11354. <productGroupable type="0"
  11355. />
  11356. </product>
  11357. <product id="OUTRUSHR"
  11358. name="CX935"
  11359. series="Helmet"
  11360. latestVersion="2.1"
  11361. show = "-1" >
  11362. <productMenu id="protocol"
  11363. type="3">
  11364. </productMenu>
  11365. <productMenu id="sip"
  11366. type="1" >
  11367. </productMenu>
  11368. <productMenu id="bluetoothIntercom"
  11369. type="1" >
  11370. </productMenu>
  11371. <productMenu id="phone"
  11372. type="1" >
  11373. </productMenu>
  11374. <productMenu id="fmradio"
  11375. type="0" >
  11376. </productMenu>
  11377. <productMenu id="deviceSetting"
  11378. type="1"
  11379. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11380. </productMenu>
  11381. <productMenu id="userGuide"
  11382. type="1"
  11383. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11384. size="660KB" >
  11385. </productMenu>
  11386. <productID id="5446"
  11387. />
  11388. <productGroupable type="0"
  11389. />
  11390. </product>
  11391. <product id="LSE_01"
  11392. name="LSE-01"
  11393. series="SF"
  11394. latestVersion="1.2.3"
  11395. show = "0" >
  11396. <productMenu id="protocol"
  11397. type="1"
  11398. url="3">
  11399. </productMenu>
  11400. <productMenu id="sip"
  11401. type="1" >
  11402. </productMenu>
  11403. <productMenu id="bluetoothIntercom"
  11404. type="1" >
  11405. </productMenu>
  11406. <productMenu id="phone"
  11407. type="1" >
  11408. </productMenu>
  11409. <productMenu id="music"
  11410. type="1" >
  11411. </productMenu>
  11412. <productMenu id="fmradio"
  11413. type="1" >
  11414. </productMenu>
  11415. <productMenu id="deviceSetting"
  11416. type="1"
  11417. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11418. <productMenuURL version="1.1"
  11419. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11420. />
  11421. <productMenuURL version="1.0"
  11422. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11423. />
  11424. </productMenu>
  11425. <productMenu id="quickGuide"
  11426. type="1"
  11427. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11428. size="607KB" >
  11429. </productMenu>
  11430. <productMenu id="userGuide"
  11431. type="1"
  11432. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11433. size="1.91MB" >
  11434. </productMenu>
  11435. <productMenu id="volume"
  11436. type="4" >
  11437. </productMenu>
  11438. <productID id="5416"
  11439. />
  11440. <productGroupable type="0"
  11441. />
  11442. </product>
  11443. <product id="AGV_ARK"
  11444. name="AGV ARK"
  11445. series="SF"
  11446. latestVersion="1.0.3"
  11447. show = "0" >
  11448. <productMenu id="protocol"
  11449. type="1"
  11450. url="3">
  11451. </productMenu>
  11452. <productMenu id="sip"
  11453. type="1" >
  11454. </productMenu>
  11455. <productMenu id="bluetoothIntercom"
  11456. type="1" >
  11457. </productMenu>
  11458. <productMenu id="phone"
  11459. type="1" >
  11460. </productMenu>
  11461. <productMenu id="music"
  11462. type="1" >
  11463. </productMenu>
  11464. <productMenu id="fmradio"
  11465. type="1" >
  11466. </productMenu>
  11467. <productMenu id="deviceSetting"
  11468. type="1"
  11469. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11470. </productMenu>
  11471. <productMenu id="quickGuide"
  11472. type="1"
  11473. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11474. size="607KB" >
  11475. </productMenu>
  11476. <productMenu id="userGuide"
  11477. type="1"
  11478. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11479. size="1.91MB" >
  11480. </productMenu>
  11481. <productMenu id="volume"
  11482. type="4" >
  11483. </productMenu>
  11484. <productID id="5420"
  11485. />
  11486. <productGroupable type="0"
  11487. />
  11488. </product>
  11489. <product id="KLIM_KRIOS"
  11490. name="KLIM Krios"
  11491. series="10"
  11492. latestVersion="1.1.2"
  11493. show = "0" >
  11494. <productMenu id="protocol"
  11495. type="0">
  11496. </productMenu>
  11497. <productMenu id="sip"
  11498. type="1" >
  11499. </productMenu>
  11500. <productMenu id="bluetoothIntercom"
  11501. type="1" >
  11502. </productMenu>
  11503. <productMenu id="phone"
  11504. type="2" >
  11505. </productMenu>
  11506. <productMenu id="fmradio"
  11507. type="3" >
  11508. </productMenu>
  11509. <productMenu id="deviceSetting"
  11510. type="1"
  11511. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11512. <productMenuURL version="1.0"
  11513. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11514. />
  11515. </productMenu>
  11516. <productMenu id="quickGuide"
  11517. type="1"
  11518. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11519. size="649KB" >
  11520. </productMenu>
  11521. <productMenu id="userGuide"
  11522. type="1"
  11523. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11524. size="1.43MB" >
  11525. </productMenu>
  11526. <productID id="5910"
  11527. />
  11528. <productGroupable type="0"
  11529. />
  11530. </product>
  11531. <product id="POLARIS_SLINGSHOT"
  11532. name="Polaris Slingshot"
  11533. series="10"
  11534. latestVersion="1.1.2"
  11535. show = "0" >
  11536. <productMenu id="protocol"
  11537. type="0">
  11538. </productMenu>
  11539. <productMenu id="sip"
  11540. type="1" >
  11541. </productMenu>
  11542. <productMenu id="bluetoothIntercom"
  11543. type="1" >
  11544. </productMenu>
  11545. <productMenu id="phone"
  11546. type="2" >
  11547. </productMenu>
  11548. <productMenu id="fmradio"
  11549. type="3" >
  11550. </productMenu>
  11551. <productMenu id="deviceSetting"
  11552. type="1"
  11553. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11554. <productMenuURL version="1.0"
  11555. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11556. />
  11557. </productMenu>
  11558. <productMenu id="quickGuide"
  11559. type="1"
  11560. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11561. size="689KB" >
  11562. </productMenu>
  11563. <productMenu id="userGuide"
  11564. type="1"
  11565. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11566. size="1.43MB" >
  11567. </productMenu>
  11568. <productID id="5920"
  11569. />
  11570. <productGroupable type="0"
  11571. />
  11572. </product>
  11573. <product id="DWO6"
  11574. name="SEDICI DWO6-PRO"
  11575. series="10"
  11576. latestVersion="1.0.2"
  11577. show = "0" >
  11578. <productMenu id="protocol"
  11579. type="0">
  11580. </productMenu>
  11581. <productMenu id="sip"
  11582. type="1" >
  11583. </productMenu>
  11584. <productMenu id="bluetoothIntercom"
  11585. type="1" >
  11586. </productMenu>
  11587. <productMenu id="phone"
  11588. type="2" >
  11589. </productMenu>
  11590. <productMenu id="fmradio"
  11591. type="3" >
  11592. </productMenu>
  11593. <productMenu id="deviceSetting"
  11594. type="1"
  11595. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  11596. </productMenu>
  11597. <productMenu id="quickGuide"
  11598. type="1"
  11599. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11600. size="529KB" >
  11601. </productMenu>
  11602. <productMenu id="userGuide"
  11603. type="1"
  11604. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11605. size="4.09MB" >
  11606. </productMenu>
  11607. <productID id="6112"
  11608. />
  11609. <productGroupable type="0"
  11610. />
  11611. </product>
  11612. <product id="DWO6A"
  11613. name="SEDICI DWO-6"
  11614. series="10"
  11615. latestVersion="1.0.2"
  11616. show = "0" >
  11617. <productMenu id="protocol"
  11618. type="0">
  11619. </productMenu>
  11620. <productMenu id="sip"
  11621. type="1" >
  11622. </productMenu>
  11623. <productMenu id="bluetoothIntercom"
  11624. type="1" >
  11625. </productMenu>
  11626. <productMenu id="phone"
  11627. type="2" >
  11628. </productMenu>
  11629. <productMenu id="fmradio"
  11630. type="3" >
  11631. </productMenu>
  11632. <productMenu id="deviceSetting"
  11633. type="1"
  11634. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  11635. </productMenu>
  11636. <productMenu id="quickGuide"
  11637. type="1"
  11638. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  11639. size="522KB" >
  11640. </productMenu>
  11641. <productMenu id="userGuide"
  11642. type="1"
  11643. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  11644. size="2.71MB" >
  11645. </productMenu>
  11646. <productID id="6114"
  11647. />
  11648. <productGroupable type="0"
  11649. />
  11650. </product>
  11651. <product id="3SPLUS"
  11652. name="ZILL"
  11653. series="3"
  11654. latestVersion="1.0.4"
  11655. show = "0" >
  11656. <productMenu id="protocol"
  11657. type="0">
  11658. </productMenu>
  11659. <productMenu id="sip"
  11660. type="1" >
  11661. </productMenu>
  11662. <productMenu id="bluetoothIntercom"
  11663. type="1" >
  11664. </productMenu>
  11665. <productMenu id="deviceSetting"
  11666. type="1"
  11667. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  11668. </productMenu>
  11669. <productMenu id="quickGuide"
  11670. type="1"
  11671. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11672. size="842KB" >
  11673. </productMenu>
  11674. <productMenu id="userGuide"
  11675. type="1"
  11676. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  11677. size="1.02MB" >
  11678. </productMenu>
  11679. <productID id="6335"
  11680. />
  11681. <productGroupable type="0"
  11682. />
  11683. </product>
  11684. <product id="HD50S"
  11685. name="Boom! Audio 30K"
  11686. series="30"
  11687. latestVersion="3.4"
  11688. show = "0" >
  11689. <productMenu id="protocol"
  11690. type="1"
  11691. url="0">
  11692. </productMenu>
  11693. <productMenu id="wa"
  11694. type="0" >
  11695. </productMenu>
  11696. <productMenu id="sip"
  11697. type="1" >
  11698. </productMenu>
  11699. <productMenu id="meshIntercom"
  11700. type="20" >
  11701. <productMenuType version="2.9.9"
  11702. type="10"
  11703. />
  11704. </productMenu>
  11705. <productMenu id="bluetoothIntercom"
  11706. type="1" >
  11707. </productMenu>
  11708. <productMenu id="phone"
  11709. type="1" >
  11710. </productMenu>
  11711. <productMenu id="music"
  11712. type="1" >
  11713. </productMenu>
  11714. <productMenu id="fmradio"
  11715. type="1" >
  11716. </productMenu>
  11717. <productMenu id="deviceSetting"
  11718. type="1"
  11719. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  11720. <productMenuURL version="3.2"
  11721. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  11722. />
  11723. <productMenuURL version="3.0"
  11724. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  11725. />
  11726. <productMenuURL version="2.2"
  11727. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11728. />
  11729. </productMenu>
  11730. <productMenu id="quickGuide"
  11731. type="1"
  11732. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11733. size="1.06MB" >
  11734. </productMenu>
  11735. <productMenu id="userGuide"
  11736. type="1"
  11737. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11738. size="3.15MB" >
  11739. </productMenu>
  11740. <productMenu id="volume"
  11741. type="1" >
  11742. </productMenu>
  11743. <productID id="3112"
  11744. />
  11745. <productGroupable type="0"
  11746. />
  11747. </product>
  11748. <product id="HD50S"
  11749. name="Boom! Audio N02"
  11750. series="30"
  11751. latestVersion="3.1"
  11752. show = "0" >
  11753. <productMenu id="protocol"
  11754. type="1"
  11755. url="0">
  11756. </productMenu>
  11757. <productMenu id="wa"
  11758. type="2" >
  11759. </productMenu>
  11760. <productMenu id="sip"
  11761. type="1" >
  11762. </productMenu>
  11763. <productMenu id="meshIntercom"
  11764. type="20" >
  11765. <productMenuType version="2.9.9"
  11766. type="10"
  11767. />
  11768. </productMenu>
  11769. <productMenu id="bluetoothIntercom"
  11770. type="1" >
  11771. </productMenu>
  11772. <productMenu id="phone"
  11773. type="1" >
  11774. </productMenu>
  11775. <productMenu id="music"
  11776. type="1" >
  11777. </productMenu>
  11778. <productMenu id="fmradio"
  11779. type="1" >
  11780. </productMenu>
  11781. <productMenu id="deviceSetting"
  11782. type="1"
  11783. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  11784. <productMenuURL version="2.2"
  11785. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11786. />
  11787. </productMenu>
  11788. <productMenu id="quickGuide"
  11789. type="1"
  11790. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  11791. size="1.06MB" >
  11792. </productMenu>
  11793. <productMenu id="userGuide"
  11794. type="1"
  11795. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  11796. size="3.15MB" >
  11797. </productMenu>
  11798. <productMenu id="volume"
  11799. type="2" >
  11800. </productMenu>
  11801. <productID id="3114"
  11802. />
  11803. <productGroupable type="0"
  11804. />
  11805. </product>
  11806. <product id="HD50S"
  11807. name="Boom Audio 20S"
  11808. series="50"
  11809. latestVersion="2.5.2"
  11810. show = "0" >
  11811. <productMenu id="protocol"
  11812. type="0">
  11813. </productMenu>
  11814. <productMenu id="sip"
  11815. type="1" >
  11816. <productMenuType version="1.0"
  11817. type="0"
  11818. />
  11819. </productMenu>
  11820. <productMenu id="bluetoothIntercom"
  11821. type="1" >
  11822. <productMenuType version="1.0"
  11823. type="0"
  11824. />
  11825. </productMenu>
  11826. <productMenu id="intercomSetting"
  11827. type="1" >
  11828. </productMenu>
  11829. <productMenu id="phone"
  11830. type="2" >
  11831. </productMenu>
  11832. <productMenu id="fmradio"
  11833. type="3" >
  11834. </productMenu>
  11835. <productMenu id="deviceSetting"
  11836. type="1"
  11837. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11838. <productMenuURL version="2.4"
  11839. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11840. />
  11841. <productMenuURL version="1.5"
  11842. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11843. />
  11844. <productMenuURL version="1.4.1"
  11845. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11846. />
  11847. <productMenuURL version="1.1"
  11848. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11849. />
  11850. <productMenuURL version="1.0"
  11851. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11852. />
  11853. </productMenu>
  11854. <productMenu id="quickGuide"
  11855. type="1"
  11856. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11857. size="264KB" >
  11858. </productMenu>
  11859. <productMenu id="userGuide"
  11860. type="1"
  11861. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11862. size="3.09MB" >
  11863. </productMenu>
  11864. <productMenu id="connectGuide"
  11865. type="1"
  11866. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  11867. size="1.12MB" >
  11868. </productMenu>
  11869. <productID id="4210"
  11870. />
  11871. <productProductKey key="11"
  11872. />
  11873. <productID id="4230"
  11874. />
  11875. <productProductKey key="11"
  11876. />
  11877. <productGroupable type="1"
  11878. />
  11879. </product>
  11880. <product id="HD50S"
  11881. name="Boom Audio 20S EVO"
  11882. series="50"
  11883. latestVersion="2.5.2"
  11884. show = "0" >
  11885. <productMenu id="protocol"
  11886. type="0">
  11887. </productMenu>
  11888. <productMenu id="sip"
  11889. type="1" >
  11890. <productMenuType version="1.0"
  11891. type="0"
  11892. />
  11893. </productMenu>
  11894. <productMenu id="bluetoothIntercom"
  11895. type="1" >
  11896. <productMenuType version="1.0"
  11897. type="0"
  11898. />
  11899. </productMenu>
  11900. <productMenu id="intercomSetting"
  11901. type="1" >
  11902. </productMenu>
  11903. <productMenu id="phone"
  11904. type="2" >
  11905. </productMenu>
  11906. <productMenu id="fmradio"
  11907. type="3" >
  11908. </productMenu>
  11909. <productMenu id="deviceSetting"
  11910. type="1"
  11911. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11912. <productMenuURL version="2.4"
  11913. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11914. />
  11915. <productMenuURL version="1.5"
  11916. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11917. />
  11918. <productMenuURL version="1.4.1"
  11919. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11920. />
  11921. <productMenuURL version="1.1"
  11922. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11923. />
  11924. <productMenuURL version="1.0"
  11925. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11926. />
  11927. </productMenu>
  11928. <productMenu id="quickGuide"
  11929. type="1"
  11930. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11931. size="321KB" >
  11932. </productMenu>
  11933. <productMenu id="userGuide"
  11934. type="1"
  11935. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11936. size="2.46MB" >
  11937. </productMenu>
  11938. <productID id="4230"
  11939. />
  11940. <productProductKey key="27"
  11941. />
  11942. <productGroupable type="1"
  11943. />
  11944. </product>
  11945. <product id="HD50S"
  11946. name="Boom! Audio 10S"
  11947. series="50"
  11948. latestVersion="1.1.3"
  11949. show = "0" >
  11950. <productMenu id="protocol"
  11951. type="0">
  11952. </productMenu>
  11953. <productMenu id="sip"
  11954. type="1" >
  11955. </productMenu>
  11956. <productMenu id="bluetoothIntercom"
  11957. type="1" >
  11958. </productMenu>
  11959. <productMenu id="phone"
  11960. type="2" >
  11961. </productMenu>
  11962. <productMenu id="fmradio"
  11963. type="3" >
  11964. </productMenu>
  11965. <productMenu id="deviceSetting"
  11966. type="1"
  11967. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  11968. </productMenu>
  11969. <productMenu id="quickGuide"
  11970. type="1"
  11971. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11972. size="538KB" >
  11973. </productMenu>
  11974. <productMenu id="userGuide"
  11975. type="1"
  11976. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11977. size="1.55MB" >
  11978. </productMenu>
  11979. <productID id="5532"
  11980. />
  11981. <productGroupable type="0"
  11982. />
  11983. </product>
  11984. <product id="HD50S"
  11985. name="Boom! Audio N01 10R"
  11986. series="50"
  11987. latestVersion="1.1.3"
  11988. show = "0" >
  11989. <productMenu id="protocol"
  11990. type="0">
  11991. </productMenu>
  11992. <productMenu id="sip"
  11993. type="1" >
  11994. </productMenu>
  11995. <productMenu id="bluetoothIntercom"
  11996. type="1" >
  11997. </productMenu>
  11998. <productMenu id="phone"
  11999. type="2" >
  12000. </productMenu>
  12001. <productMenu id="fmradio"
  12002. type="3" >
  12003. </productMenu>
  12004. <productMenu id="deviceSetting"
  12005. type="1"
  12006. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  12007. </productMenu>
  12008. <productMenu id="quickGuide"
  12009. type="1"
  12010. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12011. size="766KB" >
  12012. </productMenu>
  12013. <productMenu id="userGuide"
  12014. type="1"
  12015. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12016. size="1.45MB" >
  12017. </productMenu>
  12018. <productID id="5522"
  12019. />
  12020. <productGroupable type="0"
  12021. />
  12022. </product>
  12023. <product id="HD50S"
  12024. name="OUTRUSH-R N03"
  12025. series="50"
  12026. latestVersion="1.2.1"
  12027. show = "-1" >
  12028. <productMenu id="protocol"
  12029. type="0">
  12030. </productMenu>
  12031. <productMenu id="sip"
  12032. type="1" >
  12033. </productMenu>
  12034. <productMenu id="bluetoothIntercom"
  12035. type="1" >
  12036. </productMenu>
  12037. <productMenu id="phone"
  12038. type="2" >
  12039. </productMenu>
  12040. <productMenu id="fmradio"
  12041. type="3" >
  12042. </productMenu>
  12043. <productMenu id="deviceSetting"
  12044. type="1"
  12045. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  12046. </productMenu>
  12047. <productMenu id="userGuide"
  12048. type="1"
  12049. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  12050. size="660KB" >
  12051. </productMenu>
  12052. <productID id="5434"
  12053. />
  12054. <productGroupable type="0"
  12055. />
  12056. </product>
  12057. <product id="HD50S"
  12058. name="OUTRUSH-R N03"
  12059. series="50"
  12060. latestVersion="2.0"
  12061. show = "0" >
  12062. <productMenu id="protocol"
  12063. type="3" >
  12064. </productMenu>
  12065. <productMenu id="sip"
  12066. type="1" >
  12067. </productMenu>
  12068. <productMenu id="bluetoothIntercom"
  12069. type="1" >
  12070. </productMenu>
  12071. <productMenu id="phone"
  12072. type="1" >
  12073. </productMenu>
  12074. <productMenu id="fmradio"
  12075. type="1" >
  12076. </productMenu>
  12077. <productMenu id="deviceSetting"
  12078. type="1"
  12079. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  12080. </productMenu>
  12081. <productMenu id="userGuide"
  12082. type="1"
  12083. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  12084. size="1.14MB" >
  12085. </productMenu>
  12086. <productID id="5441"
  12087. />
  12088. <productGroupable type="0"
  12089. />
  12090. </product>
  12091. <product id="5R"
  12092. name="5R"
  12093. series="5"
  12094. latestVersion="1.0.1"
  12095. show = "1" >
  12096. <productMenu id="protocol"
  12097. type="3" >
  12098. </productMenu>
  12099. <productMenu id="sip"
  12100. type="1" >
  12101. </productMenu>
  12102. <productMenu id="bluetoothIntercom"
  12103. type="1" >
  12104. </productMenu>
  12105. <productMenu id="phone"
  12106. type="1" >
  12107. </productMenu>
  12108. <productMenu id="fmradio"
  12109. type="1" >
  12110. </productMenu>
  12111. <productMenu id="deviceSetting"
  12112. type="1"
  12113. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12114. </productMenu>
  12115. <productMenu id="quickGuide"
  12116. type="0"
  12117. url=""
  12118. size="934KB" >
  12119. </productMenu>
  12120. <productMenu id="userGuide"
  12121. type="1"
  12122. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  12123. size="1.14MB" >
  12124. </productMenu>
  12125. <productMenu id="connectGuide"
  12126. type="1"
  12127. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12128. size="1.12MB" >
  12129. </productMenu>
  12130. <productID id="5591"
  12131. />
  12132. <productGroupable type="0"
  12133. />
  12134. </product>
  12135. <product id="5R"
  12136. name="5R LITE"
  12137. series="5"
  12138. latestVersion="1.0.1"
  12139. show = "1" >
  12140. <productMenu id="protocol"
  12141. type="3" >
  12142. </productMenu>
  12143. <productMenu id="sip"
  12144. type="1" >
  12145. </productMenu>
  12146. <productMenu id="bluetoothIntercom"
  12147. type="1" >
  12148. </productMenu>
  12149. <productMenu id="phone"
  12150. type="1" >
  12151. </productMenu>
  12152. <productMenu id="fmradio"
  12153. type="1" >
  12154. </productMenu>
  12155. <productMenu id="deviceSetting"
  12156. type="1"
  12157. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12158. </productMenu>
  12159. <productMenu id="quickGuide"
  12160. type="0"
  12161. url=""
  12162. size="934KB" >
  12163. </productMenu>
  12164. <productMenu id="userGuide"
  12165. type="1"
  12166. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12167. size="1.14MB" >
  12168. </productMenu>
  12169. <productMenu id="connectGuide"
  12170. type="1"
  12171. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12172. size="1.12MB" >
  12173. </productMenu>
  12174. <productID id="5592"
  12175. />
  12176. <productGroupable type="0"
  12177. />
  12178. </product>
  12179. <product id="50RLE"
  12180. name="50R LE"
  12181. series="50"
  12182. latestVersion="1.1"
  12183. show = "0" >
  12184. <productMenu id="protocol"
  12185. type="2" >
  12186. </productMenu>
  12187. <productMenu id="alexa"
  12188. type="0" >
  12189. </productMenu>
  12190. <productMenu id="sip"
  12191. type="1" >
  12192. </productMenu>
  12193. <productMenu id="meshIntercom"
  12194. type="30" >
  12195. </productMenu>
  12196. <productMenu id="meshIntercom+"
  12197. type="3"
  12198. url="2" >
  12199. <productMenuType version="1.0.9"
  12200. type="2"
  12201. />
  12202. </productMenu>
  12203. <productMenu id="waveIntercom"
  12204. type="1" >
  12205. <productMenuType version="1.0.9"
  12206. type="0"
  12207. />
  12208. </productMenu>
  12209. <productMenu id="bluetoothIntercom"
  12210. type="1" >
  12211. </productMenu>
  12212. <productMenu id="phone"
  12213. type="1" >
  12214. </productMenu>
  12215. <productMenu id="music"
  12216. type="1" >
  12217. </productMenu>
  12218. <productMenu id="fmradio"
  12219. type="0" >
  12220. </productMenu>
  12221. <productMenu id="deviceSetting"
  12222. type="1"
  12223. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  12224. <productMenuURL version="1.0.9"
  12225. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  12226. />
  12227. </productMenu>
  12228. <productMenu id="quickGuide"
  12229. type="0"
  12230. url=""
  12231. size="344KB" >
  12232. </productMenu>
  12233. <productMenu id="userGuide"
  12234. type="0"
  12235. url=""
  12236. size="3.41MB" >
  12237. </productMenu>
  12238. <productMenu id="volume"
  12239. type="11" >
  12240. </productMenu>
  12241. <productMenu id="battery"
  12242. type="1" >
  12243. </productMenu>
  12244. <productID id="3223"
  12245. />
  12246. <productGroupable type="0"
  12247. />
  12248. </product>
  12249. <product id="5RLOUIS"
  12250. name="5R LOUIS EDITION"
  12251. series="5"
  12252. latestVersion="1.0"
  12253. show = "-1" >
  12254. <productMenu id="protocol"
  12255. type="3" >
  12256. </productMenu>
  12257. <productMenu id="sip"
  12258. type="1" >
  12259. </productMenu>
  12260. <productMenu id="bluetoothIntercom"
  12261. type="1" >
  12262. </productMenu>
  12263. <productMenu id="phone"
  12264. type="1" >
  12265. </productMenu>
  12266. <productMenu id="fmradio"
  12267. type="1" >
  12268. </productMenu>
  12269. <productMenu id="deviceSetting"
  12270. type="1"
  12271. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12272. </productMenu>
  12273. <productMenu id="quickGuide"
  12274. type="0"
  12275. url=""
  12276. size="934KB" >
  12277. </productMenu>
  12278. <productMenu id="userGuide"
  12279. type="0"
  12280. url=""
  12281. size="1.14MB" >
  12282. </productMenu>
  12283. <productID id="5597"
  12284. />
  12285. <productGroupable type="0"
  12286. />
  12287. </product>
  12288. <product id="5S"
  12289. name="Ridekont 5S"
  12290. series="5"
  12291. latestVersion="2.3"
  12292. show = "-1" >
  12293. <productMenu id="protocol"
  12294. type="3" >
  12295. </productMenu>
  12296. <productMenu id="sip"
  12297. type="1" >
  12298. </productMenu>
  12299. <productMenu id="bluetoothIntercom"
  12300. type="1" >
  12301. </productMenu>
  12302. <productMenu id="phone"
  12303. type="1" >
  12304. </productMenu>
  12305. <productMenu id="fmradio"
  12306. type="0" >
  12307. </productMenu>
  12308. <productMenu id="deviceSetting"
  12309. type="1"
  12310. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12311. </productMenu>
  12312. <productMenu id="quickGuide"
  12313. type="0"
  12314. url=""
  12315. size="934KB" >
  12316. </productMenu>
  12317. <productMenu id="userGuide"
  12318. type="1"
  12319. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12320. size="1.14MB" >
  12321. </productMenu>
  12322. <productID id="5589"
  12323. />
  12324. <productGroupable type="0"
  12325. />
  12326. </product>
  12327. <product id="5R"
  12328. name="Ridekont 5R"
  12329. series="5"
  12330. latestVersion="1.0"
  12331. show = "0" >
  12332. <productMenu id="protocol"
  12333. type="3" >
  12334. </productMenu>
  12335. <productMenu id="sip"
  12336. type="1" >
  12337. </productMenu>
  12338. <productMenu id="bluetoothIntercom"
  12339. type="1" >
  12340. </productMenu>
  12341. <productMenu id="phone"
  12342. type="1" >
  12343. </productMenu>
  12344. <productMenu id="fmradio"
  12345. type="1" >
  12346. </productMenu>
  12347. <productMenu id="deviceSetting"
  12348. type="1"
  12349. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12350. </productMenu>
  12351. <productMenu id="quickGuide"
  12352. type="1"
  12353. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12354. size="934KB" >
  12355. </productMenu>
  12356. <productMenu id="userGuide"
  12357. type="1"
  12358. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12359. size="1.14MB" >
  12360. </productMenu>
  12361. <productID id="5593"
  12362. />
  12363. <productGroupable type="0"
  12364. />
  12365. </product>
  12366. <product id="5R"
  12367. name="Ridekont 5R LITE"
  12368. series="5"
  12369. latestVersion="1.0"
  12370. show = "0" >
  12371. <productMenu id="protocol"
  12372. type="3" >
  12373. </productMenu>
  12374. <productMenu id="sip"
  12375. type="1" >
  12376. </productMenu>
  12377. <productMenu id="bluetoothIntercom"
  12378. type="1" >
  12379. </productMenu>
  12380. <productMenu id="phone"
  12381. type="1" >
  12382. </productMenu>
  12383. <productMenu id="fmradio"
  12384. type="1" >
  12385. </productMenu>
  12386. <productMenu id="deviceSetting"
  12387. type="1"
  12388. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12389. </productMenu>
  12390. <productMenu id="quickGuide"
  12391. type="0"
  12392. url=""
  12393. size="934KB" >
  12394. </productMenu>
  12395. <productMenu id="userGuide"
  12396. type="1"
  12397. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12398. size="1.14MB" >
  12399. </productMenu>
  12400. <productID id="5594"
  12401. />
  12402. <productGroupable type="0"
  12403. />
  12404. </product>
  12405. <product id="SA30"
  12406. name="SA30"
  12407. series="SA"
  12408. latestVersion="1.0.1"
  12409. latestVersionVoicePrompt="0.15"
  12410. show = "-1" >
  12411. <productMenu id="protocol"
  12412. type="2" >
  12413. </productMenu>
  12414. <productMenu id="ota"
  12415. type="2" >
  12416. <otaPackages>
  12417. <package
  12418. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.1-build0.img"
  12419. size="3144148"
  12420. />
  12421. </otaPackages>
  12422. </productMenu>
  12423. <productMenu id="meshIntercom"
  12424. type="30" >
  12425. </productMenu>
  12426. <productMenu id="meshIntercom+"
  12427. type="3"
  12428. url="2" >
  12429. </productMenu>
  12430. <productMenu id="phone"
  12431. type="1" >
  12432. </productMenu>
  12433. <productMenu id="music"
  12434. type="1" >
  12435. </productMenu>
  12436. <productMenu id="musicSharing"
  12437. type="0" >
  12438. </productMenu>
  12439. <productMenu id="deviceSetting"
  12440. type="1"
  12441. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12442. </productMenu>
  12443. <productMenu id="quickGuide"
  12444. type="0"
  12445. url=""
  12446. size="1.12MB" >
  12447. </productMenu>
  12448. <productMenu id="userGuide"
  12449. type="1"
  12450. url=""
  12451. size="2.0MB" >
  12452. </productMenu>
  12453. <productMenu id="videoGuide"
  12454. type="0"
  12455. url=""
  12456. size="3.41MB" >
  12457. </productMenu>
  12458. <productMenu id="volume"
  12459. type="12" >
  12460. </productMenu>
  12461. <productMenu id="battery"
  12462. type="1" >
  12463. </productMenu>
  12464. <productID id="6852"
  12465. />
  12466. <productGroupable type="0"
  12467. />
  12468. </product>
  12469. <product id="I30"
  12470. name="I30"
  12471. series="I"
  12472. latestVersion="1.0.1"
  12473. latestVersionVoicePrompt="0.2"
  12474. show = "-1" >
  12475. <productMenu id="protocol"
  12476. type="2" >
  12477. </productMenu>
  12478. <productMenu id="ota"
  12479. type="2" >
  12480. <otaPackages>
  12481. <package
  12482. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.1-build0.img"
  12483. size="3144148"
  12484. />
  12485. </otaPackages>
  12486. </productMenu>
  12487. <productMenu id="meshIntercom"
  12488. type="30" >
  12489. </productMenu>
  12490. <productMenu id="meshIntercom+"
  12491. type="3"
  12492. url="2" >
  12493. </productMenu>
  12494. <productMenu id="phone"
  12495. type="1" >
  12496. </productMenu>
  12497. <productMenu id="music"
  12498. type="1" >
  12499. </productMenu>
  12500. <productMenu id="musicSharing"
  12501. type="0" >
  12502. </productMenu>
  12503. <productMenu id="deviceSetting"
  12504. type="1"
  12505. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12506. </productMenu>
  12507. <productMenu id="quickGuide"
  12508. type="0"
  12509. url=""
  12510. size="1.12MB" >
  12511. </productMenu>
  12512. <productMenu id="userGuide"
  12513. type="1"
  12514. url=""
  12515. size="2.10MB" >
  12516. </productMenu>
  12517. <productMenu id="videoGuide"
  12518. type="0"
  12519. url=""
  12520. size="3.11MB" >
  12521. </productMenu>
  12522. <productMenu id="volume"
  12523. type="12" >
  12524. </productMenu>
  12525. <productMenu id="battery"
  12526. type="1" >
  12527. </productMenu>
  12528. <productID id="6853"
  12529. />
  12530. <productGroupable type="0"
  12531. />
  12532. </product>
  12533. <product id="C30EVO"
  12534. name="C30 EVO"
  12535. series="C"
  12536. latestVersion="1.0"
  12537. latestVersionVoicePrompt="0.13"
  12538. show = "-1" >
  12539. <productMenu id="protocol"
  12540. type="2" >
  12541. </productMenu>
  12542. <productMenu id="ota"
  12543. type="0" >
  12544. <otaPackages>
  12545. <package
  12546. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  12547. size="3144148"
  12548. />
  12549. </otaPackages>
  12550. </productMenu>
  12551. <productMenu id="meshIntercom+"
  12552. type="3"
  12553. url="2" >
  12554. </productMenu>
  12555. <productMenu id="waveIntercom"
  12556. type="1" >
  12557. </productMenu>
  12558. <productMenu id="phone"
  12559. type="1" >
  12560. </productMenu>
  12561. <productMenu id="music"
  12562. type="1" >
  12563. </productMenu>
  12564. <productMenu id="musicSharing"
  12565. type="0" >
  12566. </productMenu>
  12567. <productMenu id="deviceSetting"
  12568. type="1"
  12569. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  12570. </productMenu>
  12571. <productMenu id="quickGuide"
  12572. type="1"
  12573. url=""
  12574. size="1.17MB" >
  12575. </productMenu>
  12576. <productMenu id="userGuide"
  12577. type="0"
  12578. url=""
  12579. size="2.0MB" >
  12580. </productMenu>
  12581. <productMenu id="videoGuide"
  12582. type="0"
  12583. url=""
  12584. size="3.41MB" >
  12585. </productMenu>
  12586. <productMenu id="volume"
  12587. type="12" >
  12588. </productMenu>
  12589. <productMenu id="battery"
  12590. type="1" >
  12591. </productMenu>
  12592. <productID id="685B"
  12593. />
  12594. <productGroupable type="0"
  12595. />
  12596. </product>
  12597. <product id="C30"
  12598. name="SENA C30"
  12599. series="C"
  12600. latestVersion="1.2.2"
  12601. latestVersionVoicePrompt="0.13"
  12602. show = "1" >
  12603. <productMenu id="protocol"
  12604. type="2" >
  12605. </productMenu>
  12606. <productMenu id="alexa"
  12607. type="0" >
  12608. </productMenu>
  12609. <productMenu id="ota"
  12610. type="2" >
  12611. <otaPackages>
  12612. <package
  12613. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.2-build0.img"
  12614. size="3144148"
  12615. />
  12616. </otaPackages>
  12617. </productMenu>
  12618. <productMenu id="wa"
  12619. type="0" >
  12620. </productMenu>
  12621. <productMenu id="meshIntercom"
  12622. type="30" >
  12623. </productMenu>
  12624. <productMenu id="meshIntercom+"
  12625. type="3"
  12626. url="2" >
  12627. <productMenuType version="1.0.9"
  12628. type="2"
  12629. />
  12630. </productMenu>
  12631. <productMenu id="waveIntercom"
  12632. type="1" >
  12633. <productMenuType version="1.1.9"
  12634. type="0"
  12635. />
  12636. </productMenu>
  12637. <productMenu id="phone"
  12638. type="1" >
  12639. </productMenu>
  12640. <productMenu id="music"
  12641. type="1" >
  12642. </productMenu>
  12643. <productMenu id="musicSharing"
  12644. type="0" >
  12645. </productMenu>
  12646. <productMenu id="deviceSetting"
  12647. type="1"
  12648. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  12649. <productMenuURL version="1.1.3"
  12650. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  12651. />
  12652. <productMenuURL version="1.0.9"
  12653. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  12654. />
  12655. </productMenu>
  12656. <productMenu id="quickGuide"
  12657. type="1"
  12658. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  12659. size="1.12MB" >
  12660. </productMenu>
  12661. <productMenu id="userGuide"
  12662. type="0"
  12663. url=""
  12664. size="2.0MB" >
  12665. </productMenu>
  12666. <productMenu id="videoGuide"
  12667. type="0"
  12668. url=""
  12669. size="3.41MB" >
  12670. </productMenu>
  12671. <productMenu id="volume"
  12672. type="12" >
  12673. </productMenu>
  12674. <productMenu id="battery"
  12675. type="1" >
  12676. </productMenu>
  12677. <productID id="683A"
  12678. />
  12679. <productGroupable type="0"
  12680. />
  12681. </product>
  12682. <product id="C20"
  12683. name="C20"
  12684. series="C"
  12685. latestVersion="1.0"
  12686. show = "1" >
  12687. <productMenu id="protocol"
  12688. type="3" >
  12689. </productMenu>
  12690. <productMenu id="sip"
  12691. type="1" >
  12692. </productMenu>
  12693. <productMenu id="bluetoothIntercom"
  12694. type="1" >
  12695. </productMenu>
  12696. <productMenu id="phone"
  12697. type="1" >
  12698. </productMenu>
  12699. <productMenu id="deviceSetting"
  12700. type="1"
  12701. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  12702. </productMenu>
  12703. <productMenu id="quickGuide"
  12704. type="1"
  12705. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  12706. size="934KB" >
  12707. </productMenu>
  12708. <productMenu id="userGuide"
  12709. type="1"
  12710. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  12711. size="1.14MB" >
  12712. </productMenu>
  12713. <productID id="3701"
  12714. />
  12715. <productGroupable type="0"
  12716. />
  12717. </product>
  12718. <product id="C10"
  12719. name="C10"
  12720. series="C"
  12721. latestVersion="1.4.4"
  12722. show = "1" >
  12723. <productMenu id="protocol"
  12724. type="3" >
  12725. </productMenu>
  12726. <productMenu id="sip"
  12727. type="1" >
  12728. </productMenu>
  12729. <productMenu id="bluetoothIntercom"
  12730. type="1" >
  12731. </productMenu>
  12732. <productMenu id="phone"
  12733. type="1" >
  12734. </productMenu>
  12735. <productMenu id="fmradio"
  12736. type="0" >
  12737. </productMenu>
  12738. <productMenu id="deviceSetting"
  12739. type="1"
  12740. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12741. </productMenu>
  12742. <productMenu id="userGuide"
  12743. type="1"
  12744. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  12745. size="1.14MB" >
  12746. </productMenu>
  12747. <productID id="5595"
  12748. />
  12749. <productGroupable type="0"
  12750. />
  12751. </product>
  12752. <product id="J30"
  12753. name="J30"
  12754. series="J"
  12755. latestVersion="1.2.2"
  12756. latestVersionVoicePrompt="0.14"
  12757. show = "0" >
  12758. <productMenu id="protocol"
  12759. type="2" >
  12760. </productMenu>
  12761. <productMenu id="alexa"
  12762. type="0" >
  12763. </productMenu>
  12764. <productMenu id="ota"
  12765. type="2" >
  12766. <otaPackages>
  12767. <package
  12768. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.2-build1.img"
  12769. size="3144148"
  12770. />
  12771. </otaPackages>
  12772. </productMenu>
  12773. <productMenu id="wa"
  12774. type="0" >
  12775. </productMenu>
  12776. <productMenu id="meshIntercom"
  12777. type="30" >
  12778. </productMenu>
  12779. <productMenu id="meshIntercom+"
  12780. type="3"
  12781. url="2" >
  12782. <productMenuType version="1.0.9"
  12783. type="2"
  12784. />
  12785. </productMenu>
  12786. <productMenu id="waveIntercom"
  12787. type="1" >
  12788. <productMenuType version="1.1.9"
  12789. type="0"
  12790. />
  12791. </productMenu>
  12792. <productMenu id="phone"
  12793. type="1" >
  12794. </productMenu>
  12795. <productMenu id="music"
  12796. type="1" >
  12797. </productMenu>
  12798. <productMenu id="musicSharing"
  12799. type="0" >
  12800. </productMenu>
  12801. <productMenu id="deviceSetting"
  12802. type="1"
  12803. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  12804. <productMenuURL version="1.0.9"
  12805. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  12806. />
  12807. </productMenu>
  12808. <productMenu id="quickGuide"
  12809. type="0"
  12810. url=""
  12811. size="1.12MB" >
  12812. </productMenu>
  12813. <productMenu id="userGuide"
  12814. type="1"
  12815. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  12816. size="2.0MB" >
  12817. </productMenu>
  12818. <productMenu id="videoGuide"
  12819. type="0"
  12820. url=""
  12821. size="3.41MB" >
  12822. </productMenu>
  12823. <productMenu id="volume"
  12824. type="12" >
  12825. </productMenu>
  12826. <productMenu id="battery"
  12827. type="1" >
  12828. </productMenu>
  12829. <productID id="6848"
  12830. />
  12831. <productGroupable type="0"
  12832. />
  12833. </product>
  12834. <product id="J10"
  12835. name="J10"
  12836. series="5"
  12837. latestVersion="1.1.4"
  12838. show = "0" >
  12839. <productMenu id="protocol"
  12840. type="3" >
  12841. </productMenu>
  12842. <productMenu id="sip"
  12843. type="1" >
  12844. </productMenu>
  12845. <productMenu id="bluetoothIntercom"
  12846. type="1" >
  12847. </productMenu>
  12848. <productMenu id="phone"
  12849. type="1" >
  12850. </productMenu>
  12851. <productMenu id="fmradio"
  12852. type="0" >
  12853. </productMenu>
  12854. <productMenu id="deviceSetting"
  12855. type="1"
  12856. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12857. </productMenu>
  12858. <productMenu id="userGuide"
  12859. type="1"
  12860. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  12861. size="1.14MB" >
  12862. </productMenu>
  12863. <productID id="5598"
  12864. />
  12865. <productGroupable type="0"
  12866. />
  12867. </product>
  12868. <product id="B20"
  12869. name="B20"
  12870. series="B"
  12871. latestVersion="1.1.2"
  12872. latestVersionVoicePrompt="0.14"
  12873. show = "0" >
  12874. <productMenu id="protocol"
  12875. type="2" >
  12876. </productMenu>
  12877. <productMenu id="alexa"
  12878. type="0" >
  12879. </productMenu>
  12880. <productMenu id="ota"
  12881. type="2" >
  12882. <otaPackages>
  12883. <package
  12884. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.2-build1.img"
  12885. size="3144148"
  12886. />
  12887. </otaPackages>
  12888. </productMenu>
  12889. <productMenu id="wa"
  12890. type="0" >
  12891. </productMenu>
  12892. <productMenu id="meshIntercom"
  12893. type="30" >
  12894. </productMenu>
  12895. <productMenu id="phone"
  12896. type="1" >
  12897. </productMenu>
  12898. <productMenu id="music"
  12899. type="1" >
  12900. </productMenu>
  12901. <productMenu id="musicSharing"
  12902. type="0" >
  12903. </productMenu>
  12904. <productMenu id="deviceSetting"
  12905. type="1"
  12906. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  12907. <productMenuURL version="1.0.9"
  12908. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  12909. />
  12910. </productMenu>
  12911. <productMenu id="quickGuide"
  12912. type="0"
  12913. url=""
  12914. size="1.12MB" >
  12915. </productMenu>
  12916. <productMenu id="userGuide"
  12917. type="1"
  12918. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  12919. size="2.0MB" >
  12920. </productMenu>
  12921. <productMenu id="videoGuide"
  12922. type="0"
  12923. url=""
  12924. size="3.41MB" >
  12925. </productMenu>
  12926. <productMenu id="volume"
  12927. type="12" >
  12928. </productMenu>
  12929. <productMenu id="battery"
  12930. type="1" >
  12931. </productMenu>
  12932. <productID id="6847"
  12933. />
  12934. <productGroupable type="0"
  12935. />
  12936. </product>
  12937. <product id="B10"
  12938. name="B10"
  12939. series="5"
  12940. latestVersion="1.2.4"
  12941. show = "0" >
  12942. <productMenu id="protocol"
  12943. type="3" >
  12944. </productMenu>
  12945. <productMenu id="sip"
  12946. type="1" >
  12947. </productMenu>
  12948. <productMenu id="bluetoothIntercom"
  12949. type="1" >
  12950. </productMenu>
  12951. <productMenu id="phone"
  12952. type="1" >
  12953. </productMenu>
  12954. <productMenu id="fmradio"
  12955. type="0" >
  12956. </productMenu>
  12957. <productMenu id="deviceSetting"
  12958. type="1"
  12959. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  12960. </productMenu>
  12961. <productMenu id="userGuide"
  12962. type="1"
  12963. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  12964. size="1.14MB" >
  12965. </productMenu>
  12966. <productID id="5596"
  12967. />
  12968. <productGroupable type="0"
  12969. />
  12970. </product>
  12971. <product id="E30"
  12972. name="E30"
  12973. series="E"
  12974. latestVersion="1.1.2"
  12975. latestVersionVoicePrompt="0.14"
  12976. show = "0" >
  12977. <productMenu id="protocol"
  12978. type="2" >
  12979. </productMenu>
  12980. <productMenu id="alexa"
  12981. type="0" >
  12982. </productMenu>
  12983. <productMenu id="ota"
  12984. type="2" >
  12985. <otaPackages>
  12986. <package
  12987. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.2-build1.img"
  12988. size="3144148"
  12989. />
  12990. </otaPackages>
  12991. </productMenu>
  12992. <productMenu id="wa"
  12993. type="0" >
  12994. </productMenu>
  12995. <productMenu id="meshIntercom"
  12996. type="30" >
  12997. </productMenu>
  12998. <productMenu id="meshIntercom+"
  12999. type="3"
  13000. url="2" >
  13001. </productMenu>
  13002. <productMenu id="waveIntercom"
  13003. type="1" >
  13004. <productMenuType version="1.0.9"
  13005. type="0"
  13006. />
  13007. </productMenu>
  13008. <productMenu id="phone"
  13009. type="1" >
  13010. </productMenu>
  13011. <productMenu id="music"
  13012. type="1" >
  13013. </productMenu>
  13014. <productMenu id="musicSharing"
  13015. type="0" >
  13016. </productMenu>
  13017. <productMenu id="deviceSetting"
  13018. type="1"
  13019. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  13020. </productMenu>
  13021. <productMenu id="quickGuide"
  13022. type="0"
  13023. url=""
  13024. size="1.12MB" >
  13025. </productMenu>
  13026. <productMenu id="userGuide"
  13027. type="1"
  13028. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  13029. size="2.0MB" >
  13030. </productMenu>
  13031. <productMenu id="videoGuide"
  13032. type="0"
  13033. url=""
  13034. size="3.41MB" >
  13035. </productMenu>
  13036. <productMenu id="volume"
  13037. type="12" >
  13038. </productMenu>
  13039. <productMenu id="battery"
  13040. type="1" >
  13041. </productMenu>
  13042. <productID id="6846"
  13043. />
  13044. <productGroupable type="0"
  13045. />
  13046. </product>
  13047. <product id="ACSRAM"
  13048. name="ACS-RAM"
  13049. series="ACS"
  13050. latestVersion="1.0.5"
  13051. show = "1" >
  13052. <productMenu id="protocol"
  13053. type="3" >
  13054. </productMenu>
  13055. <productMenu id="sip"
  13056. type="1" >
  13057. </productMenu>
  13058. <productMenu id="bluetoothIntercom"
  13059. type="1" >
  13060. </productMenu>
  13061. <productMenu id="deviceSetting"
  13062. type="1"
  13063. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  13064. </productMenu>
  13065. <productMenu id="quickGuide"
  13066. type="1"
  13067. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  13068. size="344KB" >
  13069. </productMenu>
  13070. <productMenu id="userGuide"
  13071. type="1"
  13072. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  13073. size="1.14MB" >
  13074. </productMenu>
  13075. <productMenu id="connectGuide"
  13076. type="1"
  13077. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  13078. size="1.12MB" >
  13079. </productMenu>
  13080. <productID id="3400"
  13081. />
  13082. <productGroupable type="0"
  13083. />
  13084. </product>
  13085. <product id="ACS10"
  13086. name="ACS10"
  13087. series="ACS"
  13088. latestVersion="1.0.2"
  13089. show = "1" >
  13090. <productMenu id="protocol"
  13091. type="0">
  13092. </productMenu>
  13093. <productMenu id="sip"
  13094. type="1" >
  13095. </productMenu>
  13096. <productMenu id="bluetoothIntercom"
  13097. type="1" >
  13098. </productMenu>
  13099. <productMenu id="phone"
  13100. type="2" >
  13101. </productMenu>
  13102. <productMenu id="deviceSetting"
  13103. type="1"
  13104. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  13105. </productMenu>
  13106. <productMenu id="quickGuide"
  13107. type="1"
  13108. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  13109. size="970KB" >
  13110. </productMenu>
  13111. <productMenu id="userGuide"
  13112. type="1"
  13113. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  13114. size="1.26MB" >
  13115. </productMenu>
  13116. <productMenu id="connectGuide"
  13117. type="1"
  13118. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  13119. size="1.12MB" >
  13120. </productMenu>
  13121. <productID id="3300"
  13122. />
  13123. <productGroupable type="0"
  13124. />
  13125. </product>
  13126. <product id="DWO7ProMesh"
  13127. name="DWO 7 Pro Mesh"
  13128. series="50"
  13129. latestVersion="1.1"
  13130. latestVersionVoicePrompt="0.9"
  13131. show = "0" >
  13132. <productMenu id="protocol"
  13133. type="2" >
  13134. </productMenu>
  13135. <productMenu id="alexa"
  13136. type="0" >
  13137. </productMenu>
  13138. <productMenu id="ota"
  13139. type="2" >
  13140. <otaPackages>
  13141. <package
  13142. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  13143. size="2945812"
  13144. />
  13145. </otaPackages>
  13146. </productMenu>
  13147. <productMenu id="wa"
  13148. type="0" >
  13149. </productMenu>
  13150. <productMenu id="meshIntercom"
  13151. type="20" >
  13152. </productMenu>
  13153. <productMenu id="meshIntercom+"
  13154. type="3"
  13155. url="2" >
  13156. <productMenuType version="1.0.9"
  13157. type="2"
  13158. />
  13159. <productMenuURL version="2.1.1"
  13160. url="0"
  13161. />
  13162. </productMenu>
  13163. <productMenu id="waveIntercom"
  13164. type="1" >
  13165. <productMenuType version="1.0.9"
  13166. type="0"
  13167. />
  13168. </productMenu>
  13169. <productMenu id="phone"
  13170. type="1" >
  13171. </productMenu>
  13172. <productMenu id="music"
  13173. type="1" >
  13174. </productMenu>
  13175. <productMenu id="fmradio"
  13176. type="1" >
  13177. </productMenu>
  13178. <productMenu id="musicSharing"
  13179. type="0" >
  13180. </productMenu>
  13181. <productMenu id="deviceSetting"
  13182. type="1"
  13183. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  13184. <productMenuURL version="1.0.9"
  13185. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  13186. />
  13187. </productMenu>
  13188. <productMenu id="quickGuide"
  13189. type="1"
  13190. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13191. size="1.12MB" >
  13192. </productMenu>
  13193. <productMenu id="userGuide"
  13194. type="1"
  13195. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13196. size="2.0MB" >
  13197. </productMenu>
  13198. <productMenu id="volume"
  13199. type="12" >
  13200. </productMenu>
  13201. <productMenu id="battery"
  13202. type="1" >
  13203. </productMenu>
  13204. <productID id="6806"
  13205. />
  13206. <productGroupable type="0"
  13207. />
  13208. </product>
  13209. <product id="ERA1X"
  13210. name="ERA 1 X"
  13211. series="UCOM"
  13212. latestVersion="0.2.1"
  13213. latestVersionMesh="0.19"
  13214. latestVersionVoicePrompt="1.2"
  13215. show = "-1" >
  13216. <productMenu id="protocol"
  13217. type="2" >
  13218. </productMenu>
  13219. <productMenu id="ota"
  13220. type="2" >
  13221. <otaLanguages>
  13222. <otaLanguage
  13223. id="0"
  13224. name="English"
  13225. package="0"
  13226. />
  13227. <otaLanguage
  13228. id="0"
  13229. name="French"
  13230. package="1"
  13231. />
  13232. <otaLanguage
  13233. id="0"
  13234. name="Spanish"
  13235. package="2"
  13236. />
  13237. <otaLanguage
  13238. id="0"
  13239. name="Italian"
  13240. package="3"
  13241. />
  13242. <otaLanguage
  13243. id="0"
  13244. name="German"
  13245. package="4"
  13246. />
  13247. <otaLanguage
  13248. id="0"
  13249. name="Dutch"
  13250. package="5"
  13251. />
  13252. <otaLanguage
  13253. id="0"
  13254. name="Russian"
  13255. package="6"
  13256. />
  13257. <otaLanguage
  13258. id="0"
  13259. name="Chinese"
  13260. package="7"
  13261. />
  13262. <otaLanguage
  13263. id="0"
  13264. name="Korean"
  13265. package="8"
  13266. />
  13267. <otaLanguage
  13268. id="0"
  13269. name="Japanese"
  13270. package="9"
  13271. />
  13272. <otaLanguage
  13273. id="0"
  13274. name="Finnish"
  13275. package="10"
  13276. />
  13277. <otaLanguage
  13278. id="0"
  13279. name="Polish"
  13280. package="11"
  13281. />
  13282. <otaLanguage
  13283. id="0"
  13284. name="Czech"
  13285. package="12"
  13286. />
  13287. <otaLanguage
  13288. id="0"
  13289. name="Danish"
  13290. package="13"
  13291. />
  13292. <otaLanguage
  13293. id="0"
  13294. name="Norwegian"
  13295. package="14"
  13296. />
  13297. <otaLanguage
  13298. id="0"
  13299. name="Swedish"
  13300. package="15"
  13301. />
  13302. <otaLanguage
  13303. id="0"
  13304. name="Turkish"
  13305. package="16"
  13306. />
  13307. <otaLanguage
  13308. id="0"
  13309. name="Hungarian"
  13310. package="17"
  13311. />
  13312. <otaLanguage
  13313. id="0"
  13314. name="Portuguese"
  13315. package="18"
  13316. />
  13317. <otaLanguage
  13318. id="0"
  13319. name="Hebrew"
  13320. package="19"
  13321. />
  13322. <otaLanguage
  13323. id="0"
  13324. name="Greek"
  13325. package="20"
  13326. />
  13327. </otaLanguages>
  13328. <otaPackages>
  13329. <package
  13330. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13331. size="5183988"
  13332. />
  13333. <package
  13334. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13335. size="5183988"
  13336. />
  13337. <package
  13338. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13339. size="5183988"
  13340. />
  13341. <package
  13342. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13343. size="5183988"
  13344. />
  13345. <package
  13346. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13347. size="5183988"
  13348. />
  13349. <package
  13350. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13351. size="5183988"
  13352. />
  13353. <package
  13354. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13355. size="5183988"
  13356. />
  13357. <package
  13358. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13359. size="5183988"
  13360. />
  13361. <package
  13362. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13363. size="5183988"
  13364. />
  13365. <package
  13366. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13367. size="5183988"
  13368. />
  13369. <package
  13370. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13371. size="5183988"
  13372. />
  13373. <package
  13374. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13375. size="5183988"
  13376. />
  13377. <package
  13378. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13379. size="5183988"
  13380. />
  13381. <package
  13382. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13383. size="5183988"
  13384. />
  13385. <package
  13386. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13387. size="5183988"
  13388. />
  13389. <package
  13390. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13391. size="5183988"
  13392. />
  13393. <package
  13394. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13395. size="5183988"
  13396. />
  13397. <package
  13398. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13399. size="5183988"
  13400. />
  13401. <package
  13402. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13403. size="5183988"
  13404. />
  13405. <package
  13406. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13407. size="5183988"
  13408. />
  13409. <package
  13410. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13411. size="5183988"
  13412. />
  13413. </otaPackages>
  13414. </productMenu>
  13415. <productMenu id="wa"
  13416. type="0" >
  13417. </productMenu>
  13418. <productMenu id="sip"
  13419. type="1" >
  13420. </productMenu>
  13421. <productMenu id="led"
  13422. type="0" >
  13423. </productMenu>
  13424. <productMenu id="illusion"
  13425. type="1" >
  13426. </productMenu>
  13427. <productMenu id="meshIntercom"
  13428. type="30" >
  13429. </productMenu>
  13430. <productMenu id="meshIntercom+"
  13431. type="3"
  13432. url="2" >
  13433. </productMenu>
  13434. <productMenu id="waveIntercom"
  13435. type="0" >
  13436. </productMenu>
  13437. <productMenu id="bluetoothIntercom"
  13438. type="1" >
  13439. </productMenu>
  13440. <productMenu id="bluetoothIntercomGrouping"
  13441. type="0" >
  13442. </productMenu>
  13443. <productMenu id="fmradio"
  13444. type="1"
  13445. url="1" >
  13446. </productMenu>
  13447. <productMenu id="phone"
  13448. type="1" >
  13449. </productMenu>
  13450. <productMenu id="music"
  13451. type="1" >
  13452. </productMenu>
  13453. <productMenu id="musicSharing"
  13454. type="0" >
  13455. </productMenu>
  13456. <productMenu id="deviceSetting"
  13457. type="1"
  13458. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  13459. </productMenu>
  13460. <productMenu id="quickGuide"
  13461. type="0"
  13462. url=""
  13463. size="1.12MB" >
  13464. </productMenu>
  13465. <productMenu id="userGuide"
  13466. type="1"
  13467. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  13468. size="2.0MB" >
  13469. </productMenu>
  13470. <productMenu id="videoGuide"
  13471. type="0"
  13472. url=""
  13473. size="3.41MB" >
  13474. </productMenu>
  13475. <productMenu id="volume"
  13476. type="16" >
  13477. </productMenu>
  13478. <productMenu id="soundMode"
  13479. type="1" >
  13480. </productMenu>
  13481. <productMenu id="battery"
  13482. type="1" >
  13483. </productMenu>
  13484. <productID id="6A83"
  13485. />
  13486. <productGroupable type="0"
  13487. />
  13488. </product>
  13489. <product id="MeshStation"
  13490. name="Mesh Station"
  13491. series="50"
  13492. latestVersion="0.9"
  13493. show = "-1" >
  13494. <productMenu id="protocol"
  13495. type="2" >
  13496. </productMenu>
  13497. <productMenu id="meshIntercom"
  13498. type="20"
  13499. url="99" >
  13500. </productMenu>
  13501. <productID id="3161"
  13502. />
  13503. <productGroupable type="0"
  13504. />
  13505. </product>
  13506. </products>
  13507. </sna>