snm.xml 476 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260104" appVer="2.14" iosAppVer="2.14" central="1" withoutPhone="1">
  3. <tu url="https://www.sena.com/terms-of-use/?webview=true"
  4. />
  5. <pp url="https://www.sena.com/privacy?webview=true"
  6. />
  7. <warranty url="https://www.sena.com/support/warranty/?webview=true"
  8. />
  9. <profile url=""
  10. />
  11. <wa url="https://firmware.sena.com/senabluetoothmanager/UserGuide_WiFi_Charging_Cable_1.0.2_en_250212.pdf"
  12. />
  13. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  14. />
  15. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  16. />
  17. <wim url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_Firmware_Update_1.0.0_en_250212.pdf"
  18. />
  19. <wst url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_Firmware_Update_1.0.0_en_250211.pdf"
  20. />
  21. <support url=""
  22. />
  23. <forum url=""
  24. />
  25. <sip url="https://community.sena.com/hc/en-us"
  26. />
  27. <productKeys>
  28. <productKey id="4210"
  29. userPSKey="5"
  30. valueLength="1"
  31. />
  32. <productKey id="4230"
  33. userPSKey="5"
  34. valueLength="1"
  35. />
  36. </productKeys>
  37. <!--
  38. <menus>
  39. <menu id="protocol" />
  40. <menu id="alexa" />
  41. <menu id="ota" />
  42. <menu id="wa" />
  43. <menu id="manager" />
  44. <menu id="sip" />
  45. <menu id="meshIntercom" />
  46. <menu id="bluetoothIntercom" />
  47. <menu id="music" />
  48. <menu id="musicSharing" />
  49. <menu id="fmradio" />
  50. <menu id="phone" />
  51. <menu id="led" />
  52. <menu id="volume" />
  53. <menu id="battery" />
  54. <menu id="deviceSetting" />
  55. <menu id="quickGuide" />
  56. <menu id="userGuide" />
  57. </menus>
  58. -->
  59. <serieses>
  60. <series id="60"
  61. name="60 Series"
  62. show="1"
  63. />
  64. <series id="50"
  65. name="50 Series"
  66. show="1"
  67. />
  68. <series id="Helmet"
  69. name="Smart Helmet"
  70. show="1"
  71. />
  72. <series id="30"
  73. name="30 Series"
  74. show="1"
  75. />
  76. <series id="SF"
  77. name="SF Series"
  78. show="1"
  79. />
  80. <series id="SPIDER"
  81. name="SPIDER Series"
  82. show="1"
  83. />
  84. <series id="20"
  85. name="20 Series"
  86. show="1"
  87. />
  88. <series id="SRL"
  89. name="SRL Series"
  90. show="1"
  91. />
  92. <series id="ACS"
  93. name="ACS Series"
  94. show="1"
  95. />
  96. <series id="10"
  97. name="10 Series"
  98. show="1"
  99. />
  100. <series id="5"
  101. name="5 Series"
  102. show="1"
  103. />
  104. <series id="3"
  105. name="3 Series"
  106. show="1"
  107. />
  108. <series id="R"
  109. name="R Series"
  110. show="1"
  111. />
  112. <series id="C"
  113. name="C Series"
  114. show="1"
  115. />
  116. <!--
  117. <series id="smh"
  118. name="SMH"
  119. />
  120. <series id="cavalry"
  121. name="CAVALRY"
  122. show="0"
  123. />
  124. -->
  125. </serieses>
  126. <products>
  127. <product id="60SPRO"
  128. name="60S PRO"
  129. series="60"
  130. latestVersion="0.1"
  131. latestVersionMesh="0.19"
  132. latestVersionVoicePrompt="1.2"
  133. show = "-1" >
  134. <productMenu id="protocol"
  135. type="2" >
  136. </productMenu>
  137. <productMenu id="ota"
  138. type="0" >
  139. <otaLanguages>
  140. <otaLanguage
  141. id="0"
  142. name="English"
  143. package="0"
  144. />
  145. <otaLanguage
  146. id="0"
  147. name="French"
  148. package="1"
  149. />
  150. <otaLanguage
  151. id="0"
  152. name="Spanish"
  153. package="2"
  154. />
  155. <otaLanguage
  156. id="0"
  157. name="Italian"
  158. package="3"
  159. />
  160. <otaLanguage
  161. id="0"
  162. name="German"
  163. package="4"
  164. />
  165. <otaLanguage
  166. id="0"
  167. name="Dutch"
  168. package="5"
  169. />
  170. <otaLanguage
  171. id="0"
  172. name="Russian"
  173. package="6"
  174. />
  175. <otaLanguage
  176. id="0"
  177. name="Chinese"
  178. package="7"
  179. />
  180. <otaLanguage
  181. id="0"
  182. name="Korean"
  183. package="8"
  184. />
  185. <otaLanguage
  186. id="0"
  187. name="Japanese"
  188. package="9"
  189. />
  190. <otaLanguage
  191. id="0"
  192. name="Finnish"
  193. package="10"
  194. />
  195. <otaLanguage
  196. id="0"
  197. name="Polish"
  198. package="11"
  199. />
  200. </otaLanguages>
  201. <otaPackages>
  202. <package
  203. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  204. size="5183988"
  205. />
  206. <package
  207. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  208. size="5183988"
  209. />
  210. <package
  211. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  212. size="5183988"
  213. />
  214. <package
  215. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  216. size="5183988"
  217. />
  218. <package
  219. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  220. size="5183988"
  221. />
  222. <package
  223. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  224. size="5183988"
  225. />
  226. <package
  227. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  228. size="5183988"
  229. />
  230. <package
  231. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  232. size="5183988"
  233. />
  234. <package
  235. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  236. size="5183988"
  237. />
  238. <package
  239. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  240. size="5183988"
  241. />
  242. <package
  243. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  244. size="5183988"
  245. />
  246. <package
  247. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  248. size="5183988"
  249. />
  250. </otaPackages>
  251. </productMenu>
  252. <productMenu id="sip"
  253. type="1" >
  254. </productMenu>
  255. <productMenu id="illusion"
  256. type="1" >
  257. </productMenu>
  258. <productMenu id="meshIntercom"
  259. type="30" >
  260. </productMenu>
  261. <productMenu id="meshIntercom+"
  262. type="3"
  263. url="2" >
  264. </productMenu>
  265. <productMenu id="waveIntercom"
  266. type="1" >
  267. </productMenu>
  268. <productMenu id="bluetoothIntercom"
  269. type="1"
  270. url="2" >
  271. </productMenu>
  272. <productMenu id="bluetoothIntercomGrouping"
  273. type="0" >
  274. </productMenu>
  275. <productMenu id="fmradio"
  276. type="1"
  277. url="1" >
  278. </productMenu>
  279. <productMenu id="phone"
  280. type="1" >
  281. </productMenu>
  282. <productMenu id="music"
  283. type="1" >
  284. </productMenu>
  285. <productMenu id="musicSharing"
  286. type="0" >
  287. </productMenu>
  288. <productMenu id="deviceSetting"
  289. type="1"
  290. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  291. </productMenu>
  292. <productMenu id="quickGuide"
  293. type="0"
  294. url=""
  295. size="1.12MB" >
  296. </productMenu>
  297. <productMenu id="userGuide"
  298. type="1"
  299. url=""
  300. size="2.0MB" >
  301. </productMenu>
  302. <productMenu id="videoGuide"
  303. type="0"
  304. url=""
  305. size="3.41MB" >
  306. </productMenu>
  307. <productMenu id="connectGuide"
  308. type="0"
  309. url=""
  310. size="1.12MB" >
  311. </productMenu>
  312. <productMenu id="volume"
  313. type="16" >
  314. </productMenu>
  315. <productMenu id="soundMode"
  316. type="1" >
  317. </productMenu>
  318. <productMenu id="battery"
  319. type="1" >
  320. </productMenu>
  321. <productID id="6A1A"
  322. />
  323. <productGroupable type="0"
  324. />
  325. </product>
  326. <product id="60SEVO"
  327. name="60S EVO"
  328. series="60"
  329. latestVersion="1.0.2"
  330. latestVersionMesh="0.19"
  331. latestVersionVoicePrompt="1.7"
  332. show = "-1" >
  333. <productMenu id="protocol"
  334. type="2" >
  335. </productMenu>
  336. <productMenu id="warranty"
  337. type="1" >
  338. </productMenu>
  339. <productMenu id="serialNumber"
  340. type="1" >
  341. </productMenu>
  342. <productMenu id="ota"
  343. type="2" >
  344. <otaLanguages>
  345. <otaLanguage
  346. id="0"
  347. name="English"
  348. package="0"
  349. />
  350. <otaLanguage
  351. id="0"
  352. name="French"
  353. package="1"
  354. />
  355. <otaLanguage
  356. id="0"
  357. name="Spanish"
  358. package="2"
  359. />
  360. <otaLanguage
  361. id="0"
  362. name="Italian"
  363. package="3"
  364. />
  365. <otaLanguage
  366. id="0"
  367. name="German"
  368. package="4"
  369. />
  370. <otaLanguage
  371. id="0"
  372. name="Dutch"
  373. package="5"
  374. />
  375. <otaLanguage
  376. id="0"
  377. name="Russian"
  378. package="6"
  379. />
  380. <otaLanguage
  381. id="0"
  382. name="Chinese"
  383. package="7"
  384. />
  385. <otaLanguage
  386. id="0"
  387. name="Korean"
  388. package="8"
  389. />
  390. <otaLanguage
  391. id="0"
  392. name="Japanese"
  393. package="9"
  394. />
  395. <otaLanguage
  396. id="0"
  397. name="Finnish"
  398. package="10"
  399. />
  400. <otaLanguage
  401. id="0"
  402. name="Polish"
  403. package="11"
  404. />
  405. </otaLanguages>
  406. <otaPackages>
  407. <package
  408. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5.img"
  409. size="5183988"
  410. />
  411. <package
  412. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fr-FR.img"
  413. size="5183988"
  414. />
  415. <package
  416. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-es-ES.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-it-IT.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-de-DE.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-nl-NL.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ru-RU.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-cmn-CN.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ko-KR.img"
  441. size="5183988"
  442. />
  443. <package
  444. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ja-JP.img"
  445. size="5183988"
  446. />
  447. <package
  448. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fi-FI.img"
  449. size="5183988"
  450. />
  451. <package
  452. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-pl-PL.img"
  453. size="5183988"
  454. />
  455. </otaPackages>
  456. </productMenu>
  457. <productMenu id="sip"
  458. type="1" >
  459. </productMenu>
  460. <productMenu id="illusion"
  461. type="1" >
  462. </productMenu>
  463. <productMenu id="meshIntercom"
  464. type="30" >
  465. </productMenu>
  466. <productMenu id="meshIntercom+"
  467. type="3"
  468. url="2" >
  469. </productMenu>
  470. <productMenu id="waveIntercom"
  471. type="1" >
  472. </productMenu>
  473. <productMenu id="bluetoothIntercom"
  474. type="1"
  475. url="2" >
  476. </productMenu>
  477. <productMenu id="bluetoothIntercomGrouping"
  478. type="0" >
  479. </productMenu>
  480. <productMenu id="fmradio"
  481. type="1"
  482. url="1" >
  483. </productMenu>
  484. <productMenu id="phone"
  485. type="1" >
  486. </productMenu>
  487. <productMenu id="music"
  488. type="1" >
  489. </productMenu>
  490. <productMenu id="musicSharing"
  491. type="0" >
  492. </productMenu>
  493. <productMenu id="deviceSetting"
  494. type="1"
  495. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_05_Auto.xml" >
  496. </productMenu>
  497. <productMenu id="quickGuide"
  498. type="0"
  499. url=""
  500. size="1.12MB" >
  501. </productMenu>
  502. <productMenu id="userGuide"
  503. type="1"
  504. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.0.0_en_260429.pdf"
  505. size="2.0MB" >
  506. </productMenu>
  507. <productMenu id="videoGuide"
  508. type="0"
  509. url=""
  510. size="3.41MB" >
  511. </productMenu>
  512. <productMenu id="connectGuide"
  513. type="0"
  514. url=""
  515. size="1.12MB" >
  516. </productMenu>
  517. <productMenu id="volume"
  518. type="16" >
  519. </productMenu>
  520. <productMenu id="volume+"
  521. type="2"
  522. url="0x6004" >
  523. </productMenu>
  524. <productMenu id="soundMode"
  525. type="1" >
  526. </productMenu>
  527. <productMenu id="appearance"
  528. type="1"
  529. url="1|white,silver,black,glossy_black" >
  530. </productMenu>
  531. <productMenu id="battery"
  532. type="1" >
  533. </productMenu>
  534. <productID id="6A15"
  535. />
  536. <productGroupable type="0"
  537. />
  538. </product>
  539. <product id="60S"
  540. name="60S"
  541. series="60"
  542. latestVersion="1.2.9"
  543. latestVersionMesh="1.2"
  544. latestVersionVoicePrompt="1.7"
  545. show = "1" >
  546. <productMenu id="protocol"
  547. type="2" >
  548. </productMenu>
  549. <productMenu id="ota"
  550. type="2" >
  551. <otaLanguages>
  552. <otaLanguage
  553. id="0"
  554. name="English"
  555. package="0"
  556. />
  557. <otaLanguage
  558. id="0"
  559. name="French"
  560. package="1"
  561. />
  562. <otaLanguage
  563. id="0"
  564. name="Spanish"
  565. package="2"
  566. />
  567. <otaLanguage
  568. id="0"
  569. name="Italian"
  570. package="3"
  571. />
  572. <otaLanguage
  573. id="0"
  574. name="German"
  575. package="4"
  576. />
  577. <otaLanguage
  578. id="0"
  579. name="Dutch"
  580. package="5"
  581. />
  582. <otaLanguage
  583. id="0"
  584. name="Russian"
  585. package="6"
  586. />
  587. <otaLanguage
  588. id="0"
  589. name="Chinese"
  590. package="7"
  591. />
  592. <otaLanguage
  593. id="0"
  594. name="Korean"
  595. package="8"
  596. />
  597. <otaLanguage
  598. id="0"
  599. name="Japanese"
  600. package="9"
  601. />
  602. <otaLanguage
  603. id="0"
  604. name="Finnish"
  605. package="10"
  606. />
  607. <otaLanguage
  608. id="0"
  609. name="Polish"
  610. package="11"
  611. />
  612. </otaLanguages>
  613. <otaPackages>
  614. <package
  615. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0.img"
  616. size="5183988"
  617. />
  618. <package
  619. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fr-FR.img"
  620. size="5183988"
  621. />
  622. <package
  623. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-es-ES.img"
  624. size="5183988"
  625. />
  626. <package
  627. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-it-IT.img"
  628. size="5183988"
  629. />
  630. <package
  631. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-de-DE.img"
  632. size="5183988"
  633. />
  634. <package
  635. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-nl-NL.img"
  636. size="5183988"
  637. />
  638. <package
  639. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ru-RU.img"
  640. size="5183988"
  641. />
  642. <package
  643. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-cmn-CN.img"
  644. size="5183988"
  645. />
  646. <package
  647. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ko-KR.img"
  648. size="5183988"
  649. />
  650. <package
  651. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ja-JP.img"
  652. size="5183988"
  653. />
  654. <package
  655. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fi-FI.img"
  656. size="5183988"
  657. />
  658. <package
  659. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-pl-PL.img"
  660. size="5183988"
  661. />
  662. </otaPackages>
  663. </productMenu>
  664. <productMenu id="sip"
  665. type="1" >
  666. </productMenu>
  667. <productMenu id="illusion"
  668. type="1" >
  669. </productMenu>
  670. <productMenu id="meshIntercom"
  671. type="30" >
  672. </productMenu>
  673. <productMenu id="meshIntercom+"
  674. type="3"
  675. url="2" >
  676. </productMenu>
  677. <productMenu id="waveIntercom"
  678. type="1" >
  679. </productMenu>
  680. <productMenu id="bluetoothIntercom"
  681. type="1"
  682. url="2" >
  683. </productMenu>
  684. <productMenu id="bluetoothIntercomGrouping"
  685. type="0" >
  686. </productMenu>
  687. <productMenu id="fmradio"
  688. type="1"
  689. url="1" >
  690. </productMenu>
  691. <productMenu id="phone"
  692. type="1" >
  693. </productMenu>
  694. <productMenu id="music"
  695. type="1" >
  696. </productMenu>
  697. <productMenu id="musicSharing"
  698. type="0" >
  699. </productMenu>
  700. <productMenu id="deviceSetting"
  701. type="1"
  702. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  703. <productMenuURL version="1.2.6"
  704. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  705. />
  706. <productMenuURL version="1.2.3"
  707. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  708. />
  709. </productMenu>
  710. <productMenu id="quickGuide"
  711. type="0"
  712. url=""
  713. size="1.12MB" >
  714. </productMenu>
  715. <productMenu id="userGuide"
  716. type="1"
  717. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  718. size="2.0MB" >
  719. </productMenu>
  720. <productMenu id="videoGuide"
  721. type="0"
  722. url=""
  723. size="3.41MB" >
  724. </productMenu>
  725. <productMenu id="connectGuide"
  726. type="1"
  727. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  728. size="1.12MB" >
  729. </productMenu>
  730. <productMenu id="volume"
  731. type="16" >
  732. </productMenu>
  733. <productMenu id="volume+"
  734. type="2"
  735. url="0x6004" >
  736. <productMenuURL version="1.2.3"
  737. url="0x6004"
  738. />
  739. </productMenu>
  740. <productMenu id="soundMode"
  741. type="0" >
  742. </productMenu>
  743. <productMenu id="appearance"
  744. type="1"
  745. url="2|white,silver,chrome,black" >
  746. </productMenu>
  747. <productMenu id="battery"
  748. type="1" >
  749. </productMenu>
  750. <productID id="6A0D"
  751. />
  752. <productGroupable type="0"
  753. />
  754. </product>
  755. <product id="60S"
  756. name="60S"
  757. series="60"
  758. latestVersion="1.2.9"
  759. latestVersionMesh="1.2"
  760. latestVersionVoicePrompt="1.7"
  761. show = "-1" >
  762. <productMenu id="protocol"
  763. type="2" >
  764. </productMenu>
  765. <productMenu id="ota"
  766. type="2" >
  767. <otaLanguages>
  768. <otaLanguage
  769. id="0"
  770. name="English"
  771. package="0"
  772. />
  773. <otaLanguage
  774. id="0"
  775. name="French"
  776. package="1"
  777. />
  778. <otaLanguage
  779. id="0"
  780. name="Spanish"
  781. package="2"
  782. />
  783. <otaLanguage
  784. id="0"
  785. name="Italian"
  786. package="3"
  787. />
  788. <otaLanguage
  789. id="0"
  790. name="German"
  791. package="4"
  792. />
  793. <otaLanguage
  794. id="0"
  795. name="Dutch"
  796. package="5"
  797. />
  798. <otaLanguage
  799. id="0"
  800. name="Russian"
  801. package="6"
  802. />
  803. <otaLanguage
  804. id="0"
  805. name="Chinese"
  806. package="7"
  807. />
  808. <otaLanguage
  809. id="0"
  810. name="Korean"
  811. package="8"
  812. />
  813. <otaLanguage
  814. id="0"
  815. name="Japanese"
  816. package="9"
  817. />
  818. <otaLanguage
  819. id="0"
  820. name="Finnish"
  821. package="10"
  822. />
  823. <otaLanguage
  824. id="0"
  825. name="Polish"
  826. package="11"
  827. />
  828. </otaLanguages>
  829. <otaPackages>
  830. <package
  831. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0.img"
  832. size="5183988"
  833. />
  834. <package
  835. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fr-FR.img"
  836. size="5183988"
  837. />
  838. <package
  839. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-es-ES.img"
  840. size="5183988"
  841. />
  842. <package
  843. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-it-IT.img"
  844. size="5183988"
  845. />
  846. <package
  847. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-de-DE.img"
  848. size="5183988"
  849. />
  850. <package
  851. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-nl-NL.img"
  852. size="5183988"
  853. />
  854. <package
  855. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ru-RU.img"
  856. size="5183988"
  857. />
  858. <package
  859. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-cmn-CN.img"
  860. size="5183988"
  861. />
  862. <package
  863. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ko-KR.img"
  864. size="5183988"
  865. />
  866. <package
  867. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ja-JP.img"
  868. size="5183988"
  869. />
  870. <package
  871. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fi-FI.img"
  872. size="5183988"
  873. />
  874. <package
  875. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-pl-PL.img"
  876. size="5183988"
  877. />
  878. </otaPackages>
  879. </productMenu>
  880. <productMenu id="wa"
  881. type="0" >
  882. </productMenu>
  883. <productMenu id="sip"
  884. type="1" >
  885. </productMenu>
  886. <productMenu id="led"
  887. type="0" >
  888. </productMenu>
  889. <productMenu id="illusion"
  890. type="1" >
  891. </productMenu>
  892. <productMenu id="meshIntercom"
  893. type="30" >
  894. </productMenu>
  895. <productMenu id="meshIntercom+"
  896. type="3"
  897. url="2" >
  898. <productMenuURL version="1.0.2"
  899. url="10"
  900. />
  901. </productMenu>
  902. <productMenu id="waveIntercom"
  903. type="1" >
  904. <productMenuType version="1.0.9"
  905. type="0"
  906. />
  907. </productMenu>
  908. <productMenu id="bluetoothIntercom"
  909. type="1"
  910. url="2" >
  911. </productMenu>
  912. <productMenu id="bluetoothIntercomGrouping"
  913. type="0" >
  914. </productMenu>
  915. <productMenu id="fmradio"
  916. type="1"
  917. url="1" >
  918. </productMenu>
  919. <productMenu id="phone"
  920. type="1" >
  921. </productMenu>
  922. <productMenu id="music"
  923. type="1" >
  924. </productMenu>
  925. <productMenu id="musicSharing"
  926. type="0" >
  927. </productMenu>
  928. <productMenu id="deviceSetting"
  929. type="1"
  930. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  931. <productMenuURL version="1.2.6"
  932. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  933. />
  934. <productMenuURL version="1.2.3"
  935. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  936. />
  937. <productMenuURL version="1.0.2"
  938. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  939. />
  940. <productMenuURL version="1.0"
  941. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  942. />
  943. <productMenuURL version="0.9.11"
  944. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  945. />
  946. </productMenu>
  947. <productMenu id="quickGuide"
  948. type="0"
  949. url=""
  950. size="1.12MB" >
  951. </productMenu>
  952. <productMenu id="userGuide"
  953. type="1"
  954. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  955. size="2.0MB" >
  956. </productMenu>
  957. <productMenu id="videoGuide"
  958. type="0"
  959. url=""
  960. size="3.41MB" >
  961. </productMenu>
  962. <productMenu id="connectGuide"
  963. type="1"
  964. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  965. size="1.12MB" >
  966. </productMenu>
  967. <productMenu id="volume"
  968. type="16" >
  969. <productMenuType version="0.9.11"
  970. type="13"
  971. />
  972. </productMenu>
  973. <productMenu id="volume+"
  974. type="2"
  975. url="0x6004" >
  976. <productMenuURL version="1.2.3"
  977. url="0x6004"
  978. />
  979. </productMenu>
  980. <productMenu id="soundMode"
  981. type="0" >
  982. <productMenuType version="0.9.11"
  983. type="0"
  984. />
  985. </productMenu>
  986. <productMenu id="appearance"
  987. type="1"
  988. url="2|white,silver,chrome,black" >
  989. </productMenu>
  990. <productMenu id="battery"
  991. type="1" >
  992. </productMenu>
  993. <productID id="6A02"
  994. />
  995. <productGroupable type="0"
  996. />
  997. </product>
  998. <product id="60X"
  999. name="60X"
  1000. series="60"
  1001. latestVersion="1.0"
  1002. latestVersionMesh="0.19"
  1003. latestVersionVoicePrompt="1.7"
  1004. show = "-1" >
  1005. <productMenu id="protocol"
  1006. type="2" >
  1007. </productMenu>
  1008. <productMenu id="warranty"
  1009. type="1" >
  1010. </productMenu>
  1011. <productMenu id="serialNumber"
  1012. type="1" >
  1013. </productMenu>
  1014. <productMenu id="ota"
  1015. type="2" >
  1016. <otaLanguages>
  1017. <otaLanguage
  1018. id="0"
  1019. name="English"
  1020. package="0"
  1021. />
  1022. <otaLanguage
  1023. id="0"
  1024. name="French"
  1025. package="1"
  1026. />
  1027. <otaLanguage
  1028. id="0"
  1029. name="Spanish"
  1030. package="2"
  1031. />
  1032. <otaLanguage
  1033. id="0"
  1034. name="Italian"
  1035. package="3"
  1036. />
  1037. <otaLanguage
  1038. id="0"
  1039. name="German"
  1040. package="4"
  1041. />
  1042. <otaLanguage
  1043. id="0"
  1044. name="Dutch"
  1045. package="5"
  1046. />
  1047. <otaLanguage
  1048. id="0"
  1049. name="Russian"
  1050. package="6"
  1051. />
  1052. <otaLanguage
  1053. id="0"
  1054. name="Chinese"
  1055. package="7"
  1056. />
  1057. <otaLanguage
  1058. id="0"
  1059. name="Korean"
  1060. package="8"
  1061. />
  1062. <otaLanguage
  1063. id="0"
  1064. name="Japanese"
  1065. package="9"
  1066. />
  1067. <otaLanguage
  1068. id="0"
  1069. name="Finnish"
  1070. package="10"
  1071. />
  1072. <otaLanguage
  1073. id="0"
  1074. name="Polish"
  1075. package="11"
  1076. />
  1077. </otaLanguages>
  1078. <otaPackages>
  1079. <package
  1080. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5.img"
  1081. size="5183988"
  1082. />
  1083. <package
  1084. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fr-FR.img"
  1085. size="5183988"
  1086. />
  1087. <package
  1088. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-es-ES.img"
  1089. size="5183988"
  1090. />
  1091. <package
  1092. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-it-IT.img"
  1093. size="5183988"
  1094. />
  1095. <package
  1096. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-de-DE.img"
  1097. size="5183988"
  1098. />
  1099. <package
  1100. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-nl-NL.img"
  1101. size="5183988"
  1102. />
  1103. <package
  1104. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ru-RU.img"
  1105. size="5183988"
  1106. />
  1107. <package
  1108. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-cmn-CN.img"
  1109. size="5183988"
  1110. />
  1111. <package
  1112. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ko-KR.img"
  1113. size="5183988"
  1114. />
  1115. <package
  1116. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ja-JP.img"
  1117. size="5183988"
  1118. />
  1119. <package
  1120. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fi-FI.img"
  1121. size="5183988"
  1122. />
  1123. <package
  1124. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-pl-PL.img"
  1125. size="5183988"
  1126. />
  1127. </otaPackages>
  1128. </productMenu>
  1129. <productMenu id="wa"
  1130. type="0" >
  1131. </productMenu>
  1132. <productMenu id="sip"
  1133. type="1" >
  1134. </productMenu>
  1135. <productMenu id="led"
  1136. type="1" >
  1137. </productMenu>
  1138. <productMenu id="illusion"
  1139. type="1" >
  1140. </productMenu>
  1141. <productMenu id="meshIntercom"
  1142. type="30" >
  1143. </productMenu>
  1144. <productMenu id="meshIntercom+"
  1145. type="3"
  1146. url="2" >
  1147. </productMenu>
  1148. <productMenu id="bluetoothIntercom"
  1149. type="1" >
  1150. </productMenu>
  1151. <productMenu id="fmradio"
  1152. type="1"
  1153. url="1" >
  1154. </productMenu>
  1155. <productMenu id="mic"
  1156. type="0" >
  1157. </productMenu>
  1158. <productMenu id="phone"
  1159. type="1" >
  1160. </productMenu>
  1161. <productMenu id="music"
  1162. type="1" >
  1163. </productMenu>
  1164. <productMenu id="musicSharing"
  1165. type="0" >
  1166. </productMenu>
  1167. <productMenu id="deviceSetting"
  1168. type="1"
  1169. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1170. </productMenu>
  1171. <productMenu id="quickGuide"
  1172. type="0"
  1173. url=""
  1174. size="1.12MB" >
  1175. </productMenu>
  1176. <productMenu id="userGuide"
  1177. type="0"
  1178. url=""
  1179. size="2.0MB" >
  1180. </productMenu>
  1181. <productMenu id="videoGuide"
  1182. type="0"
  1183. url=""
  1184. size="3.41MB" >
  1185. </productMenu>
  1186. <productMenu id="keySettings"
  1187. type="1"
  1188. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1189. </productMenu>
  1190. <productMenu id="volume"
  1191. type="13" >
  1192. </productMenu>
  1193. <productMenu id="volume+"
  1194. type="2"
  1195. url="0x6004" >
  1196. </productMenu>
  1197. <productMenu id="appearance"
  1198. type="1"
  1199. url="1|white,silver,black,glossy_black" >
  1200. </productMenu>
  1201. <productMenu id="battery"
  1202. type="1" >
  1203. </productMenu>
  1204. <productID id="6A03"
  1205. />
  1206. <productGroupable type="0"
  1207. />
  1208. </product>
  1209. <product id="R35"
  1210. name="R35"
  1211. series="R"
  1212. latestVersion="1.1.1"
  1213. latestVersionVoicePrompt="1.5"
  1214. show = "1" >
  1215. <productMenu id="protocol"
  1216. type="2" >
  1217. </productMenu>
  1218. <productMenu id="ota"
  1219. type="2" >
  1220. <otaLanguages>
  1221. <otaLanguage
  1222. id="0"
  1223. name="English"
  1224. package="0"
  1225. />
  1226. <otaLanguage
  1227. id="0"
  1228. name="Chinese"
  1229. package="1"
  1230. />
  1231. <otaLanguage
  1232. id="0"
  1233. name="Chinese Singapore"
  1234. package="2"
  1235. />
  1236. <otaLanguage
  1237. id="0"
  1238. name="Filipino"
  1239. package="3"
  1240. />
  1241. <otaLanguage
  1242. id="0"
  1243. name="Hebrew"
  1244. package="4"
  1245. />
  1246. <otaLanguage
  1247. id="0"
  1248. name="Hindi"
  1249. package="5"
  1250. />
  1251. <otaLanguage
  1252. id="0"
  1253. name="Indonesian"
  1254. package="6"
  1255. />
  1256. <otaLanguage
  1257. id="0"
  1258. name="Japanese"
  1259. package="7"
  1260. />
  1261. <otaLanguage
  1262. id="0"
  1263. name="Korean"
  1264. package="8"
  1265. />
  1266. <otaLanguage
  1267. id="0"
  1268. name="Malay"
  1269. package="9"
  1270. />
  1271. <otaLanguage
  1272. id="0"
  1273. name="Modern Standard Arabic"
  1274. package="10"
  1275. />
  1276. <otaLanguage
  1277. id="0"
  1278. name="Taiwanese"
  1279. package="11"
  1280. />
  1281. <otaLanguage
  1282. id="0"
  1283. name="Tamil"
  1284. package="12"
  1285. />
  1286. <otaLanguage
  1287. id="0"
  1288. name="Thai"
  1289. package="13"
  1290. />
  1291. <otaLanguage
  1292. id="0"
  1293. name="东北话"
  1294. package="14"
  1295. />
  1296. <otaLanguage
  1297. id="0"
  1298. name="广东话"
  1299. package="15"
  1300. />
  1301. <otaLanguage
  1302. id="0"
  1303. name="江浙沪"
  1304. package="16"
  1305. />
  1306. <otaLanguage
  1307. id="0"
  1308. name="四川话"
  1309. package="17"
  1310. />
  1311. <otaLanguage
  1312. id="0"
  1313. name="陕西话"
  1314. package="18"
  1315. />
  1316. </otaLanguages>
  1317. <otaPackages>
  1318. <package
  1319. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0.img"
  1320. size="5183988"
  1321. />
  1322. <package
  1323. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-CN.img"
  1324. size="5183988"
  1325. />
  1326. <package
  1327. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-SG.img"
  1328. size="5183988"
  1329. />
  1330. <package
  1331. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-tl-PH.img"
  1332. size="5183988"
  1333. />
  1334. <package
  1335. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-he-IL.img"
  1336. size="5183988"
  1337. />
  1338. <package
  1339. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-hi-IN.img"
  1340. size="5183988"
  1341. />
  1342. <package
  1343. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-id-ID.img"
  1344. size="5183988"
  1345. />
  1346. <package
  1347. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ja-JP.img"
  1348. size="5183988"
  1349. />
  1350. <package
  1351. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ko-KR.img"
  1352. size="5183988"
  1353. />
  1354. <package
  1355. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ms-MY.img"
  1356. size="5183988"
  1357. />
  1358. <package
  1359. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ar-XA.img"
  1360. size="5183988"
  1361. />
  1362. <package
  1363. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-nan-TW.img"
  1364. size="5183988"
  1365. />
  1366. <package
  1367. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ta-IN.img"
  1368. size="5183988"
  1369. />
  1370. <package
  1371. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-th-TH.img"
  1372. size="5183988"
  1373. />
  1374. <package
  1375. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zdb-CN.img"
  1376. size="5183988"
  1377. />
  1378. <package
  1379. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-yue-CN.img"
  1380. size="5183988"
  1381. />
  1382. <package
  1383. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-wuu-CN.img"
  1384. size="5183988"
  1385. />
  1386. <package
  1387. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsc-CN.img"
  1388. size="5183988"
  1389. />
  1390. <package
  1391. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsn-CN.img"
  1392. size="5183988"
  1393. />
  1394. </otaPackages>
  1395. </productMenu>
  1396. <productMenu id="sip"
  1397. type="1" >
  1398. </productMenu>
  1399. <productMenu id="illusion"
  1400. type="1" >
  1401. </productMenu>
  1402. <productMenu id="meshIntercom"
  1403. type="30" >
  1404. </productMenu>
  1405. <productMenu id="meshIntercom+"
  1406. type="3"
  1407. url="2" >
  1408. </productMenu>
  1409. <productMenu id="waveIntercom"
  1410. type="1" >
  1411. </productMenu>
  1412. <productMenu id="phone"
  1413. type="1" >
  1414. </productMenu>
  1415. <productMenu id="music"
  1416. type="1" >
  1417. </productMenu>
  1418. <productMenu id="musicSharing"
  1419. type="0" >
  1420. </productMenu>
  1421. <productMenu id="deviceSetting"
  1422. type="1"
  1423. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml" >
  1424. <productMenuURL version="1.0.3"
  1425. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1426. />
  1427. </productMenu>
  1428. <productMenu id="quickGuide"
  1429. type="0"
  1430. url=""
  1431. size="1.12MB" >
  1432. </productMenu>
  1433. <productMenu id="userGuide"
  1434. type="1"
  1435. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1436. size="2.0MB" >
  1437. </productMenu>
  1438. <productMenu id="videoGuide"
  1439. type="0"
  1440. url=""
  1441. size="3.41MB" >
  1442. </productMenu>
  1443. <productMenu id="connectGuide"
  1444. type="0"
  1445. url=""
  1446. size="1.12MB" >
  1447. </productMenu>
  1448. <productMenu id="volume"
  1449. type="16" >
  1450. </productMenu>
  1451. <productMenu id="volume+"
  1452. type="2"
  1453. url="0x6004" >
  1454. </productMenu>
  1455. <productMenu id="soundMode"
  1456. type="0" >
  1457. </productMenu>
  1458. <productMenu id="appearance"
  1459. type="1"
  1460. url="1|white,silver,chrome,black" >
  1461. </productMenu>
  1462. <productMenu id="battery"
  1463. type="1" >
  1464. </productMenu>
  1465. <productID id="6A06"
  1466. />
  1467. <productGroupable type="0"
  1468. />
  1469. </product>
  1470. <product id="COM60X"
  1471. name="BMW MOTORRAD COM 60X"
  1472. series="60"
  1473. latestVersion="1.0"
  1474. latestVersionMesh="0.19"
  1475. latestVersionVoicePrompt="1.7"
  1476. show = "-1" >
  1477. <productMenu id="protocol"
  1478. type="2" >
  1479. </productMenu>
  1480. <productMenu id="ota"
  1481. type="0" >
  1482. <otaLanguages>
  1483. <otaLanguage
  1484. id="0"
  1485. name="English"
  1486. package="0"
  1487. />
  1488. <otaLanguage
  1489. id="0"
  1490. name="French"
  1491. package="1"
  1492. />
  1493. <otaLanguage
  1494. id="0"
  1495. name="Spanish"
  1496. package="2"
  1497. />
  1498. <otaLanguage
  1499. id="0"
  1500. name="Italian"
  1501. package="3"
  1502. />
  1503. <otaLanguage
  1504. id="0"
  1505. name="German"
  1506. package="4"
  1507. />
  1508. <otaLanguage
  1509. id="0"
  1510. name="Dutch"
  1511. package="5"
  1512. />
  1513. <otaLanguage
  1514. id="0"
  1515. name="Russian"
  1516. package="6"
  1517. />
  1518. <otaLanguage
  1519. id="0"
  1520. name="Chinese"
  1521. package="7"
  1522. />
  1523. <otaLanguage
  1524. id="0"
  1525. name="Korean"
  1526. package="8"
  1527. />
  1528. <otaLanguage
  1529. id="0"
  1530. name="Japanese"
  1531. package="9"
  1532. />
  1533. <otaLanguage
  1534. id="0"
  1535. name="Finnish"
  1536. package="10"
  1537. />
  1538. <otaLanguage
  1539. id="0"
  1540. name="Polish"
  1541. package="11"
  1542. />
  1543. </otaLanguages>
  1544. <otaPackages>
  1545. <package
  1546. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5.img"
  1547. size="5183988"
  1548. />
  1549. <package
  1550. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fr-FR.img"
  1551. size="5183988"
  1552. />
  1553. <package
  1554. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-es-ES.img"
  1555. size="5183988"
  1556. />
  1557. <package
  1558. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-it-IT.img"
  1559. size="5183988"
  1560. />
  1561. <package
  1562. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-de-DE.img"
  1563. size="5183988"
  1564. />
  1565. <package
  1566. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-nl-NL.img"
  1567. size="5183988"
  1568. />
  1569. <package
  1570. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ru-RU.img"
  1571. size="5183988"
  1572. />
  1573. <package
  1574. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-cmn-CN.img"
  1575. size="5183988"
  1576. />
  1577. <package
  1578. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ko-KR.img"
  1579. size="5183988"
  1580. />
  1581. <package
  1582. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ja-JP.img"
  1583. size="5183988"
  1584. />
  1585. <package
  1586. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fi-FI.img"
  1587. size="5183988"
  1588. />
  1589. <package
  1590. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-pl-PL.img"
  1591. size="5183988"
  1592. />
  1593. </otaPackages>
  1594. </productMenu>
  1595. <productMenu id="wa"
  1596. type="0" >
  1597. </productMenu>
  1598. <productMenu id="sip"
  1599. type="1" >
  1600. </productMenu>
  1601. <productMenu id="led"
  1602. type="1" >
  1603. </productMenu>
  1604. <productMenu id="illusion"
  1605. type="1" >
  1606. </productMenu>
  1607. <productMenu id="meshIntercom"
  1608. type="30" >
  1609. </productMenu>
  1610. <productMenu id="meshIntercom+"
  1611. type="3"
  1612. url="2" >
  1613. </productMenu>
  1614. <productMenu id="bluetoothIntercom"
  1615. type="1" >
  1616. </productMenu>
  1617. <productMenu id="fmradio"
  1618. type="1"
  1619. url="1" >
  1620. </productMenu>
  1621. <productMenu id="mic"
  1622. type="0" >
  1623. </productMenu>
  1624. <productMenu id="phone"
  1625. type="1" >
  1626. </productMenu>
  1627. <productMenu id="music"
  1628. type="1" >
  1629. </productMenu>
  1630. <productMenu id="musicSharing"
  1631. type="0" >
  1632. </productMenu>
  1633. <productMenu id="deviceSetting"
  1634. type="1"
  1635. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1636. </productMenu>
  1637. <productMenu id="quickGuide"
  1638. type="0"
  1639. url=""
  1640. size="1.12MB" >
  1641. </productMenu>
  1642. <productMenu id="userGuide"
  1643. type="1"
  1644. url=""
  1645. size="2.0MB" >
  1646. </productMenu>
  1647. <productMenu id="videoGuide"
  1648. type="0"
  1649. url=""
  1650. size="3.41MB" >
  1651. </productMenu>
  1652. <productMenu id="keySettings"
  1653. type="1"
  1654. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1655. </productMenu>
  1656. <productMenu id="volume"
  1657. type="13" >
  1658. </productMenu>
  1659. <productMenu id="volume+"
  1660. type="2"
  1661. url="0x6004" >
  1662. </productMenu>
  1663. <productMenu id="battery"
  1664. type="1" >
  1665. </productMenu>
  1666. <productID id="6A1B"
  1667. />
  1668. <productGroupable type="0"
  1669. />
  1670. </product>
  1671. <product id="COMP1"
  1672. name="BMW COM P1"
  1673. series="60"
  1674. latestVersion="1.2"
  1675. latestVersionMesh="0.19"
  1676. latestVersionVoicePrompt="1.0"
  1677. show = "-1" >
  1678. <productMenu id="protocol"
  1679. type="2" >
  1680. </productMenu>
  1681. <productMenu id="ota"
  1682. type="2" >
  1683. <otaLanguages>
  1684. <otaLanguage
  1685. id="0"
  1686. name="English"
  1687. package="0"
  1688. />
  1689. <otaLanguage
  1690. id="0"
  1691. name="French"
  1692. package="1"
  1693. />
  1694. <otaLanguage
  1695. id="0"
  1696. name="Spanish"
  1697. package="2"
  1698. />
  1699. <otaLanguage
  1700. id="0"
  1701. name="Italian"
  1702. package="3"
  1703. />
  1704. <otaLanguage
  1705. id="0"
  1706. name="German"
  1707. package="4"
  1708. />
  1709. <otaLanguage
  1710. id="0"
  1711. name="Dutch"
  1712. package="5"
  1713. />
  1714. <otaLanguage
  1715. id="0"
  1716. name="Russian"
  1717. package="6"
  1718. />
  1719. <otaLanguage
  1720. id="0"
  1721. name="Chinese"
  1722. package="7"
  1723. />
  1724. <otaLanguage
  1725. id="0"
  1726. name="Korean"
  1727. package="8"
  1728. />
  1729. <otaLanguage
  1730. id="0"
  1731. name="Japanese"
  1732. package="9"
  1733. />
  1734. <otaLanguage
  1735. id="0"
  1736. name="Finnish"
  1737. package="10"
  1738. />
  1739. </otaLanguages>
  1740. <otaPackages>
  1741. <package
  1742. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0.img"
  1743. size="5183988"
  1744. />
  1745. <package
  1746. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fr-FR.img"
  1747. size="5183988"
  1748. />
  1749. <package
  1750. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-es-ES.img"
  1751. size="5183988"
  1752. />
  1753. <package
  1754. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-it-IT.img"
  1755. size="5183988"
  1756. />
  1757. <package
  1758. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-de-DE.img"
  1759. size="5183988"
  1760. />
  1761. <package
  1762. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-nl-NL.img"
  1763. size="5183988"
  1764. />
  1765. <package
  1766. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ru-RU.img"
  1767. size="5183988"
  1768. />
  1769. <package
  1770. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-cmn-CN.img"
  1771. size="5183988"
  1772. />
  1773. <package
  1774. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ko-KR.img"
  1775. size="5183988"
  1776. />
  1777. <package
  1778. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ja-JP.img"
  1779. size="5183988"
  1780. />
  1781. <package
  1782. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fi-FI.img"
  1783. size="5183988"
  1784. />
  1785. </otaPackages>
  1786. </productMenu>
  1787. <productMenu id="wa"
  1788. type="0" >
  1789. </productMenu>
  1790. <productMenu id="sip"
  1791. type="1" >
  1792. </productMenu>
  1793. <productMenu id="led"
  1794. type="0" >
  1795. </productMenu>
  1796. <productMenu id="illusion"
  1797. type="0" >
  1798. </productMenu>
  1799. <productMenu id="meshIntercom"
  1800. type="30" >
  1801. </productMenu>
  1802. <productMenu id="bluetoothIntercom"
  1803. type="1" >
  1804. </productMenu>
  1805. <productMenu id="bluetoothIntercomGrouping"
  1806. type="0" >
  1807. </productMenu>
  1808. <productMenu id="fmradio"
  1809. type="0" >
  1810. </productMenu>
  1811. <productMenu id="phone"
  1812. type="1" >
  1813. </productMenu>
  1814. <productMenu id="music"
  1815. type="1" >
  1816. </productMenu>
  1817. <productMenu id="musicSharing"
  1818. type="0" >
  1819. </productMenu>
  1820. <productMenu id="deviceSetting"
  1821. type="1"
  1822. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1823. </productMenu>
  1824. <productMenu id="quickGuide"
  1825. type="0"
  1826. url=""
  1827. size="1.12MB" >
  1828. </productMenu>
  1829. <productMenu id="userGuide"
  1830. type="0"
  1831. url=""
  1832. size="2.0MB" >
  1833. </productMenu>
  1834. <productMenu id="videoGuide"
  1835. type="0"
  1836. url=""
  1837. size="3.41MB" >
  1838. </productMenu>
  1839. <productMenu id="volume"
  1840. type="16" >
  1841. </productMenu>
  1842. <productMenu id="battery"
  1843. type="1" >
  1844. </productMenu>
  1845. <productID id="6A80"
  1846. />
  1847. <productGroupable type="0"
  1848. />
  1849. </product>
  1850. <product id="50S"
  1851. name="50S"
  1852. series="50"
  1853. latestVersion="2.7.2"
  1854. show = "1" >
  1855. <productMenu id="protocol"
  1856. type="2" >
  1857. </productMenu>
  1858. <productMenu id="alexa"
  1859. type="0" >
  1860. </productMenu>
  1861. <productMenu id="ota"
  1862. type="0"
  1863. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1864. size="1150234" >
  1865. </productMenu>
  1866. <productMenu id="wa"
  1867. type="1" >
  1868. </productMenu>
  1869. <productMenu id="sip"
  1870. type="1" >
  1871. </productMenu>
  1872. <productMenu id="meshIntercom"
  1873. type="30" >
  1874. <productMenuType version="2.1.1"
  1875. type="20"
  1876. />
  1877. </productMenu>
  1878. <productMenu id="meshIntercom+"
  1879. type="3"
  1880. url="2" >
  1881. <productMenuType version="2.5.9"
  1882. type="2"
  1883. />
  1884. <productMenuURL version="2.1.1"
  1885. url="0"
  1886. />
  1887. </productMenu>
  1888. <productMenu id="waveIntercom"
  1889. type="1" >
  1890. <productMenuType version="2.6"
  1891. type="0"
  1892. />
  1893. </productMenu>
  1894. <productMenu id="bluetoothIntercom"
  1895. type="1" >
  1896. </productMenu>
  1897. <productMenu id="phone"
  1898. type="1" >
  1899. </productMenu>
  1900. <productMenu id="music"
  1901. type="1" >
  1902. </productMenu>
  1903. <productMenu id="fmradio"
  1904. type="1" >
  1905. </productMenu>
  1906. <productMenu id="deviceSetting"
  1907. type="1"
  1908. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1909. <productMenuURL version="2.5.9"
  1910. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1911. />
  1912. <productMenuURL version="2.1.1"
  1913. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1914. />
  1915. <productMenuURL version="2.0.3"
  1916. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1917. />
  1918. </productMenu>
  1919. <productMenu id="quickGuide"
  1920. type="0"
  1921. url=""
  1922. size="934KB" >
  1923. </productMenu>
  1924. <productMenu id="userGuide"
  1925. type="1"
  1926. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1927. size="1.14MB" >
  1928. </productMenu>
  1929. <productMenu id="videoGuide"
  1930. type="1"
  1931. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1932. size="3.41MB" >
  1933. </productMenu>
  1934. <productMenu id="connectGuide"
  1935. type="1"
  1936. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1937. size="1.12MB" >
  1938. </productMenu>
  1939. <productMenu id="volume"
  1940. type="11" >
  1941. </productMenu>
  1942. <productMenu id="battery"
  1943. type="1" >
  1944. </productMenu>
  1945. <productID id="3210"
  1946. />
  1947. <productGroupable type="0"
  1948. />
  1949. </product>
  1950. <product id="50S"
  1951. name="50S"
  1952. series="50"
  1953. latestVersion="1.5.1"
  1954. show = "-1" >
  1955. <productMenu id="protocol"
  1956. type="2" >
  1957. </productMenu>
  1958. <productMenu id="alexa"
  1959. type="0" >
  1960. </productMenu>
  1961. <productMenu id="wa"
  1962. type="1" >
  1963. </productMenu>
  1964. <productMenu id="sip"
  1965. type="1" >
  1966. </productMenu>
  1967. <productMenu id="meshIntercom"
  1968. type="30" >
  1969. <productMenuType version="1.2.2"
  1970. type="20"
  1971. />
  1972. </productMenu>
  1973. <productMenu id="meshIntercom+"
  1974. type="3"
  1975. url="2" >
  1976. <productMenuType version="1.4.9"
  1977. type="2"
  1978. />
  1979. <productMenuURL version="1.2.2"
  1980. url="0"
  1981. />
  1982. </productMenu>
  1983. <productMenu id="waveIntercom"
  1984. type="1" >
  1985. <productMenuType version="1.3.9"
  1986. type="0"
  1987. />
  1988. </productMenu>
  1989. <productMenu id="bluetoothIntercom"
  1990. type="1" >
  1991. </productMenu>
  1992. <productMenu id="phone"
  1993. type="1" >
  1994. </productMenu>
  1995. <productMenu id="music"
  1996. type="1" >
  1997. </productMenu>
  1998. <productMenu id="fmradio"
  1999. type="1" >
  2000. </productMenu>
  2001. <productMenu id="deviceSetting"
  2002. type="1"
  2003. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2004. <productMenuURL version="1.4.9"
  2005. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2006. />
  2007. <productMenuURL version="1.3.9"
  2008. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2009. />
  2010. <productMenuURL version="1.2.2"
  2011. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2012. />
  2013. <productMenuURL version="1.1.1"
  2014. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2015. />
  2016. </productMenu>
  2017. <productMenu id="quickGuide"
  2018. type="0"
  2019. url=""
  2020. size="934KB" >
  2021. </productMenu>
  2022. <productMenu id="userGuide"
  2023. type="1"
  2024. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  2025. size="1.14MB" >
  2026. </productMenu>
  2027. <productMenu id="videoGuide"
  2028. type="1"
  2029. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2030. size="3.41MB" >
  2031. </productMenu>
  2032. <productMenu id="volume"
  2033. type="11" >
  2034. </productMenu>
  2035. <productMenu id="battery"
  2036. type="1" >
  2037. </productMenu>
  2038. <productID id="3132"
  2039. />
  2040. <productGroupable type="0"
  2041. />
  2042. </product>
  2043. <product id="50R"
  2044. name="50R"
  2045. series="50"
  2046. latestVersion="2.7.1"
  2047. show = "1" >
  2048. <productMenu id="protocol"
  2049. type="2" >
  2050. </productMenu>
  2051. <productMenu id="alexa"
  2052. type="0" >
  2053. </productMenu>
  2054. <productMenu id="ota"
  2055. type="0"
  2056. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2057. size="1150234" >
  2058. </productMenu>
  2059. <productMenu id="wa"
  2060. type="1" >
  2061. </productMenu>
  2062. <productMenu id="sip"
  2063. type="1" >
  2064. </productMenu>
  2065. <productMenu id="meshIntercom"
  2066. type="30" >
  2067. <productMenuType version="2.1.1"
  2068. type="20"
  2069. />
  2070. </productMenu>
  2071. <productMenu id="meshIntercom+"
  2072. type="3"
  2073. url="2" >
  2074. <productMenuType version="2.5.9"
  2075. type="2"
  2076. />
  2077. <productMenuURL version="2.1.1"
  2078. url="0"
  2079. />
  2080. </productMenu>
  2081. <productMenu id="waveIntercom"
  2082. type="1" >
  2083. <productMenuType version="2.6"
  2084. type="0"
  2085. />
  2086. </productMenu>
  2087. <productMenu id="bluetoothIntercom"
  2088. type="1" >
  2089. </productMenu>
  2090. <productMenu id="phone"
  2091. type="1" >
  2092. </productMenu>
  2093. <productMenu id="music"
  2094. type="1" >
  2095. </productMenu>
  2096. <productMenu id="fmradio"
  2097. type="1" >
  2098. </productMenu>
  2099. <productMenu id="deviceSetting"
  2100. type="1"
  2101. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2102. <productMenuURL version="2.5.9"
  2103. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2104. />
  2105. <productMenuURL version="2.1.1"
  2106. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2107. />
  2108. <productMenuURL version="2.0"
  2109. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2110. />
  2111. </productMenu>
  2112. <productMenu id="quickGuide"
  2113. type="0"
  2114. url=""
  2115. size="344KB" >
  2116. </productMenu>
  2117. <productMenu id="userGuide"
  2118. type="1"
  2119. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  2120. size="3.41MB" >
  2121. </productMenu>
  2122. <productMenu id="videoGuide"
  2123. type="1"
  2124. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2125. size="3.41MB" >
  2126. </productMenu>
  2127. <productMenu id="connectGuide"
  2128. type="1"
  2129. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  2130. size="1.12MB" >
  2131. </productMenu>
  2132. <productMenu id="volume"
  2133. type="11" >
  2134. </productMenu>
  2135. <productMenu id="battery"
  2136. type="1" >
  2137. </productMenu>
  2138. <productID id="3218"
  2139. />
  2140. <productGroupable type="0"
  2141. />
  2142. </product>
  2143. <product id="50R"
  2144. name="50R"
  2145. series="50"
  2146. latestVersion="1.5.1"
  2147. show = "-1" >
  2148. <productMenu id="protocol"
  2149. type="2" >
  2150. </productMenu>
  2151. <productMenu id="alexa"
  2152. type="0" >
  2153. </productMenu>
  2154. <productMenu id="wa"
  2155. type="1" >
  2156. </productMenu>
  2157. <productMenu id="sip"
  2158. type="1" >
  2159. </productMenu>
  2160. <productMenu id="meshIntercom"
  2161. type="30" >
  2162. <productMenuType version="1.2.2"
  2163. type="20"
  2164. />
  2165. </productMenu>
  2166. <productMenu id="meshIntercom+"
  2167. type="3"
  2168. url="2" >
  2169. <productMenuType version="1.4.9"
  2170. type="2"
  2171. />
  2172. <productMenuURL version="1.2.2"
  2173. url="0"
  2174. />
  2175. </productMenu>
  2176. <productMenu id="waveIntercom"
  2177. type="1" >
  2178. <productMenuType version="1.3.9"
  2179. type="0"
  2180. />
  2181. </productMenu>
  2182. <productMenu id="bluetoothIntercom"
  2183. type="1" >
  2184. </productMenu>
  2185. <productMenu id="phone"
  2186. type="1" >
  2187. </productMenu>
  2188. <productMenu id="music"
  2189. type="1" >
  2190. </productMenu>
  2191. <productMenu id="fmradio"
  2192. type="1" >
  2193. </productMenu>
  2194. <productMenu id="deviceSetting"
  2195. type="1"
  2196. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2197. <productMenuURL version="1.4.9"
  2198. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2199. />
  2200. <productMenuURL version="1.3.9"
  2201. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2202. />
  2203. <productMenuURL version="1.2.2"
  2204. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2205. />
  2206. <productMenuURL version="1.1.1"
  2207. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2208. />
  2209. </productMenu>
  2210. <productMenu id="quickGuide"
  2211. type="0"
  2212. url=""
  2213. size="344KB" >
  2214. </productMenu>
  2215. <productMenu id="userGuide"
  2216. type="1"
  2217. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2218. size="3.41MB" >
  2219. </productMenu>
  2220. <productMenu id="videoGuide"
  2221. type="1"
  2222. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2223. size="3.41MB" >
  2224. </productMenu>
  2225. <productMenu id="volume"
  2226. type="11" >
  2227. </productMenu>
  2228. <productMenu id="battery"
  2229. type="1" >
  2230. </productMenu>
  2231. <productID id="3134"
  2232. />
  2233. <productGroupable type="0"
  2234. />
  2235. </product>
  2236. <product id="50C"
  2237. name="50C"
  2238. series="50"
  2239. latestVersion="1.4.3"
  2240. show = "1" >
  2241. <productMenu id="protocol"
  2242. type="2" >
  2243. </productMenu>
  2244. <productMenu id="ota"
  2245. type="0" >
  2246. </productMenu>
  2247. <productMenu id="wa"
  2248. type="1" >
  2249. </productMenu>
  2250. <productMenu id="sip"
  2251. type="1" >
  2252. </productMenu>
  2253. <productMenu id="meshIntercom"
  2254. type="30" >
  2255. <productMenuType version="1.1.1"
  2256. type="20"
  2257. />
  2258. </productMenu>
  2259. <productMenu id="meshIntercom+"
  2260. type="3"
  2261. url="2" >
  2262. <productMenuType version="1.3.9"
  2263. type="2"
  2264. />
  2265. <productMenuURL version="1.1.1"
  2266. url="0"
  2267. />
  2268. </productMenu>
  2269. <productMenu id="waveIntercom"
  2270. type="1" >
  2271. <productMenuType version="1.2.9"
  2272. type="0"
  2273. />
  2274. </productMenu>
  2275. <productMenu id="bluetoothIntercom"
  2276. type="1" >
  2277. </productMenu>
  2278. <productMenu id="phone"
  2279. type="1" >
  2280. </productMenu>
  2281. <productMenu id="music"
  2282. type="1" >
  2283. </productMenu>
  2284. <productMenu id="fmradio"
  2285. type="1" >
  2286. </productMenu>
  2287. <productMenu id="deviceSetting"
  2288. type="1"
  2289. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2290. <productMenuURL version="1.3.9"
  2291. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2292. />
  2293. <productMenuURL version="1.1.1"
  2294. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2295. />
  2296. <productMenuURL version="1.0.1"
  2297. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2298. />
  2299. </productMenu>
  2300. <productMenu id="quickGuide"
  2301. type="0"
  2302. url=""
  2303. size="344KB" >
  2304. </productMenu>
  2305. <productMenu id="userGuide"
  2306. type="1"
  2307. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2308. size="3.41MB" >
  2309. </productMenu>
  2310. <productMenu id="connectGuide"
  2311. type="1"
  2312. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2313. size="1.12MB" >
  2314. </productMenu>
  2315. <productMenu id="volume"
  2316. type="11" >
  2317. </productMenu>
  2318. <productMenu id="battery"
  2319. type="1" >
  2320. </productMenu>
  2321. <productID id="3232"
  2322. />
  2323. <productGroupable type="0"
  2324. />
  2325. </product>
  2326. <product id="PHANTOMXB"
  2327. name="PHANTOM XB"
  2328. series="Helmet"
  2329. latestVersion="1.2.9"
  2330. latestVersionVoicePrompt="1.6"
  2331. show = "-1" >
  2332. <productMenu id="protocol"
  2333. type="2" >
  2334. </productMenu>
  2335. <productMenu id="ota"
  2336. type="2" >
  2337. <otaLanguages>
  2338. <otaLanguage
  2339. id="0"
  2340. name="English"
  2341. package="0"
  2342. />
  2343. <otaLanguage
  2344. id="0"
  2345. name="French"
  2346. package="1"
  2347. />
  2348. <otaLanguage
  2349. id="0"
  2350. name="Spanish"
  2351. package="2"
  2352. />
  2353. <otaLanguage
  2354. id="0"
  2355. name="Italian"
  2356. package="3"
  2357. />
  2358. <otaLanguage
  2359. id="0"
  2360. name="German"
  2361. package="4"
  2362. />
  2363. <otaLanguage
  2364. id="0"
  2365. name="Dutch"
  2366. package="5"
  2367. />
  2368. <otaLanguage
  2369. id="0"
  2370. name="Russian"
  2371. package="6"
  2372. />
  2373. <otaLanguage
  2374. id="0"
  2375. name="Chinese"
  2376. package="7"
  2377. />
  2378. <otaLanguage
  2379. id="0"
  2380. name="Korean"
  2381. package="8"
  2382. />
  2383. <otaLanguage
  2384. id="0"
  2385. name="Japanese"
  2386. package="9"
  2387. />
  2388. <otaLanguage
  2389. id="0"
  2390. name="Finnish"
  2391. package="10"
  2392. />
  2393. <otaLanguage
  2394. id="0"
  2395. name="Polish"
  2396. package="11"
  2397. />
  2398. </otaLanguages>
  2399. <otaPackages>
  2400. <package
  2401. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0.img"
  2402. size="5183988"
  2403. />
  2404. <package
  2405. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fr-FR.img"
  2406. size="5183988"
  2407. />
  2408. <package
  2409. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-es-ES.img"
  2410. size="5183988"
  2411. />
  2412. <package
  2413. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-it-IT.img"
  2414. size="5183988"
  2415. />
  2416. <package
  2417. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-de-DE.img"
  2418. size="5183988"
  2419. />
  2420. <package
  2421. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-nl-NL.img"
  2422. size="5183988"
  2423. />
  2424. <package
  2425. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ru-RU.img"
  2426. size="5183988"
  2427. />
  2428. <package
  2429. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-cmn-CN.img"
  2430. size="5183988"
  2431. />
  2432. <package
  2433. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ko-KR.img"
  2434. size="5183988"
  2435. />
  2436. <package
  2437. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ja-JP.img"
  2438. size="5183988"
  2439. />
  2440. <package
  2441. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fi-FI.img"
  2442. size="5183988"
  2443. />
  2444. <package
  2445. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-pl-PL.img"
  2446. size="5183988"
  2447. />
  2448. </otaPackages>
  2449. </productMenu>
  2450. <productMenu id="wa"
  2451. type="0" >
  2452. </productMenu>
  2453. <productMenu id="led"
  2454. type="5" >
  2455. </productMenu>
  2456. <productMenu id="led+"
  2457. type="2"
  2458. url="1" >
  2459. </productMenu>
  2460. <productMenu id="meshIntercom"
  2461. type="30" >
  2462. </productMenu>
  2463. <productMenu id="meshIntercom+"
  2464. type="3"
  2465. url="2" >
  2466. </productMenu>
  2467. <productMenu id="waveIntercom"
  2468. type="1" >
  2469. </productMenu>
  2470. <productMenu id="fmradio"
  2471. type="0" >
  2472. </productMenu>
  2473. <productMenu id="phone"
  2474. type="1" >
  2475. </productMenu>
  2476. <productMenu id="music"
  2477. type="1" >
  2478. </productMenu>
  2479. <productMenu id="musicSharing"
  2480. type="0" >
  2481. </productMenu>
  2482. <productMenu id="deviceSetting"
  2483. type="1"
  2484. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2485. <productMenuURL version="1.2.4"
  2486. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2487. />
  2488. </productMenu>
  2489. <productMenu id="quickGuide"
  2490. type="0"
  2491. url=""
  2492. size="1.12MB" >
  2493. </productMenu>
  2494. <productMenu id="userGuide"
  2495. type="1"
  2496. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2497. size="2.0MB" >
  2498. </productMenu>
  2499. <productMenu id="videoGuide"
  2500. type="0"
  2501. url=""
  2502. size="3.41MB" >
  2503. </productMenu>
  2504. <productMenu id="volume"
  2505. type="16" >
  2506. </productMenu>
  2507. <productMenu id="volume+"
  2508. type="2"
  2509. url="0x6004" >
  2510. </productMenu>
  2511. <productMenu id="battery"
  2512. type="1" >
  2513. </productMenu>
  2514. <productID id="6A0F"
  2515. />
  2516. <productGroupable type="0"
  2517. />
  2518. </product>
  2519. <product id="PHANTOMXB"
  2520. name="PHANTOM XB"
  2521. series="Helmet"
  2522. latestVersion="1.2.9"
  2523. latestVersionVoicePrompt="1.6"
  2524. show = "-1" >
  2525. <productMenu id="protocol"
  2526. type="2" >
  2527. </productMenu>
  2528. <productMenu id="ota"
  2529. type="2" >
  2530. <otaLanguages>
  2531. <otaLanguage
  2532. id="0"
  2533. name="English"
  2534. package="0"
  2535. />
  2536. <otaLanguage
  2537. id="0"
  2538. name="French"
  2539. package="1"
  2540. />
  2541. <otaLanguage
  2542. id="0"
  2543. name="Spanish"
  2544. package="2"
  2545. />
  2546. <otaLanguage
  2547. id="0"
  2548. name="Italian"
  2549. package="3"
  2550. />
  2551. <otaLanguage
  2552. id="0"
  2553. name="German"
  2554. package="4"
  2555. />
  2556. <otaLanguage
  2557. id="0"
  2558. name="Dutch"
  2559. package="5"
  2560. />
  2561. <otaLanguage
  2562. id="0"
  2563. name="Russian"
  2564. package="6"
  2565. />
  2566. <otaLanguage
  2567. id="0"
  2568. name="Chinese"
  2569. package="7"
  2570. />
  2571. <otaLanguage
  2572. id="0"
  2573. name="Korean"
  2574. package="8"
  2575. />
  2576. <otaLanguage
  2577. id="0"
  2578. name="Japanese"
  2579. package="9"
  2580. />
  2581. <otaLanguage
  2582. id="0"
  2583. name="Finnish"
  2584. package="10"
  2585. />
  2586. <otaLanguage
  2587. id="0"
  2588. name="Polish"
  2589. package="11"
  2590. />
  2591. </otaLanguages>
  2592. <otaPackages>
  2593. <package
  2594. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0.img"
  2595. size="5183988"
  2596. />
  2597. <package
  2598. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fr-FR.img"
  2599. size="5183988"
  2600. />
  2601. <package
  2602. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-es-ES.img"
  2603. size="5183988"
  2604. />
  2605. <package
  2606. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-it-IT.img"
  2607. size="5183988"
  2608. />
  2609. <package
  2610. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-de-DE.img"
  2611. size="5183988"
  2612. />
  2613. <package
  2614. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-nl-NL.img"
  2615. size="5183988"
  2616. />
  2617. <package
  2618. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ru-RU.img"
  2619. size="5183988"
  2620. />
  2621. <package
  2622. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-cmn-CN.img"
  2623. size="5183988"
  2624. />
  2625. <package
  2626. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ko-KR.img"
  2627. size="5183988"
  2628. />
  2629. <package
  2630. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ja-JP.img"
  2631. size="5183988"
  2632. />
  2633. <package
  2634. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fi-FI.img"
  2635. size="5183988"
  2636. />
  2637. <package
  2638. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-pl-PL.img"
  2639. size="5183988"
  2640. />
  2641. </otaPackages>
  2642. </productMenu>
  2643. <productMenu id="wa"
  2644. type="0" >
  2645. </productMenu>
  2646. <productMenu id="led"
  2647. type="5" >
  2648. </productMenu>
  2649. <productMenu id="led+"
  2650. type="2"
  2651. url="1" >
  2652. </productMenu>
  2653. <productMenu id="meshIntercom"
  2654. type="30" >
  2655. </productMenu>
  2656. <productMenu id="meshIntercom+"
  2657. type="3"
  2658. url="2" >
  2659. </productMenu>
  2660. <productMenu id="waveIntercom"
  2661. type="1" >
  2662. </productMenu>
  2663. <productMenu id="fmradio"
  2664. type="0" >
  2665. </productMenu>
  2666. <productMenu id="phone"
  2667. type="1" >
  2668. </productMenu>
  2669. <productMenu id="music"
  2670. type="1" >
  2671. </productMenu>
  2672. <productMenu id="musicSharing"
  2673. type="0" >
  2674. </productMenu>
  2675. <productMenu id="deviceSetting"
  2676. type="1"
  2677. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2678. <productMenuURL version="1.2.4"
  2679. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2680. />
  2681. <productMenuURL version="1.2.1"
  2682. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2683. />
  2684. </productMenu>
  2685. <productMenu id="quickGuide"
  2686. type="0"
  2687. url=""
  2688. size="1.12MB" >
  2689. </productMenu>
  2690. <productMenu id="userGuide"
  2691. type="1"
  2692. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2693. size="2.0MB" >
  2694. </productMenu>
  2695. <productMenu id="videoGuide"
  2696. type="0"
  2697. url=""
  2698. size="3.41MB" >
  2699. </productMenu>
  2700. <productMenu id="volume"
  2701. type="16" >
  2702. </productMenu>
  2703. <productMenu id="volume+"
  2704. type="2"
  2705. url="0x6004" >
  2706. </productMenu>
  2707. <productMenu id="battery"
  2708. type="1" >
  2709. </productMenu>
  2710. <productID id="6A0C"
  2711. />
  2712. <productGroupable type="0"
  2713. />
  2714. </product>
  2715. <product id="PHANTOMKV"
  2716. name="PHANTOM KV"
  2717. series="Helmet"
  2718. latestVersion="1.2.10"
  2719. latestVersionVoicePrompt="1.7"
  2720. show = "-1" >
  2721. <productMenu id="protocol"
  2722. type="2" >
  2723. </productMenu>
  2724. <productMenu id="ota"
  2725. type="2" >
  2726. <otaLanguages>
  2727. <otaLanguage
  2728. id="0"
  2729. name="English"
  2730. package="0"
  2731. />
  2732. <otaLanguage
  2733. id="0"
  2734. name="French"
  2735. package="1"
  2736. />
  2737. <otaLanguage
  2738. id="0"
  2739. name="Spanish"
  2740. package="2"
  2741. />
  2742. <otaLanguage
  2743. id="0"
  2744. name="Italian"
  2745. package="3"
  2746. />
  2747. <otaLanguage
  2748. id="0"
  2749. name="German"
  2750. package="4"
  2751. />
  2752. <otaLanguage
  2753. id="0"
  2754. name="Dutch"
  2755. package="5"
  2756. />
  2757. <otaLanguage
  2758. id="0"
  2759. name="Russian"
  2760. package="6"
  2761. />
  2762. <otaLanguage
  2763. id="0"
  2764. name="Chinese"
  2765. package="7"
  2766. />
  2767. <otaLanguage
  2768. id="0"
  2769. name="Korean"
  2770. package="8"
  2771. />
  2772. <otaLanguage
  2773. id="0"
  2774. name="Japanese"
  2775. package="9"
  2776. />
  2777. <otaLanguage
  2778. id="0"
  2779. name="Finnish"
  2780. package="10"
  2781. />
  2782. <otaLanguage
  2783. id="0"
  2784. name="Polish"
  2785. package="11"
  2786. />
  2787. </otaLanguages>
  2788. <otaPackages>
  2789. <package
  2790. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0.img"
  2791. size="5183988"
  2792. />
  2793. <package
  2794. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fr-FR.img"
  2795. size="5183988"
  2796. />
  2797. <package
  2798. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-es-ES.img"
  2799. size="5183988"
  2800. />
  2801. <package
  2802. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-it-IT.img"
  2803. size="5183988"
  2804. />
  2805. <package
  2806. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-de-DE.img"
  2807. size="5183988"
  2808. />
  2809. <package
  2810. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-nl-NL.img"
  2811. size="5183988"
  2812. />
  2813. <package
  2814. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ru-RU.img"
  2815. size="5183988"
  2816. />
  2817. <package
  2818. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-cmn-CN.img"
  2819. size="5183988"
  2820. />
  2821. <package
  2822. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ko-KR.img"
  2823. size="5183988"
  2824. />
  2825. <package
  2826. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ja-JP.img"
  2827. size="5183988"
  2828. />
  2829. <package
  2830. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fi-FI.img"
  2831. size="5183988"
  2832. />
  2833. <package
  2834. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-pl-PL.img"
  2835. size="5183988"
  2836. />
  2837. </otaPackages>
  2838. </productMenu>
  2839. <productMenu id="wa"
  2840. type="0" >
  2841. </productMenu>
  2842. <productMenu id="led"
  2843. type="5" >
  2844. </productMenu>
  2845. <productMenu id="led+"
  2846. type="2"
  2847. url="1" >
  2848. </productMenu>
  2849. <productMenu id="meshIntercom"
  2850. type="30" >
  2851. </productMenu>
  2852. <productMenu id="meshIntercom+"
  2853. type="3"
  2854. url="2" >
  2855. </productMenu>
  2856. <productMenu id="waveIntercom"
  2857. type="1" >
  2858. </productMenu>
  2859. <productMenu id="fmradio"
  2860. type="0" >
  2861. </productMenu>
  2862. <productMenu id="phone"
  2863. type="1" >
  2864. </productMenu>
  2865. <productMenu id="music"
  2866. type="1" >
  2867. </productMenu>
  2868. <productMenu id="musicSharing"
  2869. type="0" >
  2870. </productMenu>
  2871. <productMenu id="deviceSetting"
  2872. type="1"
  2873. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2874. <productMenuURL version="1.2.4"
  2875. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2876. />
  2877. </productMenu>
  2878. <productMenu id="quickGuide"
  2879. type="0"
  2880. url=""
  2881. size="1.12MB" >
  2882. </productMenu>
  2883. <productMenu id="userGuide"
  2884. type="1"
  2885. url=""
  2886. size="2.0MB" >
  2887. </productMenu>
  2888. <productMenu id="videoGuide"
  2889. type="0"
  2890. url=""
  2891. size="3.41MB" >
  2892. </productMenu>
  2893. <productMenu id="volume"
  2894. type="16" >
  2895. </productMenu>
  2896. <productMenu id="volume+"
  2897. type="2"
  2898. url="0x6004" >
  2899. </productMenu>
  2900. <productMenu id="soundMode"
  2901. type="1" >
  2902. </productMenu>
  2903. <productMenu id="battery"
  2904. type="1" >
  2905. </productMenu>
  2906. <productID id="6A13"
  2907. />
  2908. <productGroupable type="0"
  2909. />
  2910. </product>
  2911. <product id="PHANTOMCamera"
  2912. name="PHANTOM Camera"
  2913. series="Helmet"
  2914. latestVersion="1.0.1"
  2915. latestVersionVoicePrompt="0.4"
  2916. show = "-1" >
  2917. <productMenu id="protocol"
  2918. type="2" >
  2919. </productMenu>
  2920. <productMenu id="ota"
  2921. type="3" >
  2922. <otaLanguages>
  2923. <otaLanguage
  2924. id="0"
  2925. name="English"
  2926. package="0"
  2927. />
  2928. <otaLanguage
  2929. id="0"
  2930. name="French"
  2931. package="1"
  2932. />
  2933. <otaLanguage
  2934. id="0"
  2935. name="Spanish"
  2936. package="2"
  2937. />
  2938. <otaLanguage
  2939. id="0"
  2940. name="Italian"
  2941. package="3"
  2942. />
  2943. <otaLanguage
  2944. id="0"
  2945. name="German"
  2946. package="4"
  2947. />
  2948. <otaLanguage
  2949. id="0"
  2950. name="Dutch"
  2951. package="5"
  2952. />
  2953. <otaLanguage
  2954. id="0"
  2955. name="Russian"
  2956. package="6"
  2957. />
  2958. <otaLanguage
  2959. id="0"
  2960. name="Chinese"
  2961. package="7"
  2962. />
  2963. <otaLanguage
  2964. id="0"
  2965. name="Korean"
  2966. package="8"
  2967. />
  2968. <otaLanguage
  2969. id="0"
  2970. name="Japanese"
  2971. package="9"
  2972. />
  2973. <otaLanguage
  2974. id="0"
  2975. name="Finnish"
  2976. package="10"
  2977. />
  2978. <otaLanguage
  2979. id="0"
  2980. name="Polish"
  2981. package="11"
  2982. />
  2983. </otaLanguages>
  2984. <otaPackages>
  2985. <package
  2986. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2987. size="5183988"
  2988. />
  2989. <package
  2990. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  2991. size="5183988"
  2992. />
  2993. <package
  2994. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  2995. size="5183988"
  2996. />
  2997. <package
  2998. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  2999. size="5183988"
  3000. />
  3001. <package
  3002. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  3003. size="5183988"
  3004. />
  3005. <package
  3006. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  3007. size="5183988"
  3008. />
  3009. <package
  3010. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  3011. size="5183988"
  3012. />
  3013. <package
  3014. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  3015. size="5183988"
  3016. />
  3017. <package
  3018. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  3019. size="5183988"
  3020. />
  3021. <package
  3022. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  3023. size="5183988"
  3024. />
  3025. <package
  3026. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  3027. size="5183988"
  3028. />
  3029. <package
  3030. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  3031. size="5183988"
  3032. />
  3033. </otaPackages>
  3034. </productMenu>
  3035. <productMenu id="wa"
  3036. type="0" >
  3037. </productMenu>
  3038. <productMenu id="led"
  3039. type="5" >
  3040. </productMenu>
  3041. <productMenu id="led+"
  3042. type="2"
  3043. url="1" >
  3044. </productMenu>
  3045. <productMenu id="meshIntercom"
  3046. type="30" >
  3047. </productMenu>
  3048. <productMenu id="meshIntercom+"
  3049. type="3"
  3050. url="2" >
  3051. </productMenu>
  3052. <productMenu id="waveIntercom"
  3053. type="1" >
  3054. </productMenu>
  3055. <productMenu id="fmradio"
  3056. type="0" >
  3057. </productMenu>
  3058. <productMenu id="phone"
  3059. type="1" >
  3060. </productMenu>
  3061. <productMenu id="music"
  3062. type="1" >
  3063. </productMenu>
  3064. <productMenu id="musicSharing"
  3065. type="0" >
  3066. </productMenu>
  3067. <productMenu id="deviceSetting"
  3068. type="1"
  3069. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3070. </productMenu>
  3071. <productMenu id="quickGuide"
  3072. type="0"
  3073. url=""
  3074. size="1.12MB" >
  3075. </productMenu>
  3076. <productMenu id="userGuide"
  3077. type="1"
  3078. url=""
  3079. size="2.0MB" >
  3080. </productMenu>
  3081. <productMenu id="videoGuide"
  3082. type="0"
  3083. url=""
  3084. size="3.41MB" >
  3085. </productMenu>
  3086. <productMenu id="volume"
  3087. type="16" >
  3088. </productMenu>
  3089. <productMenu id="battery"
  3090. type="1" >
  3091. </productMenu>
  3092. <productID id="6A10"
  3093. />
  3094. <productGroupable type="0"
  3095. />
  3096. </product>
  3097. <product id="PHANTOMCamera"
  3098. name="PHANTOM Camera"
  3099. series="Helmet"
  3100. latestVersion="1.0.1"
  3101. latestVersionVoicePrompt="0.4"
  3102. show = "-1" >
  3103. <productMenu id="protocol"
  3104. type="2" >
  3105. </productMenu>
  3106. <productMenu id="ota"
  3107. type="3" >
  3108. <otaLanguages>
  3109. <otaLanguage
  3110. id="0"
  3111. name="English"
  3112. package="0"
  3113. />
  3114. <otaLanguage
  3115. id="0"
  3116. name="French"
  3117. package="1"
  3118. />
  3119. <otaLanguage
  3120. id="0"
  3121. name="Spanish"
  3122. package="2"
  3123. />
  3124. <otaLanguage
  3125. id="0"
  3126. name="Italian"
  3127. package="3"
  3128. />
  3129. <otaLanguage
  3130. id="0"
  3131. name="German"
  3132. package="4"
  3133. />
  3134. <otaLanguage
  3135. id="0"
  3136. name="Dutch"
  3137. package="5"
  3138. />
  3139. <otaLanguage
  3140. id="0"
  3141. name="Russian"
  3142. package="6"
  3143. />
  3144. <otaLanguage
  3145. id="0"
  3146. name="Chinese"
  3147. package="7"
  3148. />
  3149. <otaLanguage
  3150. id="0"
  3151. name="Korean"
  3152. package="8"
  3153. />
  3154. <otaLanguage
  3155. id="0"
  3156. name="Japanese"
  3157. package="9"
  3158. />
  3159. <otaLanguage
  3160. id="0"
  3161. name="Finnish"
  3162. package="10"
  3163. />
  3164. <otaLanguage
  3165. id="0"
  3166. name="Polish"
  3167. package="11"
  3168. />
  3169. </otaLanguages>
  3170. <otaPackages>
  3171. <package
  3172. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  3173. size="5183988"
  3174. />
  3175. <package
  3176. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  3177. size="5183988"
  3178. />
  3179. <package
  3180. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  3181. size="5183988"
  3182. />
  3183. <package
  3184. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  3185. size="5183988"
  3186. />
  3187. <package
  3188. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  3189. size="5183988"
  3190. />
  3191. <package
  3192. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  3193. size="5183988"
  3194. />
  3195. <package
  3196. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  3197. size="5183988"
  3198. />
  3199. <package
  3200. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  3201. size="5183988"
  3202. />
  3203. <package
  3204. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  3205. size="5183988"
  3206. />
  3207. <package
  3208. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  3209. size="5183988"
  3210. />
  3211. <package
  3212. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  3213. size="5183988"
  3214. />
  3215. <package
  3216. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  3217. size="5183988"
  3218. />
  3219. </otaPackages>
  3220. </productMenu>
  3221. <productMenu id="wa"
  3222. type="0" >
  3223. </productMenu>
  3224. <productMenu id="led"
  3225. type="5" >
  3226. </productMenu>
  3227. <productMenu id="led+"
  3228. type="2"
  3229. url="1" >
  3230. </productMenu>
  3231. <productMenu id="meshIntercom"
  3232. type="30" >
  3233. </productMenu>
  3234. <productMenu id="meshIntercom+"
  3235. type="3"
  3236. url="2" >
  3237. </productMenu>
  3238. <productMenu id="waveIntercom"
  3239. type="1" >
  3240. </productMenu>
  3241. <productMenu id="fmradio"
  3242. type="0" >
  3243. </productMenu>
  3244. <productMenu id="phone"
  3245. type="1" >
  3246. </productMenu>
  3247. <productMenu id="music"
  3248. type="1" >
  3249. </productMenu>
  3250. <productMenu id="musicSharing"
  3251. type="0" >
  3252. </productMenu>
  3253. <productMenu id="deviceSetting"
  3254. type="1"
  3255. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3256. </productMenu>
  3257. <productMenu id="quickGuide"
  3258. type="0"
  3259. url=""
  3260. size="1.12MB" >
  3261. </productMenu>
  3262. <productMenu id="userGuide"
  3263. type="1"
  3264. url=""
  3265. size="2.0MB" >
  3266. </productMenu>
  3267. <productMenu id="videoGuide"
  3268. type="0"
  3269. url=""
  3270. size="3.41MB" >
  3271. </productMenu>
  3272. <productMenu id="volume"
  3273. type="16" >
  3274. </productMenu>
  3275. <productMenu id="battery"
  3276. type="1" >
  3277. </productMenu>
  3278. <productID id="6A09"
  3279. />
  3280. <productGroupable type="0"
  3281. />
  3282. </product>
  3283. <product id="PHANTOM"
  3284. name="PHANTOM ANC"
  3285. series="Helmet"
  3286. latestVersion="1.2.9"
  3287. latestVersionVoicePrompt="1.7"
  3288. show = "1" >
  3289. <productMenu id="protocol"
  3290. type="2" >
  3291. </productMenu>
  3292. <productMenu id="ota"
  3293. type="2" >
  3294. <productMenuType version="0.6.9"
  3295. type="0"
  3296. />
  3297. <otaLanguages>
  3298. <otaLanguage
  3299. id="0"
  3300. name="English"
  3301. package="0"
  3302. />
  3303. <otaLanguage
  3304. id="0"
  3305. name="French"
  3306. package="1"
  3307. />
  3308. <otaLanguage
  3309. id="0"
  3310. name="Spanish"
  3311. package="2"
  3312. />
  3313. <otaLanguage
  3314. id="0"
  3315. name="Italian"
  3316. package="3"
  3317. />
  3318. <otaLanguage
  3319. id="0"
  3320. name="German"
  3321. package="4"
  3322. />
  3323. <otaLanguage
  3324. id="0"
  3325. name="Dutch"
  3326. package="5"
  3327. />
  3328. <otaLanguage
  3329. id="0"
  3330. name="Russian"
  3331. package="6"
  3332. />
  3333. <otaLanguage
  3334. id="0"
  3335. name="Chinese"
  3336. package="7"
  3337. />
  3338. <otaLanguage
  3339. id="0"
  3340. name="Korean"
  3341. package="8"
  3342. />
  3343. <otaLanguage
  3344. id="0"
  3345. name="Japanese"
  3346. package="9"
  3347. />
  3348. <otaLanguage
  3349. id="0"
  3350. name="Finnish"
  3351. package="10"
  3352. />
  3353. <otaLanguage
  3354. id="0"
  3355. name="Polish"
  3356. package="11"
  3357. />
  3358. </otaLanguages>
  3359. <otaPackages>
  3360. <package
  3361. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0.img"
  3362. size="5183988"
  3363. />
  3364. <package
  3365. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fr-FR.img"
  3366. size="5183988"
  3367. />
  3368. <package
  3369. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-es-ES.img"
  3370. size="5183988"
  3371. />
  3372. <package
  3373. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-it-IT.img"
  3374. size="5183988"
  3375. />
  3376. <package
  3377. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-de-DE.img"
  3378. size="5183988"
  3379. />
  3380. <package
  3381. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-nl-NL.img"
  3382. size="5183988"
  3383. />
  3384. <package
  3385. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ru-RU.img"
  3386. size="5183988"
  3387. />
  3388. <package
  3389. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-cmn-CN.img"
  3390. size="5183988"
  3391. />
  3392. <package
  3393. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ko-KR.img"
  3394. size="5183988"
  3395. />
  3396. <package
  3397. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ja-JP.img"
  3398. size="5183988"
  3399. />
  3400. <package
  3401. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fi-FI.img"
  3402. size="5183988"
  3403. />
  3404. <package
  3405. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-pl-PL.img"
  3406. size="5183988"
  3407. />
  3408. </otaPackages>
  3409. </productMenu>
  3410. <productMenu id="wa"
  3411. type="0" >
  3412. </productMenu>
  3413. <productMenu id="led"
  3414. type="5" >
  3415. </productMenu>
  3416. <productMenu id="led+"
  3417. type="2"
  3418. url="1" >
  3419. </productMenu>
  3420. <productMenu id="meshIntercom"
  3421. type="30" >
  3422. </productMenu>
  3423. <productMenu id="meshIntercom+"
  3424. type="3"
  3425. url="2" >
  3426. <productMenuURL version="1.0.4"
  3427. url="10"
  3428. />
  3429. </productMenu>
  3430. <productMenu id="waveIntercom"
  3431. type="1" >
  3432. <productMenuType version="1.0.9"
  3433. type="0"
  3434. />
  3435. </productMenu>
  3436. <productMenu id="fmradio"
  3437. type="0" >
  3438. </productMenu>
  3439. <productMenu id="phone"
  3440. type="1" >
  3441. </productMenu>
  3442. <productMenu id="music"
  3443. type="1" >
  3444. </productMenu>
  3445. <productMenu id="musicSharing"
  3446. type="0" >
  3447. </productMenu>
  3448. <productMenu id="deviceSetting"
  3449. type="1"
  3450. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3451. <productMenuURL version="1.2.4"
  3452. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3453. />
  3454. <productMenuURL version="1.2.1"
  3455. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3456. />
  3457. <productMenuURL version="1.1.2"
  3458. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3459. />
  3460. <productMenuURL version="1.0.4"
  3461. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3462. />
  3463. </productMenu>
  3464. <productMenu id="quickGuide"
  3465. type="0"
  3466. url=""
  3467. size="1.12MB" >
  3468. </productMenu>
  3469. <productMenu id="userGuide"
  3470. type="1"
  3471. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3472. size="2.0MB" >
  3473. </productMenu>
  3474. <productMenu id="videoGuide"
  3475. type="0"
  3476. url=""
  3477. size="3.41MB" >
  3478. </productMenu>
  3479. <productMenu id="volume"
  3480. type="16" >
  3481. </productMenu>
  3482. <productMenu id="volume+"
  3483. type="2"
  3484. url="0x6004" >
  3485. </productMenu>
  3486. <productMenu id="soundMode"
  3487. type="1" >
  3488. <productMenuType version="0.9.11"
  3489. type="0"
  3490. />
  3491. </productMenu>
  3492. <productMenu id="battery"
  3493. type="1" >
  3494. </productMenu>
  3495. <productID id="6A01"
  3496. />
  3497. <productGroupable type="0"
  3498. />
  3499. </product>
  3500. <product id="PHANTOM"
  3501. name="PHANTOM ANC"
  3502. series="Helmet"
  3503. latestVersion="1.2.9"
  3504. latestVersionVoicePrompt="1.7"
  3505. show = "-1" >
  3506. <productMenu id="protocol"
  3507. type="2" >
  3508. </productMenu>
  3509. <productMenu id="ota"
  3510. type="2" >
  3511. <otaLanguages>
  3512. <otaLanguage
  3513. id="0"
  3514. name="English"
  3515. package="0"
  3516. />
  3517. <otaLanguage
  3518. id="0"
  3519. name="French"
  3520. package="1"
  3521. />
  3522. <otaLanguage
  3523. id="0"
  3524. name="Spanish"
  3525. package="2"
  3526. />
  3527. <otaLanguage
  3528. id="0"
  3529. name="Italian"
  3530. package="3"
  3531. />
  3532. <otaLanguage
  3533. id="0"
  3534. name="German"
  3535. package="4"
  3536. />
  3537. <otaLanguage
  3538. id="0"
  3539. name="Dutch"
  3540. package="5"
  3541. />
  3542. <otaLanguage
  3543. id="0"
  3544. name="Russian"
  3545. package="6"
  3546. />
  3547. <otaLanguage
  3548. id="0"
  3549. name="Chinese"
  3550. package="7"
  3551. />
  3552. <otaLanguage
  3553. id="0"
  3554. name="Korean"
  3555. package="8"
  3556. />
  3557. <otaLanguage
  3558. id="0"
  3559. name="Japanese"
  3560. package="9"
  3561. />
  3562. <otaLanguage
  3563. id="0"
  3564. name="Finnish"
  3565. package="10"
  3566. />
  3567. <otaLanguage
  3568. id="0"
  3569. name="Polish"
  3570. package="11"
  3571. />
  3572. </otaLanguages>
  3573. <otaPackages>
  3574. <package
  3575. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0.img"
  3576. size="5183988"
  3577. />
  3578. <package
  3579. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fr-FR.img"
  3580. size="5183988"
  3581. />
  3582. <package
  3583. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-es-ES.img"
  3584. size="5183988"
  3585. />
  3586. <package
  3587. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-it-IT.img"
  3588. size="5183988"
  3589. />
  3590. <package
  3591. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-de-DE.img"
  3592. size="5183988"
  3593. />
  3594. <package
  3595. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-nl-NL.img"
  3596. size="5183988"
  3597. />
  3598. <package
  3599. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ru-RU.img"
  3600. size="5183988"
  3601. />
  3602. <package
  3603. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-cmn-CN.img"
  3604. size="5183988"
  3605. />
  3606. <package
  3607. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ko-KR.img"
  3608. size="5183988"
  3609. />
  3610. <package
  3611. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ja-JP.img"
  3612. size="5183988"
  3613. />
  3614. <package
  3615. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fi-FI.img"
  3616. size="5183988"
  3617. />
  3618. <package
  3619. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-pl-PL.img"
  3620. size="5183988"
  3621. />
  3622. </otaPackages>
  3623. </productMenu>
  3624. <productMenu id="led"
  3625. type="5" >
  3626. </productMenu>
  3627. <productMenu id="led+"
  3628. type="2"
  3629. url="1" >
  3630. </productMenu>
  3631. <productMenu id="meshIntercom"
  3632. type="30" >
  3633. </productMenu>
  3634. <productMenu id="meshIntercom+"
  3635. type="3"
  3636. url="2" >
  3637. </productMenu>
  3638. <productMenu id="waveIntercom"
  3639. type="1" >
  3640. </productMenu>
  3641. <productMenu id="fmradio"
  3642. type="0" >
  3643. </productMenu>
  3644. <productMenu id="phone"
  3645. type="1" >
  3646. </productMenu>
  3647. <productMenu id="music"
  3648. type="1" >
  3649. </productMenu>
  3650. <productMenu id="musicSharing"
  3651. type="0" >
  3652. </productMenu>
  3653. <productMenu id="deviceSetting"
  3654. type="1"
  3655. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3656. <productMenuURL version="1.2.4"
  3657. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3658. />
  3659. </productMenu>
  3660. <productMenu id="quickGuide"
  3661. type="0"
  3662. url=""
  3663. size="1.12MB" >
  3664. </productMenu>
  3665. <productMenu id="userGuide"
  3666. type="1"
  3667. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3668. size="2.0MB" >
  3669. </productMenu>
  3670. <productMenu id="videoGuide"
  3671. type="0"
  3672. url=""
  3673. size="3.41MB" >
  3674. </productMenu>
  3675. <productMenu id="volume"
  3676. type="16" >
  3677. </productMenu>
  3678. <productMenu id="volume+"
  3679. type="2"
  3680. url="0x6004" >
  3681. </productMenu>
  3682. <productMenu id="soundMode"
  3683. type="1" >
  3684. </productMenu>
  3685. <productMenu id="battery"
  3686. type="1" >
  3687. </productMenu>
  3688. <productID id="6A19"
  3689. />
  3690. <productGroupable type="0"
  3691. />
  3692. </product>
  3693. <product id="PHANTOM"
  3694. name="PHANTOM"
  3695. series="Helmet"
  3696. latestVersion="1.2.9"
  3697. latestVersionVoicePrompt="1.7"
  3698. show = "-1" >
  3699. <productMenu id="protocol"
  3700. type="2" >
  3701. </productMenu>
  3702. <productMenu id="ota"
  3703. type="2" >
  3704. <otaLanguages>
  3705. <otaLanguage
  3706. id="0"
  3707. name="English"
  3708. package="0"
  3709. />
  3710. <otaLanguage
  3711. id="0"
  3712. name="French"
  3713. package="1"
  3714. />
  3715. <otaLanguage
  3716. id="0"
  3717. name="Spanish"
  3718. package="2"
  3719. />
  3720. <otaLanguage
  3721. id="0"
  3722. name="Italian"
  3723. package="3"
  3724. />
  3725. <otaLanguage
  3726. id="0"
  3727. name="German"
  3728. package="4"
  3729. />
  3730. <otaLanguage
  3731. id="0"
  3732. name="Dutch"
  3733. package="5"
  3734. />
  3735. <otaLanguage
  3736. id="0"
  3737. name="Russian"
  3738. package="6"
  3739. />
  3740. <otaLanguage
  3741. id="0"
  3742. name="Chinese"
  3743. package="7"
  3744. />
  3745. <otaLanguage
  3746. id="0"
  3747. name="Korean"
  3748. package="8"
  3749. />
  3750. <otaLanguage
  3751. id="0"
  3752. name="Japanese"
  3753. package="9"
  3754. />
  3755. <otaLanguage
  3756. id="0"
  3757. name="Finnish"
  3758. package="10"
  3759. />
  3760. <otaLanguage
  3761. id="0"
  3762. name="Polish"
  3763. package="11"
  3764. />
  3765. </otaLanguages>
  3766. <otaPackages>
  3767. <package
  3768. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0.img"
  3769. size="5183988"
  3770. />
  3771. <package
  3772. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fr-FR.img"
  3773. size="5183988"
  3774. />
  3775. <package
  3776. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-es-ES.img"
  3777. size="5183988"
  3778. />
  3779. <package
  3780. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-it-IT.img"
  3781. size="5183988"
  3782. />
  3783. <package
  3784. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-de-DE.img"
  3785. size="5183988"
  3786. />
  3787. <package
  3788. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-nl-NL.img"
  3789. size="5183988"
  3790. />
  3791. <package
  3792. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ru-RU.img"
  3793. size="5183988"
  3794. />
  3795. <package
  3796. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-cmn-CN.img"
  3797. size="5183988"
  3798. />
  3799. <package
  3800. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ko-KR.img"
  3801. size="5183988"
  3802. />
  3803. <package
  3804. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ja-JP.img"
  3805. size="5183988"
  3806. />
  3807. <package
  3808. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fi-FI.img"
  3809. size="5183988"
  3810. />
  3811. <package
  3812. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-pl-PL.img"
  3813. size="5183988"
  3814. />
  3815. </otaPackages>
  3816. </productMenu>
  3817. <productMenu id="wa"
  3818. type="0" >
  3819. </productMenu>
  3820. <productMenu id="led"
  3821. type="5" >
  3822. </productMenu>
  3823. <productMenu id="led+"
  3824. type="2"
  3825. url="1" >
  3826. </productMenu>
  3827. <productMenu id="meshIntercom"
  3828. type="30" >
  3829. </productMenu>
  3830. <productMenu id="meshIntercom+"
  3831. type="3"
  3832. url="2" >
  3833. </productMenu>
  3834. <productMenu id="waveIntercom"
  3835. type="1" >
  3836. </productMenu>
  3837. <productMenu id="fmradio"
  3838. type="0" >
  3839. </productMenu>
  3840. <productMenu id="phone"
  3841. type="1" >
  3842. </productMenu>
  3843. <productMenu id="music"
  3844. type="1" >
  3845. </productMenu>
  3846. <productMenu id="musicSharing"
  3847. type="0" >
  3848. </productMenu>
  3849. <productMenu id="deviceSetting"
  3850. type="1"
  3851. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3852. <productMenuURL version="1.2.4"
  3853. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3854. />
  3855. </productMenu>
  3856. <productMenu id="quickGuide"
  3857. type="0"
  3858. url=""
  3859. size="1.52MB" >
  3860. </productMenu>
  3861. <productMenu id="userGuide"
  3862. type="1"
  3863. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3864. size="2.01MB" >
  3865. </productMenu>
  3866. <productMenu id="videoGuide"
  3867. type="0"
  3868. url=""
  3869. size="3.46MB" >
  3870. </productMenu>
  3871. <productMenu id="connectGuide"
  3872. type="1"
  3873. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3874. size="1.1MB" >
  3875. </productMenu>
  3876. <productMenu id="volume"
  3877. type="16" >
  3878. </productMenu>
  3879. <productMenu id="volume+"
  3880. type="2"
  3881. url="0x6004" >
  3882. </productMenu>
  3883. <productMenu id="battery"
  3884. type="1" >
  3885. </productMenu>
  3886. <productID id="6A0E"
  3887. />
  3888. <productGroupable type="0"
  3889. />
  3890. </product>
  3891. <product id="PHANTOM"
  3892. name="PHANTOM"
  3893. series="Helmet"
  3894. latestVersion="1.2.9"
  3895. latestVersionVoicePrompt="1.7"
  3896. show = "1" >
  3897. <productMenu id="protocol"
  3898. type="2" >
  3899. </productMenu>
  3900. <productMenu id="ota"
  3901. type="2" >
  3902. <otaLanguages>
  3903. <otaLanguage
  3904. id="0"
  3905. name="English"
  3906. package="0"
  3907. />
  3908. <otaLanguage
  3909. id="0"
  3910. name="French"
  3911. package="1"
  3912. />
  3913. <otaLanguage
  3914. id="0"
  3915. name="Spanish"
  3916. package="2"
  3917. />
  3918. <otaLanguage
  3919. id="0"
  3920. name="Italian"
  3921. package="3"
  3922. />
  3923. <otaLanguage
  3924. id="0"
  3925. name="German"
  3926. package="4"
  3927. />
  3928. <otaLanguage
  3929. id="0"
  3930. name="Dutch"
  3931. package="5"
  3932. />
  3933. <otaLanguage
  3934. id="0"
  3935. name="Russian"
  3936. package="6"
  3937. />
  3938. <otaLanguage
  3939. id="0"
  3940. name="Chinese"
  3941. package="7"
  3942. />
  3943. <otaLanguage
  3944. id="0"
  3945. name="Korean"
  3946. package="8"
  3947. />
  3948. <otaLanguage
  3949. id="0"
  3950. name="Japanese"
  3951. package="9"
  3952. />
  3953. <otaLanguage
  3954. id="0"
  3955. name="Finnish"
  3956. package="10"
  3957. />
  3958. <otaLanguage
  3959. id="0"
  3960. name="Polish"
  3961. package="11"
  3962. />
  3963. </otaLanguages>
  3964. <otaPackages>
  3965. <package
  3966. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0.img"
  3967. size="5183988"
  3968. />
  3969. <package
  3970. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fr-FR.img"
  3971. size="5183988"
  3972. />
  3973. <package
  3974. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-es-ES.img"
  3975. size="5183988"
  3976. />
  3977. <package
  3978. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-it-IT.img"
  3979. size="5183988"
  3980. />
  3981. <package
  3982. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-de-DE.img"
  3983. size="5183988"
  3984. />
  3985. <package
  3986. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-nl-NL.img"
  3987. size="5183988"
  3988. />
  3989. <package
  3990. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ru-RU.img"
  3991. size="5183988"
  3992. />
  3993. <package
  3994. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-cmn-CN.img"
  3995. size="5183988"
  3996. />
  3997. <package
  3998. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ko-KR.img"
  3999. size="5183988"
  4000. />
  4001. <package
  4002. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ja-JP.img"
  4003. size="5183988"
  4004. />
  4005. <package
  4006. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fi-FI.img"
  4007. size="5183988"
  4008. />
  4009. <package
  4010. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-pl-PL.img"
  4011. size="5183988"
  4012. />
  4013. </otaPackages>
  4014. </productMenu>
  4015. <productMenu id="wa"
  4016. type="0" >
  4017. </productMenu>
  4018. <productMenu id="led"
  4019. type="5" >
  4020. <productMenuType version="1.0.1"
  4021. type="4"
  4022. />
  4023. </productMenu>
  4024. <productMenu id="led+"
  4025. type="2"
  4026. url="1" >
  4027. <productMenuType version="1.0.1"
  4028. type="-1"
  4029. />
  4030. </productMenu>
  4031. <productMenu id="meshIntercom"
  4032. type="30" >
  4033. </productMenu>
  4034. <productMenu id="meshIntercom+"
  4035. type="3"
  4036. url="2" >
  4037. <productMenuURL version="1.0.4"
  4038. url="10"
  4039. />
  4040. </productMenu>
  4041. <productMenu id="waveIntercom"
  4042. type="1" >
  4043. <productMenuType version="1.0.9"
  4044. type="0"
  4045. />
  4046. </productMenu>
  4047. <productMenu id="fmradio"
  4048. type="0" >
  4049. </productMenu>
  4050. <productMenu id="phone"
  4051. type="1" >
  4052. </productMenu>
  4053. <productMenu id="music"
  4054. type="1" >
  4055. </productMenu>
  4056. <productMenu id="musicSharing"
  4057. type="0" >
  4058. </productMenu>
  4059. <productMenu id="deviceSetting"
  4060. type="1"
  4061. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  4062. <productMenuURL version="1.2.4"
  4063. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4064. />
  4065. <productMenuURL version="1.2.1"
  4066. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4067. />
  4068. <productMenuURL version="1.0.4"
  4069. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4070. />
  4071. <productMenuURL version="1.0.1"
  4072. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4073. />
  4074. </productMenu>
  4075. <productMenu id="quickGuide"
  4076. type="0"
  4077. url=""
  4078. size="1.12MB" >
  4079. </productMenu>
  4080. <productMenu id="userGuide"
  4081. type="1"
  4082. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4083. size="2.0MB" >
  4084. </productMenu>
  4085. <productMenu id="videoGuide"
  4086. type="0"
  4087. url=""
  4088. size="3.41MB" >
  4089. </productMenu>
  4090. <productMenu id="connectGuide"
  4091. type="1"
  4092. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4093. size="1.12MB" >
  4094. </productMenu>
  4095. <productMenu id="volume"
  4096. type="16" >
  4097. <productMenuType version="1.0"
  4098. type="13"
  4099. />
  4100. </productMenu>
  4101. <productMenu id="volume+"
  4102. type="2"
  4103. url="0x6004" >
  4104. </productMenu>
  4105. <productMenu id="battery"
  4106. type="1" >
  4107. </productMenu>
  4108. <productID id="6A04"
  4109. />
  4110. <productGroupable type="0"
  4111. />
  4112. </product>
  4113. <product id="PHANTOMEasyLink"
  4114. name="PHANTOM EasyLink"
  4115. series="Helmet"
  4116. latestVersion="0.1"
  4117. latestVersionVoicePrompt="1.2"
  4118. show = "-1" >
  4119. <productMenu id="protocol"
  4120. type="2" >
  4121. </productMenu>
  4122. <productMenu id="ota"
  4123. type="0" >
  4124. <otaLanguages>
  4125. <otaLanguage
  4126. id="0"
  4127. name="English"
  4128. package="0"
  4129. />
  4130. <otaLanguage
  4131. id="0"
  4132. name="French"
  4133. package="1"
  4134. />
  4135. <otaLanguage
  4136. id="0"
  4137. name="Spanish"
  4138. package="2"
  4139. />
  4140. <otaLanguage
  4141. id="0"
  4142. name="Italian"
  4143. package="3"
  4144. />
  4145. <otaLanguage
  4146. id="0"
  4147. name="German"
  4148. package="4"
  4149. />
  4150. <otaLanguage
  4151. id="0"
  4152. name="Dutch"
  4153. package="5"
  4154. />
  4155. <otaLanguage
  4156. id="0"
  4157. name="Russian"
  4158. package="6"
  4159. />
  4160. <otaLanguage
  4161. id="0"
  4162. name="Chinese"
  4163. package="7"
  4164. />
  4165. <otaLanguage
  4166. id="0"
  4167. name="Korean"
  4168. package="8"
  4169. />
  4170. <otaLanguage
  4171. id="0"
  4172. name="Japanese"
  4173. package="9"
  4174. />
  4175. <otaLanguage
  4176. id="0"
  4177. name="Finnish"
  4178. package="10"
  4179. />
  4180. <otaLanguage
  4181. id="0"
  4182. name="Polish"
  4183. package="11"
  4184. />
  4185. </otaLanguages>
  4186. <otaPackages>
  4187. <package
  4188. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4189. size="5183988"
  4190. />
  4191. <package
  4192. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4193. size="5183988"
  4194. />
  4195. <package
  4196. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4197. size="5183988"
  4198. />
  4199. <package
  4200. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4201. size="5183988"
  4202. />
  4203. <package
  4204. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4205. size="5183988"
  4206. />
  4207. <package
  4208. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4209. size="5183988"
  4210. />
  4211. <package
  4212. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4213. size="5183988"
  4214. />
  4215. <package
  4216. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4217. size="5183988"
  4218. />
  4219. <package
  4220. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4221. size="5183988"
  4222. />
  4223. <package
  4224. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4225. size="5183988"
  4226. />
  4227. <package
  4228. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4229. size="5183988"
  4230. />
  4231. <package
  4232. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4233. size="5183988"
  4234. />
  4235. </otaPackages>
  4236. </productMenu>
  4237. <productMenu id="meshIntercom"
  4238. type="30" >
  4239. </productMenu>
  4240. <productMenu id="meshIntercom+"
  4241. type="3"
  4242. url="2" >
  4243. </productMenu>
  4244. <productMenu id="waveIntercom"
  4245. type="1" >
  4246. </productMenu>
  4247. <productMenu id="fmradio"
  4248. type="0" >
  4249. </productMenu>
  4250. <productMenu id="phone"
  4251. type="1" >
  4252. </productMenu>
  4253. <productMenu id="music"
  4254. type="1" >
  4255. </productMenu>
  4256. <productMenu id="musicSharing"
  4257. type="0" >
  4258. </productMenu>
  4259. <productMenu id="deviceSetting"
  4260. type="1"
  4261. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4262. </productMenu>
  4263. <productMenu id="quickGuide"
  4264. type="0"
  4265. url=""
  4266. size="1.12MB" >
  4267. </productMenu>
  4268. <productMenu id="userGuide"
  4269. type="1"
  4270. url=""
  4271. size="2.0MB" >
  4272. </productMenu>
  4273. <productMenu id="videoGuide"
  4274. type="0"
  4275. url=""
  4276. size="3.41MB" >
  4277. </productMenu>
  4278. <productMenu id="connectGuide"
  4279. type="0"
  4280. url=""
  4281. size="1.12MB" >
  4282. </productMenu>
  4283. <productMenu id="volume"
  4284. type="16" >
  4285. </productMenu>
  4286. <productMenu id="battery"
  4287. type="1" >
  4288. </productMenu>
  4289. <productID id="6A18"
  4290. />
  4291. <productGroupable type="0"
  4292. />
  4293. </product>
  4294. <product id="SPIDERXSlim"
  4295. name="SPIDER X Slim"
  4296. series="SPIDER"
  4297. latestVersion="1.0"
  4298. latestVersionVoicePrompt="1.7"
  4299. show = "1" >
  4300. <productMenu id="protocol"
  4301. type="2" >
  4302. </productMenu>
  4303. <productMenu id="ota"
  4304. type="2" >
  4305. <otaLanguages>
  4306. <otaLanguage
  4307. id="0"
  4308. name="English"
  4309. package="0"
  4310. />
  4311. <otaLanguage
  4312. id="0"
  4313. name="French"
  4314. package="1"
  4315. />
  4316. <otaLanguage
  4317. id="0"
  4318. name="Spanish"
  4319. package="2"
  4320. />
  4321. <otaLanguage
  4322. id="0"
  4323. name="Italian"
  4324. package="3"
  4325. />
  4326. <otaLanguage
  4327. id="0"
  4328. name="German"
  4329. package="4"
  4330. />
  4331. <otaLanguage
  4332. id="0"
  4333. name="Dutch"
  4334. package="5"
  4335. />
  4336. <otaLanguage
  4337. id="0"
  4338. name="Russian"
  4339. package="6"
  4340. />
  4341. <otaLanguage
  4342. id="0"
  4343. name="Chinese"
  4344. package="7"
  4345. />
  4346. <otaLanguage
  4347. id="0"
  4348. name="Korean"
  4349. package="8"
  4350. />
  4351. <otaLanguage
  4352. id="0"
  4353. name="Japanese"
  4354. package="9"
  4355. />
  4356. <otaLanguage
  4357. id="0"
  4358. name="Finnish"
  4359. package="10"
  4360. />
  4361. <otaLanguage
  4362. id="0"
  4363. name="Polish"
  4364. package="11"
  4365. />
  4366. </otaLanguages>
  4367. <otaPackages>
  4368. <package
  4369. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5.img"
  4370. size="5183988"
  4371. />
  4372. <package
  4373. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fr-FR.img"
  4374. size="5183988"
  4375. />
  4376. <package
  4377. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-es-ES.img"
  4378. size="5183988"
  4379. />
  4380. <package
  4381. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-it-IT.img"
  4382. size="5183988"
  4383. />
  4384. <package
  4385. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-de-DE.img"
  4386. size="5183988"
  4387. />
  4388. <package
  4389. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-nl-NL.img"
  4390. size="5183988"
  4391. />
  4392. <package
  4393. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ru-RU.img"
  4394. size="5183988"
  4395. />
  4396. <package
  4397. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-cmn-CN.img"
  4398. size="5183988"
  4399. />
  4400. <package
  4401. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ko-KR.img"
  4402. size="5183988"
  4403. />
  4404. <package
  4405. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ja-JP.img"
  4406. size="5183988"
  4407. />
  4408. <package
  4409. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fi-FI.img"
  4410. size="5183988"
  4411. />
  4412. <package
  4413. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-pl-PL.img"
  4414. size="5183988"
  4415. />
  4416. </otaPackages>
  4417. </productMenu>
  4418. <productMenu id="meshIntercom"
  4419. type="30" >
  4420. </productMenu>
  4421. <productMenu id="meshIntercom+"
  4422. type="3"
  4423. url="2" >
  4424. </productMenu>
  4425. <productMenu id="waveIntercom"
  4426. type="1" >
  4427. </productMenu>
  4428. <productMenu id="fmradio"
  4429. type="1"
  4430. url="1" >
  4431. </productMenu>
  4432. <productMenu id="phone"
  4433. type="1" >
  4434. </productMenu>
  4435. <productMenu id="music"
  4436. type="1" >
  4437. </productMenu>
  4438. <productMenu id="musicSharing"
  4439. type="0" >
  4440. </productMenu>
  4441. <productMenu id="deviceSetting"
  4442. type="1"
  4443. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4444. </productMenu>
  4445. <productMenu id="quickGuide"
  4446. type="0"
  4447. url=""
  4448. size="1.12MB" >
  4449. </productMenu>
  4450. <productMenu id="userGuide"
  4451. type="1"
  4452. url=""
  4453. size="2.0MB" >
  4454. </productMenu>
  4455. <productMenu id="videoGuide"
  4456. type="0"
  4457. url=""
  4458. size="3.41MB" >
  4459. </productMenu>
  4460. <productMenu id="volume"
  4461. type="16" >
  4462. </productMenu>
  4463. <productMenu id="volume+"
  4464. type="2"
  4465. url="0x6004" >
  4466. </productMenu>
  4467. <productMenu id="appearance"
  4468. type="1"
  4469. url="2|white,silver,chrome,black" >
  4470. </productMenu>
  4471. <productMenu id="battery"
  4472. type="1" >
  4473. </productMenu>
  4474. <productID id="6A07"
  4475. />
  4476. <productGroupable type="0"
  4477. />
  4478. </product>
  4479. <product id="XFITM"
  4480. name="X-FIT M"
  4481. series="SPIDER"
  4482. latestVersion="0.1.11"
  4483. latestVersionVoicePrompt="1.1"
  4484. show = "-1" >
  4485. <productMenu id="protocol"
  4486. type="2" >
  4487. </productMenu>
  4488. <productMenu id="ota"
  4489. type="0" >
  4490. <otaLanguages>
  4491. <otaLanguage
  4492. id="0"
  4493. name="English"
  4494. package="0"
  4495. />
  4496. <otaLanguage
  4497. id="0"
  4498. name="French"
  4499. package="1"
  4500. />
  4501. <otaLanguage
  4502. id="0"
  4503. name="Spanish"
  4504. package="2"
  4505. />
  4506. <otaLanguage
  4507. id="0"
  4508. name="Italian"
  4509. package="3"
  4510. />
  4511. <otaLanguage
  4512. id="0"
  4513. name="German"
  4514. package="4"
  4515. />
  4516. <otaLanguage
  4517. id="0"
  4518. name="Dutch"
  4519. package="5"
  4520. />
  4521. <otaLanguage
  4522. id="0"
  4523. name="Russian"
  4524. package="6"
  4525. />
  4526. <otaLanguage
  4527. id="0"
  4528. name="Chinese"
  4529. package="7"
  4530. />
  4531. <otaLanguage
  4532. id="0"
  4533. name="Korean"
  4534. package="8"
  4535. />
  4536. <otaLanguage
  4537. id="0"
  4538. name="Japanese"
  4539. package="9"
  4540. />
  4541. <otaLanguage
  4542. id="0"
  4543. name="Finnish"
  4544. package="10"
  4545. />
  4546. <otaLanguage
  4547. id="0"
  4548. name="Polish"
  4549. package="11"
  4550. />
  4551. </otaLanguages>
  4552. <otaPackages>
  4553. <package
  4554. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4555. size="5183988"
  4556. />
  4557. <package
  4558. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4559. size="5183988"
  4560. />
  4561. <package
  4562. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4563. size="5183988"
  4564. />
  4565. <package
  4566. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4567. size="5183988"
  4568. />
  4569. <package
  4570. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4571. size="5183988"
  4572. />
  4573. <package
  4574. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4575. size="5183988"
  4576. />
  4577. <package
  4578. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4579. size="5183988"
  4580. />
  4581. <package
  4582. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4583. size="5183988"
  4584. />
  4585. <package
  4586. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4587. size="5183988"
  4588. />
  4589. <package
  4590. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4591. size="5183988"
  4592. />
  4593. <package
  4594. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4595. size="5183988"
  4596. />
  4597. <package
  4598. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4599. size="5183988"
  4600. />
  4601. </otaPackages>
  4602. </productMenu>
  4603. <productMenu id="meshIntercom"
  4604. type="30" >
  4605. </productMenu>
  4606. <productMenu id="meshIntercom+"
  4607. type="3"
  4608. url="2" >
  4609. </productMenu>
  4610. <productMenu id="waveIntercom"
  4611. type="1" >
  4612. </productMenu>
  4613. <productMenu id="fmradio"
  4614. type="1"
  4615. url="1" >
  4616. </productMenu>
  4617. <productMenu id="phone"
  4618. type="1" >
  4619. </productMenu>
  4620. <productMenu id="music"
  4621. type="1" >
  4622. </productMenu>
  4623. <productMenu id="musicSharing"
  4624. type="0" >
  4625. </productMenu>
  4626. <productMenu id="deviceSetting"
  4627. type="1"
  4628. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4629. </productMenu>
  4630. <productMenu id="quickGuide"
  4631. type="0"
  4632. url=""
  4633. size="1.12MB" >
  4634. </productMenu>
  4635. <productMenu id="userGuide"
  4636. type="1"
  4637. url=""
  4638. size="2.0MB" >
  4639. </productMenu>
  4640. <productMenu id="videoGuide"
  4641. type="0"
  4642. url=""
  4643. size="3.41MB" >
  4644. </productMenu>
  4645. <productMenu id="volume"
  4646. type="16" >
  4647. </productMenu>
  4648. <productMenu id="volume+"
  4649. type="2"
  4650. url="0x6004" >
  4651. </productMenu>
  4652. <productMenu id="battery"
  4653. type="1" >
  4654. </productMenu>
  4655. <productID id="6A17"
  4656. />
  4657. <productGroupable type="0"
  4658. />
  4659. </product>
  4660. <product id="VORTEXMESH"
  4661. name="VORTEX MESH"
  4662. series="Helmet"
  4663. latestVersion="0.1.11"
  4664. latestVersionVoicePrompt="1.1"
  4665. show = "-1" >
  4666. <productMenu id="protocol"
  4667. type="2" >
  4668. </productMenu>
  4669. <productMenu id="ota"
  4670. type="0" >
  4671. <otaLanguages>
  4672. <otaLanguage
  4673. id="0"
  4674. name="English"
  4675. package="0"
  4676. />
  4677. <otaLanguage
  4678. id="0"
  4679. name="French"
  4680. package="1"
  4681. />
  4682. <otaLanguage
  4683. id="0"
  4684. name="Spanish"
  4685. package="2"
  4686. />
  4687. <otaLanguage
  4688. id="0"
  4689. name="Italian"
  4690. package="3"
  4691. />
  4692. <otaLanguage
  4693. id="0"
  4694. name="German"
  4695. package="4"
  4696. />
  4697. <otaLanguage
  4698. id="0"
  4699. name="Dutch"
  4700. package="5"
  4701. />
  4702. <otaLanguage
  4703. id="0"
  4704. name="Russian"
  4705. package="6"
  4706. />
  4707. <otaLanguage
  4708. id="0"
  4709. name="Chinese"
  4710. package="7"
  4711. />
  4712. <otaLanguage
  4713. id="0"
  4714. name="Korean"
  4715. package="8"
  4716. />
  4717. <otaLanguage
  4718. id="0"
  4719. name="Japanese"
  4720. package="9"
  4721. />
  4722. <otaLanguage
  4723. id="0"
  4724. name="Finnish"
  4725. package="10"
  4726. />
  4727. <otaLanguage
  4728. id="0"
  4729. name="Polish"
  4730. package="11"
  4731. />
  4732. </otaLanguages>
  4733. <otaPackages>
  4734. <package
  4735. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4736. size="5183988"
  4737. />
  4738. <package
  4739. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4740. size="5183988"
  4741. />
  4742. <package
  4743. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4744. size="5183988"
  4745. />
  4746. <package
  4747. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4748. size="5183988"
  4749. />
  4750. <package
  4751. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4752. size="5183988"
  4753. />
  4754. <package
  4755. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4756. size="5183988"
  4757. />
  4758. <package
  4759. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4760. size="5183988"
  4761. />
  4762. <package
  4763. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4764. size="5183988"
  4765. />
  4766. <package
  4767. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4768. size="5183988"
  4769. />
  4770. <package
  4771. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4772. size="5183988"
  4773. />
  4774. <package
  4775. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4776. size="5183988"
  4777. />
  4778. <package
  4779. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4780. size="5183988"
  4781. />
  4782. </otaPackages>
  4783. </productMenu>
  4784. <productMenu id="wa"
  4785. type="0" >
  4786. </productMenu>
  4787. <productMenu id="led"
  4788. type="5" >
  4789. </productMenu>
  4790. <productMenu id="led+"
  4791. type="2"
  4792. url="1" >
  4793. </productMenu>
  4794. <productMenu id="meshIntercom"
  4795. type="30" >
  4796. </productMenu>
  4797. <productMenu id="meshIntercom+"
  4798. type="3"
  4799. url="2" >
  4800. </productMenu>
  4801. <productMenu id="waveIntercom"
  4802. type="1" >
  4803. </productMenu>
  4804. <productMenu id="fmradio"
  4805. type="0" >
  4806. </productMenu>
  4807. <productMenu id="phone"
  4808. type="1" >
  4809. </productMenu>
  4810. <productMenu id="music"
  4811. type="1" >
  4812. </productMenu>
  4813. <productMenu id="musicSharing"
  4814. type="0" >
  4815. </productMenu>
  4816. <productMenu id="deviceSetting"
  4817. type="1"
  4818. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4819. </productMenu>
  4820. <productMenu id="quickGuide"
  4821. type="0"
  4822. url=""
  4823. size="1.12MB" >
  4824. </productMenu>
  4825. <productMenu id="userGuide"
  4826. type="1"
  4827. url=""
  4828. size="2.0MB" >
  4829. </productMenu>
  4830. <productMenu id="videoGuide"
  4831. type="0"
  4832. url=""
  4833. size="3.41MB" >
  4834. </productMenu>
  4835. <productMenu id="volume"
  4836. type="16" >
  4837. </productMenu>
  4838. <productMenu id="battery"
  4839. type="1" >
  4840. </productMenu>
  4841. <productID id="6A12"
  4842. />
  4843. <productGroupable type="0"
  4844. />
  4845. </product>
  4846. <product id="MeshOn"
  4847. name="Mesh ON"
  4848. series="60"
  4849. latestVersion="1.0.1"
  4850. latestVersionVoicePrompt="0.7"
  4851. show = "-1" >
  4852. <productMenu id="protocol"
  4853. type="2" >
  4854. </productMenu>
  4855. <productMenu id="ota"
  4856. type="2" >
  4857. <otaPackages>
  4858. <package
  4859. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4860. size="2945812"
  4861. />
  4862. </otaPackages>
  4863. </productMenu>
  4864. <productMenu id="meshIntercom+"
  4865. type="3"
  4866. url="4" >
  4867. </productMenu>
  4868. <productMenu id="waveIntercom"
  4869. type="0" >
  4870. </productMenu>
  4871. <productMenu id="phone"
  4872. type="0" >
  4873. </productMenu>
  4874. <productMenu id="music"
  4875. type="0" >
  4876. </productMenu>
  4877. <productMenu id="musicSharing"
  4878. type="0" >
  4879. </productMenu>
  4880. <productMenu id="deviceSetting"
  4881. type="1"
  4882. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4883. </productMenu>
  4884. <productMenu id="userGuide"
  4885. type="1"
  4886. url=""
  4887. size="2.0MB" >
  4888. </productMenu>
  4889. <productMenu id="bluetoothHeadset"
  4890. type="1"
  4891. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4892. </productMenu>
  4893. <productMenu id="volume"
  4894. type="0" >
  4895. </productMenu>
  4896. <productMenu id="battery"
  4897. type="1" >
  4898. </productMenu>
  4899. <productID id="684E"
  4900. />
  4901. <productGroupable type="0"
  4902. />
  4903. </product>
  4904. <product id="Impulse"
  4905. name="Impulse"
  4906. series="Helmet"
  4907. latestVersion="1.4.1"
  4908. show = "1" >
  4909. <productMenu id="protocol"
  4910. type="2" >
  4911. </productMenu>
  4912. <productMenu id="alexa"
  4913. type="0" >
  4914. </productMenu>
  4915. <productMenu id="ota"
  4916. type="0" >
  4917. </productMenu>
  4918. <productMenu id="wa"
  4919. type="24" >
  4920. </productMenu>
  4921. <productMenu id="manager"
  4922. type="0" >
  4923. </productMenu>
  4924. <productMenu id="sip"
  4925. type="1" >
  4926. </productMenu>
  4927. <productMenu id="led"
  4928. type="1" >
  4929. <productMenuType version="1.0.1"
  4930. type="2"
  4931. />
  4932. <productMenuType version="1.0"
  4933. type="1"
  4934. />
  4935. </productMenu>
  4936. <productMenu id="meshIntercom"
  4937. type="30" >
  4938. <productMenuType version="1.1.1"
  4939. type="20"
  4940. />
  4941. </productMenu>
  4942. <productMenu id="meshIntercom+"
  4943. type="3"
  4944. url="2" >
  4945. <productMenuType version="1.3.9"
  4946. type="2"
  4947. />
  4948. <productMenuURL version="1.1.1"
  4949. url="0"
  4950. />
  4951. </productMenu>
  4952. <productMenu id="waveIntercom"
  4953. type="1" >
  4954. <productMenuType version="1.3.9"
  4955. type="0"
  4956. />
  4957. </productMenu>
  4958. <productMenu id="bluetoothIntercom"
  4959. type="1" >
  4960. </productMenu>
  4961. <productMenu id="phone"
  4962. type="1" >
  4963. </productMenu>
  4964. <productMenu id="music"
  4965. type="1" >
  4966. </productMenu>
  4967. <productMenu id="fmradio"
  4968. type="1" >
  4969. </productMenu>
  4970. <productMenu id="deviceSetting"
  4971. type="1"
  4972. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4973. <productMenuURL version="1.3.9"
  4974. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4975. />
  4976. <productMenuURL version="1.1.1"
  4977. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4978. />
  4979. <productMenuURL version="1.0.4"
  4980. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4981. />
  4982. </productMenu>
  4983. <productMenu id="quickGuide"
  4984. type="0"
  4985. url=""
  4986. size="344KB" >
  4987. </productMenu>
  4988. <productMenu id="userGuide"
  4989. type="1"
  4990. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  4991. size="3.41MB" >
  4992. </productMenu>
  4993. <productMenu id="connectGuide"
  4994. type="1"
  4995. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4996. size="1.12MB" >
  4997. </productMenu>
  4998. <productMenu id="volume"
  4999. type="11" >
  5000. </productMenu>
  5001. <productMenu id="battery"
  5002. type="1" >
  5003. </productMenu>
  5004. <productID id="3148"
  5005. />
  5006. <productGroupable type="0"
  5007. />
  5008. </product>
  5009. <product id="Impulse"
  5010. name="Impulse"
  5011. series="Helmet"
  5012. latestVersion="2.0"
  5013. show = "-1" >
  5014. <productMenu id="protocol"
  5015. type="2" >
  5016. </productMenu>
  5017. <productMenu id="alexa"
  5018. type="0" >
  5019. </productMenu>
  5020. <productMenu id="ota"
  5021. type="0" >
  5022. </productMenu>
  5023. <productMenu id="wa"
  5024. type="8" >
  5025. </productMenu>
  5026. <productMenu id="manager"
  5027. type="0" >
  5028. </productMenu>
  5029. <productMenu id="sip"
  5030. type="1" >
  5031. </productMenu>
  5032. <productMenu id="led"
  5033. type="3" >
  5034. </productMenu>
  5035. <productMenu id="meshIntercom"
  5036. type="20" >
  5037. </productMenu>
  5038. <productMenu id="bluetoothIntercom"
  5039. type="1" >
  5040. </productMenu>
  5041. <productMenu id="phone"
  5042. type="1" >
  5043. </productMenu>
  5044. <productMenu id="music"
  5045. type="1" >
  5046. </productMenu>
  5047. <productMenu id="fmradio"
  5048. type="1" >
  5049. </productMenu>
  5050. <productMenu id="deviceSetting"
  5051. type="1"
  5052. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5053. </productMenu>
  5054. <productMenu id="quickGuide"
  5055. type="1"
  5056. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5057. size="344KB" >
  5058. </productMenu>
  5059. <productMenu id="userGuide"
  5060. type="1"
  5061. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5062. size="3.41MB" >
  5063. </productMenu>
  5064. <productMenu id="volume"
  5065. type="11" >
  5066. </productMenu>
  5067. <productMenu id="battery"
  5068. type="1" >
  5069. </productMenu>
  5070. <productID id="3221"
  5071. />
  5072. <productGroupable type="0"
  5073. />
  5074. </product>
  5075. <product id="Stryker"
  5076. name="Stryker"
  5077. series="Helmet"
  5078. latestVersion="1.4.1"
  5079. show = "1" >
  5080. <productMenu id="protocol"
  5081. type="2" >
  5082. </productMenu>
  5083. <productMenu id="alexa"
  5084. type="0" >
  5085. </productMenu>
  5086. <productMenu id="ota"
  5087. type="0" >
  5088. </productMenu>
  5089. <productMenu id="wa"
  5090. type="40" >
  5091. </productMenu>
  5092. <productMenu id="manager"
  5093. type="0" >
  5094. </productMenu>
  5095. <productMenu id="sip"
  5096. type="1" >
  5097. </productMenu>
  5098. <productMenu id="led"
  5099. type="1" >
  5100. <productMenuType version="1.0.1"
  5101. type="2"
  5102. />
  5103. <productMenuType version="1.0"
  5104. type="1"
  5105. />
  5106. </productMenu>
  5107. <productMenu id="meshIntercom"
  5108. type="30" >
  5109. <productMenuType version="1.1.1"
  5110. type="20"
  5111. />
  5112. </productMenu>
  5113. <productMenu id="meshIntercom+"
  5114. type="3"
  5115. url="2" >
  5116. <productMenuType version="1.3.9"
  5117. type="2"
  5118. />
  5119. <productMenuURL version="1.1.1"
  5120. url="0"
  5121. />
  5122. </productMenu>
  5123. <productMenu id="waveIntercom"
  5124. type="1" >
  5125. <productMenuType version="1.2.9"
  5126. type="0"
  5127. />
  5128. </productMenu>
  5129. <productMenu id="bluetoothIntercom"
  5130. type="1" >
  5131. </productMenu>
  5132. <productMenu id="phone"
  5133. type="1" >
  5134. </productMenu>
  5135. <productMenu id="music"
  5136. type="1" >
  5137. </productMenu>
  5138. <productMenu id="fmradio"
  5139. type="1" >
  5140. </productMenu>
  5141. <productMenu id="deviceSetting"
  5142. type="1"
  5143. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5144. <productMenuURL version="1.3.9"
  5145. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5146. />
  5147. <productMenuURL version="1.1.1"
  5148. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5149. />
  5150. <productMenuURL version="1.0.4"
  5151. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5152. />
  5153. </productMenu>
  5154. <productMenu id="quickGuide"
  5155. type="0"
  5156. url=""
  5157. size="344KB" >
  5158. </productMenu>
  5159. <productMenu id="userGuide"
  5160. type="1"
  5161. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5162. size="3.41MB" >
  5163. </productMenu>
  5164. <productMenu id="connectGuide"
  5165. type="1"
  5166. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5167. size="1.12MB" >
  5168. </productMenu>
  5169. <productMenu id="volume"
  5170. type="11" >
  5171. </productMenu>
  5172. <productMenu id="battery"
  5173. type="1" >
  5174. </productMenu>
  5175. <productID id="3154"
  5176. />
  5177. <productGroupable type="0"
  5178. />
  5179. </product>
  5180. <product id="SRL3Plus"
  5181. name="SRL3 Plus"
  5182. series="60"
  5183. latestVersion="0.9.5"
  5184. latestVersionMesh="0.19"
  5185. latestVersionVoicePrompt="1.2"
  5186. show = "-1" >
  5187. <productMenu id="protocol"
  5188. type="2" >
  5189. </productMenu>
  5190. <productMenu id="ota"
  5191. type="2" >
  5192. <otaLanguages>
  5193. <otaLanguage
  5194. id="0"
  5195. name="English"
  5196. package="0"
  5197. />
  5198. <otaLanguage
  5199. id="0"
  5200. name="French"
  5201. package="1"
  5202. />
  5203. <otaLanguage
  5204. id="0"
  5205. name="Spanish"
  5206. package="2"
  5207. />
  5208. <otaLanguage
  5209. id="0"
  5210. name="Italian"
  5211. package="3"
  5212. />
  5213. <otaLanguage
  5214. id="0"
  5215. name="German"
  5216. package="4"
  5217. />
  5218. <otaLanguage
  5219. id="0"
  5220. name="Dutch"
  5221. package="5"
  5222. />
  5223. <otaLanguage
  5224. id="0"
  5225. name="Russian"
  5226. package="6"
  5227. />
  5228. <otaLanguage
  5229. id="0"
  5230. name="Chinese"
  5231. package="7"
  5232. />
  5233. <otaLanguage
  5234. id="0"
  5235. name="Korean"
  5236. package="8"
  5237. />
  5238. <otaLanguage
  5239. id="0"
  5240. name="Japanese"
  5241. package="9"
  5242. />
  5243. <otaLanguage
  5244. id="0"
  5245. name="Finnish"
  5246. package="10"
  5247. />
  5248. </otaLanguages>
  5249. <otaPackages>
  5250. <package
  5251. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0.img"
  5252. size="5183988"
  5253. />
  5254. <package
  5255. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fr-FR.img"
  5256. size="5183988"
  5257. />
  5258. <package
  5259. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-es-ES.img"
  5260. size="5183988"
  5261. />
  5262. <package
  5263. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-it-IT.img"
  5264. size="5183988"
  5265. />
  5266. <package
  5267. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-de-DE.img"
  5268. size="5183988"
  5269. />
  5270. <package
  5271. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-nl-NL.img"
  5272. size="5183988"
  5273. />
  5274. <package
  5275. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ru-RU.img"
  5276. size="5183988"
  5277. />
  5278. <package
  5279. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-cmn-CN.img"
  5280. size="5183988"
  5281. />
  5282. <package
  5283. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ko-KR.img"
  5284. size="5183988"
  5285. />
  5286. <package
  5287. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ja-JP.img"
  5288. size="5183988"
  5289. />
  5290. <package
  5291. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fi-FI.img"
  5292. size="5183988"
  5293. />
  5294. </otaPackages>
  5295. </productMenu>
  5296. <productMenu id="sip"
  5297. type="1" >
  5298. </productMenu>
  5299. <productMenu id="illusion"
  5300. type="1" >
  5301. </productMenu>
  5302. <productMenu id="meshIntercom+"
  5303. type="3"
  5304. url="2" >
  5305. </productMenu>
  5306. <productMenu id="waveIntercom"
  5307. type="1" >
  5308. </productMenu>
  5309. <productMenu id="bluetoothIntercom"
  5310. type="1"
  5311. url="2" >
  5312. </productMenu>
  5313. <productMenu id="bluetoothIntercomGrouping"
  5314. type="0" >
  5315. </productMenu>
  5316. <productMenu id="fmradio"
  5317. type="1"
  5318. url="1" >
  5319. </productMenu>
  5320. <productMenu id="phone"
  5321. type="1" >
  5322. </productMenu>
  5323. <productMenu id="music"
  5324. type="1" >
  5325. </productMenu>
  5326. <productMenu id="musicSharing"
  5327. type="0" >
  5328. </productMenu>
  5329. <productMenu id="deviceSetting"
  5330. type="1"
  5331. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  5332. </productMenu>
  5333. <productMenu id="quickGuide"
  5334. type="0"
  5335. url=""
  5336. size="1.12MB" >
  5337. </productMenu>
  5338. <productMenu id="userGuide"
  5339. type="0"
  5340. url=""
  5341. size="2.0MB" >
  5342. </productMenu>
  5343. <productMenu id="videoGuide"
  5344. type="0"
  5345. url=""
  5346. size="3.41MB" >
  5347. </productMenu>
  5348. <productMenu id="volume"
  5349. type="16" >
  5350. </productMenu>
  5351. <productMenu id="soundMode"
  5352. type="1" >
  5353. </productMenu>
  5354. <productMenu id="battery"
  5355. type="1" >
  5356. </productMenu>
  5357. <productID id="6A08"
  5358. />
  5359. <productGroupable type="0"
  5360. />
  5361. </product>
  5362. <product id="SRL3"
  5363. name="SRL3"
  5364. series="SRL"
  5365. latestVersion="1.5"
  5366. show = "1" >
  5367. <productMenu id="protocol"
  5368. type="2" >
  5369. </productMenu>
  5370. <productMenu id="alexa"
  5371. type="0" >
  5372. </productMenu>
  5373. <productMenu id="ota"
  5374. type="0" >
  5375. </productMenu>
  5376. <productMenu id="wa"
  5377. type="1" >
  5378. </productMenu>
  5379. <productMenu id="sip"
  5380. type="1" >
  5381. </productMenu>
  5382. <productMenu id="meshIntercom"
  5383. type="30" >
  5384. </productMenu>
  5385. <productMenu id="meshIntercom+"
  5386. type="3"
  5387. url="2" >
  5388. <productMenuType version="1.3.9"
  5389. type="2"
  5390. />
  5391. </productMenu>
  5392. <productMenu id="waveIntercom"
  5393. type="1" >
  5394. <productMenuType version="1.4.9"
  5395. type="0"
  5396. />
  5397. </productMenu>
  5398. <productMenu id="bluetoothIntercom"
  5399. type="1" >
  5400. </productMenu>
  5401. <productMenu id="phone"
  5402. type="1" >
  5403. </productMenu>
  5404. <productMenu id="music"
  5405. type="1" >
  5406. </productMenu>
  5407. <productMenu id="fmradio"
  5408. type="1" >
  5409. </productMenu>
  5410. <productMenu id="deviceSetting"
  5411. type="1"
  5412. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5413. <productMenuURL version="1.3"
  5414. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5415. />
  5416. </productMenu>
  5417. <productMenu id="quickGuide"
  5418. type="0"
  5419. url=""
  5420. size="344KB" >
  5421. </productMenu>
  5422. <productMenu id="userGuide"
  5423. type="1"
  5424. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5425. size="3.41MB" >
  5426. </productMenu>
  5427. <productMenu id="connectGuide"
  5428. type="1"
  5429. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5430. size="1.12MB" >
  5431. </productMenu>
  5432. <productMenu id="volume"
  5433. type="11" >
  5434. </productMenu>
  5435. <productMenu id="battery"
  5436. type="1" >
  5437. </productMenu>
  5438. <productID id="3219"
  5439. />
  5440. <productGroupable type="0"
  5441. />
  5442. </product>
  5443. <product id="SRL_Mesh"
  5444. name="SRL-Mesh"
  5445. series="SRL"
  5446. latestVersion="1.7.1"
  5447. show = "1" >
  5448. <productMenu id="protocol"
  5449. type="2" >
  5450. </productMenu>
  5451. <productMenu id="alexa"
  5452. type="0" >
  5453. </productMenu>
  5454. <productMenu id="ota"
  5455. type="0" >
  5456. </productMenu>
  5457. <productMenu id="wa"
  5458. type="1" >
  5459. </productMenu>
  5460. <productMenu id="sip"
  5461. type="1" >
  5462. </productMenu>
  5463. <productMenu id="meshIntercom"
  5464. type="30" >
  5465. <productMenuType version="1.1.1"
  5466. type="20"
  5467. />
  5468. </productMenu>
  5469. <productMenu id="meshIntercom+"
  5470. type="3"
  5471. url="2" >
  5472. <productMenuType version="1.5.9"
  5473. type="2"
  5474. />
  5475. <productMenuURL version="1.1.1"
  5476. url="0"
  5477. />
  5478. </productMenu>
  5479. <productMenu id="waveIntercom"
  5480. type="1" >
  5481. <productMenuType version="1.6.9"
  5482. type="0"
  5483. />
  5484. </productMenu>
  5485. <productMenu id="bluetoothIntercom"
  5486. type="1" >
  5487. </productMenu>
  5488. <productMenu id="phone"
  5489. type="1" >
  5490. </productMenu>
  5491. <productMenu id="music"
  5492. type="1" >
  5493. </productMenu>
  5494. <productMenu id="fmradio"
  5495. type="1" >
  5496. </productMenu>
  5497. <productMenu id="deviceSetting"
  5498. type="1"
  5499. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5500. <productMenuURL version="1.5"
  5501. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5502. />
  5503. <productMenuURL version="1.1.1"
  5504. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5505. />
  5506. <productMenuURL version="1.0.3"
  5507. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5508. />
  5509. </productMenu>
  5510. <productMenu id="quickGuide"
  5511. type="0"
  5512. url=""
  5513. size="344KB" >
  5514. </productMenu>
  5515. <productMenu id="userGuide"
  5516. type="1"
  5517. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5518. size="3.41MB" >
  5519. </productMenu>
  5520. <productMenu id="connectGuide"
  5521. type="1"
  5522. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5523. size="1.12MB" >
  5524. </productMenu>
  5525. <productMenu id="volume"
  5526. type="11" >
  5527. </productMenu>
  5528. <productMenu id="battery"
  5529. type="1" >
  5530. </productMenu>
  5531. <productID id="3216"
  5532. />
  5533. <productGroupable type="0"
  5534. />
  5535. </product>
  5536. <product id="SRL_EXT"
  5537. name="SRL-EXT"
  5538. series="SRL"
  5539. latestVersion="1.7.1"
  5540. show = "1" >
  5541. <productMenu id="protocol"
  5542. type="2" >
  5543. </productMenu>
  5544. <productMenu id="alexa"
  5545. type="0" >
  5546. </productMenu>
  5547. <productMenu id="ota"
  5548. type="0" >
  5549. </productMenu>
  5550. <productMenu id="wa"
  5551. type="0" >
  5552. </productMenu>
  5553. <productMenu id="sip"
  5554. type="1" >
  5555. </productMenu>
  5556. <productMenu id="meshIntercom"
  5557. type="30" >
  5558. <productMenuType version="1.1.1"
  5559. type="20"
  5560. />
  5561. </productMenu>
  5562. <productMenu id="meshIntercom+"
  5563. type="3"
  5564. url="2" >
  5565. <productMenuType version="1.5.9"
  5566. type="2"
  5567. />
  5568. <productMenuURL version="1.1.1"
  5569. url="0"
  5570. />
  5571. </productMenu>
  5572. <productMenu id="waveIntercom"
  5573. type="1" >
  5574. <productMenuType version="1.6.9"
  5575. type="0"
  5576. />
  5577. </productMenu>
  5578. <productMenu id="bluetoothIntercom"
  5579. type="1" >
  5580. </productMenu>
  5581. <productMenu id="phone"
  5582. type="1" >
  5583. </productMenu>
  5584. <productMenu id="music"
  5585. type="1" >
  5586. </productMenu>
  5587. <productMenu id="fmradio"
  5588. type="1" >
  5589. </productMenu>
  5590. <productMenu id="deviceSetting"
  5591. type="1"
  5592. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5593. <productMenuURL version="1.5"
  5594. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5595. />
  5596. <productMenuURL version="1.1.1"
  5597. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5598. />
  5599. <productMenuURL version="1.0.3"
  5600. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5601. />
  5602. </productMenu>
  5603. <productMenu id="quickGuide"
  5604. type="0"
  5605. url=""
  5606. size="344KB" >
  5607. </productMenu>
  5608. <productMenu id="userGuide"
  5609. type="1"
  5610. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5611. size="3.41MB" >
  5612. </productMenu>
  5613. <productMenu id="connectGuide"
  5614. type="1"
  5615. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5616. size="1.12MB" >
  5617. </productMenu>
  5618. <productMenu id="volume"
  5619. type="11" >
  5620. </productMenu>
  5621. <productMenu id="battery"
  5622. type="1" >
  5623. </productMenu>
  5624. <productID id="3212"
  5625. />
  5626. <productGroupable type="0"
  5627. />
  5628. </product>
  5629. <product id="SRL2"
  5630. name="SRL2"
  5631. series="SRL"
  5632. latestVersion="1.0.9"
  5633. show = "1" >
  5634. <productMenu id="protocol"
  5635. type="0">
  5636. </productMenu>
  5637. <productMenu id="sip"
  5638. type="1" >
  5639. </productMenu>
  5640. <productMenu id="bluetoothIntercom"
  5641. type="1" >
  5642. </productMenu>
  5643. <productMenu id="intercomSetting"
  5644. type="1" >
  5645. </productMenu>
  5646. <productMenu id="phone"
  5647. type="2" >
  5648. </productMenu>
  5649. <productMenu id="fmradio"
  5650. type="3" >
  5651. </productMenu>
  5652. <productMenu id="deviceSetting"
  5653. type="1"
  5654. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5655. </productMenu>
  5656. <productMenu id="quickGuide"
  5657. type="1"
  5658. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5659. size="846KB" >
  5660. </productMenu>
  5661. <productMenu id="userGuide"
  5662. type="1"
  5663. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5664. size="1.18MB" >
  5665. </productMenu>
  5666. <productMenu id="connectGuide"
  5667. type="1"
  5668. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5669. size="1.12MB" >
  5670. </productMenu>
  5671. <productID id="4530"
  5672. />
  5673. <productGroupable type="1"
  5674. />
  5675. </product>
  5676. <product id="Neotec2"
  5677. name="SRL Neotec2"
  5678. series="SRL"
  5679. latestVersion="1.1.5"
  5680. show = "1" >
  5681. <productMenu id="protocol"
  5682. type="0">
  5683. </productMenu>
  5684. <productMenu id="sip"
  5685. type="1" >
  5686. </productMenu>
  5687. <productMenu id="bluetoothIntercom"
  5688. type="1" >
  5689. </productMenu>
  5690. <productMenu id="intercomSetting"
  5691. type="1" >
  5692. </productMenu>
  5693. <productMenu id="phone"
  5694. type="2" >
  5695. </productMenu>
  5696. <productMenu id="fmradio"
  5697. type="3" >
  5698. </productMenu>
  5699. <productMenu id="deviceSetting"
  5700. type="1"
  5701. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5702. </productMenu>
  5703. <productMenu id="quickGuide"
  5704. type="0"
  5705. url=""
  5706. size="796KB" >
  5707. </productMenu>
  5708. <productMenu id="userGuide"
  5709. type="1"
  5710. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5711. size="1.90MB" >
  5712. </productMenu>
  5713. <productMenu id="connectGuide"
  5714. type="1"
  5715. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5716. size="1.12MB" >
  5717. </productMenu>
  5718. <productID id="4510"
  5719. />
  5720. <productGroupable type="1"
  5721. />
  5722. </product>
  5723. <product id="SPIDERST2ANC"
  5724. name="SPIDER ST2 ANC"
  5725. series="SPIDER"
  5726. latestVersion="0.5.1"
  5727. latestVersionVoicePrompt="0.2"
  5728. latestVersionMesh="0.8"
  5729. show = "-1" >
  5730. <productMenu id="protocol"
  5731. type="2" >
  5732. </productMenu>
  5733. <productMenu id="ota"
  5734. type="0" >
  5735. <otaPackages>
  5736. <package
  5737. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5738. size="2945812"
  5739. />
  5740. </otaPackages>
  5741. </productMenu>
  5742. <productMenu id="wa"
  5743. type="0" >
  5744. </productMenu>
  5745. <productMenu id="led"
  5746. type="1" >
  5747. </productMenu>
  5748. <productMenu id="meshIntercom"
  5749. type="30" >
  5750. </productMenu>
  5751. <productMenu id="fmradio"
  5752. type="1" >
  5753. </productMenu>
  5754. <productMenu id="phone"
  5755. type="1" >
  5756. </productMenu>
  5757. <productMenu id="music"
  5758. type="1" >
  5759. </productMenu>
  5760. <productMenu id="musicSharing"
  5761. type="0" >
  5762. </productMenu>
  5763. <productMenu id="deviceSetting"
  5764. type="1"
  5765. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  5766. </productMenu>
  5767. <productMenu id="quickGuide"
  5768. type="1"
  5769. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5770. size="1.12MB" >
  5771. </productMenu>
  5772. <productMenu id="userGuide"
  5773. type="1"
  5774. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5775. size="2.0MB" >
  5776. </productMenu>
  5777. <productMenu id="videoGuide"
  5778. type="1"
  5779. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5780. size="3.41MB" >
  5781. </productMenu>
  5782. <productMenu id="volume"
  5783. type="12" >
  5784. </productMenu>
  5785. <productMenu id="battery"
  5786. type="1" >
  5787. </productMenu>
  5788. <productID id="6A00"
  5789. />
  5790. <productGroupable type="0"
  5791. />
  5792. </product>
  5793. <product id="SPIDER_ST1"
  5794. name="SPIDER ST1"
  5795. series="SPIDER"
  5796. latestVersion="2.5.3"
  5797. latestVersionVoicePrompt="1.6"
  5798. show = "1" >
  5799. <productMenu id="protocol"
  5800. type="2" >
  5801. </productMenu>
  5802. <productMenu id="alexa"
  5803. type="0" >
  5804. </productMenu>
  5805. <productMenu id="ota"
  5806. type="2" >
  5807. <productMenuType version="2.1.9"
  5808. type="0"
  5809. />
  5810. <otaPackages>
  5811. <package
  5812. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  5813. size="2945812"
  5814. />
  5815. </otaPackages>
  5816. </productMenu>
  5817. <productMenu id="wa"
  5818. type="0" >
  5819. </productMenu>
  5820. <productMenu id="meshIntercom"
  5821. type="30" >
  5822. <productMenuType version="2.1.1"
  5823. type="20"
  5824. />
  5825. </productMenu>
  5826. <productMenu id="meshIntercom+"
  5827. type="3"
  5828. url="2" >
  5829. <productMenuType version="2.2.9"
  5830. type="2"
  5831. />
  5832. <productMenuURL version="2.1.1"
  5833. url="0"
  5834. />
  5835. </productMenu>
  5836. <productMenu id="waveIntercom"
  5837. type="1" >
  5838. <productMenuType version="2.3.9"
  5839. type="0"
  5840. />
  5841. </productMenu>
  5842. <productMenu id="phone"
  5843. type="1" >
  5844. </productMenu>
  5845. <productMenu id="music"
  5846. type="1" >
  5847. </productMenu>
  5848. <productMenu id="musicSharing"
  5849. type="0" >
  5850. </productMenu>
  5851. <productMenu id="deviceSetting"
  5852. type="1"
  5853. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5854. <productMenuURL version="2.4.9"
  5855. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5856. />
  5857. <productMenuURL version="2.2.2"
  5858. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5859. />
  5860. <productMenuURL version="2.1.1"
  5861. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5862. />
  5863. </productMenu>
  5864. <productMenu id="quickGuide"
  5865. type="0"
  5866. url=""
  5867. size="1.12MB" >
  5868. </productMenu>
  5869. <productMenu id="userGuide"
  5870. type="1"
  5871. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5872. size="2.0MB" >
  5873. </productMenu>
  5874. <productMenu id="videoGuide"
  5875. type="1"
  5876. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5877. size="3.41MB" >
  5878. </productMenu>
  5879. <productMenu id="connectGuide"
  5880. type="1"
  5881. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5882. size="1.12MB" >
  5883. </productMenu>
  5884. <productMenu id="volume"
  5885. type="12" >
  5886. </productMenu>
  5887. <productMenu id="battery"
  5888. type="1" >
  5889. </productMenu>
  5890. <productID id="6800"
  5891. />
  5892. <productGroupable type="0"
  5893. />
  5894. </product>
  5895. <product id="SPIDER_ST1"
  5896. name="SPIDER ST1"
  5897. series="SPIDER"
  5898. latestVersion="1.2.2"
  5899. show = "-1" >
  5900. <productMenu id="protocol"
  5901. type="2" >
  5902. </productMenu>
  5903. <productMenu id="alexa"
  5904. type="0" >
  5905. </productMenu>
  5906. <productMenu id="ota"
  5907. type="0" >
  5908. </productMenu>
  5909. <productMenu id="wa"
  5910. type="0" >
  5911. </productMenu>
  5912. <productMenu id="meshIntercom"
  5913. type="20" >
  5914. </productMenu>
  5915. <productMenu id="phone"
  5916. type="1" >
  5917. </productMenu>
  5918. <productMenu id="music"
  5919. type="1" >
  5920. </productMenu>
  5921. <productMenu id="deviceSetting"
  5922. type="1"
  5923. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5924. </productMenu>
  5925. <productMenu id="quickGuide"
  5926. type="0"
  5927. url=""
  5928. size="1.12MB" >
  5929. </productMenu>
  5930. <productMenu id="userGuide"
  5931. type="1"
  5932. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5933. size="2.0MB" >
  5934. </productMenu>
  5935. <productMenu id="videoGuide"
  5936. type="1"
  5937. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5938. size="3.41MB" >
  5939. </productMenu>
  5940. <productMenu id="volume"
  5941. type="13" >
  5942. <productMenuType version="1.1.6"
  5943. type="14"/>
  5944. </productMenu>
  5945. <productMenu id="battery"
  5946. type="1" >
  5947. </productMenu>
  5948. <productID id="6510"
  5949. />
  5950. <productGroupable type="0"
  5951. />
  5952. </product>
  5953. <product id="SPIDER_RT1"
  5954. name="SPIDER RT1"
  5955. series="SPIDER"
  5956. latestVersion="2.5.3"
  5957. latestVersionVoicePrompt="1.6"
  5958. show = "1" >
  5959. <productMenu id="protocol"
  5960. type="2" >
  5961. </productMenu>
  5962. <productMenu id="alexa"
  5963. type="0" >
  5964. </productMenu>
  5965. <productMenu id="ota"
  5966. type="2" >
  5967. <productMenuType version="2.1.9"
  5968. type="0"
  5969. />
  5970. <otaPackages>
  5971. <package
  5972. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  5973. size="2945812"
  5974. />
  5975. </otaPackages>
  5976. </productMenu>
  5977. <productMenu id="wa"
  5978. type="0" >
  5979. </productMenu>
  5980. <productMenu id="meshIntercom"
  5981. type="30" >
  5982. <productMenuType version="2.1.1"
  5983. type="20"
  5984. />
  5985. </productMenu>
  5986. <productMenu id="meshIntercom+"
  5987. type="3"
  5988. url="2" >
  5989. <productMenuType version="2.2.9"
  5990. type="2"
  5991. />
  5992. <productMenuURL version="2.1.1"
  5993. url="0"
  5994. />
  5995. </productMenu>
  5996. <productMenu id="waveIntercom"
  5997. type="1" >
  5998. <productMenuType version="2.3.9"
  5999. type="0"
  6000. />
  6001. </productMenu>
  6002. <productMenu id="phone"
  6003. type="1" >
  6004. </productMenu>
  6005. <productMenu id="music"
  6006. type="1" >
  6007. </productMenu>
  6008. <productMenu id="musicSharing"
  6009. type="0" >
  6010. </productMenu>
  6011. <productMenu id="deviceSetting"
  6012. type="1"
  6013. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6014. <productMenuURL version="2.4.9"
  6015. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6016. />
  6017. <productMenuURL version="2.2.2"
  6018. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6019. />
  6020. <productMenuURL version="2.1.1"
  6021. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6022. />
  6023. </productMenu>
  6024. <productMenu id="quickGuide"
  6025. type="0"
  6026. url=""
  6027. size="1.12MB" >
  6028. </productMenu>
  6029. <productMenu id="userGuide"
  6030. type="1"
  6031. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6032. size="2.0MB" >
  6033. </productMenu>
  6034. <productMenu id="videoGuide"
  6035. type="1"
  6036. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6037. size="3.41MB" >
  6038. </productMenu>
  6039. <productMenu id="connectGuide"
  6040. type="1"
  6041. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6042. size="1.12MB" >
  6043. </productMenu>
  6044. <productMenu id="volume"
  6045. type="12" >
  6046. </productMenu>
  6047. <productMenu id="battery"
  6048. type="1" >
  6049. </productMenu>
  6050. <productID id="6810"
  6051. />
  6052. <productGroupable type="0"
  6053. />
  6054. </product>
  6055. <product id="SPIDER_RT1"
  6056. name="SPIDER RT1"
  6057. series="SPIDER"
  6058. latestVersion="1.2.2"
  6059. show = "-1" >
  6060. <productMenu id="protocol"
  6061. type="2" >
  6062. </productMenu>
  6063. <productMenu id="alexa"
  6064. type="0" >
  6065. </productMenu>
  6066. <productMenu id="ota"
  6067. type="0" >
  6068. </productMenu>
  6069. <productMenu id="wa"
  6070. type="0" >
  6071. </productMenu>
  6072. <productMenu id="meshIntercom"
  6073. type="20" >
  6074. </productMenu>
  6075. <productMenu id="phone"
  6076. type="1" >
  6077. </productMenu>
  6078. <productMenu id="music"
  6079. type="1" >
  6080. </productMenu>
  6081. <productMenu id="deviceSetting"
  6082. type="1"
  6083. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6084. </productMenu>
  6085. <productMenu id="quickGuide"
  6086. type="0"
  6087. url=""
  6088. size="1.32MB" >
  6089. </productMenu>
  6090. <productMenu id="userGuide"
  6091. type="1"
  6092. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6093. size="1.79MB" >
  6094. </productMenu>
  6095. <productMenu id="videoGuide"
  6096. type="1"
  6097. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6098. size="3.41MB" >
  6099. </productMenu>
  6100. <productMenu id="volume"
  6101. type="13" >
  6102. <productMenuType version="1.1.6"
  6103. type="14"/>
  6104. </productMenu>
  6105. <productMenu id="battery"
  6106. type="1" >
  6107. </productMenu>
  6108. <productID id="6500"
  6109. />
  6110. <productGroupable type="0"
  6111. />
  6112. </product>
  6113. <product id="30K"
  6114. name="30K"
  6115. series="30"
  6116. latestVersion="4.5.1"
  6117. show = "1" >
  6118. <productMenu id="protocol"
  6119. type="2" >
  6120. </productMenu>
  6121. <productMenu id="alexa"
  6122. type="0" >
  6123. </productMenu>
  6124. <productMenu id="wa"
  6125. type="1" >
  6126. </productMenu>
  6127. <productMenu id="sip"
  6128. type="1" >
  6129. </productMenu>
  6130. <productMenu id="meshIntercom"
  6131. type="30" >
  6132. <productMenuType version="4.0.4"
  6133. type="20"
  6134. />
  6135. </productMenu>
  6136. <productMenu id="meshIntercom+"
  6137. type="3"
  6138. url="2" >
  6139. <productMenuType version="4.3.9"
  6140. type="2"
  6141. />
  6142. <productMenuURL version="4.0.4"
  6143. url="0"
  6144. />
  6145. </productMenu>
  6146. <productMenu id="waveIntercom"
  6147. type="1" >
  6148. <productMenuType version="4.4.9"
  6149. type="0"
  6150. />
  6151. </productMenu>
  6152. <productMenu id="bluetoothIntercom"
  6153. type="1" >
  6154. </productMenu>
  6155. <productMenu id="phone"
  6156. type="1" >
  6157. </productMenu>
  6158. <productMenu id="music"
  6159. type="1" >
  6160. </productMenu>
  6161. <productMenu id="fmradio"
  6162. type="1" >
  6163. </productMenu>
  6164. <productMenu id="deviceSetting"
  6165. type="1"
  6166. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6167. <productMenuURL version="4.3"
  6168. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6169. />
  6170. <productMenuURL version="4.2"
  6171. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6172. />
  6173. <productMenuURL version="4.0.4"
  6174. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6175. />
  6176. </productMenu>
  6177. <productMenu id="quickGuide"
  6178. type="0"
  6179. url=""
  6180. size="934KB" >
  6181. </productMenu>
  6182. <productMenu id="userGuide"
  6183. type="1"
  6184. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6185. size="1.14MB" >
  6186. </productMenu>
  6187. <productMenu id="connectGuide"
  6188. type="1"
  6189. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6190. size="1.12MB" >
  6191. </productMenu>
  6192. <productMenu id="volume"
  6193. type="11" >
  6194. </productMenu>
  6195. <productMenu id="battery"
  6196. type="1" >
  6197. </productMenu>
  6198. <productID id="3211"
  6199. />
  6200. <productGroupable type="0"
  6201. />
  6202. </product>
  6203. <product id="30K"
  6204. name="30K"
  6205. series="30"
  6206. latestVersion="3.5"
  6207. show = "-1" >
  6208. <productMenu id="protocol"
  6209. type="1"
  6210. url="0">
  6211. </productMenu>
  6212. <productMenu id="wa"
  6213. type="7" >
  6214. </productMenu>
  6215. <productMenu id="sip"
  6216. type="1" >
  6217. </productMenu>
  6218. <productMenu id="meshIntercom"
  6219. type="20" >
  6220. <productMenuType version="2.9.9"
  6221. type="10"
  6222. />
  6223. </productMenu>
  6224. <productMenu id="meshIntercom+"
  6225. type="3"
  6226. url="2" >
  6227. <productMenuType version="3.4.9"
  6228. type="2"
  6229. />
  6230. <productMenuType version="2.9.9"
  6231. type="1"
  6232. />
  6233. <productMenuURL version="3.3.1"
  6234. url="0"
  6235. />
  6236. </productMenu>
  6237. <productMenu id="bluetoothIntercom"
  6238. type="1" >
  6239. </productMenu>
  6240. <productMenu id="phone"
  6241. type="1" >
  6242. </productMenu>
  6243. <productMenu id="music"
  6244. type="1" >
  6245. </productMenu>
  6246. <productMenu id="fmradio"
  6247. type="1" >
  6248. </productMenu>
  6249. <productMenu id="deviceSetting"
  6250. type="1"
  6251. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6252. <productMenuURL version="3.4.9"
  6253. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6254. />
  6255. <productMenuURL version="3.3.1"
  6256. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6257. />
  6258. <productMenuURL version="3.0.1"
  6259. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6260. />
  6261. <productMenuURL version="2.3.1"
  6262. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6263. />
  6264. <productMenuURL version="2.0"
  6265. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6266. />
  6267. <productMenuURL version="1.0.3"
  6268. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6269. />
  6270. </productMenu>
  6271. <productMenu id="quickGuide"
  6272. type="0"
  6273. url=""
  6274. size="1.06MB" >
  6275. </productMenu>
  6276. <productMenu id="userGuide"
  6277. type="1"
  6278. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6279. size="3.15MB" >
  6280. </productMenu>
  6281. <productMenu id="volume"
  6282. type="1" >
  6283. </productMenu>
  6284. <productID id="3110"
  6285. />
  6286. <productGroupable type="0"
  6287. />
  6288. </product>
  6289. <product id="FURY"
  6290. name="FURY"
  6291. series="Helmet"
  6292. latestVersion="1.0"
  6293. show = "-1" >
  6294. <productMenu id="protocol"
  6295. type="2" >
  6296. </productMenu>
  6297. <productMenu id="alexa"
  6298. type="0" >
  6299. </productMenu>
  6300. <productMenu id="ota"
  6301. type="0" >
  6302. </productMenu>
  6303. <productMenu id="wa"
  6304. type="0" >
  6305. </productMenu>
  6306. <productMenu id="meshIntercom"
  6307. type="20" >
  6308. </productMenu>
  6309. <productMenu id="phone"
  6310. type="1" >
  6311. </productMenu>
  6312. <productMenu id="music"
  6313. type="1" >
  6314. </productMenu>
  6315. <productMenu id="fmradio"
  6316. type="1" >
  6317. </productMenu>
  6318. <productMenu id="deviceSetting"
  6319. type="1"
  6320. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6321. </productMenu>
  6322. <productMenu id="quickGuide"
  6323. type="1"
  6324. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6325. size="1.12MB" >
  6326. </productMenu>
  6327. <productMenu id="userGuide"
  6328. type="1"
  6329. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6330. size="2.0MB" >
  6331. </productMenu>
  6332. <productMenu id="volume"
  6333. type="13" >
  6334. </productMenu>
  6335. <productMenu id="battery"
  6336. type="1" >
  6337. </productMenu>
  6338. <productID id="5552"
  6339. />
  6340. <productGroupable type="0"
  6341. />
  6342. </product>
  6343. <product id="MomentumM"
  6344. name="Momentum EVO"
  6345. series="Helmet"
  6346. latestVersion="2.1.2"
  6347. show = "1" >
  6348. <productMenu id="protocol"
  6349. type="1"
  6350. url="0">
  6351. </productMenu>
  6352. <productMenu id="wa"
  6353. type="3" >
  6354. </productMenu>
  6355. <productMenu id="sip"
  6356. type="1" >
  6357. </productMenu>
  6358. <productMenu id="meshIntercom"
  6359. type="20" >
  6360. <productMenuType version="1.9.9"
  6361. type="10"
  6362. />
  6363. </productMenu>
  6364. <productMenu id="bluetoothIntercom"
  6365. type="1" >
  6366. </productMenu>
  6367. <productMenu id="phone"
  6368. type="1" >
  6369. </productMenu>
  6370. <productMenu id="music"
  6371. type="1" >
  6372. </productMenu>
  6373. <productMenu id="fmradio"
  6374. type="1" >
  6375. </productMenu>
  6376. <productMenu id="deviceSetting"
  6377. type="1"
  6378. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6379. <productMenuURL version="1.0.1"
  6380. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6381. />
  6382. </productMenu>
  6383. <productMenu id="quickGuide"
  6384. type="1"
  6385. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6386. size="1.06MB" >
  6387. </productMenu>
  6388. <productMenu id="userGuide"
  6389. type="1"
  6390. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6391. size="3.15MB" >
  6392. </productMenu>
  6393. <productMenu id="connectGuide"
  6394. type="1"
  6395. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6396. size="1.12MB" >
  6397. </productMenu>
  6398. <productMenu id="volume"
  6399. type="2" >
  6400. </productMenu>
  6401. <productID id="3116"
  6402. />
  6403. <productGroupable type="0"
  6404. />
  6405. </product>
  6406. <product id="Momentum"
  6407. name="Momentum"
  6408. series="Helmet"
  6409. latestVersion="1.0.9"
  6410. show = "1" >
  6411. <productMenu id="protocol"
  6412. type="0">
  6413. </productMenu>
  6414. <productMenu id="sip"
  6415. type="1" >
  6416. </productMenu>
  6417. <productMenu id="bluetoothIntercom"
  6418. type="1" >
  6419. </productMenu>
  6420. <productMenu id="intercomSetting"
  6421. type="1" >
  6422. </productMenu>
  6423. <productMenu id="phone"
  6424. type="2" >
  6425. </productMenu>
  6426. <productMenu id="fmradio"
  6427. type="3" >
  6428. </productMenu>
  6429. <productMenu id="deviceSetting"
  6430. type="1"
  6431. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6432. </productMenu>
  6433. <productMenu id="quickGuide"
  6434. type="1"
  6435. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6436. size="796KB" >
  6437. </productMenu>
  6438. <productMenu id="userGuide"
  6439. type="1"
  6440. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6441. size="1.90MB" >
  6442. </productMenu>
  6443. <productMenu id="connectGuide"
  6444. type="1"
  6445. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6446. size="1.12MB" >
  6447. </productMenu>
  6448. <productID id="4310"
  6449. />
  6450. <productGroupable type="1"
  6451. />
  6452. </product>
  6453. <product id="Momentum_Pro"
  6454. name="Momentum Pro"
  6455. series="Helmet"
  6456. latestVersion="1.0.6"
  6457. show = "1" >
  6458. <productMenu id="protocol"
  6459. type="0">
  6460. </productMenu>
  6461. <productMenu id="sip"
  6462. type="1" >
  6463. </productMenu>
  6464. <productMenu id="bluetoothIntercom"
  6465. type="1" >
  6466. </productMenu>
  6467. <productMenu id="intercomSetting"
  6468. type="1" >
  6469. </productMenu>
  6470. <productMenu id="phone"
  6471. type="2" >
  6472. </productMenu>
  6473. <productMenu id="fmradio"
  6474. type="3" >
  6475. </productMenu>
  6476. <productMenu id="deviceSetting"
  6477. type="1"
  6478. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6479. </productMenu>
  6480. <productMenu id="quickGuide"
  6481. type="1"
  6482. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6483. size="796KB" >
  6484. </productMenu>
  6485. <productMenu id="userGuide"
  6486. type="1"
  6487. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6488. size="1.90MB" >
  6489. </productMenu>
  6490. <productMenu id="connectGuide"
  6491. type="1"
  6492. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6493. size="1.12MB" >
  6494. </productMenu>
  6495. <productID id="4330"
  6496. />
  6497. <productGroupable type="1"
  6498. />
  6499. </product>
  6500. <product id="Momentum_INC"
  6501. name="Momentum INC"
  6502. series="Helmet"
  6503. latestVersion="1.0.7"
  6504. show = "1" >
  6505. <productMenu id="protocol"
  6506. type="0">
  6507. </productMenu>
  6508. <productMenu id="sip"
  6509. type="1" >
  6510. </productMenu>
  6511. <productMenu id="bluetoothIntercom"
  6512. type="1" >
  6513. </productMenu>
  6514. <productMenu id="intercomSetting"
  6515. type="1" >
  6516. </productMenu>
  6517. <productMenu id="phone"
  6518. type="2" >
  6519. </productMenu>
  6520. <productMenu id="fmradio"
  6521. type="3" >
  6522. </productMenu>
  6523. <productMenu id="deviceSetting"
  6524. type="1"
  6525. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6526. </productMenu>
  6527. <productMenu id="quickGuide"
  6528. type="1"
  6529. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6530. size="794KB" >
  6531. </productMenu>
  6532. <productMenu id="userGuide"
  6533. type="1"
  6534. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6535. size="1.53MB" >
  6536. </productMenu>
  6537. <productMenu id="connectGuide"
  6538. type="1"
  6539. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6540. size="1.12MB" >
  6541. </productMenu>
  6542. <productID id="4410"
  6543. />
  6544. <productGroupable type="1"
  6545. />
  6546. </product>
  6547. <product id="Momentum_INCP"
  6548. name="Momentum INC Pro"
  6549. series="Helmet"
  6550. latestVersion="1.0.4"
  6551. show = "1" >
  6552. <productMenu id="protocol"
  6553. type="0">
  6554. </productMenu>
  6555. <productMenu id="sip"
  6556. type="1" >
  6557. </productMenu>
  6558. <productMenu id="bluetoothIntercom"
  6559. type="1" >
  6560. </productMenu>
  6561. <productMenu id="intercomSetting"
  6562. type="1" >
  6563. </productMenu>
  6564. <productMenu id="phone"
  6565. type="2" >
  6566. </productMenu>
  6567. <productMenu id="fmradio"
  6568. type="3" >
  6569. </productMenu>
  6570. <productMenu id="deviceSetting"
  6571. type="1"
  6572. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6573. </productMenu>
  6574. <productMenu id="quickGuide"
  6575. type="1"
  6576. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6577. size="794KB" >
  6578. </productMenu>
  6579. <productMenu id="userGuide"
  6580. type="1"
  6581. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6582. size="1.53MB" >
  6583. </productMenu>
  6584. <productMenu id="connectGuide"
  6585. type="1"
  6586. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6587. size="1.12MB" >
  6588. </productMenu>
  6589. <productID id="4430"
  6590. />
  6591. <productGroupable type="1"
  6592. />
  6593. </product>
  6594. <product id="Momentum_Lite"
  6595. name="Momentum Lite"
  6596. series="Helmet"
  6597. latestVersion="2.0.3"
  6598. show = "1" >
  6599. <productMenu id="protocol"
  6600. type="0">
  6601. </productMenu>
  6602. <productMenu id="sip"
  6603. type="1" >
  6604. </productMenu>
  6605. <productMenu id="bluetoothIntercom"
  6606. type="1" >
  6607. </productMenu>
  6608. <productMenu id="phone"
  6609. type="2" >
  6610. </productMenu>
  6611. <productMenu id="fmradio"
  6612. type="3" >
  6613. </productMenu>
  6614. <productMenu id="deviceSetting"
  6615. type="1"
  6616. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6617. <productMenuURL version="1.1"
  6618. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6619. />
  6620. </productMenu>
  6621. <productMenu id="quickGuide"
  6622. type="1"
  6623. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6624. size="790KB" >
  6625. </productMenu>
  6626. <productMenu id="userGuide"
  6627. type="1"
  6628. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6629. size="1.42MB" >
  6630. </productMenu>
  6631. <productMenu id="connectGuide"
  6632. type="1"
  6633. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6634. size="1.12MB" >
  6635. </productMenu>
  6636. <productID id="5526"
  6637. />
  6638. <productGroupable type="0"
  6639. />
  6640. </product>
  6641. <product id="OUTRUSHM"
  6642. name="OUTRUSH M"
  6643. series="Helmet"
  6644. latestVersion="1.0"
  6645. show = "-1" >
  6646. <productMenu id="protocol"
  6647. type="2" >
  6648. </productMenu>
  6649. <productMenu id="alexa"
  6650. type="0" >
  6651. </productMenu>
  6652. <productMenu id="ota"
  6653. type="0" >
  6654. </productMenu>
  6655. <productMenu id="wa"
  6656. type="0" >
  6657. </productMenu>
  6658. <productMenu id="meshIntercom"
  6659. type="30" >
  6660. </productMenu>
  6661. <productMenu id="phone"
  6662. type="1" >
  6663. </productMenu>
  6664. <productMenu id="music"
  6665. type="1" >
  6666. </productMenu>
  6667. <productMenu id="fmradio"
  6668. type="1" >
  6669. </productMenu>
  6670. <productMenu id="deviceSetting"
  6671. type="1"
  6672. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6673. </productMenu>
  6674. <productMenu id="quickGuide"
  6675. type="1"
  6676. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6677. size="1.12MB" >
  6678. </productMenu>
  6679. <productMenu id="userGuide"
  6680. type="1"
  6681. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6682. size="2.0MB" >
  6683. </productMenu>
  6684. <productMenu id="volume"
  6685. type="13" >
  6686. </productMenu>
  6687. <productMenu id="battery"
  6688. type="1" >
  6689. </productMenu>
  6690. <productID id="5600"
  6691. />
  6692. <productGroupable type="0"
  6693. />
  6694. </product>
  6695. <product id="ProRideEVO"
  6696. name="ProRide EVO"
  6697. series="Helmet"
  6698. latestVersion="1.1.2"
  6699. show = "1" >
  6700. <productMenu id="protocol"
  6701. type="0">
  6702. </productMenu>
  6703. <productMenu id="sip"
  6704. type="1" >
  6705. </productMenu>
  6706. <productMenu id="bluetoothIntercom"
  6707. type="1" >
  6708. </productMenu>
  6709. <productMenu id="phone"
  6710. type="2" >
  6711. </productMenu>
  6712. <productMenu id="fmradio"
  6713. type="3" >
  6714. </productMenu>
  6715. <productMenu id="deviceSetting"
  6716. type="1"
  6717. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6718. </productMenu>
  6719. <productMenu id="userGuide"
  6720. type="1"
  6721. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6722. size="778KB" >
  6723. </productMenu>
  6724. <productMenu id="connectGuide"
  6725. type="1"
  6726. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6727. size="1.12MB" >
  6728. </productMenu>
  6729. <productID id="5426"
  6730. />
  6731. <productGroupable type="0"
  6732. />
  6733. </product>
  6734. <product id="OUTRUSHR"
  6735. name="OUTRUSH R"
  6736. series="Helmet"
  6737. latestVersion="2.1"
  6738. show = "1" >
  6739. <productMenu id="protocol"
  6740. type="3" >
  6741. </productMenu>
  6742. <productMenu id="sip"
  6743. type="1" >
  6744. </productMenu>
  6745. <productMenu id="bluetoothIntercom"
  6746. type="1" >
  6747. </productMenu>
  6748. <productMenu id="phone"
  6749. type="1" >
  6750. </productMenu>
  6751. <productMenu id="fmradio"
  6752. type="0" >
  6753. </productMenu>
  6754. <productMenu id="deviceSetting"
  6755. type="1"
  6756. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6757. </productMenu>
  6758. <productMenu id="userGuide"
  6759. type="1"
  6760. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6761. size="1.14MB" >
  6762. </productMenu>
  6763. <productMenu id="connectGuide"
  6764. type="1"
  6765. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6766. size="1.12MB" >
  6767. </productMenu>
  6768. <productID id="5440"
  6769. />
  6770. <productGroupable type="0"
  6771. />
  6772. </product>
  6773. <product id="OUTRUSHR"
  6774. name="OUTRUSH R"
  6775. series="Helmet"
  6776. latestVersion="1.1.4"
  6777. show = "-1" >
  6778. <productMenu id="protocol"
  6779. type="0">
  6780. </productMenu>
  6781. <productMenu id="sip"
  6782. type="1" >
  6783. </productMenu>
  6784. <productMenu id="bluetoothIntercom"
  6785. type="1" >
  6786. </productMenu>
  6787. <productMenu id="phone"
  6788. type="2" >
  6789. </productMenu>
  6790. <productMenu id="fmradio"
  6791. type="3" >
  6792. </productMenu>
  6793. <productMenu id="deviceSetting"
  6794. type="1"
  6795. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6796. </productMenu>
  6797. <productMenu id="userGuide"
  6798. type="1"
  6799. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6800. size="660KB" >
  6801. </productMenu>
  6802. <productMenu id="connectGuide"
  6803. type="1"
  6804. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6805. size="1.12MB" >
  6806. </productMenu>
  6807. <productID id="5424"
  6808. />
  6809. <productGroupable type="0"
  6810. />
  6811. </product>
  6812. <product id="OUTSTARS"
  6813. name="OUTSTAR S"
  6814. series="Helmet"
  6815. latestVersion="2.0.1"
  6816. show = "-1" >
  6817. <productMenu id="protocol"
  6818. type="3" >
  6819. </productMenu>
  6820. <productMenu id="sip"
  6821. type="1" >
  6822. </productMenu>
  6823. <productMenu id="bluetoothIntercom"
  6824. type="1" >
  6825. </productMenu>
  6826. <productMenu id="phone"
  6827. type="1" >
  6828. </productMenu>
  6829. <productMenu id="fmradio"
  6830. type="0" >
  6831. </productMenu>
  6832. <productMenu id="deviceSetting"
  6833. type="1"
  6834. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6835. </productMenu>
  6836. <productMenu id="userGuide"
  6837. type="0"
  6838. url=""
  6839. size="1.14MB" >
  6840. </productMenu>
  6841. <productID id="5443"
  6842. />
  6843. <productGroupable type="0"
  6844. />
  6845. </product>
  6846. <product id="OUTSTARS"
  6847. name="OUTSTAR S"
  6848. series="Helmet"
  6849. latestVersion="1.1.4"
  6850. show = "1" >
  6851. <productMenu id="protocol"
  6852. type="0">
  6853. </productMenu>
  6854. <productMenu id="sip"
  6855. type="1" >
  6856. </productMenu>
  6857. <productMenu id="bluetoothIntercom"
  6858. type="1" >
  6859. </productMenu>
  6860. <productMenu id="phone"
  6861. type="2" >
  6862. </productMenu>
  6863. <productMenu id="fmradio"
  6864. type="3" >
  6865. </productMenu>
  6866. <productMenu id="deviceSetting"
  6867. type="1"
  6868. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6869. </productMenu>
  6870. <productMenu id="quickGuide"
  6871. type="1"
  6872. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6873. size="643KB" >
  6874. </productMenu>
  6875. <productMenu id="userGuide"
  6876. type="1"
  6877. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6878. size="1.15MB" >
  6879. </productMenu>
  6880. <productMenu id="connectGuide"
  6881. type="1"
  6882. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6883. size="1.12MB" >
  6884. </productMenu>
  6885. <productID id="5428"
  6886. />
  6887. <productGroupable type="0"
  6888. />
  6889. </product>
  6890. <product id="OUTRIDE"
  6891. name="OUTRIDE"
  6892. series="Helmet"
  6893. latestVersion="1.0.1"
  6894. show = "1" >
  6895. <productMenu id="protocol"
  6896. type="0">
  6897. </productMenu>
  6898. <productMenu id="sip"
  6899. type="1" >
  6900. </productMenu>
  6901. <productMenu id="bluetoothIntercom"
  6902. type="1" >
  6903. </productMenu>
  6904. <productMenu id="phone"
  6905. type="2" >
  6906. </productMenu>
  6907. <productMenu id="fmradio"
  6908. type="3" >
  6909. </productMenu>
  6910. <productMenu id="deviceSetting"
  6911. type="1"
  6912. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6913. </productMenu>
  6914. <productMenu id="quickGuide"
  6915. type="1"
  6916. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6917. size="643KB" >
  6918. </productMenu>
  6919. <productMenu id="userGuide"
  6920. type="1"
  6921. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6922. size="660KB" >
  6923. </productMenu>
  6924. <productMenu id="connectGuide"
  6925. type="1"
  6926. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6927. size="1.12MB" >
  6928. </productMenu>
  6929. <productID id="5432"
  6930. />
  6931. <productGroupable type="0"
  6932. />
  6933. </product>
  6934. <product id="OUTFORCE"
  6935. name="OUTFORCE"
  6936. series="Helmet"
  6937. latestVersion="1.0.1"
  6938. show = "1" >
  6939. <productMenu id="protocol"
  6940. type="0">
  6941. </productMenu>
  6942. <productMenu id="sip"
  6943. type="1" >
  6944. </productMenu>
  6945. <productMenu id="bluetoothIntercom"
  6946. type="1" >
  6947. </productMenu>
  6948. <productMenu id="phone"
  6949. type="2" >
  6950. </productMenu>
  6951. <productMenu id="fmradio"
  6952. type="3" >
  6953. </productMenu>
  6954. <productMenu id="deviceSetting"
  6955. type="1"
  6956. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6957. </productMenu>
  6958. <productMenu id="quickGuide"
  6959. type="1"
  6960. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6961. size="643KB" >
  6962. </productMenu>
  6963. <productMenu id="userGuide"
  6964. type="1"
  6965. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6966. size="660KB" >
  6967. </productMenu>
  6968. <productMenu id="connectGuide"
  6969. type="1"
  6970. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6971. size="1.12MB" >
  6972. </productMenu>
  6973. <productID id="5430"
  6974. />
  6975. <productGroupable type="0"
  6976. />
  6977. </product>
  6978. <product id="Rumba"
  6979. name="Rumba"
  6980. series="30"
  6981. latestVersion="2.0"
  6982. show = "-1" >
  6983. <productMenu id="protocol"
  6984. type="3" >
  6985. </productMenu>
  6986. <productMenu id="sip"
  6987. type="1" >
  6988. </productMenu>
  6989. <productMenu id="bluetoothIntercom"
  6990. type="1" >
  6991. </productMenu>
  6992. <productMenu id="deviceSetting"
  6993. type="1"
  6994. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  6995. </productMenu>
  6996. <productMenu id="quickGuide"
  6997. type="1"
  6998. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  6999. size="344KB" >
  7000. </productMenu>
  7001. <productMenu id="userGuide"
  7002. type="1"
  7003. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  7004. size="1.14MB" >
  7005. </productMenu>
  7006. <productID id="6322"
  7007. />
  7008. <productGroupable type="0"
  7009. />
  7010. </product>
  7011. <product id="Savage"
  7012. name="Savage"
  7013. series="Helmet"
  7014. latestVersion="1.2.2"
  7015. show = "1" >
  7016. <productMenu id="protocol"
  7017. type="0">
  7018. </productMenu>
  7019. <productMenu id="sip"
  7020. type="1" >
  7021. </productMenu>
  7022. <productMenu id="bluetoothIntercom"
  7023. type="1" >
  7024. </productMenu>
  7025. <productMenu id="phone"
  7026. type="2" >
  7027. </productMenu>
  7028. <productMenu id="fmradio"
  7029. type="3" >
  7030. </productMenu>
  7031. <productMenu id="deviceSetting"
  7032. type="1"
  7033. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7034. <productMenuURL version="1.9"
  7035. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7036. />
  7037. <productMenuURL version="1.1"
  7038. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7039. />
  7040. </productMenu>
  7041. <productMenu id="quickGuide"
  7042. type="1"
  7043. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7044. size="796KB" >
  7045. </productMenu>
  7046. <productMenu id="userGuide"
  7047. type="1"
  7048. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7049. size="910KB" >
  7050. </productMenu>
  7051. <productMenu id="connectGuide"
  7052. type="1"
  7053. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7054. size="1.12MB" >
  7055. </productMenu>
  7056. <productID id="5550"
  7057. />
  7058. <productGroupable type="0"
  7059. />
  7060. </product>
  7061. <product id="SPECTER"
  7062. name="SPECTER"
  7063. series="Helmet"
  7064. latestVersion="1.0.9"
  7065. latestVersionVoicePrompt="1.7"
  7066. show = "1" >
  7067. <productMenu id="protocol"
  7068. type="2" >
  7069. </productMenu>
  7070. <productMenu id="ota"
  7071. type="2" >
  7072. <otaLanguages>
  7073. <otaLanguage
  7074. id="0"
  7075. name="English"
  7076. package="0"
  7077. />
  7078. <otaLanguage
  7079. id="0"
  7080. name="French"
  7081. package="1"
  7082. />
  7083. <otaLanguage
  7084. id="0"
  7085. name="Spanish"
  7086. package="2"
  7087. />
  7088. <otaLanguage
  7089. id="0"
  7090. name="Italian"
  7091. package="3"
  7092. />
  7093. <otaLanguage
  7094. id="0"
  7095. name="German"
  7096. package="4"
  7097. />
  7098. <otaLanguage
  7099. id="0"
  7100. name="Dutch"
  7101. package="5"
  7102. />
  7103. <otaLanguage
  7104. id="0"
  7105. name="Russian"
  7106. package="6"
  7107. />
  7108. <otaLanguage
  7109. id="0"
  7110. name="Chinese"
  7111. package="7"
  7112. />
  7113. <otaLanguage
  7114. id="0"
  7115. name="Korean"
  7116. package="8"
  7117. />
  7118. <otaLanguage
  7119. id="0"
  7120. name="Japanese"
  7121. package="9"
  7122. />
  7123. <otaLanguage
  7124. id="0"
  7125. name="Finnish"
  7126. package="10"
  7127. />
  7128. <otaLanguage
  7129. id="0"
  7130. name="Polish"
  7131. package="11"
  7132. />
  7133. </otaLanguages>
  7134. <otaPackages>
  7135. <package
  7136. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0.img"
  7137. size="5183988"
  7138. />
  7139. <package
  7140. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fr-FR.img"
  7141. size="5183988"
  7142. />
  7143. <package
  7144. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-es-ES.img"
  7145. size="5183988"
  7146. />
  7147. <package
  7148. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-it-IT.img"
  7149. size="5183988"
  7150. />
  7151. <package
  7152. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-de-DE.img"
  7153. size="5183988"
  7154. />
  7155. <package
  7156. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-nl-NL.img"
  7157. size="5183988"
  7158. />
  7159. <package
  7160. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ru-RU.img"
  7161. size="5183988"
  7162. />
  7163. <package
  7164. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-cmn-CN.img"
  7165. size="5183988"
  7166. />
  7167. <package
  7168. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ko-KR.img"
  7169. size="5183988"
  7170. />
  7171. <package
  7172. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ja-JP.img"
  7173. size="5183988"
  7174. />
  7175. <package
  7176. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fi-FI.img"
  7177. size="5183988"
  7178. />
  7179. <package
  7180. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-pl-PL.img"
  7181. size="5183988"
  7182. />
  7183. </otaPackages>
  7184. </productMenu>
  7185. <productMenu id="wa"
  7186. type="0" >
  7187. </productMenu>
  7188. <productMenu id="led"
  7189. type="5" >
  7190. </productMenu>
  7191. <productMenu id="led+"
  7192. type="2"
  7193. url="1" >
  7194. </productMenu>
  7195. <productMenu id="meshIntercom+"
  7196. type="3"
  7197. url="2" >
  7198. </productMenu>
  7199. <productMenu id="waveIntercom"
  7200. type="1" >
  7201. </productMenu>
  7202. <productMenu id="fmradio"
  7203. type="0" >
  7204. </productMenu>
  7205. <productMenu id="phone"
  7206. type="1" >
  7207. </productMenu>
  7208. <productMenu id="music"
  7209. type="1" >
  7210. </productMenu>
  7211. <productMenu id="musicSharing"
  7212. type="0" >
  7213. </productMenu>
  7214. <productMenu id="deviceSetting"
  7215. type="1"
  7216. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7217. <productMenuURL version="1.0.4"
  7218. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7219. />
  7220. </productMenu>
  7221. <productMenu id="quickGuide"
  7222. type="0"
  7223. url=""
  7224. size="1.12MB" >
  7225. </productMenu>
  7226. <productMenu id="userGuide"
  7227. type="1"
  7228. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7229. size="2.0MB" >
  7230. </productMenu>
  7231. <productMenu id="videoGuide"
  7232. type="0"
  7233. url=""
  7234. size="3.41MB" >
  7235. </productMenu>
  7236. <productMenu id="volume"
  7237. type="16" >
  7238. </productMenu>
  7239. <productMenu id="volume+"
  7240. type="2"
  7241. url="0x6004" >
  7242. </productMenu>
  7243. <productMenu id="battery"
  7244. type="1" >
  7245. </productMenu>
  7246. <productID id="6A11"
  7247. />
  7248. <productGroupable type="0"
  7249. />
  7250. </product>
  7251. <product id="SPECTER"
  7252. name="SPECTER"
  7253. series="Helmet"
  7254. latestVersion="1.0.9"
  7255. latestVersionVoicePrompt="1.7"
  7256. show = "-1" >
  7257. <productMenu id="protocol"
  7258. type="2" >
  7259. </productMenu>
  7260. <productMenu id="ota"
  7261. type="2" >
  7262. <otaLanguages>
  7263. <otaLanguage
  7264. id="0"
  7265. name="English"
  7266. package="0"
  7267. />
  7268. <otaLanguage
  7269. id="0"
  7270. name="French"
  7271. package="1"
  7272. />
  7273. <otaLanguage
  7274. id="0"
  7275. name="Spanish"
  7276. package="2"
  7277. />
  7278. <otaLanguage
  7279. id="0"
  7280. name="Italian"
  7281. package="3"
  7282. />
  7283. <otaLanguage
  7284. id="0"
  7285. name="German"
  7286. package="4"
  7287. />
  7288. <otaLanguage
  7289. id="0"
  7290. name="Dutch"
  7291. package="5"
  7292. />
  7293. <otaLanguage
  7294. id="0"
  7295. name="Russian"
  7296. package="6"
  7297. />
  7298. <otaLanguage
  7299. id="0"
  7300. name="Chinese"
  7301. package="7"
  7302. />
  7303. <otaLanguage
  7304. id="0"
  7305. name="Korean"
  7306. package="8"
  7307. />
  7308. <otaLanguage
  7309. id="0"
  7310. name="Japanese"
  7311. package="9"
  7312. />
  7313. <otaLanguage
  7314. id="0"
  7315. name="Finnish"
  7316. package="10"
  7317. />
  7318. <otaLanguage
  7319. id="0"
  7320. name="Polish"
  7321. package="11"
  7322. />
  7323. </otaLanguages>
  7324. <otaPackages>
  7325. <package
  7326. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0.img"
  7327. size="5183988"
  7328. />
  7329. <package
  7330. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fr-FR.img"
  7331. size="5183988"
  7332. />
  7333. <package
  7334. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-es-ES.img"
  7335. size="5183988"
  7336. />
  7337. <package
  7338. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-it-IT.img"
  7339. size="5183988"
  7340. />
  7341. <package
  7342. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-de-DE.img"
  7343. size="5183988"
  7344. />
  7345. <package
  7346. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-nl-NL.img"
  7347. size="5183988"
  7348. />
  7349. <package
  7350. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ru-RU.img"
  7351. size="5183988"
  7352. />
  7353. <package
  7354. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-cmn-CN.img"
  7355. size="5183988"
  7356. />
  7357. <package
  7358. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ko-KR.img"
  7359. size="5183988"
  7360. />
  7361. <package
  7362. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ja-JP.img"
  7363. size="5183988"
  7364. />
  7365. <package
  7366. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fi-FI.img"
  7367. size="5183988"
  7368. />
  7369. <package
  7370. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-pl-PL.img"
  7371. size="5183988"
  7372. />
  7373. </otaPackages>
  7374. </productMenu>
  7375. <productMenu id="wa"
  7376. type="0" >
  7377. </productMenu>
  7378. <productMenu id="led"
  7379. type="5" >
  7380. </productMenu>
  7381. <productMenu id="led+"
  7382. type="2"
  7383. url="1" >
  7384. </productMenu>
  7385. <productMenu id="meshIntercom+"
  7386. type="3"
  7387. url="2" >
  7388. </productMenu>
  7389. <productMenu id="waveIntercom"
  7390. type="1" >
  7391. </productMenu>
  7392. <productMenu id="fmradio"
  7393. type="0" >
  7394. </productMenu>
  7395. <productMenu id="phone"
  7396. type="1" >
  7397. </productMenu>
  7398. <productMenu id="music"
  7399. type="1" >
  7400. </productMenu>
  7401. <productMenu id="musicSharing"
  7402. type="0" >
  7403. </productMenu>
  7404. <productMenu id="deviceSetting"
  7405. type="1"
  7406. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7407. <productMenuURL version="1.0.4"
  7408. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7409. />
  7410. <productMenuURL version="1.0"
  7411. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7412. />
  7413. </productMenu>
  7414. <productMenu id="quickGuide"
  7415. type="0"
  7416. url=""
  7417. size="1.12MB" >
  7418. </productMenu>
  7419. <productMenu id="userGuide"
  7420. type="1"
  7421. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7422. size="2.0MB" >
  7423. </productMenu>
  7424. <productMenu id="videoGuide"
  7425. type="0"
  7426. url=""
  7427. size="3.41MB" >
  7428. </productMenu>
  7429. <productMenu id="volume"
  7430. type="16" >
  7431. </productMenu>
  7432. <productMenu id="volume+"
  7433. type="2"
  7434. url="0x6004" >
  7435. </productMenu>
  7436. <productMenu id="battery"
  7437. type="1" >
  7438. </productMenu>
  7439. <productID id="6A0A"
  7440. />
  7441. <productGroupable type="0"
  7442. />
  7443. </product>
  7444. <product id="OUTLANDER"
  7445. name="OUTLANDER"
  7446. series="Helmet"
  7447. latestVersion="1.0.9"
  7448. latestVersionVoicePrompt="1.7"
  7449. show = "1" >
  7450. <productMenu id="protocol"
  7451. type="2" >
  7452. </productMenu>
  7453. <productMenu id="ota"
  7454. type="2" >
  7455. <otaLanguages>
  7456. <otaLanguage
  7457. id="0"
  7458. name="English"
  7459. package="0"
  7460. />
  7461. <otaLanguage
  7462. id="0"
  7463. name="French"
  7464. package="1"
  7465. />
  7466. <otaLanguage
  7467. id="0"
  7468. name="Spanish"
  7469. package="2"
  7470. />
  7471. <otaLanguage
  7472. id="0"
  7473. name="Italian"
  7474. package="3"
  7475. />
  7476. <otaLanguage
  7477. id="0"
  7478. name="German"
  7479. package="4"
  7480. />
  7481. <otaLanguage
  7482. id="0"
  7483. name="Dutch"
  7484. package="5"
  7485. />
  7486. <otaLanguage
  7487. id="0"
  7488. name="Russian"
  7489. package="6"
  7490. />
  7491. <otaLanguage
  7492. id="0"
  7493. name="Chinese"
  7494. package="7"
  7495. />
  7496. <otaLanguage
  7497. id="0"
  7498. name="Korean"
  7499. package="8"
  7500. />
  7501. <otaLanguage
  7502. id="0"
  7503. name="Japanese"
  7504. package="9"
  7505. />
  7506. <otaLanguage
  7507. id="0"
  7508. name="Finnish"
  7509. package="10"
  7510. />
  7511. <otaLanguage
  7512. id="0"
  7513. name="Polish"
  7514. package="11"
  7515. />
  7516. </otaLanguages>
  7517. <otaPackages>
  7518. <package
  7519. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0.img"
  7520. size="5183988"
  7521. />
  7522. <package
  7523. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fr-FR.img"
  7524. size="5183988"
  7525. />
  7526. <package
  7527. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-es-ES.img"
  7528. size="5183988"
  7529. />
  7530. <package
  7531. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-it-IT.img"
  7532. size="5183988"
  7533. />
  7534. <package
  7535. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-de-DE.img"
  7536. size="5183988"
  7537. />
  7538. <package
  7539. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-nl-NL.img"
  7540. size="5183988"
  7541. />
  7542. <package
  7543. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ru-RU.img"
  7544. size="5183988"
  7545. />
  7546. <package
  7547. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-cmn-CN.img"
  7548. size="5183988"
  7549. />
  7550. <package
  7551. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ko-KR.img"
  7552. size="5183988"
  7553. />
  7554. <package
  7555. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ja-JP.img"
  7556. size="5183988"
  7557. />
  7558. <package
  7559. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fi-FI.img"
  7560. size="5183988"
  7561. />
  7562. <package
  7563. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-pl-PL.img"
  7564. size="5183988"
  7565. />
  7566. </otaPackages>
  7567. </productMenu>
  7568. <productMenu id="wa"
  7569. type="0" >
  7570. </productMenu>
  7571. <productMenu id="led"
  7572. type="5" >
  7573. </productMenu>
  7574. <productMenu id="led+"
  7575. type="2"
  7576. url="1" >
  7577. </productMenu>
  7578. <productMenu id="meshIntercom+"
  7579. type="3"
  7580. url="2" >
  7581. </productMenu>
  7582. <productMenu id="waveIntercom"
  7583. type="1" >
  7584. </productMenu>
  7585. <productMenu id="fmradio"
  7586. type="0" >
  7587. </productMenu>
  7588. <productMenu id="phone"
  7589. type="1" >
  7590. </productMenu>
  7591. <productMenu id="music"
  7592. type="1" >
  7593. </productMenu>
  7594. <productMenu id="musicSharing"
  7595. type="0" >
  7596. </productMenu>
  7597. <productMenu id="deviceSetting"
  7598. type="1"
  7599. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml" >
  7600. <productMenuURL version="1.0.4"
  7601. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7602. />
  7603. </productMenu>
  7604. <productMenu id="quickGuide"
  7605. type="0"
  7606. url=""
  7607. size="1.12MB" >
  7608. </productMenu>
  7609. <productMenu id="userGuide"
  7610. type="1"
  7611. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7612. size="2.0MB" >
  7613. </productMenu>
  7614. <productMenu id="videoGuide"
  7615. type="0"
  7616. url=""
  7617. size="3.41MB" >
  7618. </productMenu>
  7619. <productMenu id="volume"
  7620. type="16" >
  7621. </productMenu>
  7622. <productMenu id="volume+"
  7623. type="2"
  7624. url="0x6004" >
  7625. </productMenu>
  7626. <productMenu id="battery"
  7627. type="1" >
  7628. </productMenu>
  7629. <productID id="6A05"
  7630. />
  7631. <productGroupable type="0"
  7632. />
  7633. </product>
  7634. <product id="OUTRUSH2"
  7635. name="OUTRUSH 2"
  7636. series="Helmet"
  7637. latestVersion="1.0.2"
  7638. latestVersionVoicePrompt="1.1"
  7639. show = "1" >
  7640. <productMenu id="protocol"
  7641. type="2" >
  7642. </productMenu>
  7643. <productMenu id="alexa"
  7644. type="0" >
  7645. </productMenu>
  7646. <productMenu id="ota"
  7647. type="2" >
  7648. <otaPackages>
  7649. <package
  7650. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  7651. size="2945812"
  7652. />
  7653. </otaPackages>
  7654. </productMenu>
  7655. <productMenu id="meshIntercom+"
  7656. type="3"
  7657. url="2" >
  7658. </productMenu>
  7659. <productMenu id="waveIntercom"
  7660. type="1" >
  7661. </productMenu>
  7662. <productMenu id="phone"
  7663. type="1" >
  7664. </productMenu>
  7665. <productMenu id="music"
  7666. type="1" >
  7667. </productMenu>
  7668. <productMenu id="musicSharing"
  7669. type="0" >
  7670. </productMenu>
  7671. <productMenu id="deviceSetting"
  7672. type="1"
  7673. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7674. <productMenuURL version="1.0"
  7675. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  7676. />
  7677. </productMenu>
  7678. <productMenu id="quickGuide"
  7679. type="0"
  7680. url=""
  7681. size="1.12MB" >
  7682. </productMenu>
  7683. <productMenu id="userGuide"
  7684. type="1"
  7685. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  7686. size="2.0MB" >
  7687. </productMenu>
  7688. <productMenu id="volume"
  7689. type="12" >
  7690. </productMenu>
  7691. <productMenu id="battery"
  7692. type="1" >
  7693. </productMenu>
  7694. <productID id="684A"
  7695. />
  7696. <productGroupable type="0"
  7697. />
  7698. </product>
  7699. <product id="OUTSTAR2"
  7700. name="OUTSTAR 2"
  7701. series="Helmet"
  7702. latestVersion="1.0.1"
  7703. latestVersionVoicePrompt="1.1"
  7704. show = "1" >
  7705. <productMenu id="protocol"
  7706. type="2" >
  7707. </productMenu>
  7708. <productMenu id="alexa"
  7709. type="0" >
  7710. </productMenu>
  7711. <productMenu id="ota"
  7712. type="2" >
  7713. <otaPackages>
  7714. <package
  7715. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.1-build0.img"
  7716. size="2945812"
  7717. />
  7718. </otaPackages>
  7719. </productMenu>
  7720. <productMenu id="meshIntercom+"
  7721. type="3"
  7722. url="2" >
  7723. </productMenu>
  7724. <productMenu id="waveIntercom"
  7725. type="1" >
  7726. </productMenu>
  7727. <productMenu id="phone"
  7728. type="1" >
  7729. </productMenu>
  7730. <productMenu id="music"
  7731. type="1" >
  7732. </productMenu>
  7733. <productMenu id="musicSharing"
  7734. type="0" >
  7735. </productMenu>
  7736. <productMenu id="deviceSetting"
  7737. type="1"
  7738. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7739. </productMenu>
  7740. <productMenu id="quickGuide"
  7741. type="0"
  7742. url=""
  7743. size="1.12MB" >
  7744. </productMenu>
  7745. <productMenu id="userGuide"
  7746. type="1"
  7747. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  7748. size="2.0MB" >
  7749. </productMenu>
  7750. <productMenu id="volume"
  7751. type="12" >
  7752. </productMenu>
  7753. <productMenu id="battery"
  7754. type="1" >
  7755. </productMenu>
  7756. <productID id="684B"
  7757. />
  7758. <productGroupable type="0"
  7759. />
  7760. </product>
  7761. <product id="SURGE"
  7762. name="SURGE"
  7763. series="Helmet"
  7764. latestVersion="1.2"
  7765. latestVersionVoicePrompt="1.3"
  7766. show = "1" >
  7767. <productMenu id="protocol"
  7768. type="2" >
  7769. </productMenu>
  7770. <productMenu id="alexa"
  7771. type="0" >
  7772. </productMenu>
  7773. <productMenu id="ota"
  7774. type="2" >
  7775. <otaPackages>
  7776. <package
  7777. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  7778. size="2945812"
  7779. />
  7780. </otaPackages>
  7781. </productMenu>
  7782. <productMenu id="meshIntercom"
  7783. type="30" >
  7784. </productMenu>
  7785. <productMenu id="meshIntercom+"
  7786. type="3"
  7787. url="2" >
  7788. <productMenuType version="1.0.1"
  7789. type="2"
  7790. />
  7791. </productMenu>
  7792. <productMenu id="waveIntercom"
  7793. type="1" >
  7794. <productMenuType version="1.0.9"
  7795. type="0"
  7796. />
  7797. </productMenu>
  7798. <productMenu id="phone"
  7799. type="1" >
  7800. </productMenu>
  7801. <productMenu id="music"
  7802. type="1" >
  7803. </productMenu>
  7804. <productMenu id="musicSharing"
  7805. type="0" >
  7806. </productMenu>
  7807. <productMenu id="deviceSetting"
  7808. type="1"
  7809. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  7810. <productMenuURL version="1.1.9"
  7811. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  7812. />
  7813. <productMenuURL version="1.0.1"
  7814. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  7815. />
  7816. </productMenu>
  7817. <productMenu id="quickGuide"
  7818. type="0"
  7819. url=""
  7820. size="1.12MB" >
  7821. </productMenu>
  7822. <productMenu id="userGuide"
  7823. type="1"
  7824. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  7825. size="2.0MB" >
  7826. </productMenu>
  7827. <productMenu id="volume"
  7828. type="12" >
  7829. </productMenu>
  7830. <productMenu id="battery"
  7831. type="1" >
  7832. </productMenu>
  7833. <productID id="6840"
  7834. />
  7835. <productGroupable type="0"
  7836. />
  7837. </product>
  7838. <product id="Cavalry2"
  7839. name="Cavalry 2"
  7840. series="Helmet"
  7841. latestVersion="1.2"
  7842. latestVersionVoicePrompt="1.3"
  7843. show = "1" >
  7844. <productMenu id="protocol"
  7845. type="2" >
  7846. </productMenu>
  7847. <productMenu id="alexa"
  7848. type="0" >
  7849. </productMenu>
  7850. <productMenu id="ota"
  7851. type="2" >
  7852. <otaPackages>
  7853. <package
  7854. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  7855. size="3144148"
  7856. />
  7857. </otaPackages>
  7858. </productMenu>
  7859. <productMenu id="wa"
  7860. type="0" >
  7861. </productMenu>
  7862. <productMenu id="meshIntercom"
  7863. type="30" >
  7864. </productMenu>
  7865. <productMenu id="meshIntercom+"
  7866. type="3"
  7867. url="2" >
  7868. <productMenuType version="1.0"
  7869. type="2"
  7870. />
  7871. </productMenu>
  7872. <productMenu id="waveIntercom"
  7873. type="1" >
  7874. <productMenuType version="1.0.9"
  7875. type="0"
  7876. />
  7877. </productMenu>
  7878. <productMenu id="phone"
  7879. type="1" >
  7880. </productMenu>
  7881. <productMenu id="music"
  7882. type="1" >
  7883. </productMenu>
  7884. <productMenu id="musicSharing"
  7885. type="0" >
  7886. </productMenu>
  7887. <productMenu id="deviceSetting"
  7888. type="1"
  7889. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  7890. <productMenuURL version="1.1.9"
  7891. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  7892. />
  7893. <productMenuURL version="1.0"
  7894. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  7895. />
  7896. </productMenu>
  7897. <productMenu id="quickGuide"
  7898. type="0"
  7899. url=""
  7900. size="1.12MB" >
  7901. </productMenu>
  7902. <productMenu id="userGuide"
  7903. type="1"
  7904. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  7905. size="2.0MB" >
  7906. </productMenu>
  7907. <productMenu id="connectGuide"
  7908. type="1"
  7909. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  7910. size="1.12MB" >
  7911. </productMenu>
  7912. <productMenu id="volume"
  7913. type="12" >
  7914. </productMenu>
  7915. <productMenu id="battery"
  7916. type="1" >
  7917. </productMenu>
  7918. <productID id="6839"
  7919. />
  7920. <productGroupable type="0"
  7921. />
  7922. </product>
  7923. <product id="Cavalry"
  7924. name="Cavalry"
  7925. series="Helmet"
  7926. latestVersion="1.2.2"
  7927. show = "1" >
  7928. <productMenu id="protocol"
  7929. type="0">
  7930. </productMenu>
  7931. <productMenu id="sip"
  7932. type="1" >
  7933. </productMenu>
  7934. <productMenu id="bluetoothIntercom"
  7935. type="1" >
  7936. </productMenu>
  7937. <productMenu id="phone"
  7938. type="2" >
  7939. </productMenu>
  7940. <productMenu id="fmradio"
  7941. type="3" >
  7942. </productMenu>
  7943. <productMenu id="deviceSetting"
  7944. type="1"
  7945. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  7946. <productMenuURL version="1.9"
  7947. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  7948. />
  7949. <productMenuURL version="1.0.1"
  7950. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  7951. />
  7952. </productMenu>
  7953. <productMenu id="quickGuide"
  7954. type="1"
  7955. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  7956. size="795KB" >
  7957. </productMenu>
  7958. <productMenu id="userGuide"
  7959. type="1"
  7960. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  7961. size="1.87MB" >
  7962. </productMenu>
  7963. <productMenu id="connectGuide"
  7964. type="1"
  7965. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7966. size="1.12MB" >
  7967. </productMenu>
  7968. <productID id="5524"
  7969. />
  7970. <productGroupable type="0"
  7971. />
  7972. </product>
  7973. <product id="Cavalry_Lite"
  7974. name="Cavalry Lite"
  7975. series="Helmet"
  7976. latestVersion="1.0.2"
  7977. show = "1" >
  7978. <productMenu id="protocol"
  7979. type="0">
  7980. </productMenu>
  7981. <productMenu id="sip"
  7982. type="1" >
  7983. </productMenu>
  7984. <productMenu id="bluetoothIntercom"
  7985. type="1" >
  7986. </productMenu>
  7987. <productMenu id="phone"
  7988. type="2" >
  7989. </productMenu>
  7990. <productMenu id="fmradio"
  7991. type="3" >
  7992. </productMenu>
  7993. <productMenu id="deviceSetting"
  7994. type="1"
  7995. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7996. </productMenu>
  7997. <productMenu id="userGuide"
  7998. type="1"
  7999. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  8000. size="1.74MB" >
  8001. </productMenu>
  8002. <productMenu id="connectGuide"
  8003. type="1"
  8004. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8005. size="1.12MB" >
  8006. </productMenu>
  8007. <productID id="5536"
  8008. />
  8009. <productGroupable type="0"
  8010. />
  8011. </product>
  8012. <product id="VORTEX"
  8013. name="VORTEX"
  8014. series="VORTEX"
  8015. latestVersion="1.0"
  8016. latestVersionVoicePrompt="1.0"
  8017. show = "-1" >
  8018. <productMenu id="protocol"
  8019. type="2" >
  8020. </productMenu>
  8021. <productMenu id="ota"
  8022. type="2" >
  8023. <otaLanguages>
  8024. <otaLanguage
  8025. id="0"
  8026. name="English"
  8027. package="0"
  8028. />
  8029. <otaLanguage
  8030. id="0"
  8031. name="French"
  8032. package="1"
  8033. />
  8034. <otaLanguage
  8035. id="0"
  8036. name="Spanish"
  8037. package="2"
  8038. />
  8039. <otaLanguage
  8040. id="0"
  8041. name="Italian"
  8042. package="3"
  8043. />
  8044. <otaLanguage
  8045. id="0"
  8046. name="German"
  8047. package="4"
  8048. />
  8049. <otaLanguage
  8050. id="0"
  8051. name="Dutch"
  8052. package="5"
  8053. />
  8054. <otaLanguage
  8055. id="0"
  8056. name="Russian"
  8057. package="6"
  8058. />
  8059. <otaLanguage
  8060. id="0"
  8061. name="Chinese"
  8062. package="7"
  8063. />
  8064. <otaLanguage
  8065. id="0"
  8066. name="Korean"
  8067. package="8"
  8068. />
  8069. <otaLanguage
  8070. id="0"
  8071. name="Japanese"
  8072. package="9"
  8073. />
  8074. <otaLanguage
  8075. id="0"
  8076. name="Finnish"
  8077. package="10"
  8078. />
  8079. <otaLanguage
  8080. id="0"
  8081. name="Polish"
  8082. package="11"
  8083. />
  8084. </otaLanguages>
  8085. <otaPackages>
  8086. <package
  8087. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4.img"
  8088. size="5183988"
  8089. />
  8090. <package
  8091. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fr-FR.img"
  8092. size="5183988"
  8093. />
  8094. <package
  8095. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-es-ES.img"
  8096. size="5183988"
  8097. />
  8098. <package
  8099. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-it-IT.img"
  8100. size="5183988"
  8101. />
  8102. <package
  8103. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-de-DE.img"
  8104. size="5183988"
  8105. />
  8106. <package
  8107. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-nl-NL.img"
  8108. size="5183988"
  8109. />
  8110. <package
  8111. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ru-RU.img"
  8112. size="5183988"
  8113. />
  8114. <package
  8115. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-cmn-CN.img"
  8116. size="5183988"
  8117. />
  8118. <package
  8119. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ko-KR.img"
  8120. size="5183988"
  8121. />
  8122. <package
  8123. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ja-JP.img"
  8124. size="5183988"
  8125. />
  8126. <package
  8127. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fi-FI.img"
  8128. size="5183988"
  8129. />
  8130. <package
  8131. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-pl-PL.img"
  8132. size="5183988"
  8133. />
  8134. </otaPackages>
  8135. </productMenu>
  8136. <productMenu id="sip"
  8137. type="1" >
  8138. </productMenu>
  8139. <productMenu id="bluetoothIntercom"
  8140. type="1" >
  8141. </productMenu>
  8142. <productMenu id="phone"
  8143. type="1" >
  8144. </productMenu>
  8145. <productMenu id="music"
  8146. type="1" >
  8147. </productMenu>
  8148. <productMenu id="fmradio"
  8149. type="1"
  8150. url="1" >
  8151. </productMenu>
  8152. <productMenu id="deviceSetting"
  8153. type="1"
  8154. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8155. </productMenu>
  8156. <productMenu id="quickGuide"
  8157. type="0"
  8158. url=""
  8159. size="934KB" >
  8160. </productMenu>
  8161. <productMenu id="userGuide"
  8162. type="1"
  8163. url=""
  8164. size="1.14MB" >
  8165. </productMenu>
  8166. <productMenu id="connectGuide"
  8167. type="0"
  8168. url=""
  8169. size="1.12MB" >
  8170. </productMenu>
  8171. <productMenu id="volume"
  8172. type="15" >
  8173. </productMenu>
  8174. <productMenu id="appearance"
  8175. type="1"
  8176. url="1|white,silver,black" >
  8177. </productMenu>
  8178. <productID id="3451"
  8179. />
  8180. <productGroupable type="0"
  8181. />
  8182. </product>
  8183. <product id="SF4"
  8184. name="SF4"
  8185. series="SF"
  8186. latestVersion="1.1.5"
  8187. show = "-1" >
  8188. <productMenu id="protocol"
  8189. type="1"
  8190. url="3">
  8191. </productMenu>
  8192. <productMenu id="sip"
  8193. type="1" >
  8194. </productMenu>
  8195. <productMenu id="bluetoothIntercom"
  8196. type="1" >
  8197. </productMenu>
  8198. <productMenu id="phone"
  8199. type="1" >
  8200. </productMenu>
  8201. <productMenu id="music"
  8202. type="1" >
  8203. </productMenu>
  8204. <productMenu id="fmradio"
  8205. type="1" >
  8206. </productMenu>
  8207. <productMenu id="deviceSetting"
  8208. type="1"
  8209. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8210. <productMenuURL version="1.0.1"
  8211. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8212. />
  8213. </productMenu>
  8214. <productMenu id="quickGuide"
  8215. type="1"
  8216. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8217. size="607KB" >
  8218. </productMenu>
  8219. <productMenu id="userGuide"
  8220. type="1"
  8221. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8222. size="1.91MB" >
  8223. </productMenu>
  8224. <productMenu id="volume"
  8225. type="4" >
  8226. </productMenu>
  8227. <productID id="5414"
  8228. />
  8229. <productGroupable type="0"
  8230. />
  8231. </product>
  8232. <product id="SF4"
  8233. name="SF4"
  8234. series="SF"
  8235. latestVersion="3.4.4"
  8236. show = "1" >
  8237. <productMenu id="protocol"
  8238. type="2" >
  8239. </productMenu>
  8240. <productMenu id="sip"
  8241. type="1" >
  8242. </productMenu>
  8243. <productMenu id="bluetoothIntercom"
  8244. type="1" >
  8245. </productMenu>
  8246. <productMenu id="phone"
  8247. type="1" >
  8248. </productMenu>
  8249. <productMenu id="music"
  8250. type="1" >
  8251. </productMenu>
  8252. <productMenu id="fmradio"
  8253. type="1" >
  8254. </productMenu>
  8255. <productMenu id="deviceSetting"
  8256. type="1"
  8257. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8258. <productMenuURL version="3.0"
  8259. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8260. />
  8261. </productMenu>
  8262. <productMenu id="quickGuide"
  8263. type="0"
  8264. url=""
  8265. size="934KB" >
  8266. </productMenu>
  8267. <productMenu id="userGuide"
  8268. type="1"
  8269. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8270. size="1.14MB" >
  8271. </productMenu>
  8272. <productMenu id="connectGuide"
  8273. type="1"
  8274. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8275. size="1.12MB" >
  8276. </productMenu>
  8277. <productMenu id="volume"
  8278. type="15" >
  8279. </productMenu>
  8280. <productID id="3370"
  8281. />
  8282. <productGroupable type="0"
  8283. />
  8284. </product>
  8285. <product id="SF2"
  8286. name="SF2"
  8287. series="SF"
  8288. latestVersion="1.2.1"
  8289. show = "-1" >
  8290. <productMenu id="protocol"
  8291. type="1"
  8292. url="2">
  8293. </productMenu>
  8294. <productMenu id="sip"
  8295. type="1" >
  8296. </productMenu>
  8297. <productMenu id="bluetoothIntercom"
  8298. type="1" >
  8299. </productMenu>
  8300. <productMenu id="phone"
  8301. type="1" >
  8302. </productMenu>
  8303. <productMenu id="music"
  8304. type="1" >
  8305. </productMenu>
  8306. <productMenu id="fmradio"
  8307. type="1" >
  8308. </productMenu>
  8309. <productMenu id="deviceSetting"
  8310. type="1"
  8311. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8312. <productMenuURL version="1.0.1"
  8313. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8314. />
  8315. </productMenu>
  8316. <productMenu id="quickGuide"
  8317. type="1"
  8318. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8319. size="607KB" >
  8320. </productMenu>
  8321. <productMenu id="userGuide"
  8322. type="1"
  8323. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8324. size="1.91MB" >
  8325. </productMenu>
  8326. <productMenu id="volume"
  8327. type="4" >
  8328. </productMenu>
  8329. <productID id="5412"
  8330. />
  8331. <productGroupable type="0"
  8332. />
  8333. </product>
  8334. <product id="SF2"
  8335. name="SF2"
  8336. series="SF"
  8337. latestVersion="3.3.4"
  8338. show = "1" >
  8339. <productMenu id="protocol"
  8340. type="2" >
  8341. </productMenu>
  8342. <productMenu id="sip"
  8343. type="1" >
  8344. </productMenu>
  8345. <productMenu id="bluetoothIntercom"
  8346. type="1" >
  8347. </productMenu>
  8348. <productMenu id="phone"
  8349. type="1" >
  8350. </productMenu>
  8351. <productMenu id="music"
  8352. type="1" >
  8353. </productMenu>
  8354. <productMenu id="fmradio"
  8355. type="0" >
  8356. </productMenu>
  8357. <productMenu id="deviceSetting"
  8358. type="1"
  8359. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8360. <productMenuURL version="3.0"
  8361. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8362. />
  8363. </productMenu>
  8364. <productMenu id="quickGuide"
  8365. type="0"
  8366. url=""
  8367. size="934KB" >
  8368. </productMenu>
  8369. <productMenu id="userGuide"
  8370. type="1"
  8371. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8372. size="1.14MB" >
  8373. </productMenu>
  8374. <productMenu id="connectGuide"
  8375. type="1"
  8376. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8377. size="1.12MB" >
  8378. </productMenu>
  8379. <productMenu id="volume"
  8380. type="15" >
  8381. </productMenu>
  8382. <productID id="3360"
  8383. />
  8384. <productGroupable type="0"
  8385. />
  8386. </product>
  8387. <product id="SF1"
  8388. name="SF1"
  8389. series="SF"
  8390. latestVersion="2.0.5"
  8391. show = "-1" >
  8392. <productMenu id="protocol"
  8393. type="1"
  8394. url="1">
  8395. </productMenu>
  8396. <productMenu id="sip"
  8397. type="1" >
  8398. </productMenu>
  8399. <productMenu id="bluetoothIntercom"
  8400. type="1" >
  8401. <productMenuType version="1.1"
  8402. type="0"
  8403. />
  8404. </productMenu>
  8405. <productMenu id="phone"
  8406. type="1" >
  8407. </productMenu>
  8408. <productMenu id="music"
  8409. type="1" >
  8410. </productMenu>
  8411. <productMenu id="deviceSetting"
  8412. type="1"
  8413. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8414. <productMenuURL version="1.1"
  8415. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8416. />
  8417. <productMenuURL version="1.0"
  8418. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8419. />
  8420. </productMenu>
  8421. <productMenu id="quickGuide"
  8422. type="1"
  8423. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8424. size="401KB" >
  8425. </productMenu>
  8426. <productMenu id="userGuide"
  8427. type="1"
  8428. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8429. size="1.91MB" >
  8430. </productMenu>
  8431. <productMenu id="volume"
  8432. type="3" >
  8433. </productMenu>
  8434. <productID id="5410"
  8435. />
  8436. <productGroupable type="0"
  8437. />
  8438. </product>
  8439. <product id="SF1"
  8440. name="SF1"
  8441. series="SF"
  8442. latestVersion="3.3.4"
  8443. show = "1" >
  8444. <productMenu id="protocol"
  8445. type="2" >
  8446. </productMenu>
  8447. <productMenu id="sip"
  8448. type="1" >
  8449. </productMenu>
  8450. <productMenu id="bluetoothIntercom"
  8451. type="1" >
  8452. </productMenu>
  8453. <productMenu id="phone"
  8454. type="1" >
  8455. </productMenu>
  8456. <productMenu id="music"
  8457. type="1" >
  8458. </productMenu>
  8459. <productMenu id="fmradio"
  8460. type="0" >
  8461. </productMenu>
  8462. <productMenu id="deviceSetting"
  8463. type="1"
  8464. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8465. <productMenuURL version="3.0"
  8466. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8467. />
  8468. </productMenu>
  8469. <productMenu id="quickGuide"
  8470. type="0"
  8471. url=""
  8472. size="934KB" >
  8473. </productMenu>
  8474. <productMenu id="userGuide"
  8475. type="1"
  8476. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8477. size="1.14MB" >
  8478. </productMenu>
  8479. <productMenu id="connectGuide"
  8480. type="1"
  8481. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8482. size="1.12MB" >
  8483. </productMenu>
  8484. <productMenu id="volume"
  8485. type="15" >
  8486. </productMenu>
  8487. <productID id="3350"
  8488. />
  8489. <productGroupable type="0"
  8490. />
  8491. </product>
  8492. <product id="SFR"
  8493. name="SFR"
  8494. series="SF"
  8495. latestVersion="1.1.1"
  8496. show = "1" >
  8497. <productMenu id="protocol"
  8498. type="1"
  8499. url="3">
  8500. </productMenu>
  8501. <productMenu id="sip"
  8502. type="1" >
  8503. </productMenu>
  8504. <productMenu id="bluetoothIntercom"
  8505. type="1" >
  8506. </productMenu>
  8507. <productMenu id="phone"
  8508. type="1" >
  8509. </productMenu>
  8510. <productMenu id="music"
  8511. type="1" >
  8512. </productMenu>
  8513. <productMenu id="fmradio"
  8514. type="1" >
  8515. </productMenu>
  8516. <productMenu id="deviceSetting"
  8517. type="1"
  8518. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8519. </productMenu>
  8520. <productMenu id="quickGuide"
  8521. type="1"
  8522. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8523. size="607KB" >
  8524. </productMenu>
  8525. <productMenu id="userGuide"
  8526. type="1"
  8527. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8528. size="1.91MB" >
  8529. </productMenu>
  8530. <productMenu id="volume"
  8531. type="4" >
  8532. </productMenu>
  8533. <productID id="5418"
  8534. />
  8535. <productGroupable type="0"
  8536. />
  8537. </product>
  8538. <product id="20S"
  8539. name="20S"
  8540. series="20"
  8541. latestVersion="2.2.3"
  8542. show = "1" >
  8543. <productMenu id="protocol"
  8544. type="0">
  8545. </productMenu>
  8546. <productMenu id="wa"
  8547. type="5" >
  8548. </productMenu>
  8549. <productMenu id="sip"
  8550. type="1" >
  8551. <productMenuType version="1.0"
  8552. type="0"
  8553. />
  8554. </productMenu>
  8555. <productMenu id="bluetoothIntercom"
  8556. type="1" >
  8557. <productMenuType version="1.0"
  8558. type="0"
  8559. />
  8560. </productMenu>
  8561. <productMenu id="intercomSetting"
  8562. type="1" >
  8563. </productMenu>
  8564. <productMenu id="phone"
  8565. type="2" >
  8566. </productMenu>
  8567. <productMenu id="fmradio"
  8568. type="3" >
  8569. </productMenu>
  8570. <productMenu id="deviceSetting"
  8571. type="1"
  8572. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8573. <productMenuURL version="2.0.2"
  8574. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8575. />
  8576. <productMenuURL version="1.5"
  8577. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8578. />
  8579. <productMenuURL version="1.4.1"
  8580. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8581. />
  8582. <productMenuURL version="1.1"
  8583. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8584. />
  8585. <productMenuURL version="1.0"
  8586. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8587. />
  8588. </productMenu>
  8589. <productMenu id="quickGuide"
  8590. type="0"
  8591. url=""
  8592. size="264KB" >
  8593. </productMenu>
  8594. <productMenu id="userGuide"
  8595. type="1"
  8596. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8597. size="3.09MB" >
  8598. </productMenu>
  8599. <productMenu id="connectGuide"
  8600. type="1"
  8601. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8602. size="1.12MB" >
  8603. </productMenu>
  8604. <productID id="4210"
  8605. />
  8606. <productGroupable type="1"
  8607. />
  8608. </product>
  8609. <product id="20S_EVO"
  8610. name="20S EVO"
  8611. series="20"
  8612. latestVersion="2.2.3"
  8613. show = "1" >
  8614. <productMenu id="protocol"
  8615. type="0">
  8616. </productMenu>
  8617. <productMenu id="wa"
  8618. type="5" >
  8619. </productMenu>
  8620. <productMenu id="sip"
  8621. type="1" >
  8622. <productMenuType version="1.0"
  8623. type="0"
  8624. />
  8625. </productMenu>
  8626. <productMenu id="bluetoothIntercom"
  8627. type="1" >
  8628. <productMenuType version="1.0"
  8629. type="0"
  8630. />
  8631. </productMenu>
  8632. <productMenu id="intercomSetting"
  8633. type="1" >
  8634. </productMenu>
  8635. <productMenu id="phone"
  8636. type="2" >
  8637. </productMenu>
  8638. <productMenu id="fmradio"
  8639. type="3" >
  8640. </productMenu>
  8641. <productMenu id="deviceSetting"
  8642. type="1"
  8643. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8644. <productMenuURL version="2.0.2"
  8645. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8646. />
  8647. <productMenuURL version="1.5"
  8648. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8649. />
  8650. <productMenuURL version="1.4.1"
  8651. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8652. />
  8653. <productMenuURL version="1.1"
  8654. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8655. />
  8656. <productMenuURL version="1.0"
  8657. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8658. />
  8659. </productMenu>
  8660. <productMenu id="quickGuide"
  8661. type="0"
  8662. url=""
  8663. size="264KB" >
  8664. </productMenu>
  8665. <productMenu id="userGuide"
  8666. type="1"
  8667. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8668. size="3.09MB" >
  8669. </productMenu>
  8670. <productMenu id="connectGuide"
  8671. type="1"
  8672. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8673. size="1.12MB" >
  8674. </productMenu>
  8675. <productID id="4210"
  8676. />
  8677. <productProductKey key="16"
  8678. />
  8679. <productGroupable type="1"
  8680. />
  8681. </product>
  8682. <product id="10S"
  8683. name="10S"
  8684. series="10"
  8685. latestVersion="3.0.2"
  8686. show = "1" >
  8687. <productMenu id="protocol"
  8688. type="3" >
  8689. </productMenu>
  8690. <productMenu id="sip"
  8691. type="1" >
  8692. </productMenu>
  8693. <productMenu id="bluetoothIntercom"
  8694. type="1" >
  8695. </productMenu>
  8696. <productMenu id="phone"
  8697. type="1" >
  8698. </productMenu>
  8699. <productMenu id="deviceSetting"
  8700. type="1"
  8701. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  8702. </productMenu>
  8703. <productMenu id="quickGuide"
  8704. type="1"
  8705. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  8706. size="934KB" >
  8707. </productMenu>
  8708. <productMenu id="userGuide"
  8709. type="1"
  8710. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  8711. size="1.14MB" >
  8712. </productMenu>
  8713. <productMenu id="connectGuide"
  8714. type="1"
  8715. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  8716. size="1.12MB" >
  8717. </productMenu>
  8718. <productID id="3380"
  8719. />
  8720. <productGroupable type="0"
  8721. />
  8722. </product>
  8723. <product id="10S"
  8724. name="10S"
  8725. series="10"
  8726. latestVersion="2.1.1"
  8727. show = "-1" >
  8728. <productMenu id="protocol"
  8729. type="0">
  8730. </productMenu>
  8731. <productMenu id="sip"
  8732. type="1" >
  8733. </productMenu>
  8734. <productMenu id="bluetoothIntercom"
  8735. type="1" >
  8736. </productMenu>
  8737. <productMenu id="phone"
  8738. type="2" >
  8739. </productMenu>
  8740. <productMenu id="fmradio"
  8741. type="3" >
  8742. </productMenu>
  8743. <productMenu id="deviceSetting"
  8744. type="1"
  8745. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  8746. <productMenuURL version="1.5"
  8747. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  8748. />
  8749. <productMenuURL version="1.3.1"
  8750. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  8751. />
  8752. </productMenu>
  8753. <productMenu id="quickGuide"
  8754. type="1"
  8755. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  8756. size="310KB" >
  8757. </productMenu>
  8758. <productMenu id="userGuide"
  8759. type="1"
  8760. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  8761. size="1.57MB" >
  8762. </productMenu>
  8763. <productID id="5530"
  8764. />
  8765. <productGroupable type="0"
  8766. />
  8767. </product>
  8768. <product id="Apex"
  8769. name="Apex"
  8770. series="Apex"
  8771. latestVersion="1.0"
  8772. latestVersionVoicePrompt="1.0"
  8773. show = "-1" >
  8774. <productMenu id="protocol"
  8775. type="2" >
  8776. </productMenu>
  8777. <productMenu id="serialNumber"
  8778. type="1" >
  8779. </productMenu>
  8780. <productMenu id="ota"
  8781. type="0" >
  8782. <otaLanguages>
  8783. <otaLanguage
  8784. id="0"
  8785. name="English"
  8786. package="0"
  8787. />
  8788. <otaLanguage
  8789. id="0"
  8790. name="French"
  8791. package="1"
  8792. />
  8793. <otaLanguage
  8794. id="0"
  8795. name="Spanish"
  8796. package="2"
  8797. />
  8798. <otaLanguage
  8799. id="0"
  8800. name="Italian"
  8801. package="3"
  8802. />
  8803. <otaLanguage
  8804. id="0"
  8805. name="German"
  8806. package="4"
  8807. />
  8808. <otaLanguage
  8809. id="0"
  8810. name="Dutch"
  8811. package="5"
  8812. />
  8813. <otaLanguage
  8814. id="0"
  8815. name="Russian"
  8816. package="6"
  8817. />
  8818. <otaLanguage
  8819. id="0"
  8820. name="Chinese"
  8821. package="7"
  8822. />
  8823. <otaLanguage
  8824. id="0"
  8825. name="Korean"
  8826. package="8"
  8827. />
  8828. <otaLanguage
  8829. id="0"
  8830. name="Japanese"
  8831. package="9"
  8832. />
  8833. <otaLanguage
  8834. id="0"
  8835. name="Finnish"
  8836. package="10"
  8837. />
  8838. <otaLanguage
  8839. id="0"
  8840. name="Polish"
  8841. package="11"
  8842. />
  8843. </otaLanguages>
  8844. <otaPackages>
  8845. <package
  8846. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0.img"
  8847. size="5183988"
  8848. />
  8849. <package
  8850. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fr-FR.img"
  8851. size="5183988"
  8852. />
  8853. <package
  8854. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-es-ES.img"
  8855. size="5183988"
  8856. />
  8857. <package
  8858. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-it-IT.img"
  8859. size="5183988"
  8860. />
  8861. <package
  8862. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-de-DE.img"
  8863. size="5183988"
  8864. />
  8865. <package
  8866. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-nl-NL.img"
  8867. size="5183988"
  8868. />
  8869. <package
  8870. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ru-RU.img"
  8871. size="5183988"
  8872. />
  8873. <package
  8874. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-cmn-CN.img"
  8875. size="5183988"
  8876. />
  8877. <package
  8878. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ko-KR.img"
  8879. size="5183988"
  8880. />
  8881. <package
  8882. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ja-JP.img"
  8883. size="5183988"
  8884. />
  8885. <package
  8886. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fi-FI.img"
  8887. size="5183988"
  8888. />
  8889. <package
  8890. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-pl-PL.img"
  8891. size="5183988"
  8892. />
  8893. </otaPackages>
  8894. </productMenu>
  8895. <productMenu id="sip"
  8896. type="1" >
  8897. </productMenu>
  8898. <productMenu id="bluetoothIntercom"
  8899. type="1" >
  8900. </productMenu>
  8901. <productMenu id="phone"
  8902. type="1" >
  8903. </productMenu>
  8904. <productMenu id="music"
  8905. type="1" >
  8906. </productMenu>
  8907. <productMenu id="fmradio"
  8908. type="1"
  8909. url="1" >
  8910. </productMenu>
  8911. <productMenu id="deviceSetting"
  8912. type="1"
  8913. url="https://api.sena.com/support/test/xml/NS_Apex_test_03.xml" >
  8914. </productMenu>
  8915. <productMenu id="quickGuide"
  8916. type="0"
  8917. url=""
  8918. size="934KB" >
  8919. </productMenu>
  8920. <productMenu id="userGuide"
  8921. type="1"
  8922. url=""
  8923. size="1.14MB" >
  8924. </productMenu>
  8925. <productMenu id="volume"
  8926. type="15" >
  8927. </productMenu>
  8928. <productID id="3452"
  8929. />
  8930. <productGroupable type="0"
  8931. />
  8932. </product>
  8933. <product id="ApexPlus"
  8934. name="Apex Plus"
  8935. series="Apex"
  8936. latestVersion="1.0"
  8937. latestVersionVoicePrompt="1.0"
  8938. show = "-1" >
  8939. <productMenu id="protocol"
  8940. type="2" >
  8941. </productMenu>
  8942. <productMenu id="serialNumber"
  8943. type="1" >
  8944. </productMenu>
  8945. <productMenu id="ota"
  8946. type="0" >
  8947. <otaLanguages>
  8948. <otaLanguage
  8949. id="0"
  8950. name="English"
  8951. package="0"
  8952. />
  8953. <otaLanguage
  8954. id="0"
  8955. name="French"
  8956. package="1"
  8957. />
  8958. <otaLanguage
  8959. id="0"
  8960. name="Spanish"
  8961. package="2"
  8962. />
  8963. <otaLanguage
  8964. id="0"
  8965. name="Italian"
  8966. package="3"
  8967. />
  8968. <otaLanguage
  8969. id="0"
  8970. name="German"
  8971. package="4"
  8972. />
  8973. <otaLanguage
  8974. id="0"
  8975. name="Dutch"
  8976. package="5"
  8977. />
  8978. <otaLanguage
  8979. id="0"
  8980. name="Russian"
  8981. package="6"
  8982. />
  8983. <otaLanguage
  8984. id="0"
  8985. name="Chinese"
  8986. package="7"
  8987. />
  8988. <otaLanguage
  8989. id="0"
  8990. name="Korean"
  8991. package="8"
  8992. />
  8993. <otaLanguage
  8994. id="0"
  8995. name="Japanese"
  8996. package="9"
  8997. />
  8998. <otaLanguage
  8999. id="0"
  9000. name="Finnish"
  9001. package="10"
  9002. />
  9003. <otaLanguage
  9004. id="0"
  9005. name="Polish"
  9006. package="11"
  9007. />
  9008. </otaLanguages>
  9009. <otaPackages>
  9010. <package
  9011. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0.img"
  9012. size="5183988"
  9013. />
  9014. <package
  9015. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fr-FR.img"
  9016. size="5183988"
  9017. />
  9018. <package
  9019. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-es-ES.img"
  9020. size="5183988"
  9021. />
  9022. <package
  9023. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-it-IT.img"
  9024. size="5183988"
  9025. />
  9026. <package
  9027. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-de-DE.img"
  9028. size="5183988"
  9029. />
  9030. <package
  9031. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-nl-NL.img"
  9032. size="5183988"
  9033. />
  9034. <package
  9035. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ru-RU.img"
  9036. size="5183988"
  9037. />
  9038. <package
  9039. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-cmn-CN.img"
  9040. size="5183988"
  9041. />
  9042. <package
  9043. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ko-KR.img"
  9044. size="5183988"
  9045. />
  9046. <package
  9047. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ja-JP.img"
  9048. size="5183988"
  9049. />
  9050. <package
  9051. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fi-FI.img"
  9052. size="5183988"
  9053. />
  9054. <package
  9055. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-pl-PL.img"
  9056. size="5183988"
  9057. />
  9058. </otaPackages>
  9059. </productMenu>
  9060. <productMenu id="sip"
  9061. type="1" >
  9062. </productMenu>
  9063. <productMenu id="bluetoothIntercom"
  9064. type="1" >
  9065. </productMenu>
  9066. <productMenu id="phone"
  9067. type="1" >
  9068. </productMenu>
  9069. <productMenu id="music"
  9070. type="1" >
  9071. </productMenu>
  9072. <productMenu id="fmradio"
  9073. type="1"
  9074. url="1" >
  9075. </productMenu>
  9076. <productMenu id="deviceSetting"
  9077. type="1"
  9078. url="https://api.sena.com/support/test/xml/NS_Apex_test_03.xml" >
  9079. </productMenu>
  9080. <productMenu id="quickGuide"
  9081. type="0"
  9082. url=""
  9083. size="934KB" >
  9084. </productMenu>
  9085. <productMenu id="userGuide"
  9086. type="1"
  9087. url=""
  9088. size="1.14MB" >
  9089. </productMenu>
  9090. <productMenu id="volume"
  9091. type="15" >
  9092. </productMenu>
  9093. <productID id="3453"
  9094. />
  9095. <productGroupable type="0"
  9096. />
  9097. </product>
  9098. <product id="10R2"
  9099. name="10R 2"
  9100. series="10"
  9101. latestVersion="0.9"
  9102. latestVersionVoicePrompt="1.1"
  9103. show = "-1" >
  9104. <productMenu id="protocol"
  9105. type="2" >
  9106. </productMenu>
  9107. <productMenu id="ota"
  9108. type="2" >
  9109. <otaPackages>
  9110. <package
  9111. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9112. size="2945812"
  9113. />
  9114. </otaPackages>
  9115. </productMenu>
  9116. <productMenu id="sip"
  9117. type="1" >
  9118. </productMenu>
  9119. <productMenu id="bluetoothIntercom"
  9120. type="1" >
  9121. </productMenu>
  9122. <productMenu id="phone"
  9123. type="1" >
  9124. </productMenu>
  9125. <productMenu id="music"
  9126. type="1" >
  9127. </productMenu>
  9128. <productMenu id="fmradio"
  9129. type="1"
  9130. url="1" >
  9131. </productMenu>
  9132. <productMenu id="deviceSetting"
  9133. type="1"
  9134. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9135. </productMenu>
  9136. <productMenu id="quickGuide"
  9137. type="1"
  9138. url=""
  9139. size="934KB" >
  9140. </productMenu>
  9141. <productMenu id="userGuide"
  9142. type="0"
  9143. url=""
  9144. size="1.14MB" >
  9145. </productMenu>
  9146. <productMenu id="volume"
  9147. type="15" >
  9148. </productMenu>
  9149. <productID id="4000"
  9150. />
  9151. <productGroupable type="0"
  9152. />
  9153. </product>
  9154. <product id="10R"
  9155. name="10R"
  9156. series="10"
  9157. latestVersion="2.1.1"
  9158. show = "1" >
  9159. <productMenu id="protocol"
  9160. type="0">
  9161. </productMenu>
  9162. <productMenu id="sip"
  9163. type="1" >
  9164. <productMenuType version="1.0.2"
  9165. type="0"
  9166. />
  9167. </productMenu>
  9168. <productMenu id="bluetoothIntercom"
  9169. type="1" >
  9170. <productMenuType version="1.0.2"
  9171. type="0"
  9172. />
  9173. </productMenu>
  9174. <productMenu id="phone"
  9175. type="2" >
  9176. </productMenu>
  9177. <productMenu id="fmradio"
  9178. type="3" >
  9179. </productMenu>
  9180. <productMenu id="deviceSetting"
  9181. type="1"
  9182. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9183. <productMenuURL version="1.4"
  9184. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9185. />
  9186. <productMenuURL version="1.2.1"
  9187. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9188. />
  9189. <productMenuURL version="1.0.2"
  9190. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9191. />
  9192. <productMenuURL version="1.0"
  9193. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9194. />
  9195. </productMenu>
  9196. <productMenu id="quickGuide"
  9197. type="1"
  9198. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9199. size="400KB" >
  9200. </productMenu>
  9201. <productMenu id="userGuide"
  9202. type="1"
  9203. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9204. size="2.75MB" >
  9205. </productMenu>
  9206. <productMenu id="connectGuide"
  9207. type="1"
  9208. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9209. size="1.12MB" >
  9210. </productMenu>
  9211. <productID id="5520"
  9212. />
  9213. <productGroupable type="0"
  9214. />
  9215. </product>
  9216. <product id="10C_EVO"
  9217. name="10C EVO"
  9218. series="10"
  9219. latestVersion="1.7"
  9220. show = "1" >
  9221. <productMenu id="protocol"
  9222. type="0">
  9223. </productMenu>
  9224. <productMenu id="sip"
  9225. type="1" >
  9226. </productMenu>
  9227. <productMenu id="bluetoothIntercom"
  9228. type="1" >
  9229. </productMenu>
  9230. <productMenu id="phone"
  9231. type="2" >
  9232. </productMenu>
  9233. <productMenu id="fmradio"
  9234. type="3" >
  9235. </productMenu>
  9236. <productMenu id="deviceSetting"
  9237. type="1"
  9238. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9239. <productMenuURL version="1.3.1"
  9240. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9241. />
  9242. </productMenu>
  9243. <productMenu id="quickGuide"
  9244. type="1"
  9245. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9246. size="1.32MB" >
  9247. </productMenu>
  9248. <productMenu id="userGuide"
  9249. type="1"
  9250. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9251. size="1.68MB" >
  9252. </productMenu>
  9253. <productMenu id="connectGuide"
  9254. type="1"
  9255. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9256. size="1.12MB" >
  9257. </productMenu>
  9258. <productID id="5570"
  9259. />
  9260. <productGroupable type="0"
  9261. />
  9262. </product>
  9263. <product id="10C_Pro"
  9264. name="10C Pro"
  9265. series="10"
  9266. latestVersion="2.7.1"
  9267. show = "1" >
  9268. <productMenu id="protocol"
  9269. type="0">
  9270. </productMenu>
  9271. <productMenu id="sip"
  9272. type="1" >
  9273. </productMenu>
  9274. <productMenu id="bluetoothIntercom"
  9275. type="1" >
  9276. </productMenu>
  9277. <productMenu id="phone"
  9278. type="2" >
  9279. </productMenu>
  9280. <productMenu id="fmradio"
  9281. type="3" >
  9282. </productMenu>
  9283. <productMenu id="deviceSetting"
  9284. type="1"
  9285. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9286. <productMenuURL version="2.5.1"
  9287. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9288. />
  9289. <productMenuURL version="1.0"
  9290. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9291. />
  9292. </productMenu>
  9293. <productMenu id="quickGuide"
  9294. type="1"
  9295. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9296. size="651KB" >
  9297. </productMenu>
  9298. <productMenu id="userGuide"
  9299. type="1"
  9300. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9301. size="2.34MB" >
  9302. </productMenu>
  9303. <productMenu id="connectGuide"
  9304. type="1"
  9305. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9306. size="1.12MB" >
  9307. </productMenu>
  9308. <productID id="5580"
  9309. />
  9310. <productGroupable type="0"
  9311. />
  9312. </product>
  9313. <product id="10C"
  9314. name="10C"
  9315. series="10"
  9316. latestVersion="3.0.4"
  9317. show = "1" >
  9318. <productMenu id="protocol"
  9319. type="0">
  9320. </productMenu>
  9321. <productMenu id="sip"
  9322. type="1" >
  9323. <productMenuType version="1.0.4"
  9324. type="0"
  9325. />
  9326. </productMenu>
  9327. <productMenu id="bluetoothIntercom"
  9328. type="1" >
  9329. <productMenuType version="1.0.4"
  9330. type="0"
  9331. />
  9332. </productMenu>
  9333. <productMenu id="phone"
  9334. type="2" >
  9335. </productMenu>
  9336. <productMenu id="fmradio"
  9337. type="3" >
  9338. </productMenu>
  9339. <productMenu id="deviceSetting"
  9340. type="1"
  9341. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9342. <productMenuURL version="2.3"
  9343. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9344. />
  9345. <productMenuURL version="2.1.1"
  9346. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9347. />
  9348. <productMenuURL version="1.0.4"
  9349. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9350. />
  9351. <productMenuURL version="1.0.2"
  9352. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9353. />
  9354. </productMenu>
  9355. <productMenu id="quickGuide"
  9356. type="1"
  9357. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9358. size="935KB" >
  9359. </productMenu>
  9360. <productMenu id="userGuide"
  9361. type="1"
  9362. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9363. size="2.82MB" >
  9364. </productMenu>
  9365. <productMenu id="connectGuide"
  9366. type="1"
  9367. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9368. size="1.12MB" >
  9369. </productMenu>
  9370. <productID id="5510"
  9371. />
  9372. <productGroupable type="0"
  9373. />
  9374. </product>
  9375. <product id="10U_GT_AIR"
  9376. name="10U GT-Air"
  9377. series="10"
  9378. latestVersion="2.0.4"
  9379. show = "1" >
  9380. <productMenu id="protocol"
  9381. type="0">
  9382. </productMenu>
  9383. <productMenu id="sip"
  9384. type="1" >
  9385. <productMenuType version="1.0.2"
  9386. type="0"
  9387. />
  9388. </productMenu>
  9389. <productMenu id="bluetoothIntercom"
  9390. type="1" >
  9391. <productMenuType version="1.0.2"
  9392. type="0"
  9393. />
  9394. </productMenu>
  9395. <productMenu id="phone"
  9396. type="2" >
  9397. </productMenu>
  9398. <productMenu id="fmradio"
  9399. type="3" >
  9400. </productMenu>
  9401. <productMenu id="deviceSetting"
  9402. type="1"
  9403. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9404. <productMenuURL version="1.3.2"
  9405. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9406. />
  9407. <productMenuURL version="1.0.2"
  9408. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9409. />
  9410. </productMenu>
  9411. <productMenu id="quickGuide"
  9412. type="1"
  9413. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9414. size="685KB" >
  9415. </productMenu>
  9416. <productMenu id="userGuide"
  9417. type="1"
  9418. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9419. size="684KB" >
  9420. </productMenu>
  9421. <productMenu id="connectGuide"
  9422. type="1"
  9423. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9424. size="1.12MB" >
  9425. </productMenu>
  9426. <productID id="5610"
  9427. />
  9428. <productGroupable type="0"
  9429. />
  9430. </product>
  9431. <product id="10U_NEOTEC"
  9432. name="10U Neotec"
  9433. series="10"
  9434. latestVersion="2.0.4"
  9435. show = "1" >
  9436. <productMenu id="protocol"
  9437. type="0">
  9438. </productMenu>
  9439. <productMenu id="sip"
  9440. type="1" >
  9441. <productMenuType version="1.0.2"
  9442. type="0"
  9443. />
  9444. </productMenu>
  9445. <productMenu id="bluetoothIntercom"
  9446. type="1" >
  9447. <productMenuType version="1.0.2"
  9448. type="0"
  9449. />
  9450. </productMenu>
  9451. <productMenu id="phone"
  9452. type="2" >
  9453. </productMenu>
  9454. <productMenu id="fmradio"
  9455. type="3" >
  9456. </productMenu>
  9457. <productMenu id="deviceSetting"
  9458. type="1"
  9459. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9460. <productMenuURL version="1.3.2"
  9461. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9462. />
  9463. <productMenuURL version="1.0.2"
  9464. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9465. />
  9466. </productMenu>
  9467. <productMenu id="quickGuide"
  9468. type="1"
  9469. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9470. size="689KB" >
  9471. </productMenu>
  9472. <productMenu id="userGuide"
  9473. type="1"
  9474. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9475. size="684KB" >
  9476. </productMenu>
  9477. <productMenu id="connectGuide"
  9478. type="1"
  9479. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9480. size="1.12MB" >
  9481. </productMenu>
  9482. <productID id="5611"
  9483. />
  9484. <productGroupable type="0"
  9485. />
  9486. </product>
  9487. <product id="10U_J_CRUISE"
  9488. name="10U J-Cruise"
  9489. series="10"
  9490. latestVersion="2.0.4"
  9491. show = "1" >
  9492. <productMenu id="protocol"
  9493. type="0">
  9494. </productMenu>
  9495. <productMenu id="sip"
  9496. type="1" >
  9497. <productMenuType version="1.0.2"
  9498. type="0"
  9499. />
  9500. </productMenu>
  9501. <productMenu id="bluetoothIntercom"
  9502. type="1" >
  9503. <productMenuType version="1.0.2"
  9504. type="0"
  9505. />
  9506. </productMenu>
  9507. <productMenu id="phone"
  9508. type="2" >
  9509. </productMenu>
  9510. <productMenu id="fmradio"
  9511. type="3" >
  9512. </productMenu>
  9513. <productMenu id="deviceSetting"
  9514. type="1"
  9515. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9516. <productMenuURL version="1.3.2"
  9517. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9518. />
  9519. <productMenuURL version="1.0.2"
  9520. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9521. />
  9522. </productMenu>
  9523. <productMenu id="quickGuide"
  9524. type="1"
  9525. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9526. size="686KB" >
  9527. </productMenu>
  9528. <productMenu id="userGuide"
  9529. type="1"
  9530. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9531. size="684KB" >
  9532. </productMenu>
  9533. <productMenu id="connectGuide"
  9534. type="1"
  9535. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9536. size="1.12MB" >
  9537. </productMenu>
  9538. <productID id="5612"
  9539. />
  9540. <productGroupable type="0"
  9541. />
  9542. </product>
  9543. <product id="10U_C3"
  9544. name="10U C3/C3Pro"
  9545. series="10"
  9546. latestVersion="2.0.4"
  9547. show = "1" >
  9548. <productMenu id="protocol"
  9549. type="0">
  9550. </productMenu>
  9551. <productMenu id="sip"
  9552. type="1" >
  9553. <productMenuType version="1.0.2"
  9554. type="0"
  9555. />
  9556. </productMenu>
  9557. <productMenu id="bluetoothIntercom"
  9558. type="1" >
  9559. <productMenuType version="1.0.2"
  9560. type="0"
  9561. />
  9562. </productMenu>
  9563. <productMenu id="phone"
  9564. type="2" >
  9565. </productMenu>
  9566. <productMenu id="fmradio"
  9567. type="3" >
  9568. </productMenu>
  9569. <productMenu id="deviceSetting"
  9570. type="1"
  9571. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9572. <productMenuURL version="1.3.2"
  9573. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9574. />
  9575. <productMenuURL version="1.0.2"
  9576. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9577. />
  9578. </productMenu>
  9579. <productMenu id="quickGuide"
  9580. type="1"
  9581. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9582. size="199KB" >
  9583. </productMenu>
  9584. <productMenu id="userGuide"
  9585. type="1"
  9586. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9587. size="684KB" >
  9588. </productMenu>
  9589. <productMenu id="connectGuide"
  9590. type="1"
  9591. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9592. size="1.12MB" >
  9593. </productMenu>
  9594. <productID id="5620"
  9595. />
  9596. <productGroupable type="0"
  9597. />
  9598. </product>
  9599. <product id="10U_ARAI"
  9600. name="10U Arai"
  9601. series="10"
  9602. latestVersion="2.0.4"
  9603. show = "1" >
  9604. <productMenu id="protocol"
  9605. type="0">
  9606. </productMenu>
  9607. <productMenu id="sip"
  9608. type="1" >
  9609. <productMenuType version="1.0.2"
  9610. type="0"
  9611. />
  9612. </productMenu>
  9613. <productMenu id="bluetoothIntercom"
  9614. type="1" >
  9615. <productMenuType version="1.0.2"
  9616. type="0"
  9617. />
  9618. </productMenu>
  9619. <productMenu id="phone"
  9620. type="2" >
  9621. </productMenu>
  9622. <productMenu id="fmradio"
  9623. type="3" >
  9624. </productMenu>
  9625. <productMenu id="deviceSetting"
  9626. type="1"
  9627. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9628. <productMenuURL version="1.3.2"
  9629. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9630. />
  9631. <productMenuURL version="1.0.2"
  9632. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9633. />
  9634. </productMenu>
  9635. <productMenu id="quickGuide"
  9636. type="1"
  9637. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  9638. size="689KB" >
  9639. </productMenu>
  9640. <productMenu id="userGuide"
  9641. type="1"
  9642. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9643. size="684KB" >
  9644. </productMenu>
  9645. <productMenu id="connectGuide"
  9646. type="1"
  9647. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9648. size="1.12MB" >
  9649. </productMenu>
  9650. <productID id="5621"
  9651. />
  9652. <productGroupable type="0"
  9653. />
  9654. </product>
  9655. <product id="10Upad"
  9656. name="10Upad"
  9657. series="10"
  9658. latestVersion="2.0.3"
  9659. show = "1" >
  9660. <productMenu id="protocol"
  9661. type="0">
  9662. </productMenu>
  9663. <productMenu id="sip"
  9664. type="1" >
  9665. </productMenu>
  9666. <productMenu id="bluetoothIntercom"
  9667. type="1" >
  9668. </productMenu>
  9669. <productMenu id="phone"
  9670. type="2" >
  9671. </productMenu>
  9672. <productMenu id="fmradio"
  9673. type="3" >
  9674. </productMenu>
  9675. <productMenu id="deviceSetting"
  9676. type="1"
  9677. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  9678. <productMenuURL version="1.0.3"
  9679. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  9680. />
  9681. </productMenu>
  9682. <productMenu id="quickGuide"
  9683. type="1"
  9684. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  9685. size="615KB" >
  9686. </productMenu>
  9687. <productMenu id="userGuide"
  9688. type="1"
  9689. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  9690. size="0.99MB" >
  9691. </productMenu>
  9692. <productMenu id="connectGuide"
  9693. type="1"
  9694. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9695. size="1.12MB" >
  9696. </productMenu>
  9697. <productID id="6210"
  9698. />
  9699. <productGroupable type="0"
  9700. />
  9701. </product>
  9702. <product id="5S"
  9703. name="5S"
  9704. series="5"
  9705. latestVersion="2.3.1"
  9706. show = "1" >
  9707. <productMenu id="protocol"
  9708. type="3" >
  9709. </productMenu>
  9710. <productMenu id="sip"
  9711. type="1" >
  9712. </productMenu>
  9713. <productMenu id="bluetoothIntercom"
  9714. type="1" >
  9715. </productMenu>
  9716. <productMenu id="phone"
  9717. type="1" >
  9718. </productMenu>
  9719. <productMenu id="fmradio"
  9720. type="0" >
  9721. </productMenu>
  9722. <productMenu id="deviceSetting"
  9723. type="1"
  9724. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9725. </productMenu>
  9726. <productMenu id="quickGuide"
  9727. type="0"
  9728. url=""
  9729. size="934KB" >
  9730. </productMenu>
  9731. <productMenu id="userGuide"
  9732. type="1"
  9733. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  9734. size="1.14MB" >
  9735. </productMenu>
  9736. <productMenu id="connectGuide"
  9737. type="1"
  9738. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  9739. size="1.12MB" >
  9740. </productMenu>
  9741. <productID id="5590"
  9742. />
  9743. <productGroupable type="0"
  9744. />
  9745. </product>
  9746. <product id="5S"
  9747. name="5S"
  9748. series="5"
  9749. latestVersion="1.2"
  9750. show = "-1" >
  9751. <productMenu id="protocol"
  9752. type="0">
  9753. </productMenu>
  9754. <productMenu id="sip"
  9755. type="1" >
  9756. </productMenu>
  9757. <productMenu id="bluetoothIntercom"
  9758. type="1" >
  9759. </productMenu>
  9760. <productMenu id="phone"
  9761. type="2" >
  9762. </productMenu>
  9763. <productMenu id="fmradio"
  9764. type="3" >
  9765. </productMenu>
  9766. <productMenu id="deviceSetting"
  9767. type="1"
  9768. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  9769. </productMenu>
  9770. <productMenu id="quickGuide"
  9771. type="0"
  9772. url=""
  9773. size="970KB" >
  9774. </productMenu>
  9775. <productMenu id="userGuide"
  9776. type="1"
  9777. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  9778. size="1.26MB" >
  9779. </productMenu>
  9780. <productID id="5534"
  9781. />
  9782. <productGroupable type="0"
  9783. />
  9784. </product>
  9785. <product id="5S"
  9786. name="5S"
  9787. series="5"
  9788. latestVersion="3.0.1"
  9789. show = "-1" >
  9790. <productMenu id="protocol"
  9791. type="0">
  9792. </productMenu>
  9793. <productMenu id="sip"
  9794. type="1" >
  9795. </productMenu>
  9796. <productMenu id="bluetoothIntercom"
  9797. type="1" >
  9798. </productMenu>
  9799. <productMenu id="phone"
  9800. type="2" >
  9801. </productMenu>
  9802. <productMenu id="fmradio"
  9803. type="0" >
  9804. </productMenu>
  9805. <productMenu id="deviceSetting"
  9806. type="1"
  9807. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  9808. </productMenu>
  9809. <productMenu id="quickGuide"
  9810. type="0"
  9811. url=""
  9812. size="970KB" >
  9813. </productMenu>
  9814. <productMenu id="userGuide"
  9815. type="1"
  9816. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  9817. size="1.26MB" >
  9818. </productMenu>
  9819. <productID id="5538"
  9820. />
  9821. <productGroupable type="0"
  9822. />
  9823. </product>
  9824. <product id="3SPLUS"
  9825. name="3S PLUS"
  9826. series="3"
  9827. latestVersion="2.2"
  9828. show = "1" >
  9829. <productMenu id="protocol"
  9830. type="3" >
  9831. </productMenu>
  9832. <productMenu id="sip"
  9833. type="1" >
  9834. </productMenu>
  9835. <productMenu id="bluetoothIntercom"
  9836. type="1" >
  9837. </productMenu>
  9838. <productMenu id="deviceSetting"
  9839. type="1"
  9840. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  9841. <productMenuURL version="2.2.1"
  9842. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  9843. />
  9844. </productMenu>
  9845. <productMenu id="quickGuide"
  9846. type="1"
  9847. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9848. size="344KB" >
  9849. </productMenu>
  9850. <productMenu id="userGuide"
  9851. type="1"
  9852. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  9853. size="1.14MB" >
  9854. </productMenu>
  9855. <productMenu id="connectGuide"
  9856. type="1"
  9857. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  9858. size="1.12MB" >
  9859. </productMenu>
  9860. <productID id="4023"
  9861. />
  9862. <productGroupable type="0"
  9863. />
  9864. </product>
  9865. <product id="3SPLUS"
  9866. name="3S PLUS"
  9867. series="3"
  9868. latestVersion="1.1"
  9869. show = "-1" >
  9870. <productMenu id="protocol"
  9871. type="0">
  9872. </productMenu>
  9873. <productMenu id="sip"
  9874. type="1" >
  9875. </productMenu>
  9876. <productMenu id="bluetoothIntercom"
  9877. type="1" >
  9878. </productMenu>
  9879. <productMenu id="deviceSetting"
  9880. type="1"
  9881. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  9882. </productMenu>
  9883. <productMenu id="quickGuide"
  9884. type="1"
  9885. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9886. size="842KB" >
  9887. </productMenu>
  9888. <productMenu id="userGuide"
  9889. type="1"
  9890. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  9891. size="1.02MB" >
  9892. </productMenu>
  9893. <productID id="6320"
  9894. />
  9895. <productGroupable type="0"
  9896. />
  9897. </product>
  9898. <product id="AConnect"
  9899. name="Alpinestars A-Connect"
  9900. series="60"
  9901. latestVersion="1.0.2"
  9902. latestVersionMesh="0.19"
  9903. latestVersionVoicePrompt="1.6"
  9904. show = "-1" >
  9905. <productMenu id="protocol"
  9906. type="2" >
  9907. </productMenu>
  9908. <productMenu id="ota"
  9909. type="2" >
  9910. <otaLanguages>
  9911. <otaLanguage
  9912. id="0"
  9913. name="English"
  9914. package="0"
  9915. />
  9916. <otaLanguage
  9917. id="0"
  9918. name="French"
  9919. package="1"
  9920. />
  9921. <otaLanguage
  9922. id="0"
  9923. name="Spanish"
  9924. package="2"
  9925. />
  9926. <otaLanguage
  9927. id="0"
  9928. name="Italian"
  9929. package="3"
  9930. />
  9931. <otaLanguage
  9932. id="0"
  9933. name="German"
  9934. package="4"
  9935. />
  9936. <otaLanguage
  9937. id="0"
  9938. name="Dutch"
  9939. package="5"
  9940. />
  9941. <otaLanguage
  9942. id="0"
  9943. name="Russian"
  9944. package="6"
  9945. />
  9946. <otaLanguage
  9947. id="0"
  9948. name="Chinese"
  9949. package="7"
  9950. />
  9951. <otaLanguage
  9952. id="0"
  9953. name="Korean"
  9954. package="8"
  9955. />
  9956. <otaLanguage
  9957. id="0"
  9958. name="Japanese"
  9959. package="9"
  9960. />
  9961. <otaLanguage
  9962. id="0"
  9963. name="Finnish"
  9964. package="10"
  9965. />
  9966. <otaLanguage
  9967. id="0"
  9968. name="Polish"
  9969. package="11"
  9970. />
  9971. </otaLanguages>
  9972. <otaPackages>
  9973. <package
  9974. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  9975. size="5183988"
  9976. />
  9977. <package
  9978. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  9979. size="5183988"
  9980. />
  9981. <package
  9982. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  9983. size="5183988"
  9984. />
  9985. <package
  9986. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  9987. size="5183988"
  9988. />
  9989. <package
  9990. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  9991. size="5183988"
  9992. />
  9993. <package
  9994. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  9995. size="5183988"
  9996. />
  9997. <package
  9998. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  9999. size="5183988"
  10000. />
  10001. <package
  10002. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  10003. size="5183988"
  10004. />
  10005. <package
  10006. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  10007. size="5183988"
  10008. />
  10009. <package
  10010. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10011. size="5183988"
  10012. />
  10013. <package
  10014. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10015. size="5183988"
  10016. />
  10017. <package
  10018. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10019. size="5183988"
  10020. />
  10021. </otaPackages>
  10022. </productMenu>
  10023. <productMenu id="sip"
  10024. type="1" >
  10025. </productMenu>
  10026. <productMenu id="illusion"
  10027. type="0" >
  10028. </productMenu>
  10029. <productMenu id="meshIntercom+"
  10030. type="3"
  10031. url="2" >
  10032. </productMenu>
  10033. <productMenu id="waveIntercom"
  10034. type="1" >
  10035. </productMenu>
  10036. <productMenu id="bluetoothIntercom"
  10037. type="1"
  10038. url="2" >
  10039. </productMenu>
  10040. <productMenu id="bluetoothIntercomGrouping"
  10041. type="0" >
  10042. </productMenu>
  10043. <productMenu id="fmradio"
  10044. type="1"
  10045. url="1" >
  10046. </productMenu>
  10047. <productMenu id="phone"
  10048. type="1" >
  10049. </productMenu>
  10050. <productMenu id="music"
  10051. type="1" >
  10052. </productMenu>
  10053. <productMenu id="musicSharing"
  10054. type="0" >
  10055. </productMenu>
  10056. <productMenu id="deviceSetting"
  10057. type="1"
  10058. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  10059. </productMenu>
  10060. <productMenu id="quickGuide"
  10061. type="0"
  10062. url=""
  10063. size="1.12MB" >
  10064. </productMenu>
  10065. <productMenu id="userGuide"
  10066. type="1"
  10067. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  10068. size="2.0MB" >
  10069. </productMenu>
  10070. <productMenu id="videoGuide"
  10071. type="0"
  10072. url=""
  10073. size="3.41MB" >
  10074. </productMenu>
  10075. <productMenu id="volume"
  10076. type="16" >
  10077. </productMenu>
  10078. <productMenu id="volume+"
  10079. type="2"
  10080. url="0x6004" >
  10081. </productMenu>
  10082. <productMenu id="soundMode"
  10083. type="0" >
  10084. </productMenu>
  10085. <productMenu id="battery"
  10086. type="1" >
  10087. </productMenu>
  10088. <productID id="6A82"
  10089. />
  10090. <productGroupable type="0"
  10091. />
  10092. </product>
  10093. <product id="iCon"
  10094. name="iCon"
  10095. series="50"
  10096. latestVersion="1.2"
  10097. show = "0" >
  10098. <productMenu id="protocol"
  10099. type="2" >
  10100. </productMenu>
  10101. <productMenu id="alexa"
  10102. type="0" >
  10103. </productMenu>
  10104. <productMenu id="wa"
  10105. type="0" >
  10106. </productMenu>
  10107. <productMenu id="sip"
  10108. type="1" >
  10109. </productMenu>
  10110. <productMenu id="led"
  10111. type="3" >
  10112. </productMenu>
  10113. <productMenu id="meshIntercom"
  10114. type="20" >
  10115. </productMenu>
  10116. <productMenu id="meshIntercom+"
  10117. type="3"
  10118. url="0" >
  10119. <productMenuType version="1.0.9"
  10120. type="2"
  10121. />
  10122. </productMenu>
  10123. <productMenu id="bluetoothIntercom"
  10124. type="1" >
  10125. </productMenu>
  10126. <productMenu id="phone"
  10127. type="1" >
  10128. </productMenu>
  10129. <productMenu id="music"
  10130. type="1" >
  10131. </productMenu>
  10132. <productMenu id="fmradio"
  10133. type="1" >
  10134. </productMenu>
  10135. <productMenu id="deviceSetting"
  10136. type="1"
  10137. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10138. <productMenuURL version="1.0.9"
  10139. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10140. />
  10141. </productMenu>
  10142. <productMenu id="quickGuide"
  10143. type="1"
  10144. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10145. size="344KB" >
  10146. </productMenu>
  10147. <productMenu id="userGuide"
  10148. type="1"
  10149. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10150. size="3.41MB" >
  10151. </productMenu>
  10152. <productMenu id="volume"
  10153. type="11" >
  10154. </productMenu>
  10155. <productMenu id="battery"
  10156. type="1" >
  10157. </productMenu>
  10158. <productID id="3900"
  10159. />
  10160. <productGroupable type="0"
  10161. />
  10162. </product>
  10163. <product id="ICONHelmLinkSL"
  10164. name="ICON HelmLink SL"
  10165. series="50"
  10166. latestVersion="1.0"
  10167. latestVersionVoicePrompt="1.6"
  10168. show = "-1" >
  10169. <productMenu id="protocol"
  10170. type="2" >
  10171. </productMenu>
  10172. <productMenu id="alexa"
  10173. type="0" >
  10174. </productMenu>
  10175. <productMenu id="ota"
  10176. type="0" >
  10177. <otaPackages>
  10178. <package
  10179. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/ICON_HELMLINK_SL-v0.9-build0.img"
  10180. size="2945812"
  10181. />
  10182. </otaPackages>
  10183. </productMenu>
  10184. <productMenu id="wa"
  10185. type="0" >
  10186. </productMenu>
  10187. <productMenu id="meshIntercom"
  10188. type="30" >
  10189. </productMenu>
  10190. <productMenu id="meshIntercom+"
  10191. type="3"
  10192. url="2" >
  10193. </productMenu>
  10194. <productMenu id="waveIntercom"
  10195. type="1" >
  10196. </productMenu>
  10197. <productMenu id="phone"
  10198. type="1" >
  10199. </productMenu>
  10200. <productMenu id="music"
  10201. type="1" >
  10202. </productMenu>
  10203. <productMenu id="musicSharing"
  10204. type="0" >
  10205. </productMenu>
  10206. <productMenu id="deviceSetting"
  10207. type="1"
  10208. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10209. </productMenu>
  10210. <productMenu id="quickGuide"
  10211. type="0"
  10212. url=""
  10213. size="1.12MB" >
  10214. </productMenu>
  10215. <productMenu id="userGuide"
  10216. type="1"
  10217. url=""
  10218. size="2.0MB" >
  10219. </productMenu>
  10220. <productMenu id="volume"
  10221. type="12" >
  10222. </productMenu>
  10223. <productMenu id="battery"
  10224. type="1" >
  10225. </productMenu>
  10226. <productID id="6842"
  10227. />
  10228. <productGroupable type="0"
  10229. />
  10230. </product>
  10231. <product id="HD50S"
  10232. name="H-D Audio 50S"
  10233. series="50"
  10234. latestVersion="1.0.1"
  10235. show = "-1" >
  10236. <productMenu id="protocol"
  10237. type="2" >
  10238. </productMenu>
  10239. <productMenu id="alexa"
  10240. type="0" >
  10241. </productMenu>
  10242. <productMenu id="ota"
  10243. type="0"
  10244. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10245. size="1150234" >
  10246. </productMenu>
  10247. <productMenu id="wa"
  10248. type="1" >
  10249. </productMenu>
  10250. <productMenu id="sip"
  10251. type="1" >
  10252. </productMenu>
  10253. <productMenu id="meshIntercom"
  10254. type="20" >
  10255. </productMenu>
  10256. <productMenu id="meshIntercom+"
  10257. type="3"
  10258. url="0" >
  10259. <productMenuType version="1.0.9"
  10260. type="2"
  10261. />
  10262. </productMenu>
  10263. <productMenu id="bluetoothIntercom"
  10264. type="1" >
  10265. </productMenu>
  10266. <productMenu id="phone"
  10267. type="1" >
  10268. </productMenu>
  10269. <productMenu id="music"
  10270. type="1" >
  10271. </productMenu>
  10272. <productMenu id="fmradio"
  10273. type="1" >
  10274. </productMenu>
  10275. <productMenu id="deviceSetting"
  10276. type="1"
  10277. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10278. <productMenuURL version="1.0.9"
  10279. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10280. />
  10281. </productMenu>
  10282. <productMenu id="quickGuide"
  10283. type="1"
  10284. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10285. size="934KB" >
  10286. </productMenu>
  10287. <productMenu id="userGuide"
  10288. type="1"
  10289. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10290. size="1.14MB" >
  10291. </productMenu>
  10292. <productMenu id="volume"
  10293. type="11" >
  10294. </productMenu>
  10295. <productMenu id="battery"
  10296. type="1" >
  10297. </productMenu>
  10298. <productID id="3156"
  10299. />
  10300. <productGroupable type="0"
  10301. />
  10302. </product>
  10303. <product id="HD50S"
  10304. name="H-D Audio 50S"
  10305. series="50"
  10306. latestVersion="2.0.2"
  10307. show = "0" >
  10308. <productMenu id="protocol"
  10309. type="2" >
  10310. </productMenu>
  10311. <productMenu id="alexa"
  10312. type="0" >
  10313. </productMenu>
  10314. <productMenu id="ota"
  10315. type="0"
  10316. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10317. size="1150234" >
  10318. </productMenu>
  10319. <productMenu id="wa"
  10320. type="1" >
  10321. </productMenu>
  10322. <productMenu id="sip"
  10323. type="1" >
  10324. </productMenu>
  10325. <productMenu id="meshIntercom"
  10326. type="20" >
  10327. </productMenu>
  10328. <productMenu id="meshIntercom+"
  10329. type="3"
  10330. url="0" >
  10331. <productMenuType version="2.0.9"
  10332. type="2"
  10333. />
  10334. </productMenu>
  10335. <productMenu id="bluetoothIntercom"
  10336. type="1" >
  10337. </productMenu>
  10338. <productMenu id="phone"
  10339. type="1" >
  10340. </productMenu>
  10341. <productMenu id="music"
  10342. type="1" >
  10343. </productMenu>
  10344. <productMenu id="fmradio"
  10345. type="1" >
  10346. </productMenu>
  10347. <productMenu id="deviceSetting"
  10348. type="1"
  10349. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10350. <productMenuURL version="2.0.9"
  10351. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10352. />
  10353. </productMenu>
  10354. <productMenu id="quickGuide"
  10355. type="1"
  10356. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10357. size="934KB" >
  10358. </productMenu>
  10359. <productMenu id="userGuide"
  10360. type="1"
  10361. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10362. size="1.14MB" >
  10363. </productMenu>
  10364. <productMenu id="volume"
  10365. type="11" >
  10366. </productMenu>
  10367. <productMenu id="battery"
  10368. type="1" >
  10369. </productMenu>
  10370. <productID id="3213"
  10371. />
  10372. <productGroupable type="0"
  10373. />
  10374. </product>
  10375. <product id="HD50C"
  10376. name="H-D Audio 50C"
  10377. series="50"
  10378. latestVersion="1.0.1"
  10379. show = "0" >
  10380. <productMenu id="protocol"
  10381. type="2" >
  10382. </productMenu>
  10383. <productMenu id="ota"
  10384. type="0" >
  10385. </productMenu>
  10386. <productMenu id="wa"
  10387. type="1" >
  10388. </productMenu>
  10389. <productMenu id="sip"
  10390. type="1" >
  10391. </productMenu>
  10392. <productMenu id="meshIntercom"
  10393. type="20" >
  10394. </productMenu>
  10395. <productMenu id="meshIntercom+"
  10396. type="3"
  10397. url="0" >
  10398. <productMenuType version="1.0.9"
  10399. type="2"
  10400. />
  10401. </productMenu>
  10402. <productMenu id="bluetoothIntercom"
  10403. type="1" >
  10404. </productMenu>
  10405. <productMenu id="phone"
  10406. type="1" >
  10407. </productMenu>
  10408. <productMenu id="music"
  10409. type="1" >
  10410. </productMenu>
  10411. <productMenu id="fmradio"
  10412. type="1" >
  10413. </productMenu>
  10414. <productMenu id="deviceSetting"
  10415. type="1"
  10416. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10417. <productMenuURL version="1.0.9"
  10418. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10419. />
  10420. </productMenu>
  10421. <productMenu id="quickGuide"
  10422. type="1"
  10423. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10424. size="344KB" >
  10425. </productMenu>
  10426. <productMenu id="userGuide"
  10427. type="1"
  10428. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10429. size="3.41MB" >
  10430. </productMenu>
  10431. <productMenu id="volume"
  10432. type="11" >
  10433. </productMenu>
  10434. <productMenu id="battery"
  10435. type="1" >
  10436. </productMenu>
  10437. <productID id="3240"
  10438. />
  10439. <productGroupable type="0"
  10440. />
  10441. </product>
  10442. <product id="HD50S"
  10443. name="FURY N04"
  10444. series="Helmet"
  10445. latestVersion="1.0"
  10446. show = "0" >
  10447. <productMenu id="protocol"
  10448. type="2" >
  10449. </productMenu>
  10450. <productMenu id="alexa"
  10451. type="0" >
  10452. </productMenu>
  10453. <productMenu id="ota"
  10454. type="0" >
  10455. </productMenu>
  10456. <productMenu id="wa"
  10457. type="0" >
  10458. </productMenu>
  10459. <productMenu id="meshIntercom"
  10460. type="20" >
  10461. </productMenu>
  10462. <productMenu id="meshIntercom+"
  10463. type="3"
  10464. url="0" >
  10465. <productMenuType version="1.0.9"
  10466. type="2"
  10467. />
  10468. </productMenu>
  10469. <productMenu id="phone"
  10470. type="1" >
  10471. </productMenu>
  10472. <productMenu id="music"
  10473. type="1" >
  10474. </productMenu>
  10475. <productMenu id="fmradio"
  10476. type="1" >
  10477. </productMenu>
  10478. <productMenu id="deviceSetting"
  10479. type="1"
  10480. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10481. <productMenuURL version="1.0.9"
  10482. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10483. />
  10484. </productMenu>
  10485. <productMenu id="quickGuide"
  10486. type="1"
  10487. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10488. size="1.12MB" >
  10489. </productMenu>
  10490. <productMenu id="userGuide"
  10491. type="1"
  10492. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10493. size="2.0MB" >
  10494. </productMenu>
  10495. <productMenu id="volume"
  10496. type="13" >
  10497. </productMenu>
  10498. <productMenu id="battery"
  10499. type="1" >
  10500. </productMenu>
  10501. <productID id="5553"
  10502. />
  10503. <productGroupable type="0"
  10504. />
  10505. </product>
  10506. <product id="XCOM3Pro"
  10507. name="X-COM3 Pro"
  10508. series="50"
  10509. latestVersion="1.1"
  10510. show = "0" >
  10511. <productMenu id="protocol"
  10512. type="2" >
  10513. </productMenu>
  10514. <productMenu id="alexa"
  10515. type="0" >
  10516. </productMenu>
  10517. <productMenu id="ota"
  10518. type="0" >
  10519. </productMenu>
  10520. <productMenu id="wa"
  10521. type="0" >
  10522. </productMenu>
  10523. <productMenu id="sip"
  10524. type="1" >
  10525. </productMenu>
  10526. <productMenu id="meshIntercom"
  10527. type="30" >
  10528. </productMenu>
  10529. <productMenu id="meshIntercom+"
  10530. type="3"
  10531. url="2" >
  10532. <productMenuType version="1.1"
  10533. type="2"
  10534. />
  10535. </productMenu>
  10536. <productMenu id="waveIntercom"
  10537. type="1" >
  10538. <productMenuType version="1.1"
  10539. type="0"
  10540. />
  10541. </productMenu>
  10542. <productMenu id="bluetoothIntercom"
  10543. type="1" >
  10544. </productMenu>
  10545. <productMenu id="phone"
  10546. type="1" >
  10547. </productMenu>
  10548. <productMenu id="music"
  10549. type="1" >
  10550. </productMenu>
  10551. <productMenu id="fmradio"
  10552. type="1" >
  10553. </productMenu>
  10554. <productMenu id="deviceSetting"
  10555. type="1"
  10556. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10557. <productMenuURL version="1.1"
  10558. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10559. />
  10560. </productMenu>
  10561. <productMenu id="quickGuide"
  10562. type="0"
  10563. url=""
  10564. size="344KB" >
  10565. </productMenu>
  10566. <productMenu id="userGuide"
  10567. type="1"
  10568. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10569. size="3.41MB" >
  10570. </productMenu>
  10571. <productMenu id="volume"
  10572. type="11" >
  10573. </productMenu>
  10574. <productMenu id="battery"
  10575. type="1" >
  10576. </productMenu>
  10577. <productID id="321A"
  10578. />
  10579. <productGroupable type="0"
  10580. />
  10581. </product>
  10582. <product id="XCOM3"
  10583. name="X-COM3"
  10584. series="20"
  10585. latestVersion="1.0"
  10586. show = "0" >
  10587. <productMenu id="protocol"
  10588. type="2" >
  10589. </productMenu>
  10590. <productMenu id="sip"
  10591. type="1" >
  10592. </productMenu>
  10593. <productMenu id="bluetoothIntercom"
  10594. type="1" >
  10595. </productMenu>
  10596. <productMenu id="phone"
  10597. type="1" >
  10598. </productMenu>
  10599. <productMenu id="music"
  10600. type="1" >
  10601. </productMenu>
  10602. <productMenu id="fmradio"
  10603. type="1" >
  10604. </productMenu>
  10605. <productMenu id="deviceSetting"
  10606. type="1"
  10607. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10608. </productMenu>
  10609. <productMenu id="quickGuide"
  10610. type="0"
  10611. url=""
  10612. size="934KB" >
  10613. </productMenu>
  10614. <productMenu id="userGuide"
  10615. type="1"
  10616. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  10617. size="1.14MB" >
  10618. </productMenu>
  10619. <productMenu id="volume"
  10620. type="15" >
  10621. </productMenu>
  10622. <productID id="3410"
  10623. />
  10624. <productGroupable type="0"
  10625. />
  10626. </product>
  10627. <product id="X-COM2"
  10628. name="X-COM2"
  10629. series="20"
  10630. latestVersion="1.0.5"
  10631. show = "0" >
  10632. <productMenu id="protocol"
  10633. type="0">
  10634. </productMenu>
  10635. <productMenu id="sip"
  10636. type="1" >
  10637. </productMenu>
  10638. <productMenu id="bluetoothIntercom"
  10639. type="1" >
  10640. </productMenu>
  10641. <productMenu id="intercomSetting"
  10642. type="1" >
  10643. </productMenu>
  10644. <productMenu id="phone"
  10645. type="2" >
  10646. </productMenu>
  10647. <productMenu id="fmradio"
  10648. type="3" >
  10649. </productMenu>
  10650. <productMenu id="deviceSetting"
  10651. type="1"
  10652. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  10653. </productMenu>
  10654. <productMenu id="quickGuide"
  10655. type="1"
  10656. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  10657. size="796KB" >
  10658. </productMenu>
  10659. <productMenu id="userGuide"
  10660. type="1"
  10661. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  10662. size="1.90MB" >
  10663. </productMenu>
  10664. <productID id="2030"
  10665. />
  10666. <productGroupable type="1"
  10667. />
  10668. </product>
  10669. <product id="AVAABC"
  10670. name="AVA ABC"
  10671. series="SPIDER"
  10672. latestVersion="1.1"
  10673. show = "0" >
  10674. <productMenu id="protocol"
  10675. type="2" >
  10676. </productMenu>
  10677. <productMenu id="alexa"
  10678. type="0" >
  10679. </productMenu>
  10680. <productMenu id="ota"
  10681. type="0" >
  10682. <productMenuType version="1.0"
  10683. type="0"
  10684. />
  10685. <otaPackages>
  10686. <package
  10687. url="https://api.sena.com/support/OTA/"
  10688. size="2945812"
  10689. />
  10690. </otaPackages>
  10691. </productMenu>
  10692. <productMenu id="wa"
  10693. type="0" >
  10694. </productMenu>
  10695. <productMenu id="meshIntercom"
  10696. type="30" >
  10697. <productMenuType version="1.0"
  10698. type="20"
  10699. />
  10700. </productMenu>
  10701. <productMenu id="meshIntercom+"
  10702. type="3"
  10703. url="2" >
  10704. <productMenuType version="1.0"
  10705. type="2"
  10706. />
  10707. <productMenuURL version="1.0"
  10708. url="0"
  10709. />
  10710. </productMenu>
  10711. <productMenu id="waveIntercom"
  10712. type="1" >
  10713. <productMenuType version="1.0"
  10714. type="0"
  10715. />
  10716. </productMenu>
  10717. <productMenu id="phone"
  10718. type="1" >
  10719. </productMenu>
  10720. <productMenu id="music"
  10721. type="1" >
  10722. </productMenu>
  10723. <productMenu id="musicSharing"
  10724. type="0" >
  10725. </productMenu>
  10726. <productMenu id="deviceSetting"
  10727. type="1"
  10728. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  10729. <productMenuURL version="1.0"
  10730. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  10731. />
  10732. </productMenu>
  10733. <productMenu id="quickGuide"
  10734. type="1"
  10735. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  10736. size="1.12MB" >
  10737. </productMenu>
  10738. <productMenu id="userGuide"
  10739. type="1"
  10740. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  10741. size="2.0MB" >
  10742. </productMenu>
  10743. <productMenu id="volume"
  10744. type="12" >
  10745. </productMenu>
  10746. <productMenu id="battery"
  10747. type="1" >
  10748. </productMenu>
  10749. <productID id="6808"
  10750. />
  10751. <productGroupable type="0"
  10752. />
  10753. </product>
  10754. <product id="ADVANCEProCOM2"
  10755. name="ADVANCE ProCOM 2"
  10756. series="Helmet"
  10757. latestVersion="0.5"
  10758. latestVersionVoicePrompt="0.3"
  10759. show = "-1" >
  10760. <productMenu id="protocol"
  10761. type="2" >
  10762. </productMenu>
  10763. <productMenu id="ota"
  10764. type="2" >
  10765. <otaLanguages>
  10766. <otaLanguage
  10767. id="0"
  10768. name="English"
  10769. package="0"
  10770. />
  10771. <otaLanguage
  10772. id="0"
  10773. name="French"
  10774. package="1"
  10775. />
  10776. <otaLanguage
  10777. id="0"
  10778. name="Spanish"
  10779. package="2"
  10780. />
  10781. <otaLanguage
  10782. id="0"
  10783. name="Italian"
  10784. package="3"
  10785. />
  10786. <otaLanguage
  10787. id="0"
  10788. name="German"
  10789. package="4"
  10790. />
  10791. <otaLanguage
  10792. id="0"
  10793. name="Dutch"
  10794. package="5"
  10795. />
  10796. <otaLanguage
  10797. id="0"
  10798. name="Russian"
  10799. package="6"
  10800. />
  10801. <otaLanguage
  10802. id="0"
  10803. name="Chinese"
  10804. package="7"
  10805. />
  10806. <otaLanguage
  10807. id="0"
  10808. name="Korean"
  10809. package="8"
  10810. />
  10811. <otaLanguage
  10812. id="0"
  10813. name="Japanese"
  10814. package="9"
  10815. />
  10816. <otaLanguage
  10817. id="0"
  10818. name="Finnish"
  10819. package="10"
  10820. />
  10821. <otaLanguage
  10822. id="0"
  10823. name="Polish"
  10824. package="11"
  10825. />
  10826. </otaLanguages>
  10827. <otaPackages>
  10828. <package
  10829. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  10830. size="5183988"
  10831. />
  10832. <package
  10833. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  10834. size="5183988"
  10835. />
  10836. <package
  10837. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  10838. size="5183988"
  10839. />
  10840. <package
  10841. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  10842. size="5183988"
  10843. />
  10844. <package
  10845. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  10846. size="5183988"
  10847. />
  10848. <package
  10849. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  10850. size="5183988"
  10851. />
  10852. <package
  10853. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  10854. size="5183988"
  10855. />
  10856. <package
  10857. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  10858. size="5183988"
  10859. />
  10860. <package
  10861. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  10862. size="5183988"
  10863. />
  10864. <package
  10865. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  10866. size="5183988"
  10867. />
  10868. <package
  10869. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  10870. size="5183988"
  10871. />
  10872. <package
  10873. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  10874. size="5183988"
  10875. />
  10876. </otaPackages>
  10877. </productMenu>
  10878. <productMenu id="wa"
  10879. type="0" >
  10880. </productMenu>
  10881. <productMenu id="meshIntercom"
  10882. type="30" >
  10883. </productMenu>
  10884. <productMenu id="meshIntercom+"
  10885. type="3"
  10886. url="2" >
  10887. </productMenu>
  10888. <productMenu id="waveIntercom"
  10889. type="1" >
  10890. </productMenu>
  10891. <productMenu id="fmradio"
  10892. type="1" >
  10893. </productMenu>
  10894. <productMenu id="phone"
  10895. type="0" >
  10896. </productMenu>
  10897. <productMenu id="music"
  10898. type="1" >
  10899. </productMenu>
  10900. <productMenu id="musicSharing"
  10901. type="0" >
  10902. </productMenu>
  10903. <productMenu id="deviceSetting"
  10904. type="1"
  10905. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  10906. </productMenu>
  10907. <productMenu id="quickGuide"
  10908. type="0"
  10909. url=""
  10910. size="1.12MB" >
  10911. </productMenu>
  10912. <productMenu id="userGuide"
  10913. type="1"
  10914. url=""
  10915. size="2.0MB" >
  10916. </productMenu>
  10917. <productMenu id="videoGuide"
  10918. type="0"
  10919. url=""
  10920. size="3.41MB" >
  10921. </productMenu>
  10922. <productMenu id="connectGuide"
  10923. type="1"
  10924. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  10925. size="1.12MB" >
  10926. </productMenu>
  10927. <productMenu id="volume"
  10928. type="16" >
  10929. </productMenu>
  10930. <productMenu id="battery"
  10931. type="1" >
  10932. </productMenu>
  10933. <productID id="6A85"
  10934. />
  10935. <productGroupable type="0"
  10936. />
  10937. </product>
  10938. <product id="TRIUMPH60X"
  10939. name="TRIUMPH 60X"
  10940. series="60"
  10941. latestVersion="1.0"
  10942. latestVersionMesh="0.19"
  10943. latestVersionVoicePrompt="1.7"
  10944. show = "-1" >
  10945. <productMenu id="protocol"
  10946. type="2" >
  10947. </productMenu>
  10948. <productMenu id="ota"
  10949. type="0" >
  10950. <otaLanguages>
  10951. <otaLanguage
  10952. id="0"
  10953. name="English"
  10954. package="0"
  10955. />
  10956. <otaLanguage
  10957. id="0"
  10958. name="French"
  10959. package="1"
  10960. />
  10961. <otaLanguage
  10962. id="0"
  10963. name="Spanish"
  10964. package="2"
  10965. />
  10966. <otaLanguage
  10967. id="0"
  10968. name="Italian"
  10969. package="3"
  10970. />
  10971. <otaLanguage
  10972. id="0"
  10973. name="German"
  10974. package="4"
  10975. />
  10976. <otaLanguage
  10977. id="0"
  10978. name="Dutch"
  10979. package="5"
  10980. />
  10981. <otaLanguage
  10982. id="0"
  10983. name="Russian"
  10984. package="6"
  10985. />
  10986. <otaLanguage
  10987. id="0"
  10988. name="Chinese"
  10989. package="7"
  10990. />
  10991. <otaLanguage
  10992. id="0"
  10993. name="Korean"
  10994. package="8"
  10995. />
  10996. <otaLanguage
  10997. id="0"
  10998. name="Japanese"
  10999. package="9"
  11000. />
  11001. <otaLanguage
  11002. id="0"
  11003. name="Finnish"
  11004. package="10"
  11005. />
  11006. <otaLanguage
  11007. id="0"
  11008. name="Polish"
  11009. package="11"
  11010. />
  11011. </otaLanguages>
  11012. <otaPackages>
  11013. <package
  11014. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5.img"
  11015. size="5183988"
  11016. />
  11017. <package
  11018. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fr-FR.img"
  11019. size="5183988"
  11020. />
  11021. <package
  11022. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-es-ES.img"
  11023. size="5183988"
  11024. />
  11025. <package
  11026. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-it-IT.img"
  11027. size="5183988"
  11028. />
  11029. <package
  11030. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-de-DE.img"
  11031. size="5183988"
  11032. />
  11033. <package
  11034. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-nl-NL.img"
  11035. size="5183988"
  11036. />
  11037. <package
  11038. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ru-RU.img"
  11039. size="5183988"
  11040. />
  11041. <package
  11042. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-cmn-CN.img"
  11043. size="5183988"
  11044. />
  11045. <package
  11046. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ko-KR.img"
  11047. size="5183988"
  11048. />
  11049. <package
  11050. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ja-JP.img"
  11051. size="5183988"
  11052. />
  11053. <package
  11054. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fi-FI.img"
  11055. size="5183988"
  11056. />
  11057. <package
  11058. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-pl-PL.img"
  11059. size="5183988"
  11060. />
  11061. </otaPackages>
  11062. </productMenu>
  11063. <productMenu id="wa"
  11064. type="0" >
  11065. </productMenu>
  11066. <productMenu id="sip"
  11067. type="1" >
  11068. </productMenu>
  11069. <productMenu id="led"
  11070. type="1" >
  11071. </productMenu>
  11072. <productMenu id="illusion"
  11073. type="1" >
  11074. </productMenu>
  11075. <productMenu id="meshIntercom"
  11076. type="30" >
  11077. </productMenu>
  11078. <productMenu id="meshIntercom+"
  11079. type="3"
  11080. url="2" >
  11081. </productMenu>
  11082. <productMenu id="bluetoothIntercom"
  11083. type="1" >
  11084. </productMenu>
  11085. <productMenu id="fmradio"
  11086. type="1"
  11087. url="1" >
  11088. </productMenu>
  11089. <productMenu id="mic"
  11090. type="0" >
  11091. </productMenu>
  11092. <productMenu id="phone"
  11093. type="1" >
  11094. </productMenu>
  11095. <productMenu id="music"
  11096. type="1" >
  11097. </productMenu>
  11098. <productMenu id="musicSharing"
  11099. type="0" >
  11100. </productMenu>
  11101. <productMenu id="deviceSetting"
  11102. type="1"
  11103. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  11104. </productMenu>
  11105. <productMenu id="quickGuide"
  11106. type="0"
  11107. url=""
  11108. size="1.12MB" >
  11109. </productMenu>
  11110. <productMenu id="userGuide"
  11111. type="1"
  11112. url=""
  11113. size="2.0MB" >
  11114. </productMenu>
  11115. <productMenu id="videoGuide"
  11116. type="0"
  11117. url=""
  11118. size="3.41MB" >
  11119. </productMenu>
  11120. <productMenu id="keySettings"
  11121. type="1"
  11122. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  11123. </productMenu>
  11124. <productMenu id="volume"
  11125. type="13" >
  11126. </productMenu>
  11127. <productMenu id="volume+"
  11128. type="2"
  11129. url="0x6004" >
  11130. </productMenu>
  11131. <productMenu id="battery"
  11132. type="1" >
  11133. </productMenu>
  11134. <productID id="6A1C"
  11135. />
  11136. <productGroupable type="0"
  11137. />
  11138. </product>
  11139. <product id="Triumph_50S"
  11140. name="Triumph 50S"
  11141. series="50"
  11142. latestVersion="1.5"
  11143. show = "0" >
  11144. <productMenu id="protocol"
  11145. type="2" >
  11146. </productMenu>
  11147. <productMenu id="alexa"
  11148. type="0" >
  11149. </productMenu>
  11150. <productMenu id="ota"
  11151. type="0"
  11152. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11153. size="1150234" >
  11154. </productMenu>
  11155. <productMenu id="wa"
  11156. type="1" >
  11157. </productMenu>
  11158. <productMenu id="sip"
  11159. type="1" >
  11160. </productMenu>
  11161. <productMenu id="meshIntercom"
  11162. type="20" >
  11163. </productMenu>
  11164. <productMenu id="bluetoothIntercom"
  11165. type="1" >
  11166. </productMenu>
  11167. <productMenu id="meshIntercom+"
  11168. type="3"
  11169. url="2" >
  11170. <productMenuType version="1.2.9"
  11171. type="2"
  11172. />
  11173. <productMenuURL version="1.2.9"
  11174. url="0"
  11175. />
  11176. </productMenu>
  11177. <productMenu id="waveIntercom"
  11178. type="1" >
  11179. <productMenuType version="1.2.9"
  11180. type="0"
  11181. />
  11182. </productMenu>
  11183. <productMenu id="phone"
  11184. type="1" >
  11185. </productMenu>
  11186. <productMenu id="music"
  11187. type="1" >
  11188. </productMenu>
  11189. <productMenu id="fmradio"
  11190. type="1" >
  11191. </productMenu>
  11192. <productMenu id="deviceSetting"
  11193. type="1"
  11194. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11195. <productMenuURL version="1.2.9"
  11196. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  11197. />
  11198. <productMenuURL version="1.0"
  11199. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11200. />
  11201. </productMenu>
  11202. <productMenu id="quickGuide"
  11203. type="1"
  11204. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  11205. size="934KB" >
  11206. </productMenu>
  11207. <productMenu id="userGuide"
  11208. type="1"
  11209. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  11210. size="1.14MB" >
  11211. </productMenu>
  11212. <productMenu id="volume"
  11213. type="11" >
  11214. </productMenu>
  11215. <productMenu id="battery"
  11216. type="1" >
  11217. </productMenu>
  11218. <productID id="3264"
  11219. />
  11220. <productGroupable type="0"
  11221. />
  11222. </product>
  11223. <product id="RE50S"
  11224. name="RE 50S"
  11225. series="50"
  11226. latestVersion="2.7"
  11227. show = "0" >
  11228. <productMenu id="protocol"
  11229. type="2" >
  11230. </productMenu>
  11231. <productMenu id="alexa"
  11232. type="0" >
  11233. </productMenu>
  11234. <productMenu id="ota"
  11235. type="0"
  11236. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11237. size="1150234" >
  11238. </productMenu>
  11239. <productMenu id="wa"
  11240. type="1" >
  11241. </productMenu>
  11242. <productMenu id="sip"
  11243. type="1" >
  11244. </productMenu>
  11245. <productMenu id="meshIntercom"
  11246. type="30" >
  11247. </productMenu>
  11248. <productMenu id="meshIntercom+"
  11249. type="3"
  11250. url="2" >
  11251. <productMenuType version="2.5"
  11252. type="2"
  11253. />
  11254. </productMenu>
  11255. <productMenu id="waveIntercom"
  11256. type="1" >
  11257. <productMenuType version="2.5"
  11258. type="0"
  11259. />
  11260. </productMenu>
  11261. <productMenu id="bluetoothIntercom"
  11262. type="1" >
  11263. </productMenu>
  11264. <productMenu id="phone"
  11265. type="1" >
  11266. </productMenu>
  11267. <productMenu id="music"
  11268. type="1" >
  11269. </productMenu>
  11270. <productMenu id="fmradio"
  11271. type="1" >
  11272. </productMenu>
  11273. <productMenu id="deviceSetting"
  11274. type="1"
  11275. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11276. <productMenuURL version="2.5.9"
  11277. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11278. />
  11279. </productMenu>
  11280. <productMenu id="quickGuide"
  11281. type="1"
  11282. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11283. size="934KB" >
  11284. </productMenu>
  11285. <productMenu id="userGuide"
  11286. type="1"
  11287. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11288. size="1.14MB" >
  11289. </productMenu>
  11290. <productMenu id="videoGuide"
  11291. type="0"
  11292. url=""
  11293. size="3.41MB" >
  11294. </productMenu>
  11295. <productMenu id="volume"
  11296. type="11" >
  11297. </productMenu>
  11298. <productMenu id="battery"
  11299. type="1" >
  11300. </productMenu>
  11301. <productID id="321C"
  11302. />
  11303. <productGroupable type="0"
  11304. />
  11305. </product>
  11306. <product id="BMW_HELMET_II_U1"
  11307. name="BMW HELMET II U1"
  11308. series="50"
  11309. latestVersion="1.0"
  11310. show = "0" >
  11311. <productMenu id="protocol"
  11312. type="2" >
  11313. </productMenu>
  11314. <productMenu id="alexa"
  11315. type="0" >
  11316. </productMenu>
  11317. <productMenu id="sip"
  11318. type="1" >
  11319. </productMenu>
  11320. <productMenu id="meshIntercom"
  11321. type="20" >
  11322. </productMenu>
  11323. <productMenu id="bluetoothIntercom"
  11324. type="1" >
  11325. </productMenu>
  11326. <productMenu id="bluetoothIntercom2"
  11327. type="1" >
  11328. </productMenu>
  11329. <productMenu id="phone"
  11330. type="1" >
  11331. </productMenu>
  11332. <productMenu id="music"
  11333. type="1" >
  11334. </productMenu>
  11335. <productMenu id="fmradio"
  11336. type="1" >
  11337. </productMenu>
  11338. <productMenu id="deviceSetting"
  11339. type="1"
  11340. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11341. </productMenu>
  11342. <productMenu id="quickGuide"
  11343. type="1"
  11344. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11345. size="934KB" >
  11346. </productMenu>
  11347. <productMenu id="userGuide"
  11348. type="1"
  11349. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11350. size="1.14MB" >
  11351. </productMenu>
  11352. <productMenu id="volume"
  11353. type="11" >
  11354. </productMenu>
  11355. <productMenu id="battery"
  11356. type="1" >
  11357. </productMenu>
  11358. <productID id="3260"
  11359. />
  11360. <productGroupable type="0"
  11361. />
  11362. </product>
  11363. <product id="OUTRUSHR"
  11364. name="CX935"
  11365. series="Helmet"
  11366. latestVersion="2.1"
  11367. show = "-1" >
  11368. <productMenu id="protocol"
  11369. type="3">
  11370. </productMenu>
  11371. <productMenu id="sip"
  11372. type="1" >
  11373. </productMenu>
  11374. <productMenu id="bluetoothIntercom"
  11375. type="1" >
  11376. </productMenu>
  11377. <productMenu id="phone"
  11378. type="1" >
  11379. </productMenu>
  11380. <productMenu id="fmradio"
  11381. type="0" >
  11382. </productMenu>
  11383. <productMenu id="deviceSetting"
  11384. type="1"
  11385. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11386. </productMenu>
  11387. <productMenu id="userGuide"
  11388. type="1"
  11389. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11390. size="660KB" >
  11391. </productMenu>
  11392. <productID id="5446"
  11393. />
  11394. <productGroupable type="0"
  11395. />
  11396. </product>
  11397. <product id="LSE_01"
  11398. name="LSE-01"
  11399. series="SF"
  11400. latestVersion="1.2.3"
  11401. show = "0" >
  11402. <productMenu id="protocol"
  11403. type="1"
  11404. url="3">
  11405. </productMenu>
  11406. <productMenu id="sip"
  11407. type="1" >
  11408. </productMenu>
  11409. <productMenu id="bluetoothIntercom"
  11410. type="1" >
  11411. </productMenu>
  11412. <productMenu id="phone"
  11413. type="1" >
  11414. </productMenu>
  11415. <productMenu id="music"
  11416. type="1" >
  11417. </productMenu>
  11418. <productMenu id="fmradio"
  11419. type="1" >
  11420. </productMenu>
  11421. <productMenu id="deviceSetting"
  11422. type="1"
  11423. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11424. <productMenuURL version="1.1"
  11425. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11426. />
  11427. <productMenuURL version="1.0"
  11428. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11429. />
  11430. </productMenu>
  11431. <productMenu id="quickGuide"
  11432. type="1"
  11433. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11434. size="607KB" >
  11435. </productMenu>
  11436. <productMenu id="userGuide"
  11437. type="1"
  11438. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11439. size="1.91MB" >
  11440. </productMenu>
  11441. <productMenu id="volume"
  11442. type="4" >
  11443. </productMenu>
  11444. <productID id="5416"
  11445. />
  11446. <productGroupable type="0"
  11447. />
  11448. </product>
  11449. <product id="AGV_ARK"
  11450. name="AGV ARK"
  11451. series="SF"
  11452. latestVersion="1.0.3"
  11453. show = "0" >
  11454. <productMenu id="protocol"
  11455. type="1"
  11456. url="3">
  11457. </productMenu>
  11458. <productMenu id="sip"
  11459. type="1" >
  11460. </productMenu>
  11461. <productMenu id="bluetoothIntercom"
  11462. type="1" >
  11463. </productMenu>
  11464. <productMenu id="phone"
  11465. type="1" >
  11466. </productMenu>
  11467. <productMenu id="music"
  11468. type="1" >
  11469. </productMenu>
  11470. <productMenu id="fmradio"
  11471. type="1" >
  11472. </productMenu>
  11473. <productMenu id="deviceSetting"
  11474. type="1"
  11475. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11476. </productMenu>
  11477. <productMenu id="quickGuide"
  11478. type="1"
  11479. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11480. size="607KB" >
  11481. </productMenu>
  11482. <productMenu id="userGuide"
  11483. type="1"
  11484. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11485. size="1.91MB" >
  11486. </productMenu>
  11487. <productMenu id="volume"
  11488. type="4" >
  11489. </productMenu>
  11490. <productID id="5420"
  11491. />
  11492. <productGroupable type="0"
  11493. />
  11494. </product>
  11495. <product id="KLIM_KRIOS"
  11496. name="KLIM Krios"
  11497. series="10"
  11498. latestVersion="1.1.2"
  11499. show = "0" >
  11500. <productMenu id="protocol"
  11501. type="0">
  11502. </productMenu>
  11503. <productMenu id="sip"
  11504. type="1" >
  11505. </productMenu>
  11506. <productMenu id="bluetoothIntercom"
  11507. type="1" >
  11508. </productMenu>
  11509. <productMenu id="phone"
  11510. type="2" >
  11511. </productMenu>
  11512. <productMenu id="fmradio"
  11513. type="3" >
  11514. </productMenu>
  11515. <productMenu id="deviceSetting"
  11516. type="1"
  11517. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11518. <productMenuURL version="1.0"
  11519. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11520. />
  11521. </productMenu>
  11522. <productMenu id="quickGuide"
  11523. type="1"
  11524. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11525. size="649KB" >
  11526. </productMenu>
  11527. <productMenu id="userGuide"
  11528. type="1"
  11529. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11530. size="1.43MB" >
  11531. </productMenu>
  11532. <productID id="5910"
  11533. />
  11534. <productGroupable type="0"
  11535. />
  11536. </product>
  11537. <product id="POLARIS_SLINGSHOT"
  11538. name="Polaris Slingshot"
  11539. series="10"
  11540. latestVersion="1.1.2"
  11541. show = "0" >
  11542. <productMenu id="protocol"
  11543. type="0">
  11544. </productMenu>
  11545. <productMenu id="sip"
  11546. type="1" >
  11547. </productMenu>
  11548. <productMenu id="bluetoothIntercom"
  11549. type="1" >
  11550. </productMenu>
  11551. <productMenu id="phone"
  11552. type="2" >
  11553. </productMenu>
  11554. <productMenu id="fmradio"
  11555. type="3" >
  11556. </productMenu>
  11557. <productMenu id="deviceSetting"
  11558. type="1"
  11559. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11560. <productMenuURL version="1.0"
  11561. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11562. />
  11563. </productMenu>
  11564. <productMenu id="quickGuide"
  11565. type="1"
  11566. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11567. size="689KB" >
  11568. </productMenu>
  11569. <productMenu id="userGuide"
  11570. type="1"
  11571. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11572. size="1.43MB" >
  11573. </productMenu>
  11574. <productID id="5920"
  11575. />
  11576. <productGroupable type="0"
  11577. />
  11578. </product>
  11579. <product id="DWO6"
  11580. name="SEDICI DWO6-PRO"
  11581. series="10"
  11582. latestVersion="1.0.2"
  11583. show = "0" >
  11584. <productMenu id="protocol"
  11585. type="0">
  11586. </productMenu>
  11587. <productMenu id="sip"
  11588. type="1" >
  11589. </productMenu>
  11590. <productMenu id="bluetoothIntercom"
  11591. type="1" >
  11592. </productMenu>
  11593. <productMenu id="phone"
  11594. type="2" >
  11595. </productMenu>
  11596. <productMenu id="fmradio"
  11597. type="3" >
  11598. </productMenu>
  11599. <productMenu id="deviceSetting"
  11600. type="1"
  11601. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  11602. </productMenu>
  11603. <productMenu id="quickGuide"
  11604. type="1"
  11605. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11606. size="529KB" >
  11607. </productMenu>
  11608. <productMenu id="userGuide"
  11609. type="1"
  11610. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11611. size="4.09MB" >
  11612. </productMenu>
  11613. <productID id="6112"
  11614. />
  11615. <productGroupable type="0"
  11616. />
  11617. </product>
  11618. <product id="DWO6A"
  11619. name="SEDICI DWO-6"
  11620. series="10"
  11621. latestVersion="1.0.2"
  11622. show = "0" >
  11623. <productMenu id="protocol"
  11624. type="0">
  11625. </productMenu>
  11626. <productMenu id="sip"
  11627. type="1" >
  11628. </productMenu>
  11629. <productMenu id="bluetoothIntercom"
  11630. type="1" >
  11631. </productMenu>
  11632. <productMenu id="phone"
  11633. type="2" >
  11634. </productMenu>
  11635. <productMenu id="fmradio"
  11636. type="3" >
  11637. </productMenu>
  11638. <productMenu id="deviceSetting"
  11639. type="1"
  11640. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  11641. </productMenu>
  11642. <productMenu id="quickGuide"
  11643. type="1"
  11644. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  11645. size="522KB" >
  11646. </productMenu>
  11647. <productMenu id="userGuide"
  11648. type="1"
  11649. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  11650. size="2.71MB" >
  11651. </productMenu>
  11652. <productID id="6114"
  11653. />
  11654. <productGroupable type="0"
  11655. />
  11656. </product>
  11657. <product id="3SPLUS"
  11658. name="ZILL"
  11659. series="3"
  11660. latestVersion="1.0.4"
  11661. show = "0" >
  11662. <productMenu id="protocol"
  11663. type="0">
  11664. </productMenu>
  11665. <productMenu id="sip"
  11666. type="1" >
  11667. </productMenu>
  11668. <productMenu id="bluetoothIntercom"
  11669. type="1" >
  11670. </productMenu>
  11671. <productMenu id="deviceSetting"
  11672. type="1"
  11673. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  11674. </productMenu>
  11675. <productMenu id="quickGuide"
  11676. type="1"
  11677. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11678. size="842KB" >
  11679. </productMenu>
  11680. <productMenu id="userGuide"
  11681. type="1"
  11682. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  11683. size="1.02MB" >
  11684. </productMenu>
  11685. <productID id="6335"
  11686. />
  11687. <productGroupable type="0"
  11688. />
  11689. </product>
  11690. <product id="HD50S"
  11691. name="Boom! Audio 30K"
  11692. series="30"
  11693. latestVersion="3.4"
  11694. show = "0" >
  11695. <productMenu id="protocol"
  11696. type="1"
  11697. url="0">
  11698. </productMenu>
  11699. <productMenu id="wa"
  11700. type="0" >
  11701. </productMenu>
  11702. <productMenu id="sip"
  11703. type="1" >
  11704. </productMenu>
  11705. <productMenu id="meshIntercom"
  11706. type="20" >
  11707. <productMenuType version="2.9.9"
  11708. type="10"
  11709. />
  11710. </productMenu>
  11711. <productMenu id="bluetoothIntercom"
  11712. type="1" >
  11713. </productMenu>
  11714. <productMenu id="phone"
  11715. type="1" >
  11716. </productMenu>
  11717. <productMenu id="music"
  11718. type="1" >
  11719. </productMenu>
  11720. <productMenu id="fmradio"
  11721. type="1" >
  11722. </productMenu>
  11723. <productMenu id="deviceSetting"
  11724. type="1"
  11725. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  11726. <productMenuURL version="3.2"
  11727. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  11728. />
  11729. <productMenuURL version="3.0"
  11730. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  11731. />
  11732. <productMenuURL version="2.2"
  11733. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11734. />
  11735. </productMenu>
  11736. <productMenu id="quickGuide"
  11737. type="1"
  11738. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11739. size="1.06MB" >
  11740. </productMenu>
  11741. <productMenu id="userGuide"
  11742. type="1"
  11743. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11744. size="3.15MB" >
  11745. </productMenu>
  11746. <productMenu id="volume"
  11747. type="1" >
  11748. </productMenu>
  11749. <productID id="3112"
  11750. />
  11751. <productGroupable type="0"
  11752. />
  11753. </product>
  11754. <product id="HD50S"
  11755. name="Boom! Audio N02"
  11756. series="30"
  11757. latestVersion="3.1"
  11758. show = "0" >
  11759. <productMenu id="protocol"
  11760. type="1"
  11761. url="0">
  11762. </productMenu>
  11763. <productMenu id="wa"
  11764. type="2" >
  11765. </productMenu>
  11766. <productMenu id="sip"
  11767. type="1" >
  11768. </productMenu>
  11769. <productMenu id="meshIntercom"
  11770. type="20" >
  11771. <productMenuType version="2.9.9"
  11772. type="10"
  11773. />
  11774. </productMenu>
  11775. <productMenu id="bluetoothIntercom"
  11776. type="1" >
  11777. </productMenu>
  11778. <productMenu id="phone"
  11779. type="1" >
  11780. </productMenu>
  11781. <productMenu id="music"
  11782. type="1" >
  11783. </productMenu>
  11784. <productMenu id="fmradio"
  11785. type="1" >
  11786. </productMenu>
  11787. <productMenu id="deviceSetting"
  11788. type="1"
  11789. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  11790. <productMenuURL version="2.2"
  11791. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11792. />
  11793. </productMenu>
  11794. <productMenu id="quickGuide"
  11795. type="1"
  11796. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  11797. size="1.06MB" >
  11798. </productMenu>
  11799. <productMenu id="userGuide"
  11800. type="1"
  11801. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  11802. size="3.15MB" >
  11803. </productMenu>
  11804. <productMenu id="volume"
  11805. type="2" >
  11806. </productMenu>
  11807. <productID id="3114"
  11808. />
  11809. <productGroupable type="0"
  11810. />
  11811. </product>
  11812. <product id="HD50S"
  11813. name="Boom Audio 20S"
  11814. series="50"
  11815. latestVersion="2.5.2"
  11816. show = "0" >
  11817. <productMenu id="protocol"
  11818. type="0">
  11819. </productMenu>
  11820. <productMenu id="sip"
  11821. type="1" >
  11822. <productMenuType version="1.0"
  11823. type="0"
  11824. />
  11825. </productMenu>
  11826. <productMenu id="bluetoothIntercom"
  11827. type="1" >
  11828. <productMenuType version="1.0"
  11829. type="0"
  11830. />
  11831. </productMenu>
  11832. <productMenu id="intercomSetting"
  11833. type="1" >
  11834. </productMenu>
  11835. <productMenu id="phone"
  11836. type="2" >
  11837. </productMenu>
  11838. <productMenu id="fmradio"
  11839. type="3" >
  11840. </productMenu>
  11841. <productMenu id="deviceSetting"
  11842. type="1"
  11843. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11844. <productMenuURL version="2.4"
  11845. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11846. />
  11847. <productMenuURL version="1.5"
  11848. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11849. />
  11850. <productMenuURL version="1.4.1"
  11851. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11852. />
  11853. <productMenuURL version="1.1"
  11854. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11855. />
  11856. <productMenuURL version="1.0"
  11857. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11858. />
  11859. </productMenu>
  11860. <productMenu id="quickGuide"
  11861. type="1"
  11862. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11863. size="264KB" >
  11864. </productMenu>
  11865. <productMenu id="userGuide"
  11866. type="1"
  11867. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11868. size="3.09MB" >
  11869. </productMenu>
  11870. <productMenu id="connectGuide"
  11871. type="1"
  11872. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  11873. size="1.12MB" >
  11874. </productMenu>
  11875. <productID id="4210"
  11876. />
  11877. <productProductKey key="11"
  11878. />
  11879. <productID id="4230"
  11880. />
  11881. <productProductKey key="11"
  11882. />
  11883. <productGroupable type="1"
  11884. />
  11885. </product>
  11886. <product id="HD50S"
  11887. name="Boom Audio 20S EVO"
  11888. series="50"
  11889. latestVersion="2.5.2"
  11890. show = "0" >
  11891. <productMenu id="protocol"
  11892. type="0">
  11893. </productMenu>
  11894. <productMenu id="sip"
  11895. type="1" >
  11896. <productMenuType version="1.0"
  11897. type="0"
  11898. />
  11899. </productMenu>
  11900. <productMenu id="bluetoothIntercom"
  11901. type="1" >
  11902. <productMenuType version="1.0"
  11903. type="0"
  11904. />
  11905. </productMenu>
  11906. <productMenu id="intercomSetting"
  11907. type="1" >
  11908. </productMenu>
  11909. <productMenu id="phone"
  11910. type="2" >
  11911. </productMenu>
  11912. <productMenu id="fmradio"
  11913. type="3" >
  11914. </productMenu>
  11915. <productMenu id="deviceSetting"
  11916. type="1"
  11917. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11918. <productMenuURL version="2.4"
  11919. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11920. />
  11921. <productMenuURL version="1.5"
  11922. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11923. />
  11924. <productMenuURL version="1.4.1"
  11925. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11926. />
  11927. <productMenuURL version="1.1"
  11928. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11929. />
  11930. <productMenuURL version="1.0"
  11931. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11932. />
  11933. </productMenu>
  11934. <productMenu id="quickGuide"
  11935. type="1"
  11936. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11937. size="321KB" >
  11938. </productMenu>
  11939. <productMenu id="userGuide"
  11940. type="1"
  11941. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11942. size="2.46MB" >
  11943. </productMenu>
  11944. <productID id="4230"
  11945. />
  11946. <productProductKey key="27"
  11947. />
  11948. <productGroupable type="1"
  11949. />
  11950. </product>
  11951. <product id="HD50S"
  11952. name="Boom! Audio 10S"
  11953. series="50"
  11954. latestVersion="1.1.3"
  11955. show = "0" >
  11956. <productMenu id="protocol"
  11957. type="0">
  11958. </productMenu>
  11959. <productMenu id="sip"
  11960. type="1" >
  11961. </productMenu>
  11962. <productMenu id="bluetoothIntercom"
  11963. type="1" >
  11964. </productMenu>
  11965. <productMenu id="phone"
  11966. type="2" >
  11967. </productMenu>
  11968. <productMenu id="fmradio"
  11969. type="3" >
  11970. </productMenu>
  11971. <productMenu id="deviceSetting"
  11972. type="1"
  11973. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  11974. </productMenu>
  11975. <productMenu id="quickGuide"
  11976. type="1"
  11977. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11978. size="538KB" >
  11979. </productMenu>
  11980. <productMenu id="userGuide"
  11981. type="1"
  11982. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11983. size="1.55MB" >
  11984. </productMenu>
  11985. <productID id="5532"
  11986. />
  11987. <productGroupable type="0"
  11988. />
  11989. </product>
  11990. <product id="HD50S"
  11991. name="Boom! Audio N01 10R"
  11992. series="50"
  11993. latestVersion="1.1.3"
  11994. show = "0" >
  11995. <productMenu id="protocol"
  11996. type="0">
  11997. </productMenu>
  11998. <productMenu id="sip"
  11999. type="1" >
  12000. </productMenu>
  12001. <productMenu id="bluetoothIntercom"
  12002. type="1" >
  12003. </productMenu>
  12004. <productMenu id="phone"
  12005. type="2" >
  12006. </productMenu>
  12007. <productMenu id="fmradio"
  12008. type="3" >
  12009. </productMenu>
  12010. <productMenu id="deviceSetting"
  12011. type="1"
  12012. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  12013. </productMenu>
  12014. <productMenu id="quickGuide"
  12015. type="1"
  12016. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12017. size="766KB" >
  12018. </productMenu>
  12019. <productMenu id="userGuide"
  12020. type="1"
  12021. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12022. size="1.45MB" >
  12023. </productMenu>
  12024. <productID id="5522"
  12025. />
  12026. <productGroupable type="0"
  12027. />
  12028. </product>
  12029. <product id="HD50S"
  12030. name="OUTRUSH-R N03"
  12031. series="50"
  12032. latestVersion="1.2.1"
  12033. show = "-1" >
  12034. <productMenu id="protocol"
  12035. type="0">
  12036. </productMenu>
  12037. <productMenu id="sip"
  12038. type="1" >
  12039. </productMenu>
  12040. <productMenu id="bluetoothIntercom"
  12041. type="1" >
  12042. </productMenu>
  12043. <productMenu id="phone"
  12044. type="2" >
  12045. </productMenu>
  12046. <productMenu id="fmradio"
  12047. type="3" >
  12048. </productMenu>
  12049. <productMenu id="deviceSetting"
  12050. type="1"
  12051. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  12052. </productMenu>
  12053. <productMenu id="userGuide"
  12054. type="1"
  12055. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  12056. size="660KB" >
  12057. </productMenu>
  12058. <productID id="5434"
  12059. />
  12060. <productGroupable type="0"
  12061. />
  12062. </product>
  12063. <product id="HD50S"
  12064. name="OUTRUSH-R N03"
  12065. series="50"
  12066. latestVersion="2.0"
  12067. show = "0" >
  12068. <productMenu id="protocol"
  12069. type="3" >
  12070. </productMenu>
  12071. <productMenu id="sip"
  12072. type="1" >
  12073. </productMenu>
  12074. <productMenu id="bluetoothIntercom"
  12075. type="1" >
  12076. </productMenu>
  12077. <productMenu id="phone"
  12078. type="1" >
  12079. </productMenu>
  12080. <productMenu id="fmradio"
  12081. type="1" >
  12082. </productMenu>
  12083. <productMenu id="deviceSetting"
  12084. type="1"
  12085. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  12086. </productMenu>
  12087. <productMenu id="userGuide"
  12088. type="1"
  12089. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  12090. size="1.14MB" >
  12091. </productMenu>
  12092. <productID id="5441"
  12093. />
  12094. <productGroupable type="0"
  12095. />
  12096. </product>
  12097. <product id="5R"
  12098. name="5R"
  12099. series="5"
  12100. latestVersion="1.0.1"
  12101. show = "1" >
  12102. <productMenu id="protocol"
  12103. type="3" >
  12104. </productMenu>
  12105. <productMenu id="sip"
  12106. type="1" >
  12107. </productMenu>
  12108. <productMenu id="bluetoothIntercom"
  12109. type="1" >
  12110. </productMenu>
  12111. <productMenu id="phone"
  12112. type="1" >
  12113. </productMenu>
  12114. <productMenu id="fmradio"
  12115. type="1" >
  12116. </productMenu>
  12117. <productMenu id="deviceSetting"
  12118. type="1"
  12119. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12120. </productMenu>
  12121. <productMenu id="quickGuide"
  12122. type="0"
  12123. url=""
  12124. size="934KB" >
  12125. </productMenu>
  12126. <productMenu id="userGuide"
  12127. type="1"
  12128. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  12129. size="1.14MB" >
  12130. </productMenu>
  12131. <productMenu id="connectGuide"
  12132. type="1"
  12133. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12134. size="1.12MB" >
  12135. </productMenu>
  12136. <productID id="5591"
  12137. />
  12138. <productGroupable type="0"
  12139. />
  12140. </product>
  12141. <product id="5R"
  12142. name="5R LITE"
  12143. series="5"
  12144. latestVersion="1.0.1"
  12145. show = "1" >
  12146. <productMenu id="protocol"
  12147. type="3" >
  12148. </productMenu>
  12149. <productMenu id="sip"
  12150. type="1" >
  12151. </productMenu>
  12152. <productMenu id="bluetoothIntercom"
  12153. type="1" >
  12154. </productMenu>
  12155. <productMenu id="phone"
  12156. type="1" >
  12157. </productMenu>
  12158. <productMenu id="fmradio"
  12159. type="1" >
  12160. </productMenu>
  12161. <productMenu id="deviceSetting"
  12162. type="1"
  12163. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12164. </productMenu>
  12165. <productMenu id="quickGuide"
  12166. type="0"
  12167. url=""
  12168. size="934KB" >
  12169. </productMenu>
  12170. <productMenu id="userGuide"
  12171. type="1"
  12172. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12173. size="1.14MB" >
  12174. </productMenu>
  12175. <productMenu id="connectGuide"
  12176. type="1"
  12177. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12178. size="1.12MB" >
  12179. </productMenu>
  12180. <productID id="5592"
  12181. />
  12182. <productGroupable type="0"
  12183. />
  12184. </product>
  12185. <product id="50RLE"
  12186. name="50R LE"
  12187. series="50"
  12188. latestVersion="1.1"
  12189. show = "0" >
  12190. <productMenu id="protocol"
  12191. type="2" >
  12192. </productMenu>
  12193. <productMenu id="alexa"
  12194. type="0" >
  12195. </productMenu>
  12196. <productMenu id="sip"
  12197. type="1" >
  12198. </productMenu>
  12199. <productMenu id="meshIntercom"
  12200. type="30" >
  12201. </productMenu>
  12202. <productMenu id="meshIntercom+"
  12203. type="3"
  12204. url="2" >
  12205. <productMenuType version="1.0.9"
  12206. type="2"
  12207. />
  12208. </productMenu>
  12209. <productMenu id="waveIntercom"
  12210. type="1" >
  12211. <productMenuType version="1.0.9"
  12212. type="0"
  12213. />
  12214. </productMenu>
  12215. <productMenu id="bluetoothIntercom"
  12216. type="1" >
  12217. </productMenu>
  12218. <productMenu id="phone"
  12219. type="1" >
  12220. </productMenu>
  12221. <productMenu id="music"
  12222. type="1" >
  12223. </productMenu>
  12224. <productMenu id="fmradio"
  12225. type="0" >
  12226. </productMenu>
  12227. <productMenu id="deviceSetting"
  12228. type="1"
  12229. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  12230. <productMenuURL version="1.0.9"
  12231. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  12232. />
  12233. </productMenu>
  12234. <productMenu id="quickGuide"
  12235. type="0"
  12236. url=""
  12237. size="344KB" >
  12238. </productMenu>
  12239. <productMenu id="userGuide"
  12240. type="0"
  12241. url=""
  12242. size="3.41MB" >
  12243. </productMenu>
  12244. <productMenu id="volume"
  12245. type="11" >
  12246. </productMenu>
  12247. <productMenu id="battery"
  12248. type="1" >
  12249. </productMenu>
  12250. <productID id="3223"
  12251. />
  12252. <productGroupable type="0"
  12253. />
  12254. </product>
  12255. <product id="5RLOUIS"
  12256. name="5R LOUIS EDITION"
  12257. series="5"
  12258. latestVersion="1.0"
  12259. show = "-1" >
  12260. <productMenu id="protocol"
  12261. type="3" >
  12262. </productMenu>
  12263. <productMenu id="sip"
  12264. type="1" >
  12265. </productMenu>
  12266. <productMenu id="bluetoothIntercom"
  12267. type="1" >
  12268. </productMenu>
  12269. <productMenu id="phone"
  12270. type="1" >
  12271. </productMenu>
  12272. <productMenu id="fmradio"
  12273. type="1" >
  12274. </productMenu>
  12275. <productMenu id="deviceSetting"
  12276. type="1"
  12277. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12278. </productMenu>
  12279. <productMenu id="quickGuide"
  12280. type="0"
  12281. url=""
  12282. size="934KB" >
  12283. </productMenu>
  12284. <productMenu id="userGuide"
  12285. type="0"
  12286. url=""
  12287. size="1.14MB" >
  12288. </productMenu>
  12289. <productID id="5597"
  12290. />
  12291. <productGroupable type="0"
  12292. />
  12293. </product>
  12294. <product id="5S"
  12295. name="Ridekont 5S"
  12296. series="5"
  12297. latestVersion="2.3"
  12298. show = "-1" >
  12299. <productMenu id="protocol"
  12300. type="3" >
  12301. </productMenu>
  12302. <productMenu id="sip"
  12303. type="1" >
  12304. </productMenu>
  12305. <productMenu id="bluetoothIntercom"
  12306. type="1" >
  12307. </productMenu>
  12308. <productMenu id="phone"
  12309. type="1" >
  12310. </productMenu>
  12311. <productMenu id="fmradio"
  12312. type="0" >
  12313. </productMenu>
  12314. <productMenu id="deviceSetting"
  12315. type="1"
  12316. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12317. </productMenu>
  12318. <productMenu id="quickGuide"
  12319. type="0"
  12320. url=""
  12321. size="934KB" >
  12322. </productMenu>
  12323. <productMenu id="userGuide"
  12324. type="1"
  12325. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12326. size="1.14MB" >
  12327. </productMenu>
  12328. <productID id="5589"
  12329. />
  12330. <productGroupable type="0"
  12331. />
  12332. </product>
  12333. <product id="5R"
  12334. name="Ridekont 5R"
  12335. series="5"
  12336. latestVersion="1.0"
  12337. show = "0" >
  12338. <productMenu id="protocol"
  12339. type="3" >
  12340. </productMenu>
  12341. <productMenu id="sip"
  12342. type="1" >
  12343. </productMenu>
  12344. <productMenu id="bluetoothIntercom"
  12345. type="1" >
  12346. </productMenu>
  12347. <productMenu id="phone"
  12348. type="1" >
  12349. </productMenu>
  12350. <productMenu id="fmradio"
  12351. type="1" >
  12352. </productMenu>
  12353. <productMenu id="deviceSetting"
  12354. type="1"
  12355. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12356. </productMenu>
  12357. <productMenu id="quickGuide"
  12358. type="1"
  12359. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12360. size="934KB" >
  12361. </productMenu>
  12362. <productMenu id="userGuide"
  12363. type="1"
  12364. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12365. size="1.14MB" >
  12366. </productMenu>
  12367. <productID id="5593"
  12368. />
  12369. <productGroupable type="0"
  12370. />
  12371. </product>
  12372. <product id="5R"
  12373. name="Ridekont 5R LITE"
  12374. series="5"
  12375. latestVersion="1.0"
  12376. show = "0" >
  12377. <productMenu id="protocol"
  12378. type="3" >
  12379. </productMenu>
  12380. <productMenu id="sip"
  12381. type="1" >
  12382. </productMenu>
  12383. <productMenu id="bluetoothIntercom"
  12384. type="1" >
  12385. </productMenu>
  12386. <productMenu id="phone"
  12387. type="1" >
  12388. </productMenu>
  12389. <productMenu id="fmradio"
  12390. type="1" >
  12391. </productMenu>
  12392. <productMenu id="deviceSetting"
  12393. type="1"
  12394. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12395. </productMenu>
  12396. <productMenu id="quickGuide"
  12397. type="0"
  12398. url=""
  12399. size="934KB" >
  12400. </productMenu>
  12401. <productMenu id="userGuide"
  12402. type="1"
  12403. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12404. size="1.14MB" >
  12405. </productMenu>
  12406. <productID id="5594"
  12407. />
  12408. <productGroupable type="0"
  12409. />
  12410. </product>
  12411. <product id="SA30"
  12412. name="SA30"
  12413. series="SA"
  12414. latestVersion="1.0.1"
  12415. latestVersionVoicePrompt="0.15"
  12416. show = "-1" >
  12417. <productMenu id="protocol"
  12418. type="2" >
  12419. </productMenu>
  12420. <productMenu id="ota"
  12421. type="2" >
  12422. <otaPackages>
  12423. <package
  12424. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.1-build0.img"
  12425. size="3144148"
  12426. />
  12427. </otaPackages>
  12428. </productMenu>
  12429. <productMenu id="meshIntercom"
  12430. type="30" >
  12431. </productMenu>
  12432. <productMenu id="meshIntercom+"
  12433. type="3"
  12434. url="2" >
  12435. </productMenu>
  12436. <productMenu id="phone"
  12437. type="1" >
  12438. </productMenu>
  12439. <productMenu id="music"
  12440. type="1" >
  12441. </productMenu>
  12442. <productMenu id="musicSharing"
  12443. type="0" >
  12444. </productMenu>
  12445. <productMenu id="deviceSetting"
  12446. type="1"
  12447. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12448. </productMenu>
  12449. <productMenu id="quickGuide"
  12450. type="0"
  12451. url=""
  12452. size="1.12MB" >
  12453. </productMenu>
  12454. <productMenu id="userGuide"
  12455. type="1"
  12456. url=""
  12457. size="2.0MB" >
  12458. </productMenu>
  12459. <productMenu id="videoGuide"
  12460. type="0"
  12461. url=""
  12462. size="3.41MB" >
  12463. </productMenu>
  12464. <productMenu id="volume"
  12465. type="12" >
  12466. </productMenu>
  12467. <productMenu id="battery"
  12468. type="1" >
  12469. </productMenu>
  12470. <productID id="6852"
  12471. />
  12472. <productGroupable type="0"
  12473. />
  12474. </product>
  12475. <product id="I30"
  12476. name="I30"
  12477. series="I"
  12478. latestVersion="1.0.1"
  12479. latestVersionVoicePrompt="0.2"
  12480. show = "-1" >
  12481. <productMenu id="protocol"
  12482. type="2" >
  12483. </productMenu>
  12484. <productMenu id="ota"
  12485. type="2" >
  12486. <otaPackages>
  12487. <package
  12488. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.1-build0.img"
  12489. size="3144148"
  12490. />
  12491. </otaPackages>
  12492. </productMenu>
  12493. <productMenu id="meshIntercom"
  12494. type="30" >
  12495. </productMenu>
  12496. <productMenu id="meshIntercom+"
  12497. type="3"
  12498. url="2" >
  12499. </productMenu>
  12500. <productMenu id="phone"
  12501. type="1" >
  12502. </productMenu>
  12503. <productMenu id="music"
  12504. type="1" >
  12505. </productMenu>
  12506. <productMenu id="musicSharing"
  12507. type="0" >
  12508. </productMenu>
  12509. <productMenu id="deviceSetting"
  12510. type="1"
  12511. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12512. </productMenu>
  12513. <productMenu id="quickGuide"
  12514. type="0"
  12515. url=""
  12516. size="1.12MB" >
  12517. </productMenu>
  12518. <productMenu id="userGuide"
  12519. type="1"
  12520. url=""
  12521. size="2.10MB" >
  12522. </productMenu>
  12523. <productMenu id="videoGuide"
  12524. type="0"
  12525. url=""
  12526. size="3.11MB" >
  12527. </productMenu>
  12528. <productMenu id="volume"
  12529. type="12" >
  12530. </productMenu>
  12531. <productMenu id="battery"
  12532. type="1" >
  12533. </productMenu>
  12534. <productID id="6853"
  12535. />
  12536. <productGroupable type="0"
  12537. />
  12538. </product>
  12539. <product id="C30EVO"
  12540. name="C30 EVO"
  12541. series="C"
  12542. latestVersion="1.0"
  12543. latestVersionVoicePrompt="0.13"
  12544. show = "-1" >
  12545. <productMenu id="protocol"
  12546. type="2" >
  12547. </productMenu>
  12548. <productMenu id="ota"
  12549. type="0" >
  12550. <otaPackages>
  12551. <package
  12552. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  12553. size="3144148"
  12554. />
  12555. </otaPackages>
  12556. </productMenu>
  12557. <productMenu id="meshIntercom+"
  12558. type="3"
  12559. url="2" >
  12560. </productMenu>
  12561. <productMenu id="waveIntercom"
  12562. type="1" >
  12563. </productMenu>
  12564. <productMenu id="phone"
  12565. type="1" >
  12566. </productMenu>
  12567. <productMenu id="music"
  12568. type="1" >
  12569. </productMenu>
  12570. <productMenu id="musicSharing"
  12571. type="0" >
  12572. </productMenu>
  12573. <productMenu id="deviceSetting"
  12574. type="1"
  12575. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  12576. </productMenu>
  12577. <productMenu id="quickGuide"
  12578. type="1"
  12579. url=""
  12580. size="1.17MB" >
  12581. </productMenu>
  12582. <productMenu id="userGuide"
  12583. type="0"
  12584. url=""
  12585. size="2.0MB" >
  12586. </productMenu>
  12587. <productMenu id="videoGuide"
  12588. type="0"
  12589. url=""
  12590. size="3.41MB" >
  12591. </productMenu>
  12592. <productMenu id="volume"
  12593. type="12" >
  12594. </productMenu>
  12595. <productMenu id="battery"
  12596. type="1" >
  12597. </productMenu>
  12598. <productID id="685B"
  12599. />
  12600. <productGroupable type="0"
  12601. />
  12602. </product>
  12603. <product id="C30"
  12604. name="SENA C30"
  12605. series="C"
  12606. latestVersion="1.2.2"
  12607. latestVersionVoicePrompt="0.13"
  12608. show = "1" >
  12609. <productMenu id="protocol"
  12610. type="2" >
  12611. </productMenu>
  12612. <productMenu id="alexa"
  12613. type="0" >
  12614. </productMenu>
  12615. <productMenu id="ota"
  12616. type="2" >
  12617. <otaPackages>
  12618. <package
  12619. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.2-build0.img"
  12620. size="3144148"
  12621. />
  12622. </otaPackages>
  12623. </productMenu>
  12624. <productMenu id="wa"
  12625. type="0" >
  12626. </productMenu>
  12627. <productMenu id="meshIntercom"
  12628. type="30" >
  12629. </productMenu>
  12630. <productMenu id="meshIntercom+"
  12631. type="3"
  12632. url="2" >
  12633. <productMenuType version="1.0.9"
  12634. type="2"
  12635. />
  12636. </productMenu>
  12637. <productMenu id="waveIntercom"
  12638. type="1" >
  12639. <productMenuType version="1.1.9"
  12640. type="0"
  12641. />
  12642. </productMenu>
  12643. <productMenu id="phone"
  12644. type="1" >
  12645. </productMenu>
  12646. <productMenu id="music"
  12647. type="1" >
  12648. </productMenu>
  12649. <productMenu id="musicSharing"
  12650. type="0" >
  12651. </productMenu>
  12652. <productMenu id="deviceSetting"
  12653. type="1"
  12654. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  12655. <productMenuURL version="1.1.3"
  12656. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  12657. />
  12658. <productMenuURL version="1.0.9"
  12659. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  12660. />
  12661. </productMenu>
  12662. <productMenu id="quickGuide"
  12663. type="1"
  12664. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  12665. size="1.12MB" >
  12666. </productMenu>
  12667. <productMenu id="userGuide"
  12668. type="0"
  12669. url=""
  12670. size="2.0MB" >
  12671. </productMenu>
  12672. <productMenu id="videoGuide"
  12673. type="0"
  12674. url=""
  12675. size="3.41MB" >
  12676. </productMenu>
  12677. <productMenu id="volume"
  12678. type="12" >
  12679. </productMenu>
  12680. <productMenu id="battery"
  12681. type="1" >
  12682. </productMenu>
  12683. <productID id="683A"
  12684. />
  12685. <productGroupable type="0"
  12686. />
  12687. </product>
  12688. <product id="C20"
  12689. name="C20"
  12690. series="C"
  12691. latestVersion="1.0"
  12692. show = "1" >
  12693. <productMenu id="protocol"
  12694. type="3" >
  12695. </productMenu>
  12696. <productMenu id="sip"
  12697. type="1" >
  12698. </productMenu>
  12699. <productMenu id="bluetoothIntercom"
  12700. type="1" >
  12701. </productMenu>
  12702. <productMenu id="phone"
  12703. type="1" >
  12704. </productMenu>
  12705. <productMenu id="deviceSetting"
  12706. type="1"
  12707. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  12708. </productMenu>
  12709. <productMenu id="quickGuide"
  12710. type="1"
  12711. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  12712. size="934KB" >
  12713. </productMenu>
  12714. <productMenu id="userGuide"
  12715. type="1"
  12716. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  12717. size="1.14MB" >
  12718. </productMenu>
  12719. <productID id="3701"
  12720. />
  12721. <productGroupable type="0"
  12722. />
  12723. </product>
  12724. <product id="C10"
  12725. name="C10"
  12726. series="C"
  12727. latestVersion="1.4.4"
  12728. show = "1" >
  12729. <productMenu id="protocol"
  12730. type="3" >
  12731. </productMenu>
  12732. <productMenu id="sip"
  12733. type="1" >
  12734. </productMenu>
  12735. <productMenu id="bluetoothIntercom"
  12736. type="1" >
  12737. </productMenu>
  12738. <productMenu id="phone"
  12739. type="1" >
  12740. </productMenu>
  12741. <productMenu id="fmradio"
  12742. type="0" >
  12743. </productMenu>
  12744. <productMenu id="deviceSetting"
  12745. type="1"
  12746. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12747. </productMenu>
  12748. <productMenu id="userGuide"
  12749. type="1"
  12750. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  12751. size="1.14MB" >
  12752. </productMenu>
  12753. <productID id="5595"
  12754. />
  12755. <productGroupable type="0"
  12756. />
  12757. </product>
  12758. <product id="J30"
  12759. name="J30"
  12760. series="J"
  12761. latestVersion="1.2.2"
  12762. latestVersionVoicePrompt="0.14"
  12763. show = "0" >
  12764. <productMenu id="protocol"
  12765. type="2" >
  12766. </productMenu>
  12767. <productMenu id="alexa"
  12768. type="0" >
  12769. </productMenu>
  12770. <productMenu id="ota"
  12771. type="2" >
  12772. <otaPackages>
  12773. <package
  12774. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.2-build1.img"
  12775. size="3144148"
  12776. />
  12777. </otaPackages>
  12778. </productMenu>
  12779. <productMenu id="wa"
  12780. type="0" >
  12781. </productMenu>
  12782. <productMenu id="meshIntercom"
  12783. type="30" >
  12784. </productMenu>
  12785. <productMenu id="meshIntercom+"
  12786. type="3"
  12787. url="2" >
  12788. <productMenuType version="1.0.9"
  12789. type="2"
  12790. />
  12791. </productMenu>
  12792. <productMenu id="waveIntercom"
  12793. type="1" >
  12794. <productMenuType version="1.1.9"
  12795. type="0"
  12796. />
  12797. </productMenu>
  12798. <productMenu id="phone"
  12799. type="1" >
  12800. </productMenu>
  12801. <productMenu id="music"
  12802. type="1" >
  12803. </productMenu>
  12804. <productMenu id="musicSharing"
  12805. type="0" >
  12806. </productMenu>
  12807. <productMenu id="deviceSetting"
  12808. type="1"
  12809. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  12810. <productMenuURL version="1.0.9"
  12811. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  12812. />
  12813. </productMenu>
  12814. <productMenu id="quickGuide"
  12815. type="0"
  12816. url=""
  12817. size="1.12MB" >
  12818. </productMenu>
  12819. <productMenu id="userGuide"
  12820. type="1"
  12821. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  12822. size="2.0MB" >
  12823. </productMenu>
  12824. <productMenu id="videoGuide"
  12825. type="0"
  12826. url=""
  12827. size="3.41MB" >
  12828. </productMenu>
  12829. <productMenu id="volume"
  12830. type="12" >
  12831. </productMenu>
  12832. <productMenu id="battery"
  12833. type="1" >
  12834. </productMenu>
  12835. <productID id="6848"
  12836. />
  12837. <productGroupable type="0"
  12838. />
  12839. </product>
  12840. <product id="J10"
  12841. name="J10"
  12842. series="5"
  12843. latestVersion="1.1.4"
  12844. show = "0" >
  12845. <productMenu id="protocol"
  12846. type="3" >
  12847. </productMenu>
  12848. <productMenu id="sip"
  12849. type="1" >
  12850. </productMenu>
  12851. <productMenu id="bluetoothIntercom"
  12852. type="1" >
  12853. </productMenu>
  12854. <productMenu id="phone"
  12855. type="1" >
  12856. </productMenu>
  12857. <productMenu id="fmradio"
  12858. type="0" >
  12859. </productMenu>
  12860. <productMenu id="deviceSetting"
  12861. type="1"
  12862. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12863. </productMenu>
  12864. <productMenu id="userGuide"
  12865. type="1"
  12866. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  12867. size="1.14MB" >
  12868. </productMenu>
  12869. <productID id="5598"
  12870. />
  12871. <productGroupable type="0"
  12872. />
  12873. </product>
  12874. <product id="B20"
  12875. name="B20"
  12876. series="B"
  12877. latestVersion="1.1.2"
  12878. latestVersionVoicePrompt="0.14"
  12879. show = "0" >
  12880. <productMenu id="protocol"
  12881. type="2" >
  12882. </productMenu>
  12883. <productMenu id="alexa"
  12884. type="0" >
  12885. </productMenu>
  12886. <productMenu id="ota"
  12887. type="2" >
  12888. <otaPackages>
  12889. <package
  12890. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.2-build1.img"
  12891. size="3144148"
  12892. />
  12893. </otaPackages>
  12894. </productMenu>
  12895. <productMenu id="wa"
  12896. type="0" >
  12897. </productMenu>
  12898. <productMenu id="meshIntercom"
  12899. type="30" >
  12900. </productMenu>
  12901. <productMenu id="phone"
  12902. type="1" >
  12903. </productMenu>
  12904. <productMenu id="music"
  12905. type="1" >
  12906. </productMenu>
  12907. <productMenu id="musicSharing"
  12908. type="0" >
  12909. </productMenu>
  12910. <productMenu id="deviceSetting"
  12911. type="1"
  12912. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  12913. <productMenuURL version="1.0.9"
  12914. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  12915. />
  12916. </productMenu>
  12917. <productMenu id="quickGuide"
  12918. type="0"
  12919. url=""
  12920. size="1.12MB" >
  12921. </productMenu>
  12922. <productMenu id="userGuide"
  12923. type="1"
  12924. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  12925. size="2.0MB" >
  12926. </productMenu>
  12927. <productMenu id="videoGuide"
  12928. type="0"
  12929. url=""
  12930. size="3.41MB" >
  12931. </productMenu>
  12932. <productMenu id="volume"
  12933. type="12" >
  12934. </productMenu>
  12935. <productMenu id="battery"
  12936. type="1" >
  12937. </productMenu>
  12938. <productID id="6847"
  12939. />
  12940. <productGroupable type="0"
  12941. />
  12942. </product>
  12943. <product id="B10"
  12944. name="B10"
  12945. series="5"
  12946. latestVersion="1.2.4"
  12947. show = "0" >
  12948. <productMenu id="protocol"
  12949. type="3" >
  12950. </productMenu>
  12951. <productMenu id="sip"
  12952. type="1" >
  12953. </productMenu>
  12954. <productMenu id="bluetoothIntercom"
  12955. type="1" >
  12956. </productMenu>
  12957. <productMenu id="phone"
  12958. type="1" >
  12959. </productMenu>
  12960. <productMenu id="fmradio"
  12961. type="0" >
  12962. </productMenu>
  12963. <productMenu id="deviceSetting"
  12964. type="1"
  12965. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  12966. </productMenu>
  12967. <productMenu id="userGuide"
  12968. type="1"
  12969. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  12970. size="1.14MB" >
  12971. </productMenu>
  12972. <productID id="5596"
  12973. />
  12974. <productGroupable type="0"
  12975. />
  12976. </product>
  12977. <product id="E30"
  12978. name="E30"
  12979. series="E"
  12980. latestVersion="1.1.2"
  12981. latestVersionVoicePrompt="0.14"
  12982. show = "0" >
  12983. <productMenu id="protocol"
  12984. type="2" >
  12985. </productMenu>
  12986. <productMenu id="alexa"
  12987. type="0" >
  12988. </productMenu>
  12989. <productMenu id="ota"
  12990. type="2" >
  12991. <otaPackages>
  12992. <package
  12993. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.2-build1.img"
  12994. size="3144148"
  12995. />
  12996. </otaPackages>
  12997. </productMenu>
  12998. <productMenu id="wa"
  12999. type="0" >
  13000. </productMenu>
  13001. <productMenu id="meshIntercom"
  13002. type="30" >
  13003. </productMenu>
  13004. <productMenu id="meshIntercom+"
  13005. type="3"
  13006. url="2" >
  13007. </productMenu>
  13008. <productMenu id="waveIntercom"
  13009. type="1" >
  13010. <productMenuType version="1.0.9"
  13011. type="0"
  13012. />
  13013. </productMenu>
  13014. <productMenu id="phone"
  13015. type="1" >
  13016. </productMenu>
  13017. <productMenu id="music"
  13018. type="1" >
  13019. </productMenu>
  13020. <productMenu id="musicSharing"
  13021. type="0" >
  13022. </productMenu>
  13023. <productMenu id="deviceSetting"
  13024. type="1"
  13025. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  13026. </productMenu>
  13027. <productMenu id="quickGuide"
  13028. type="0"
  13029. url=""
  13030. size="1.12MB" >
  13031. </productMenu>
  13032. <productMenu id="userGuide"
  13033. type="1"
  13034. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  13035. size="2.0MB" >
  13036. </productMenu>
  13037. <productMenu id="videoGuide"
  13038. type="0"
  13039. url=""
  13040. size="3.41MB" >
  13041. </productMenu>
  13042. <productMenu id="volume"
  13043. type="12" >
  13044. </productMenu>
  13045. <productMenu id="battery"
  13046. type="1" >
  13047. </productMenu>
  13048. <productID id="6846"
  13049. />
  13050. <productGroupable type="0"
  13051. />
  13052. </product>
  13053. <product id="ACSRAM"
  13054. name="ACS-RAM"
  13055. series="ACS"
  13056. latestVersion="1.0.5"
  13057. show = "1" >
  13058. <productMenu id="protocol"
  13059. type="3" >
  13060. </productMenu>
  13061. <productMenu id="sip"
  13062. type="1" >
  13063. </productMenu>
  13064. <productMenu id="bluetoothIntercom"
  13065. type="1" >
  13066. </productMenu>
  13067. <productMenu id="deviceSetting"
  13068. type="1"
  13069. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  13070. </productMenu>
  13071. <productMenu id="quickGuide"
  13072. type="1"
  13073. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  13074. size="344KB" >
  13075. </productMenu>
  13076. <productMenu id="userGuide"
  13077. type="1"
  13078. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  13079. size="1.14MB" >
  13080. </productMenu>
  13081. <productMenu id="connectGuide"
  13082. type="1"
  13083. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  13084. size="1.12MB" >
  13085. </productMenu>
  13086. <productID id="3400"
  13087. />
  13088. <productGroupable type="0"
  13089. />
  13090. </product>
  13091. <product id="ACS10"
  13092. name="ACS10"
  13093. series="ACS"
  13094. latestVersion="1.0.2"
  13095. show = "1" >
  13096. <productMenu id="protocol"
  13097. type="0">
  13098. </productMenu>
  13099. <productMenu id="sip"
  13100. type="1" >
  13101. </productMenu>
  13102. <productMenu id="bluetoothIntercom"
  13103. type="1" >
  13104. </productMenu>
  13105. <productMenu id="phone"
  13106. type="2" >
  13107. </productMenu>
  13108. <productMenu id="deviceSetting"
  13109. type="1"
  13110. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  13111. </productMenu>
  13112. <productMenu id="quickGuide"
  13113. type="1"
  13114. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  13115. size="970KB" >
  13116. </productMenu>
  13117. <productMenu id="userGuide"
  13118. type="1"
  13119. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  13120. size="1.26MB" >
  13121. </productMenu>
  13122. <productMenu id="connectGuide"
  13123. type="1"
  13124. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  13125. size="1.12MB" >
  13126. </productMenu>
  13127. <productID id="3300"
  13128. />
  13129. <productGroupable type="0"
  13130. />
  13131. </product>
  13132. <product id="DWO7ProMesh"
  13133. name="DWO 7 Pro Mesh"
  13134. series="50"
  13135. latestVersion="1.1"
  13136. latestVersionVoicePrompt="0.9"
  13137. show = "0" >
  13138. <productMenu id="protocol"
  13139. type="2" >
  13140. </productMenu>
  13141. <productMenu id="alexa"
  13142. type="0" >
  13143. </productMenu>
  13144. <productMenu id="ota"
  13145. type="2" >
  13146. <otaPackages>
  13147. <package
  13148. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  13149. size="2945812"
  13150. />
  13151. </otaPackages>
  13152. </productMenu>
  13153. <productMenu id="wa"
  13154. type="0" >
  13155. </productMenu>
  13156. <productMenu id="meshIntercom"
  13157. type="20" >
  13158. </productMenu>
  13159. <productMenu id="meshIntercom+"
  13160. type="3"
  13161. url="2" >
  13162. <productMenuType version="1.0.9"
  13163. type="2"
  13164. />
  13165. <productMenuURL version="2.1.1"
  13166. url="0"
  13167. />
  13168. </productMenu>
  13169. <productMenu id="waveIntercom"
  13170. type="1" >
  13171. <productMenuType version="1.0.9"
  13172. type="0"
  13173. />
  13174. </productMenu>
  13175. <productMenu id="phone"
  13176. type="1" >
  13177. </productMenu>
  13178. <productMenu id="music"
  13179. type="1" >
  13180. </productMenu>
  13181. <productMenu id="fmradio"
  13182. type="1" >
  13183. </productMenu>
  13184. <productMenu id="musicSharing"
  13185. type="0" >
  13186. </productMenu>
  13187. <productMenu id="deviceSetting"
  13188. type="1"
  13189. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  13190. <productMenuURL version="1.0.9"
  13191. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  13192. />
  13193. </productMenu>
  13194. <productMenu id="quickGuide"
  13195. type="1"
  13196. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13197. size="1.12MB" >
  13198. </productMenu>
  13199. <productMenu id="userGuide"
  13200. type="1"
  13201. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13202. size="2.0MB" >
  13203. </productMenu>
  13204. <productMenu id="volume"
  13205. type="12" >
  13206. </productMenu>
  13207. <productMenu id="battery"
  13208. type="1" >
  13209. </productMenu>
  13210. <productID id="6806"
  13211. />
  13212. <productGroupable type="0"
  13213. />
  13214. </product>
  13215. <product id="ERA1X"
  13216. name="ERA 1 X"
  13217. series="UCOM"
  13218. latestVersion="0.2.1"
  13219. latestVersionMesh="0.19"
  13220. latestVersionVoicePrompt="1.2"
  13221. show = "-1" >
  13222. <productMenu id="protocol"
  13223. type="2" >
  13224. </productMenu>
  13225. <productMenu id="ota"
  13226. type="2" >
  13227. <otaLanguages>
  13228. <otaLanguage
  13229. id="0"
  13230. name="English"
  13231. package="0"
  13232. />
  13233. <otaLanguage
  13234. id="0"
  13235. name="French"
  13236. package="1"
  13237. />
  13238. <otaLanguage
  13239. id="0"
  13240. name="Spanish"
  13241. package="2"
  13242. />
  13243. <otaLanguage
  13244. id="0"
  13245. name="Italian"
  13246. package="3"
  13247. />
  13248. <otaLanguage
  13249. id="0"
  13250. name="German"
  13251. package="4"
  13252. />
  13253. <otaLanguage
  13254. id="0"
  13255. name="Dutch"
  13256. package="5"
  13257. />
  13258. <otaLanguage
  13259. id="0"
  13260. name="Russian"
  13261. package="6"
  13262. />
  13263. <otaLanguage
  13264. id="0"
  13265. name="Chinese"
  13266. package="7"
  13267. />
  13268. <otaLanguage
  13269. id="0"
  13270. name="Korean"
  13271. package="8"
  13272. />
  13273. <otaLanguage
  13274. id="0"
  13275. name="Japanese"
  13276. package="9"
  13277. />
  13278. <otaLanguage
  13279. id="0"
  13280. name="Finnish"
  13281. package="10"
  13282. />
  13283. <otaLanguage
  13284. id="0"
  13285. name="Polish"
  13286. package="11"
  13287. />
  13288. <otaLanguage
  13289. id="0"
  13290. name="Czech"
  13291. package="12"
  13292. />
  13293. <otaLanguage
  13294. id="0"
  13295. name="Danish"
  13296. package="13"
  13297. />
  13298. <otaLanguage
  13299. id="0"
  13300. name="Norwegian"
  13301. package="14"
  13302. />
  13303. <otaLanguage
  13304. id="0"
  13305. name="Swedish"
  13306. package="15"
  13307. />
  13308. <otaLanguage
  13309. id="0"
  13310. name="Turkish"
  13311. package="16"
  13312. />
  13313. <otaLanguage
  13314. id="0"
  13315. name="Hungarian"
  13316. package="17"
  13317. />
  13318. <otaLanguage
  13319. id="0"
  13320. name="Portuguese"
  13321. package="18"
  13322. />
  13323. <otaLanguage
  13324. id="0"
  13325. name="Hebrew"
  13326. package="19"
  13327. />
  13328. <otaLanguage
  13329. id="0"
  13330. name="Greek"
  13331. package="20"
  13332. />
  13333. </otaLanguages>
  13334. <otaPackages>
  13335. <package
  13336. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13337. size="5183988"
  13338. />
  13339. <package
  13340. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13341. size="5183988"
  13342. />
  13343. <package
  13344. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13345. size="5183988"
  13346. />
  13347. <package
  13348. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13349. size="5183988"
  13350. />
  13351. <package
  13352. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13353. size="5183988"
  13354. />
  13355. <package
  13356. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13357. size="5183988"
  13358. />
  13359. <package
  13360. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13361. size="5183988"
  13362. />
  13363. <package
  13364. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13365. size="5183988"
  13366. />
  13367. <package
  13368. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13369. size="5183988"
  13370. />
  13371. <package
  13372. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13373. size="5183988"
  13374. />
  13375. <package
  13376. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13377. size="5183988"
  13378. />
  13379. <package
  13380. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13381. size="5183988"
  13382. />
  13383. <package
  13384. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13385. size="5183988"
  13386. />
  13387. <package
  13388. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13389. size="5183988"
  13390. />
  13391. <package
  13392. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13393. size="5183988"
  13394. />
  13395. <package
  13396. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13397. size="5183988"
  13398. />
  13399. <package
  13400. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13401. size="5183988"
  13402. />
  13403. <package
  13404. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13405. size="5183988"
  13406. />
  13407. <package
  13408. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13409. size="5183988"
  13410. />
  13411. <package
  13412. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13413. size="5183988"
  13414. />
  13415. <package
  13416. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13417. size="5183988"
  13418. />
  13419. </otaPackages>
  13420. </productMenu>
  13421. <productMenu id="wa"
  13422. type="0" >
  13423. </productMenu>
  13424. <productMenu id="sip"
  13425. type="1" >
  13426. </productMenu>
  13427. <productMenu id="led"
  13428. type="0" >
  13429. </productMenu>
  13430. <productMenu id="illusion"
  13431. type="1" >
  13432. </productMenu>
  13433. <productMenu id="meshIntercom"
  13434. type="30" >
  13435. </productMenu>
  13436. <productMenu id="meshIntercom+"
  13437. type="3"
  13438. url="2" >
  13439. </productMenu>
  13440. <productMenu id="waveIntercom"
  13441. type="0" >
  13442. </productMenu>
  13443. <productMenu id="bluetoothIntercom"
  13444. type="1" >
  13445. </productMenu>
  13446. <productMenu id="bluetoothIntercomGrouping"
  13447. type="0" >
  13448. </productMenu>
  13449. <productMenu id="fmradio"
  13450. type="1"
  13451. url="1" >
  13452. </productMenu>
  13453. <productMenu id="phone"
  13454. type="1" >
  13455. </productMenu>
  13456. <productMenu id="music"
  13457. type="1" >
  13458. </productMenu>
  13459. <productMenu id="musicSharing"
  13460. type="0" >
  13461. </productMenu>
  13462. <productMenu id="deviceSetting"
  13463. type="1"
  13464. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  13465. </productMenu>
  13466. <productMenu id="quickGuide"
  13467. type="0"
  13468. url=""
  13469. size="1.12MB" >
  13470. </productMenu>
  13471. <productMenu id="userGuide"
  13472. type="1"
  13473. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  13474. size="2.0MB" >
  13475. </productMenu>
  13476. <productMenu id="videoGuide"
  13477. type="0"
  13478. url=""
  13479. size="3.41MB" >
  13480. </productMenu>
  13481. <productMenu id="volume"
  13482. type="16" >
  13483. </productMenu>
  13484. <productMenu id="soundMode"
  13485. type="1" >
  13486. </productMenu>
  13487. <productMenu id="battery"
  13488. type="1" >
  13489. </productMenu>
  13490. <productID id="6A83"
  13491. />
  13492. <productGroupable type="0"
  13493. />
  13494. </product>
  13495. <product id="MeshStation"
  13496. name="Mesh Station"
  13497. series="50"
  13498. latestVersion="0.9"
  13499. show = "-1" >
  13500. <productMenu id="protocol"
  13501. type="2" >
  13502. </productMenu>
  13503. <productMenu id="meshIntercom"
  13504. type="20"
  13505. url="99" >
  13506. </productMenu>
  13507. <productID id="3161"
  13508. />
  13509. <productGroupable type="0"
  13510. />
  13511. </product>
  13512. </products>
  13513. </sna>