snm.xml 478 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260116" 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="VORTEX"
  85. name="VORTEX Series"
  86. show="1"
  87. />
  88. <series id="20"
  89. name="20 Series"
  90. show="1"
  91. />
  92. <series id="SRL"
  93. name="SRL Series"
  94. show="1"
  95. />
  96. <series id="ACS"
  97. name="ACS Series"
  98. show="1"
  99. />
  100. <series id="10"
  101. name="10 Series"
  102. show="1"
  103. />
  104. <series id="5"
  105. name="5 Series"
  106. show="1"
  107. />
  108. <series id="3"
  109. name="3 Series"
  110. show="1"
  111. />
  112. <series id="R"
  113. name="R Series"
  114. show="1"
  115. />
  116. <series id="C"
  117. name="C Series"
  118. show="1"
  119. />
  120. <series id="Other"
  121. name="Other"
  122. show="1"
  123. />
  124. <!--
  125. <series id="smh"
  126. name="SMH"
  127. />
  128. <series id="cavalry"
  129. name="CAVALRY"
  130. show="0"
  131. />
  132. -->
  133. </serieses>
  134. <products>
  135. <product id="60SPRO"
  136. name="60S PRO"
  137. series="60"
  138. latestVersion="0.1"
  139. latestVersionMesh="0.19"
  140. latestVersionVoicePrompt="1.2"
  141. show = "-1" >
  142. <productMenu id="protocol"
  143. type="2" >
  144. </productMenu>
  145. <productMenu id="ota"
  146. type="0" >
  147. <otaLanguages>
  148. <otaLanguage
  149. id="0"
  150. name="English"
  151. package="0"
  152. />
  153. <otaLanguage
  154. id="0"
  155. name="French"
  156. package="1"
  157. />
  158. <otaLanguage
  159. id="0"
  160. name="Spanish"
  161. package="2"
  162. />
  163. <otaLanguage
  164. id="0"
  165. name="Italian"
  166. package="3"
  167. />
  168. <otaLanguage
  169. id="0"
  170. name="German"
  171. package="4"
  172. />
  173. <otaLanguage
  174. id="0"
  175. name="Dutch"
  176. package="5"
  177. />
  178. <otaLanguage
  179. id="0"
  180. name="Russian"
  181. package="6"
  182. />
  183. <otaLanguage
  184. id="0"
  185. name="Chinese"
  186. package="7"
  187. />
  188. <otaLanguage
  189. id="0"
  190. name="Korean"
  191. package="8"
  192. />
  193. <otaLanguage
  194. id="0"
  195. name="Japanese"
  196. package="9"
  197. />
  198. <otaLanguage
  199. id="0"
  200. name="Finnish"
  201. package="10"
  202. />
  203. <otaLanguage
  204. id="0"
  205. name="Polish"
  206. package="11"
  207. />
  208. </otaLanguages>
  209. <otaPackages>
  210. <package
  211. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  212. size="5183988"
  213. />
  214. <package
  215. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  216. size="5183988"
  217. />
  218. <package
  219. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  220. size="5183988"
  221. />
  222. <package
  223. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  224. size="5183988"
  225. />
  226. <package
  227. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  228. size="5183988"
  229. />
  230. <package
  231. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  232. size="5183988"
  233. />
  234. <package
  235. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  236. size="5183988"
  237. />
  238. <package
  239. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  240. size="5183988"
  241. />
  242. <package
  243. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  244. size="5183988"
  245. />
  246. <package
  247. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  248. size="5183988"
  249. />
  250. <package
  251. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  252. size="5183988"
  253. />
  254. <package
  255. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  256. size="5183988"
  257. />
  258. </otaPackages>
  259. </productMenu>
  260. <productMenu id="sip"
  261. type="1" >
  262. </productMenu>
  263. <productMenu id="illusion"
  264. type="1" >
  265. </productMenu>
  266. <productMenu id="meshIntercom"
  267. type="30" >
  268. </productMenu>
  269. <productMenu id="meshIntercom+"
  270. type="3"
  271. url="2" >
  272. </productMenu>
  273. <productMenu id="waveIntercom"
  274. type="1" >
  275. </productMenu>
  276. <productMenu id="bluetoothIntercom"
  277. type="1"
  278. url="2" >
  279. </productMenu>
  280. <productMenu id="bluetoothIntercomGrouping"
  281. type="0" >
  282. </productMenu>
  283. <productMenu id="fmradio"
  284. type="1"
  285. url="1" >
  286. </productMenu>
  287. <productMenu id="phone"
  288. type="1" >
  289. </productMenu>
  290. <productMenu id="music"
  291. type="1" >
  292. </productMenu>
  293. <productMenu id="musicSharing"
  294. type="0" >
  295. </productMenu>
  296. <productMenu id="deviceSetting"
  297. type="1"
  298. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  299. </productMenu>
  300. <productMenu id="quickGuide"
  301. type="0"
  302. url=""
  303. size="1.12MB" >
  304. </productMenu>
  305. <productMenu id="userGuide"
  306. type="1"
  307. url=""
  308. size="2.0MB" >
  309. </productMenu>
  310. <productMenu id="videoGuide"
  311. type="0"
  312. url=""
  313. size="3.41MB" >
  314. </productMenu>
  315. <productMenu id="connectGuide"
  316. type="0"
  317. url=""
  318. size="1.12MB" >
  319. </productMenu>
  320. <productMenu id="volume"
  321. type="16" >
  322. </productMenu>
  323. <productMenu id="soundMode"
  324. type="1" >
  325. </productMenu>
  326. <productMenu id="battery"
  327. type="1" >
  328. </productMenu>
  329. <productID id="6A1A"
  330. />
  331. <productGroupable type="0"
  332. />
  333. </product>
  334. <product id="60SEVO"
  335. name="60S EVO"
  336. series="60"
  337. latestVersion="1.0.2"
  338. latestVersionMesh="0.19"
  339. latestVersionVoicePrompt="1.7"
  340. show = "-1" >
  341. <productMenu id="protocol"
  342. type="2" >
  343. </productMenu>
  344. <productMenu id="warranty"
  345. type="1" >
  346. </productMenu>
  347. <productMenu id="serialNumber"
  348. type="1" >
  349. </productMenu>
  350. <productMenu id="ota"
  351. type="2" >
  352. <otaLanguages>
  353. <otaLanguage
  354. id="0"
  355. name="English"
  356. package="0"
  357. />
  358. <otaLanguage
  359. id="0"
  360. name="French"
  361. package="1"
  362. />
  363. <otaLanguage
  364. id="0"
  365. name="Spanish"
  366. package="2"
  367. />
  368. <otaLanguage
  369. id="0"
  370. name="Italian"
  371. package="3"
  372. />
  373. <otaLanguage
  374. id="0"
  375. name="German"
  376. package="4"
  377. />
  378. <otaLanguage
  379. id="0"
  380. name="Dutch"
  381. package="5"
  382. />
  383. <otaLanguage
  384. id="0"
  385. name="Russian"
  386. package="6"
  387. />
  388. <otaLanguage
  389. id="0"
  390. name="Chinese"
  391. package="7"
  392. />
  393. <otaLanguage
  394. id="0"
  395. name="Korean"
  396. package="8"
  397. />
  398. <otaLanguage
  399. id="0"
  400. name="Japanese"
  401. package="9"
  402. />
  403. <otaLanguage
  404. id="0"
  405. name="Finnish"
  406. package="10"
  407. />
  408. <otaLanguage
  409. id="0"
  410. name="Polish"
  411. package="11"
  412. />
  413. </otaLanguages>
  414. <otaPackages>
  415. <package
  416. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fr-FR.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-es-ES.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-it-IT.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-de-DE.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-nl-NL.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ru-RU.img"
  441. size="5183988"
  442. />
  443. <package
  444. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-cmn-CN.img"
  445. size="5183988"
  446. />
  447. <package
  448. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ko-KR.img"
  449. size="5183988"
  450. />
  451. <package
  452. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ja-JP.img"
  453. size="5183988"
  454. />
  455. <package
  456. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fi-FI.img"
  457. size="5183988"
  458. />
  459. <package
  460. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-pl-PL.img"
  461. size="5183988"
  462. />
  463. </otaPackages>
  464. </productMenu>
  465. <productMenu id="sip"
  466. type="1" >
  467. </productMenu>
  468. <productMenu id="illusion"
  469. type="1" >
  470. </productMenu>
  471. <productMenu id="meshIntercom"
  472. type="30" >
  473. </productMenu>
  474. <productMenu id="meshIntercom+"
  475. type="3"
  476. url="2" >
  477. </productMenu>
  478. <productMenu id="waveIntercom"
  479. type="1" >
  480. </productMenu>
  481. <productMenu id="bluetoothIntercom"
  482. type="1"
  483. url="2" >
  484. </productMenu>
  485. <productMenu id="bluetoothIntercomGrouping"
  486. type="0" >
  487. </productMenu>
  488. <productMenu id="fmradio"
  489. type="1"
  490. url="1" >
  491. </productMenu>
  492. <productMenu id="phone"
  493. type="1" >
  494. </productMenu>
  495. <productMenu id="music"
  496. type="1" >
  497. </productMenu>
  498. <productMenu id="musicSharing"
  499. type="0" >
  500. </productMenu>
  501. <productMenu id="deviceSetting"
  502. type="1"
  503. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06_Auto.xml" >
  504. </productMenu>
  505. <productMenu id="quickGuide"
  506. type="0"
  507. url=""
  508. size="1.12MB" >
  509. </productMenu>
  510. <productMenu id="userGuide"
  511. type="1"
  512. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.0.0_en_260429.pdf"
  513. size="2.0MB" >
  514. </productMenu>
  515. <productMenu id="videoGuide"
  516. type="0"
  517. url=""
  518. size="3.41MB" >
  519. </productMenu>
  520. <productMenu id="connectGuide"
  521. type="0"
  522. url=""
  523. size="1.12MB" >
  524. </productMenu>
  525. <productMenu id="volume"
  526. type="16" >
  527. </productMenu>
  528. <productMenu id="volume+"
  529. type="2"
  530. url="0x6004" >
  531. </productMenu>
  532. <productMenu id="soundMode"
  533. type="1" >
  534. </productMenu>
  535. <productMenu id="appearance"
  536. type="1"
  537. url="1|white,silver,black,glossy_black" >
  538. </productMenu>
  539. <productMenu id="battery"
  540. type="1" >
  541. </productMenu>
  542. <productID id="6A15"
  543. />
  544. <productGroupable type="0"
  545. />
  546. </product>
  547. <product id="60S"
  548. name="60S"
  549. series="60"
  550. latestVersion="1.2.9"
  551. latestVersionMesh="1.2"
  552. latestVersionVoicePrompt="1.7"
  553. show = "1" >
  554. <productMenu id="protocol"
  555. type="2" >
  556. </productMenu>
  557. <productMenu id="ota"
  558. type="2" >
  559. <otaLanguages>
  560. <otaLanguage
  561. id="0"
  562. name="English"
  563. package="0"
  564. />
  565. <otaLanguage
  566. id="0"
  567. name="French"
  568. package="1"
  569. />
  570. <otaLanguage
  571. id="0"
  572. name="Spanish"
  573. package="2"
  574. />
  575. <otaLanguage
  576. id="0"
  577. name="Italian"
  578. package="3"
  579. />
  580. <otaLanguage
  581. id="0"
  582. name="German"
  583. package="4"
  584. />
  585. <otaLanguage
  586. id="0"
  587. name="Dutch"
  588. package="5"
  589. />
  590. <otaLanguage
  591. id="0"
  592. name="Russian"
  593. package="6"
  594. />
  595. <otaLanguage
  596. id="0"
  597. name="Chinese"
  598. package="7"
  599. />
  600. <otaLanguage
  601. id="0"
  602. name="Korean"
  603. package="8"
  604. />
  605. <otaLanguage
  606. id="0"
  607. name="Japanese"
  608. package="9"
  609. />
  610. <otaLanguage
  611. id="0"
  612. name="Finnish"
  613. package="10"
  614. />
  615. <otaLanguage
  616. id="0"
  617. name="Polish"
  618. package="11"
  619. />
  620. </otaLanguages>
  621. <otaPackages>
  622. <package
  623. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0.img"
  624. size="5183988"
  625. />
  626. <package
  627. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fr-FR.img"
  628. size="5183988"
  629. />
  630. <package
  631. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-es-ES.img"
  632. size="5183988"
  633. />
  634. <package
  635. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-it-IT.img"
  636. size="5183988"
  637. />
  638. <package
  639. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-de-DE.img"
  640. size="5183988"
  641. />
  642. <package
  643. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-nl-NL.img"
  644. size="5183988"
  645. />
  646. <package
  647. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ru-RU.img"
  648. size="5183988"
  649. />
  650. <package
  651. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-cmn-CN.img"
  652. size="5183988"
  653. />
  654. <package
  655. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ko-KR.img"
  656. size="5183988"
  657. />
  658. <package
  659. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ja-JP.img"
  660. size="5183988"
  661. />
  662. <package
  663. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fi-FI.img"
  664. size="5183988"
  665. />
  666. <package
  667. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-pl-PL.img"
  668. size="5183988"
  669. />
  670. </otaPackages>
  671. </productMenu>
  672. <productMenu id="sip"
  673. type="1" >
  674. </productMenu>
  675. <productMenu id="illusion"
  676. type="1" >
  677. </productMenu>
  678. <productMenu id="meshIntercom"
  679. type="30" >
  680. </productMenu>
  681. <productMenu id="meshIntercom+"
  682. type="3"
  683. url="2" >
  684. </productMenu>
  685. <productMenu id="waveIntercom"
  686. type="1" >
  687. </productMenu>
  688. <productMenu id="bluetoothIntercom"
  689. type="1"
  690. url="2" >
  691. </productMenu>
  692. <productMenu id="bluetoothIntercomGrouping"
  693. type="0" >
  694. </productMenu>
  695. <productMenu id="fmradio"
  696. type="1"
  697. url="1" >
  698. </productMenu>
  699. <productMenu id="phone"
  700. type="1" >
  701. </productMenu>
  702. <productMenu id="music"
  703. type="1" >
  704. </productMenu>
  705. <productMenu id="musicSharing"
  706. type="0" >
  707. </productMenu>
  708. <productMenu id="deviceSetting"
  709. type="1"
  710. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  711. <productMenuURL version="1.2.6"
  712. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  713. />
  714. <productMenuURL version="1.2.3"
  715. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  716. />
  717. </productMenu>
  718. <productMenu id="quickGuide"
  719. type="0"
  720. url=""
  721. size="1.12MB" >
  722. </productMenu>
  723. <productMenu id="userGuide"
  724. type="1"
  725. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  726. size="2.0MB" >
  727. </productMenu>
  728. <productMenu id="videoGuide"
  729. type="0"
  730. url=""
  731. size="3.41MB" >
  732. </productMenu>
  733. <productMenu id="connectGuide"
  734. type="1"
  735. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  736. size="1.12MB" >
  737. </productMenu>
  738. <productMenu id="volume"
  739. type="16" >
  740. </productMenu>
  741. <productMenu id="volume+"
  742. type="2"
  743. url="0x6004" >
  744. <productMenuURL version="1.2.3"
  745. url="0x6004"
  746. />
  747. </productMenu>
  748. <productMenu id="soundMode"
  749. type="0" >
  750. </productMenu>
  751. <productMenu id="appearance"
  752. type="1"
  753. url="2|white,silver,chrome,black" >
  754. </productMenu>
  755. <productMenu id="battery"
  756. type="1" >
  757. </productMenu>
  758. <productID id="6A0D"
  759. />
  760. <productGroupable type="0"
  761. />
  762. </product>
  763. <product id="60S"
  764. name="60S"
  765. series="60"
  766. latestVersion="1.2.9"
  767. latestVersionMesh="1.2"
  768. latestVersionVoicePrompt="1.7"
  769. show = "-1" >
  770. <productMenu id="protocol"
  771. type="2" >
  772. </productMenu>
  773. <productMenu id="ota"
  774. type="2" >
  775. <otaLanguages>
  776. <otaLanguage
  777. id="0"
  778. name="English"
  779. package="0"
  780. />
  781. <otaLanguage
  782. id="0"
  783. name="French"
  784. package="1"
  785. />
  786. <otaLanguage
  787. id="0"
  788. name="Spanish"
  789. package="2"
  790. />
  791. <otaLanguage
  792. id="0"
  793. name="Italian"
  794. package="3"
  795. />
  796. <otaLanguage
  797. id="0"
  798. name="German"
  799. package="4"
  800. />
  801. <otaLanguage
  802. id="0"
  803. name="Dutch"
  804. package="5"
  805. />
  806. <otaLanguage
  807. id="0"
  808. name="Russian"
  809. package="6"
  810. />
  811. <otaLanguage
  812. id="0"
  813. name="Chinese"
  814. package="7"
  815. />
  816. <otaLanguage
  817. id="0"
  818. name="Korean"
  819. package="8"
  820. />
  821. <otaLanguage
  822. id="0"
  823. name="Japanese"
  824. package="9"
  825. />
  826. <otaLanguage
  827. id="0"
  828. name="Finnish"
  829. package="10"
  830. />
  831. <otaLanguage
  832. id="0"
  833. name="Polish"
  834. package="11"
  835. />
  836. </otaLanguages>
  837. <otaPackages>
  838. <package
  839. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0.img"
  840. size="5183988"
  841. />
  842. <package
  843. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fr-FR.img"
  844. size="5183988"
  845. />
  846. <package
  847. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-es-ES.img"
  848. size="5183988"
  849. />
  850. <package
  851. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-it-IT.img"
  852. size="5183988"
  853. />
  854. <package
  855. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-de-DE.img"
  856. size="5183988"
  857. />
  858. <package
  859. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-nl-NL.img"
  860. size="5183988"
  861. />
  862. <package
  863. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ru-RU.img"
  864. size="5183988"
  865. />
  866. <package
  867. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-cmn-CN.img"
  868. size="5183988"
  869. />
  870. <package
  871. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ko-KR.img"
  872. size="5183988"
  873. />
  874. <package
  875. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ja-JP.img"
  876. size="5183988"
  877. />
  878. <package
  879. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fi-FI.img"
  880. size="5183988"
  881. />
  882. <package
  883. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-pl-PL.img"
  884. size="5183988"
  885. />
  886. </otaPackages>
  887. </productMenu>
  888. <productMenu id="wa"
  889. type="0" >
  890. </productMenu>
  891. <productMenu id="sip"
  892. type="1" >
  893. </productMenu>
  894. <productMenu id="led"
  895. type="0" >
  896. </productMenu>
  897. <productMenu id="illusion"
  898. type="1" >
  899. </productMenu>
  900. <productMenu id="meshIntercom"
  901. type="30" >
  902. </productMenu>
  903. <productMenu id="meshIntercom+"
  904. type="3"
  905. url="2" >
  906. <productMenuURL version="1.0.2"
  907. url="10"
  908. />
  909. </productMenu>
  910. <productMenu id="waveIntercom"
  911. type="1" >
  912. <productMenuType version="1.0.9"
  913. type="0"
  914. />
  915. </productMenu>
  916. <productMenu id="bluetoothIntercom"
  917. type="1"
  918. url="2" >
  919. </productMenu>
  920. <productMenu id="bluetoothIntercomGrouping"
  921. type="0" >
  922. </productMenu>
  923. <productMenu id="fmradio"
  924. type="1"
  925. url="1" >
  926. </productMenu>
  927. <productMenu id="phone"
  928. type="1" >
  929. </productMenu>
  930. <productMenu id="music"
  931. type="1" >
  932. </productMenu>
  933. <productMenu id="musicSharing"
  934. type="0" >
  935. </productMenu>
  936. <productMenu id="deviceSetting"
  937. type="1"
  938. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  939. <productMenuURL version="1.2.6"
  940. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  941. />
  942. <productMenuURL version="1.2.3"
  943. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  944. />
  945. <productMenuURL version="1.0.2"
  946. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  947. />
  948. <productMenuURL version="1.0"
  949. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  950. />
  951. <productMenuURL version="0.9.11"
  952. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  953. />
  954. </productMenu>
  955. <productMenu id="quickGuide"
  956. type="0"
  957. url=""
  958. size="1.12MB" >
  959. </productMenu>
  960. <productMenu id="userGuide"
  961. type="1"
  962. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  963. size="2.0MB" >
  964. </productMenu>
  965. <productMenu id="videoGuide"
  966. type="0"
  967. url=""
  968. size="3.41MB" >
  969. </productMenu>
  970. <productMenu id="connectGuide"
  971. type="1"
  972. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  973. size="1.12MB" >
  974. </productMenu>
  975. <productMenu id="volume"
  976. type="16" >
  977. <productMenuType version="0.9.11"
  978. type="13"
  979. />
  980. </productMenu>
  981. <productMenu id="volume+"
  982. type="2"
  983. url="0x6004" >
  984. <productMenuURL version="1.2.3"
  985. url="0x6004"
  986. />
  987. </productMenu>
  988. <productMenu id="soundMode"
  989. type="0" >
  990. <productMenuType version="0.9.11"
  991. type="0"
  992. />
  993. </productMenu>
  994. <productMenu id="appearance"
  995. type="1"
  996. url="2|white,silver,chrome,black" >
  997. </productMenu>
  998. <productMenu id="battery"
  999. type="1" >
  1000. </productMenu>
  1001. <productID id="6A02"
  1002. />
  1003. <productGroupable type="0"
  1004. />
  1005. </product>
  1006. <product id="60X"
  1007. name="60X"
  1008. series="60"
  1009. latestVersion="1.0"
  1010. latestVersionMesh="0.19"
  1011. latestVersionVoicePrompt="1.7"
  1012. show = "1" >
  1013. <productMenu id="protocol"
  1014. type="2" >
  1015. </productMenu>
  1016. <productMenu id="warranty"
  1017. type="1" >
  1018. </productMenu>
  1019. <productMenu id="serialNumber"
  1020. type="1" >
  1021. </productMenu>
  1022. <productMenu id="ota"
  1023. type="2" >
  1024. <otaLanguages>
  1025. <otaLanguage
  1026. id="0"
  1027. name="English"
  1028. package="0"
  1029. />
  1030. <otaLanguage
  1031. id="0"
  1032. name="French"
  1033. package="1"
  1034. />
  1035. <otaLanguage
  1036. id="0"
  1037. name="Spanish"
  1038. package="2"
  1039. />
  1040. <otaLanguage
  1041. id="0"
  1042. name="Italian"
  1043. package="3"
  1044. />
  1045. <otaLanguage
  1046. id="0"
  1047. name="German"
  1048. package="4"
  1049. />
  1050. <otaLanguage
  1051. id="0"
  1052. name="Dutch"
  1053. package="5"
  1054. />
  1055. <otaLanguage
  1056. id="0"
  1057. name="Russian"
  1058. package="6"
  1059. />
  1060. <otaLanguage
  1061. id="0"
  1062. name="Chinese"
  1063. package="7"
  1064. />
  1065. <otaLanguage
  1066. id="0"
  1067. name="Korean"
  1068. package="8"
  1069. />
  1070. <otaLanguage
  1071. id="0"
  1072. name="Japanese"
  1073. package="9"
  1074. />
  1075. <otaLanguage
  1076. id="0"
  1077. name="Finnish"
  1078. package="10"
  1079. />
  1080. <otaLanguage
  1081. id="0"
  1082. name="Polish"
  1083. package="11"
  1084. />
  1085. </otaLanguages>
  1086. <otaPackages>
  1087. <package
  1088. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5.img"
  1089. size="5183988"
  1090. />
  1091. <package
  1092. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fr-FR.img"
  1093. size="5183988"
  1094. />
  1095. <package
  1096. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-es-ES.img"
  1097. size="5183988"
  1098. />
  1099. <package
  1100. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-it-IT.img"
  1101. size="5183988"
  1102. />
  1103. <package
  1104. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-de-DE.img"
  1105. size="5183988"
  1106. />
  1107. <package
  1108. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-nl-NL.img"
  1109. size="5183988"
  1110. />
  1111. <package
  1112. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ru-RU.img"
  1113. size="5183988"
  1114. />
  1115. <package
  1116. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-cmn-CN.img"
  1117. size="5183988"
  1118. />
  1119. <package
  1120. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ko-KR.img"
  1121. size="5183988"
  1122. />
  1123. <package
  1124. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ja-JP.img"
  1125. size="5183988"
  1126. />
  1127. <package
  1128. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fi-FI.img"
  1129. size="5183988"
  1130. />
  1131. <package
  1132. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-pl-PL.img"
  1133. size="5183988"
  1134. />
  1135. </otaPackages>
  1136. </productMenu>
  1137. <productMenu id="wa"
  1138. type="0" >
  1139. </productMenu>
  1140. <productMenu id="sip"
  1141. type="1" >
  1142. </productMenu>
  1143. <productMenu id="led"
  1144. type="1" >
  1145. </productMenu>
  1146. <productMenu id="illusion"
  1147. type="1" >
  1148. </productMenu>
  1149. <productMenu id="meshIntercom"
  1150. type="30" >
  1151. </productMenu>
  1152. <productMenu id="meshIntercom+"
  1153. type="3"
  1154. url="2" >
  1155. </productMenu>
  1156. <productMenu id="waveIntercom"
  1157. type="1" >
  1158. </productMenu>
  1159. <productMenu id="bluetoothIntercom"
  1160. type="1" >
  1161. </productMenu>
  1162. <productMenu id="fmradio"
  1163. type="1"
  1164. url="1" >
  1165. </productMenu>
  1166. <productMenu id="mic"
  1167. type="0" >
  1168. </productMenu>
  1169. <productMenu id="phone"
  1170. type="1" >
  1171. </productMenu>
  1172. <productMenu id="music"
  1173. type="1" >
  1174. </productMenu>
  1175. <productMenu id="musicSharing"
  1176. type="0" >
  1177. </productMenu>
  1178. <productMenu id="deviceSetting"
  1179. type="1"
  1180. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1181. </productMenu>
  1182. <productMenu id="quickGuide"
  1183. type="0"
  1184. url=""
  1185. size="1.12MB" >
  1186. </productMenu>
  1187. <productMenu id="userGuide"
  1188. type="0"
  1189. url=""
  1190. size="2.0MB" >
  1191. </productMenu>
  1192. <productMenu id="videoGuide"
  1193. type="0"
  1194. url=""
  1195. size="3.41MB" >
  1196. </productMenu>
  1197. <productMenu id="keySettings"
  1198. type="1"
  1199. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1200. </productMenu>
  1201. <productMenu id="volume"
  1202. type="13" >
  1203. </productMenu>
  1204. <productMenu id="volume+"
  1205. type="2"
  1206. url="0x6004" >
  1207. </productMenu>
  1208. <productMenu id="appearance"
  1209. type="1"
  1210. url="1|white,silver,black,glossy_black" >
  1211. </productMenu>
  1212. <productMenu id="battery"
  1213. type="1" >
  1214. </productMenu>
  1215. <productID id="6A03"
  1216. />
  1217. <productGroupable type="0"
  1218. />
  1219. </product>
  1220. <product id="R35"
  1221. name="R35"
  1222. series="R"
  1223. latestVersion="1.1.1"
  1224. latestVersionVoicePrompt="1.5"
  1225. show = "1" >
  1226. <productMenu id="protocol"
  1227. type="2" >
  1228. </productMenu>
  1229. <productMenu id="ota"
  1230. type="2" >
  1231. <otaLanguages>
  1232. <otaLanguage
  1233. id="0"
  1234. name="English"
  1235. package="0"
  1236. />
  1237. <otaLanguage
  1238. id="0"
  1239. name="Chinese"
  1240. package="1"
  1241. />
  1242. <otaLanguage
  1243. id="0"
  1244. name="Chinese Singapore"
  1245. package="2"
  1246. />
  1247. <otaLanguage
  1248. id="0"
  1249. name="Filipino"
  1250. package="3"
  1251. />
  1252. <otaLanguage
  1253. id="0"
  1254. name="Hebrew"
  1255. package="4"
  1256. />
  1257. <otaLanguage
  1258. id="0"
  1259. name="Hindi"
  1260. package="5"
  1261. />
  1262. <otaLanguage
  1263. id="0"
  1264. name="Indonesian"
  1265. package="6"
  1266. />
  1267. <otaLanguage
  1268. id="0"
  1269. name="Japanese"
  1270. package="7"
  1271. />
  1272. <otaLanguage
  1273. id="0"
  1274. name="Korean"
  1275. package="8"
  1276. />
  1277. <otaLanguage
  1278. id="0"
  1279. name="Malay"
  1280. package="9"
  1281. />
  1282. <otaLanguage
  1283. id="0"
  1284. name="Modern Standard Arabic"
  1285. package="10"
  1286. />
  1287. <otaLanguage
  1288. id="0"
  1289. name="Taiwanese"
  1290. package="11"
  1291. />
  1292. <otaLanguage
  1293. id="0"
  1294. name="Tamil"
  1295. package="12"
  1296. />
  1297. <otaLanguage
  1298. id="0"
  1299. name="Thai"
  1300. package="13"
  1301. />
  1302. <otaLanguage
  1303. id="0"
  1304. name="东北话"
  1305. package="14"
  1306. />
  1307. <otaLanguage
  1308. id="0"
  1309. name="广东话"
  1310. package="15"
  1311. />
  1312. <otaLanguage
  1313. id="0"
  1314. name="江浙沪"
  1315. package="16"
  1316. />
  1317. <otaLanguage
  1318. id="0"
  1319. name="四川话"
  1320. package="17"
  1321. />
  1322. <otaLanguage
  1323. id="0"
  1324. name="陕西话"
  1325. package="18"
  1326. />
  1327. </otaLanguages>
  1328. <otaPackages>
  1329. <package
  1330. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0.img"
  1331. size="5183988"
  1332. />
  1333. <package
  1334. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-CN.img"
  1335. size="5183988"
  1336. />
  1337. <package
  1338. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-SG.img"
  1339. size="5183988"
  1340. />
  1341. <package
  1342. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-tl-PH.img"
  1343. size="5183988"
  1344. />
  1345. <package
  1346. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-he-IL.img"
  1347. size="5183988"
  1348. />
  1349. <package
  1350. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-hi-IN.img"
  1351. size="5183988"
  1352. />
  1353. <package
  1354. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-id-ID.img"
  1355. size="5183988"
  1356. />
  1357. <package
  1358. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ja-JP.img"
  1359. size="5183988"
  1360. />
  1361. <package
  1362. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ko-KR.img"
  1363. size="5183988"
  1364. />
  1365. <package
  1366. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ms-MY.img"
  1367. size="5183988"
  1368. />
  1369. <package
  1370. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ar-XA.img"
  1371. size="5183988"
  1372. />
  1373. <package
  1374. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-nan-TW.img"
  1375. size="5183988"
  1376. />
  1377. <package
  1378. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ta-IN.img"
  1379. size="5183988"
  1380. />
  1381. <package
  1382. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-th-TH.img"
  1383. size="5183988"
  1384. />
  1385. <package
  1386. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zdb-CN.img"
  1387. size="5183988"
  1388. />
  1389. <package
  1390. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-yue-CN.img"
  1391. size="5183988"
  1392. />
  1393. <package
  1394. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-wuu-CN.img"
  1395. size="5183988"
  1396. />
  1397. <package
  1398. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsc-CN.img"
  1399. size="5183988"
  1400. />
  1401. <package
  1402. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsn-CN.img"
  1403. size="5183988"
  1404. />
  1405. </otaPackages>
  1406. </productMenu>
  1407. <productMenu id="sip"
  1408. type="1" >
  1409. </productMenu>
  1410. <productMenu id="illusion"
  1411. type="1" >
  1412. </productMenu>
  1413. <productMenu id="meshIntercom"
  1414. type="30" >
  1415. </productMenu>
  1416. <productMenu id="meshIntercom+"
  1417. type="3"
  1418. url="2" >
  1419. </productMenu>
  1420. <productMenu id="waveIntercom"
  1421. type="1" >
  1422. </productMenu>
  1423. <productMenu id="phone"
  1424. type="1" >
  1425. </productMenu>
  1426. <productMenu id="music"
  1427. type="1" >
  1428. </productMenu>
  1429. <productMenu id="musicSharing"
  1430. type="0" >
  1431. </productMenu>
  1432. <productMenu id="deviceSetting"
  1433. type="1"
  1434. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml" >
  1435. <productMenuURL version="1.0.3"
  1436. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1437. />
  1438. </productMenu>
  1439. <productMenu id="quickGuide"
  1440. type="0"
  1441. url=""
  1442. size="1.12MB" >
  1443. </productMenu>
  1444. <productMenu id="userGuide"
  1445. type="1"
  1446. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1447. size="2.0MB" >
  1448. </productMenu>
  1449. <productMenu id="videoGuide"
  1450. type="0"
  1451. url=""
  1452. size="3.41MB" >
  1453. </productMenu>
  1454. <productMenu id="connectGuide"
  1455. type="0"
  1456. url=""
  1457. size="1.12MB" >
  1458. </productMenu>
  1459. <productMenu id="volume"
  1460. type="16" >
  1461. </productMenu>
  1462. <productMenu id="volume+"
  1463. type="2"
  1464. url="0x6004" >
  1465. </productMenu>
  1466. <productMenu id="soundMode"
  1467. type="0" >
  1468. </productMenu>
  1469. <productMenu id="appearance"
  1470. type="1"
  1471. url="1|white,silver,chrome,black" >
  1472. </productMenu>
  1473. <productMenu id="battery"
  1474. type="1" >
  1475. </productMenu>
  1476. <productID id="6A06"
  1477. />
  1478. <productGroupable type="0"
  1479. />
  1480. </product>
  1481. <product id="COM60X"
  1482. name="BMW MOTORRAD COM 60X"
  1483. series="60"
  1484. latestVersion="1.0"
  1485. latestVersionMesh="0.19"
  1486. latestVersionVoicePrompt="1.7"
  1487. show = "-1" >
  1488. <productMenu id="protocol"
  1489. type="2" >
  1490. </productMenu>
  1491. <productMenu id="ota"
  1492. type="0" >
  1493. <otaLanguages>
  1494. <otaLanguage
  1495. id="0"
  1496. name="English"
  1497. package="0"
  1498. />
  1499. <otaLanguage
  1500. id="0"
  1501. name="French"
  1502. package="1"
  1503. />
  1504. <otaLanguage
  1505. id="0"
  1506. name="Spanish"
  1507. package="2"
  1508. />
  1509. <otaLanguage
  1510. id="0"
  1511. name="Italian"
  1512. package="3"
  1513. />
  1514. <otaLanguage
  1515. id="0"
  1516. name="German"
  1517. package="4"
  1518. />
  1519. <otaLanguage
  1520. id="0"
  1521. name="Dutch"
  1522. package="5"
  1523. />
  1524. <otaLanguage
  1525. id="0"
  1526. name="Russian"
  1527. package="6"
  1528. />
  1529. <otaLanguage
  1530. id="0"
  1531. name="Chinese"
  1532. package="7"
  1533. />
  1534. <otaLanguage
  1535. id="0"
  1536. name="Korean"
  1537. package="8"
  1538. />
  1539. <otaLanguage
  1540. id="0"
  1541. name="Japanese"
  1542. package="9"
  1543. />
  1544. <otaLanguage
  1545. id="0"
  1546. name="Finnish"
  1547. package="10"
  1548. />
  1549. <otaLanguage
  1550. id="0"
  1551. name="Polish"
  1552. package="11"
  1553. />
  1554. </otaLanguages>
  1555. <otaPackages>
  1556. <package
  1557. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5.img"
  1558. size="5183988"
  1559. />
  1560. <package
  1561. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fr-FR.img"
  1562. size="5183988"
  1563. />
  1564. <package
  1565. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-es-ES.img"
  1566. size="5183988"
  1567. />
  1568. <package
  1569. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-it-IT.img"
  1570. size="5183988"
  1571. />
  1572. <package
  1573. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-de-DE.img"
  1574. size="5183988"
  1575. />
  1576. <package
  1577. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-nl-NL.img"
  1578. size="5183988"
  1579. />
  1580. <package
  1581. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ru-RU.img"
  1582. size="5183988"
  1583. />
  1584. <package
  1585. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-cmn-CN.img"
  1586. size="5183988"
  1587. />
  1588. <package
  1589. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ko-KR.img"
  1590. size="5183988"
  1591. />
  1592. <package
  1593. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ja-JP.img"
  1594. size="5183988"
  1595. />
  1596. <package
  1597. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fi-FI.img"
  1598. size="5183988"
  1599. />
  1600. <package
  1601. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-pl-PL.img"
  1602. size="5183988"
  1603. />
  1604. </otaPackages>
  1605. </productMenu>
  1606. <productMenu id="wa"
  1607. type="0" >
  1608. </productMenu>
  1609. <productMenu id="sip"
  1610. type="1" >
  1611. </productMenu>
  1612. <productMenu id="led"
  1613. type="1" >
  1614. </productMenu>
  1615. <productMenu id="illusion"
  1616. type="1" >
  1617. </productMenu>
  1618. <productMenu id="meshIntercom"
  1619. type="30" >
  1620. </productMenu>
  1621. <productMenu id="meshIntercom+"
  1622. type="3"
  1623. url="2" >
  1624. </productMenu>
  1625. <productMenu id="bluetoothIntercom"
  1626. type="1" >
  1627. </productMenu>
  1628. <productMenu id="fmradio"
  1629. type="1"
  1630. url="1" >
  1631. </productMenu>
  1632. <productMenu id="mic"
  1633. type="0" >
  1634. </productMenu>
  1635. <productMenu id="phone"
  1636. type="1" >
  1637. </productMenu>
  1638. <productMenu id="music"
  1639. type="1" >
  1640. </productMenu>
  1641. <productMenu id="musicSharing"
  1642. type="0" >
  1643. </productMenu>
  1644. <productMenu id="deviceSetting"
  1645. type="1"
  1646. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1647. </productMenu>
  1648. <productMenu id="quickGuide"
  1649. type="0"
  1650. url=""
  1651. size="1.12MB" >
  1652. </productMenu>
  1653. <productMenu id="userGuide"
  1654. type="1"
  1655. url=""
  1656. size="2.0MB" >
  1657. </productMenu>
  1658. <productMenu id="videoGuide"
  1659. type="0"
  1660. url=""
  1661. size="3.41MB" >
  1662. </productMenu>
  1663. <productMenu id="keySettings"
  1664. type="1"
  1665. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1666. </productMenu>
  1667. <productMenu id="volume"
  1668. type="13" >
  1669. </productMenu>
  1670. <productMenu id="volume+"
  1671. type="2"
  1672. url="0x6004" >
  1673. </productMenu>
  1674. <productMenu id="battery"
  1675. type="1" >
  1676. </productMenu>
  1677. <productID id="6A1B"
  1678. />
  1679. <productGroupable type="0"
  1680. />
  1681. </product>
  1682. <product id="COMP1"
  1683. name="BMW COM P1"
  1684. series="60"
  1685. latestVersion="1.2"
  1686. latestVersionMesh="0.19"
  1687. latestVersionVoicePrompt="1.0"
  1688. show = "-1" >
  1689. <productMenu id="protocol"
  1690. type="2" >
  1691. </productMenu>
  1692. <productMenu id="ota"
  1693. type="2" >
  1694. <otaLanguages>
  1695. <otaLanguage
  1696. id="0"
  1697. name="English"
  1698. package="0"
  1699. />
  1700. <otaLanguage
  1701. id="0"
  1702. name="French"
  1703. package="1"
  1704. />
  1705. <otaLanguage
  1706. id="0"
  1707. name="Spanish"
  1708. package="2"
  1709. />
  1710. <otaLanguage
  1711. id="0"
  1712. name="Italian"
  1713. package="3"
  1714. />
  1715. <otaLanguage
  1716. id="0"
  1717. name="German"
  1718. package="4"
  1719. />
  1720. <otaLanguage
  1721. id="0"
  1722. name="Dutch"
  1723. package="5"
  1724. />
  1725. <otaLanguage
  1726. id="0"
  1727. name="Russian"
  1728. package="6"
  1729. />
  1730. <otaLanguage
  1731. id="0"
  1732. name="Chinese"
  1733. package="7"
  1734. />
  1735. <otaLanguage
  1736. id="0"
  1737. name="Korean"
  1738. package="8"
  1739. />
  1740. <otaLanguage
  1741. id="0"
  1742. name="Japanese"
  1743. package="9"
  1744. />
  1745. <otaLanguage
  1746. id="0"
  1747. name="Finnish"
  1748. package="10"
  1749. />
  1750. </otaLanguages>
  1751. <otaPackages>
  1752. <package
  1753. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0.img"
  1754. size="5183988"
  1755. />
  1756. <package
  1757. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fr-FR.img"
  1758. size="5183988"
  1759. />
  1760. <package
  1761. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-es-ES.img"
  1762. size="5183988"
  1763. />
  1764. <package
  1765. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-it-IT.img"
  1766. size="5183988"
  1767. />
  1768. <package
  1769. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-de-DE.img"
  1770. size="5183988"
  1771. />
  1772. <package
  1773. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-nl-NL.img"
  1774. size="5183988"
  1775. />
  1776. <package
  1777. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ru-RU.img"
  1778. size="5183988"
  1779. />
  1780. <package
  1781. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-cmn-CN.img"
  1782. size="5183988"
  1783. />
  1784. <package
  1785. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ko-KR.img"
  1786. size="5183988"
  1787. />
  1788. <package
  1789. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ja-JP.img"
  1790. size="5183988"
  1791. />
  1792. <package
  1793. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fi-FI.img"
  1794. size="5183988"
  1795. />
  1796. </otaPackages>
  1797. </productMenu>
  1798. <productMenu id="wa"
  1799. type="0" >
  1800. </productMenu>
  1801. <productMenu id="sip"
  1802. type="1" >
  1803. </productMenu>
  1804. <productMenu id="led"
  1805. type="0" >
  1806. </productMenu>
  1807. <productMenu id="illusion"
  1808. type="0" >
  1809. </productMenu>
  1810. <productMenu id="meshIntercom"
  1811. type="30" >
  1812. </productMenu>
  1813. <productMenu id="bluetoothIntercom"
  1814. type="1" >
  1815. </productMenu>
  1816. <productMenu id="bluetoothIntercomGrouping"
  1817. type="0" >
  1818. </productMenu>
  1819. <productMenu id="fmradio"
  1820. type="0" >
  1821. </productMenu>
  1822. <productMenu id="phone"
  1823. type="1" >
  1824. </productMenu>
  1825. <productMenu id="music"
  1826. type="1" >
  1827. </productMenu>
  1828. <productMenu id="musicSharing"
  1829. type="0" >
  1830. </productMenu>
  1831. <productMenu id="deviceSetting"
  1832. type="1"
  1833. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1834. </productMenu>
  1835. <productMenu id="quickGuide"
  1836. type="0"
  1837. url=""
  1838. size="1.12MB" >
  1839. </productMenu>
  1840. <productMenu id="userGuide"
  1841. type="0"
  1842. url=""
  1843. size="2.0MB" >
  1844. </productMenu>
  1845. <productMenu id="videoGuide"
  1846. type="0"
  1847. url=""
  1848. size="3.41MB" >
  1849. </productMenu>
  1850. <productMenu id="volume"
  1851. type="16" >
  1852. </productMenu>
  1853. <productMenu id="battery"
  1854. type="1" >
  1855. </productMenu>
  1856. <productID id="6A80"
  1857. />
  1858. <productGroupable type="0"
  1859. />
  1860. </product>
  1861. <product id="50S"
  1862. name="50S"
  1863. series="50"
  1864. latestVersion="2.7.2"
  1865. show = "1" >
  1866. <productMenu id="protocol"
  1867. type="2" >
  1868. </productMenu>
  1869. <productMenu id="alexa"
  1870. type="0" >
  1871. </productMenu>
  1872. <productMenu id="ota"
  1873. type="0"
  1874. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1875. size="1150234" >
  1876. </productMenu>
  1877. <productMenu id="wa"
  1878. type="1" >
  1879. </productMenu>
  1880. <productMenu id="sip"
  1881. type="1" >
  1882. </productMenu>
  1883. <productMenu id="meshIntercom"
  1884. type="30" >
  1885. <productMenuType version="2.1.1"
  1886. type="20"
  1887. />
  1888. </productMenu>
  1889. <productMenu id="meshIntercom+"
  1890. type="3"
  1891. url="2" >
  1892. <productMenuType version="2.5.9"
  1893. type="2"
  1894. />
  1895. <productMenuURL version="2.1.1"
  1896. url="0"
  1897. />
  1898. </productMenu>
  1899. <productMenu id="waveIntercom"
  1900. type="1" >
  1901. <productMenuType version="2.6"
  1902. type="0"
  1903. />
  1904. </productMenu>
  1905. <productMenu id="bluetoothIntercom"
  1906. type="1" >
  1907. </productMenu>
  1908. <productMenu id="phone"
  1909. type="1" >
  1910. </productMenu>
  1911. <productMenu id="music"
  1912. type="1" >
  1913. </productMenu>
  1914. <productMenu id="fmradio"
  1915. type="1" >
  1916. </productMenu>
  1917. <productMenu id="deviceSetting"
  1918. type="1"
  1919. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1920. <productMenuURL version="2.5.9"
  1921. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1922. />
  1923. <productMenuURL version="2.1.1"
  1924. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1925. />
  1926. <productMenuURL version="2.0.3"
  1927. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1928. />
  1929. </productMenu>
  1930. <productMenu id="quickGuide"
  1931. type="0"
  1932. url=""
  1933. size="934KB" >
  1934. </productMenu>
  1935. <productMenu id="userGuide"
  1936. type="1"
  1937. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1938. size="1.14MB" >
  1939. </productMenu>
  1940. <productMenu id="videoGuide"
  1941. type="1"
  1942. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1943. size="3.41MB" >
  1944. </productMenu>
  1945. <productMenu id="connectGuide"
  1946. type="1"
  1947. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1948. size="1.12MB" >
  1949. </productMenu>
  1950. <productMenu id="volume"
  1951. type="11" >
  1952. </productMenu>
  1953. <productMenu id="battery"
  1954. type="1" >
  1955. </productMenu>
  1956. <productID id="3210"
  1957. />
  1958. <productGroupable type="0"
  1959. />
  1960. </product>
  1961. <product id="50S"
  1962. name="50S"
  1963. series="50"
  1964. latestVersion="1.5.1"
  1965. show = "-1" >
  1966. <productMenu id="protocol"
  1967. type="2" >
  1968. </productMenu>
  1969. <productMenu id="alexa"
  1970. type="0" >
  1971. </productMenu>
  1972. <productMenu id="wa"
  1973. type="1" >
  1974. </productMenu>
  1975. <productMenu id="sip"
  1976. type="1" >
  1977. </productMenu>
  1978. <productMenu id="meshIntercom"
  1979. type="30" >
  1980. <productMenuType version="1.2.2"
  1981. type="20"
  1982. />
  1983. </productMenu>
  1984. <productMenu id="meshIntercom+"
  1985. type="3"
  1986. url="2" >
  1987. <productMenuType version="1.4.9"
  1988. type="2"
  1989. />
  1990. <productMenuURL version="1.2.2"
  1991. url="0"
  1992. />
  1993. </productMenu>
  1994. <productMenu id="waveIntercom"
  1995. type="1" >
  1996. <productMenuType version="1.3.9"
  1997. type="0"
  1998. />
  1999. </productMenu>
  2000. <productMenu id="bluetoothIntercom"
  2001. type="1" >
  2002. </productMenu>
  2003. <productMenu id="phone"
  2004. type="1" >
  2005. </productMenu>
  2006. <productMenu id="music"
  2007. type="1" >
  2008. </productMenu>
  2009. <productMenu id="fmradio"
  2010. type="1" >
  2011. </productMenu>
  2012. <productMenu id="deviceSetting"
  2013. type="1"
  2014. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2015. <productMenuURL version="1.4.9"
  2016. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2017. />
  2018. <productMenuURL version="1.3.9"
  2019. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2020. />
  2021. <productMenuURL version="1.2.2"
  2022. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2023. />
  2024. <productMenuURL version="1.1.1"
  2025. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2026. />
  2027. </productMenu>
  2028. <productMenu id="quickGuide"
  2029. type="0"
  2030. url=""
  2031. size="934KB" >
  2032. </productMenu>
  2033. <productMenu id="userGuide"
  2034. type="1"
  2035. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  2036. size="1.14MB" >
  2037. </productMenu>
  2038. <productMenu id="videoGuide"
  2039. type="1"
  2040. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2041. size="3.41MB" >
  2042. </productMenu>
  2043. <productMenu id="volume"
  2044. type="11" >
  2045. </productMenu>
  2046. <productMenu id="battery"
  2047. type="1" >
  2048. </productMenu>
  2049. <productID id="3132"
  2050. />
  2051. <productGroupable type="0"
  2052. />
  2053. </product>
  2054. <product id="50R"
  2055. name="50R"
  2056. series="50"
  2057. latestVersion="2.7.1"
  2058. show = "1" >
  2059. <productMenu id="protocol"
  2060. type="2" >
  2061. </productMenu>
  2062. <productMenu id="alexa"
  2063. type="0" >
  2064. </productMenu>
  2065. <productMenu id="ota"
  2066. type="0"
  2067. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2068. size="1150234" >
  2069. </productMenu>
  2070. <productMenu id="wa"
  2071. type="1" >
  2072. </productMenu>
  2073. <productMenu id="sip"
  2074. type="1" >
  2075. </productMenu>
  2076. <productMenu id="meshIntercom"
  2077. type="30" >
  2078. <productMenuType version="2.1.1"
  2079. type="20"
  2080. />
  2081. </productMenu>
  2082. <productMenu id="meshIntercom+"
  2083. type="3"
  2084. url="2" >
  2085. <productMenuType version="2.5.9"
  2086. type="2"
  2087. />
  2088. <productMenuURL version="2.1.1"
  2089. url="0"
  2090. />
  2091. </productMenu>
  2092. <productMenu id="waveIntercom"
  2093. type="1" >
  2094. <productMenuType version="2.6"
  2095. type="0"
  2096. />
  2097. </productMenu>
  2098. <productMenu id="bluetoothIntercom"
  2099. type="1" >
  2100. </productMenu>
  2101. <productMenu id="phone"
  2102. type="1" >
  2103. </productMenu>
  2104. <productMenu id="music"
  2105. type="1" >
  2106. </productMenu>
  2107. <productMenu id="fmradio"
  2108. type="1" >
  2109. </productMenu>
  2110. <productMenu id="deviceSetting"
  2111. type="1"
  2112. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2113. <productMenuURL version="2.5.9"
  2114. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2115. />
  2116. <productMenuURL version="2.1.1"
  2117. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2118. />
  2119. <productMenuURL version="2.0"
  2120. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2121. />
  2122. </productMenu>
  2123. <productMenu id="quickGuide"
  2124. type="0"
  2125. url=""
  2126. size="344KB" >
  2127. </productMenu>
  2128. <productMenu id="userGuide"
  2129. type="1"
  2130. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  2131. size="3.41MB" >
  2132. </productMenu>
  2133. <productMenu id="videoGuide"
  2134. type="1"
  2135. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2136. size="3.41MB" >
  2137. </productMenu>
  2138. <productMenu id="connectGuide"
  2139. type="1"
  2140. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  2141. size="1.12MB" >
  2142. </productMenu>
  2143. <productMenu id="volume"
  2144. type="11" >
  2145. </productMenu>
  2146. <productMenu id="battery"
  2147. type="1" >
  2148. </productMenu>
  2149. <productID id="3218"
  2150. />
  2151. <productGroupable type="0"
  2152. />
  2153. </product>
  2154. <product id="50R"
  2155. name="50R"
  2156. series="50"
  2157. latestVersion="1.5.1"
  2158. show = "-1" >
  2159. <productMenu id="protocol"
  2160. type="2" >
  2161. </productMenu>
  2162. <productMenu id="alexa"
  2163. type="0" >
  2164. </productMenu>
  2165. <productMenu id="wa"
  2166. type="1" >
  2167. </productMenu>
  2168. <productMenu id="sip"
  2169. type="1" >
  2170. </productMenu>
  2171. <productMenu id="meshIntercom"
  2172. type="30" >
  2173. <productMenuType version="1.2.2"
  2174. type="20"
  2175. />
  2176. </productMenu>
  2177. <productMenu id="meshIntercom+"
  2178. type="3"
  2179. url="2" >
  2180. <productMenuType version="1.4.9"
  2181. type="2"
  2182. />
  2183. <productMenuURL version="1.2.2"
  2184. url="0"
  2185. />
  2186. </productMenu>
  2187. <productMenu id="waveIntercom"
  2188. type="1" >
  2189. <productMenuType version="1.3.9"
  2190. type="0"
  2191. />
  2192. </productMenu>
  2193. <productMenu id="bluetoothIntercom"
  2194. type="1" >
  2195. </productMenu>
  2196. <productMenu id="phone"
  2197. type="1" >
  2198. </productMenu>
  2199. <productMenu id="music"
  2200. type="1" >
  2201. </productMenu>
  2202. <productMenu id="fmradio"
  2203. type="1" >
  2204. </productMenu>
  2205. <productMenu id="deviceSetting"
  2206. type="1"
  2207. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2208. <productMenuURL version="1.4.9"
  2209. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2210. />
  2211. <productMenuURL version="1.3.9"
  2212. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2213. />
  2214. <productMenuURL version="1.2.2"
  2215. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2216. />
  2217. <productMenuURL version="1.1.1"
  2218. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2219. />
  2220. </productMenu>
  2221. <productMenu id="quickGuide"
  2222. type="0"
  2223. url=""
  2224. size="344KB" >
  2225. </productMenu>
  2226. <productMenu id="userGuide"
  2227. type="1"
  2228. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2229. size="3.41MB" >
  2230. </productMenu>
  2231. <productMenu id="videoGuide"
  2232. type="1"
  2233. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2234. size="3.41MB" >
  2235. </productMenu>
  2236. <productMenu id="volume"
  2237. type="11" >
  2238. </productMenu>
  2239. <productMenu id="battery"
  2240. type="1" >
  2241. </productMenu>
  2242. <productID id="3134"
  2243. />
  2244. <productGroupable type="0"
  2245. />
  2246. </product>
  2247. <product id="50C"
  2248. name="50C"
  2249. series="50"
  2250. latestVersion="1.4.3"
  2251. show = "1" >
  2252. <productMenu id="protocol"
  2253. type="2" >
  2254. </productMenu>
  2255. <productMenu id="ota"
  2256. type="0" >
  2257. </productMenu>
  2258. <productMenu id="wa"
  2259. type="1" >
  2260. </productMenu>
  2261. <productMenu id="sip"
  2262. type="1" >
  2263. </productMenu>
  2264. <productMenu id="meshIntercom"
  2265. type="30" >
  2266. <productMenuType version="1.1.1"
  2267. type="20"
  2268. />
  2269. </productMenu>
  2270. <productMenu id="meshIntercom+"
  2271. type="3"
  2272. url="2" >
  2273. <productMenuType version="1.3.9"
  2274. type="2"
  2275. />
  2276. <productMenuURL version="1.1.1"
  2277. url="0"
  2278. />
  2279. </productMenu>
  2280. <productMenu id="waveIntercom"
  2281. type="1" >
  2282. <productMenuType version="1.2.9"
  2283. type="0"
  2284. />
  2285. </productMenu>
  2286. <productMenu id="bluetoothIntercom"
  2287. type="1" >
  2288. </productMenu>
  2289. <productMenu id="phone"
  2290. type="1" >
  2291. </productMenu>
  2292. <productMenu id="music"
  2293. type="1" >
  2294. </productMenu>
  2295. <productMenu id="fmradio"
  2296. type="1" >
  2297. </productMenu>
  2298. <productMenu id="deviceSetting"
  2299. type="1"
  2300. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2301. <productMenuURL version="1.3.9"
  2302. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2303. />
  2304. <productMenuURL version="1.1.1"
  2305. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2306. />
  2307. <productMenuURL version="1.0.1"
  2308. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2309. />
  2310. </productMenu>
  2311. <productMenu id="quickGuide"
  2312. type="0"
  2313. url=""
  2314. size="344KB" >
  2315. </productMenu>
  2316. <productMenu id="userGuide"
  2317. type="1"
  2318. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2319. size="3.41MB" >
  2320. </productMenu>
  2321. <productMenu id="connectGuide"
  2322. type="1"
  2323. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2324. size="1.12MB" >
  2325. </productMenu>
  2326. <productMenu id="volume"
  2327. type="11" >
  2328. </productMenu>
  2329. <productMenu id="battery"
  2330. type="1" >
  2331. </productMenu>
  2332. <productID id="3232"
  2333. />
  2334. <productGroupable type="0"
  2335. />
  2336. </product>
  2337. <product id="PHANTOMXB"
  2338. name="PHANTOM XB"
  2339. series="Helmet"
  2340. latestVersion="1.2.9"
  2341. latestVersionVoicePrompt="1.6"
  2342. show = "-1" >
  2343. <productMenu id="protocol"
  2344. type="2" >
  2345. </productMenu>
  2346. <productMenu id="ota"
  2347. type="2" >
  2348. <otaLanguages>
  2349. <otaLanguage
  2350. id="0"
  2351. name="English"
  2352. package="0"
  2353. />
  2354. <otaLanguage
  2355. id="0"
  2356. name="French"
  2357. package="1"
  2358. />
  2359. <otaLanguage
  2360. id="0"
  2361. name="Spanish"
  2362. package="2"
  2363. />
  2364. <otaLanguage
  2365. id="0"
  2366. name="Italian"
  2367. package="3"
  2368. />
  2369. <otaLanguage
  2370. id="0"
  2371. name="German"
  2372. package="4"
  2373. />
  2374. <otaLanguage
  2375. id="0"
  2376. name="Dutch"
  2377. package="5"
  2378. />
  2379. <otaLanguage
  2380. id="0"
  2381. name="Russian"
  2382. package="6"
  2383. />
  2384. <otaLanguage
  2385. id="0"
  2386. name="Chinese"
  2387. package="7"
  2388. />
  2389. <otaLanguage
  2390. id="0"
  2391. name="Korean"
  2392. package="8"
  2393. />
  2394. <otaLanguage
  2395. id="0"
  2396. name="Japanese"
  2397. package="9"
  2398. />
  2399. <otaLanguage
  2400. id="0"
  2401. name="Finnish"
  2402. package="10"
  2403. />
  2404. <otaLanguage
  2405. id="0"
  2406. name="Polish"
  2407. package="11"
  2408. />
  2409. </otaLanguages>
  2410. <otaPackages>
  2411. <package
  2412. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0.img"
  2413. size="5183988"
  2414. />
  2415. <package
  2416. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fr-FR.img"
  2417. size="5183988"
  2418. />
  2419. <package
  2420. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-es-ES.img"
  2421. size="5183988"
  2422. />
  2423. <package
  2424. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-it-IT.img"
  2425. size="5183988"
  2426. />
  2427. <package
  2428. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-de-DE.img"
  2429. size="5183988"
  2430. />
  2431. <package
  2432. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-nl-NL.img"
  2433. size="5183988"
  2434. />
  2435. <package
  2436. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ru-RU.img"
  2437. size="5183988"
  2438. />
  2439. <package
  2440. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-cmn-CN.img"
  2441. size="5183988"
  2442. />
  2443. <package
  2444. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ko-KR.img"
  2445. size="5183988"
  2446. />
  2447. <package
  2448. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ja-JP.img"
  2449. size="5183988"
  2450. />
  2451. <package
  2452. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fi-FI.img"
  2453. size="5183988"
  2454. />
  2455. <package
  2456. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-pl-PL.img"
  2457. size="5183988"
  2458. />
  2459. </otaPackages>
  2460. </productMenu>
  2461. <productMenu id="wa"
  2462. type="0" >
  2463. </productMenu>
  2464. <productMenu id="led"
  2465. type="5" >
  2466. </productMenu>
  2467. <productMenu id="led+"
  2468. type="2"
  2469. url="1" >
  2470. </productMenu>
  2471. <productMenu id="meshIntercom"
  2472. type="30" >
  2473. </productMenu>
  2474. <productMenu id="meshIntercom+"
  2475. type="3"
  2476. url="2" >
  2477. </productMenu>
  2478. <productMenu id="waveIntercom"
  2479. type="1" >
  2480. </productMenu>
  2481. <productMenu id="fmradio"
  2482. type="0" >
  2483. </productMenu>
  2484. <productMenu id="phone"
  2485. type="1" >
  2486. </productMenu>
  2487. <productMenu id="music"
  2488. type="1" >
  2489. </productMenu>
  2490. <productMenu id="musicSharing"
  2491. type="0" >
  2492. </productMenu>
  2493. <productMenu id="deviceSetting"
  2494. type="1"
  2495. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2496. <productMenuURL version="1.2.4"
  2497. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2498. />
  2499. </productMenu>
  2500. <productMenu id="quickGuide"
  2501. type="0"
  2502. url=""
  2503. size="1.12MB" >
  2504. </productMenu>
  2505. <productMenu id="userGuide"
  2506. type="1"
  2507. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2508. size="2.0MB" >
  2509. </productMenu>
  2510. <productMenu id="videoGuide"
  2511. type="0"
  2512. url=""
  2513. size="3.41MB" >
  2514. </productMenu>
  2515. <productMenu id="volume"
  2516. type="16" >
  2517. </productMenu>
  2518. <productMenu id="volume+"
  2519. type="2"
  2520. url="0x6004" >
  2521. </productMenu>
  2522. <productMenu id="battery"
  2523. type="1" >
  2524. </productMenu>
  2525. <productID id="6A0F"
  2526. />
  2527. <productGroupable type="0"
  2528. />
  2529. </product>
  2530. <product id="PHANTOMXB"
  2531. name="PHANTOM XB"
  2532. series="Helmet"
  2533. latestVersion="1.2.9"
  2534. latestVersionVoicePrompt="1.6"
  2535. show = "-1" >
  2536. <productMenu id="protocol"
  2537. type="2" >
  2538. </productMenu>
  2539. <productMenu id="ota"
  2540. type="2" >
  2541. <otaLanguages>
  2542. <otaLanguage
  2543. id="0"
  2544. name="English"
  2545. package="0"
  2546. />
  2547. <otaLanguage
  2548. id="0"
  2549. name="French"
  2550. package="1"
  2551. />
  2552. <otaLanguage
  2553. id="0"
  2554. name="Spanish"
  2555. package="2"
  2556. />
  2557. <otaLanguage
  2558. id="0"
  2559. name="Italian"
  2560. package="3"
  2561. />
  2562. <otaLanguage
  2563. id="0"
  2564. name="German"
  2565. package="4"
  2566. />
  2567. <otaLanguage
  2568. id="0"
  2569. name="Dutch"
  2570. package="5"
  2571. />
  2572. <otaLanguage
  2573. id="0"
  2574. name="Russian"
  2575. package="6"
  2576. />
  2577. <otaLanguage
  2578. id="0"
  2579. name="Chinese"
  2580. package="7"
  2581. />
  2582. <otaLanguage
  2583. id="0"
  2584. name="Korean"
  2585. package="8"
  2586. />
  2587. <otaLanguage
  2588. id="0"
  2589. name="Japanese"
  2590. package="9"
  2591. />
  2592. <otaLanguage
  2593. id="0"
  2594. name="Finnish"
  2595. package="10"
  2596. />
  2597. <otaLanguage
  2598. id="0"
  2599. name="Polish"
  2600. package="11"
  2601. />
  2602. </otaLanguages>
  2603. <otaPackages>
  2604. <package
  2605. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0.img"
  2606. size="5183988"
  2607. />
  2608. <package
  2609. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fr-FR.img"
  2610. size="5183988"
  2611. />
  2612. <package
  2613. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-es-ES.img"
  2614. size="5183988"
  2615. />
  2616. <package
  2617. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-it-IT.img"
  2618. size="5183988"
  2619. />
  2620. <package
  2621. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-de-DE.img"
  2622. size="5183988"
  2623. />
  2624. <package
  2625. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-nl-NL.img"
  2626. size="5183988"
  2627. />
  2628. <package
  2629. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ru-RU.img"
  2630. size="5183988"
  2631. />
  2632. <package
  2633. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-cmn-CN.img"
  2634. size="5183988"
  2635. />
  2636. <package
  2637. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ko-KR.img"
  2638. size="5183988"
  2639. />
  2640. <package
  2641. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ja-JP.img"
  2642. size="5183988"
  2643. />
  2644. <package
  2645. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fi-FI.img"
  2646. size="5183988"
  2647. />
  2648. <package
  2649. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-pl-PL.img"
  2650. size="5183988"
  2651. />
  2652. </otaPackages>
  2653. </productMenu>
  2654. <productMenu id="wa"
  2655. type="0" >
  2656. </productMenu>
  2657. <productMenu id="led"
  2658. type="5" >
  2659. </productMenu>
  2660. <productMenu id="led+"
  2661. type="2"
  2662. url="1" >
  2663. </productMenu>
  2664. <productMenu id="meshIntercom"
  2665. type="30" >
  2666. </productMenu>
  2667. <productMenu id="meshIntercom+"
  2668. type="3"
  2669. url="2" >
  2670. </productMenu>
  2671. <productMenu id="waveIntercom"
  2672. type="1" >
  2673. </productMenu>
  2674. <productMenu id="fmradio"
  2675. type="0" >
  2676. </productMenu>
  2677. <productMenu id="phone"
  2678. type="1" >
  2679. </productMenu>
  2680. <productMenu id="music"
  2681. type="1" >
  2682. </productMenu>
  2683. <productMenu id="musicSharing"
  2684. type="0" >
  2685. </productMenu>
  2686. <productMenu id="deviceSetting"
  2687. type="1"
  2688. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2689. <productMenuURL version="1.2.4"
  2690. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2691. />
  2692. <productMenuURL version="1.2.1"
  2693. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2694. />
  2695. </productMenu>
  2696. <productMenu id="quickGuide"
  2697. type="0"
  2698. url=""
  2699. size="1.12MB" >
  2700. </productMenu>
  2701. <productMenu id="userGuide"
  2702. type="1"
  2703. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2704. size="2.0MB" >
  2705. </productMenu>
  2706. <productMenu id="videoGuide"
  2707. type="0"
  2708. url=""
  2709. size="3.41MB" >
  2710. </productMenu>
  2711. <productMenu id="volume"
  2712. type="16" >
  2713. </productMenu>
  2714. <productMenu id="volume+"
  2715. type="2"
  2716. url="0x6004" >
  2717. </productMenu>
  2718. <productMenu id="battery"
  2719. type="1" >
  2720. </productMenu>
  2721. <productID id="6A0C"
  2722. />
  2723. <productGroupable type="0"
  2724. />
  2725. </product>
  2726. <product id="PHANTOMKV"
  2727. name="PHANTOM KV"
  2728. series="Helmet"
  2729. latestVersion="1.2.10"
  2730. latestVersionVoicePrompt="1.7"
  2731. show = "-1" >
  2732. <productMenu id="protocol"
  2733. type="2" >
  2734. </productMenu>
  2735. <productMenu id="ota"
  2736. type="2" >
  2737. <otaLanguages>
  2738. <otaLanguage
  2739. id="0"
  2740. name="English"
  2741. package="0"
  2742. />
  2743. <otaLanguage
  2744. id="0"
  2745. name="French"
  2746. package="1"
  2747. />
  2748. <otaLanguage
  2749. id="0"
  2750. name="Spanish"
  2751. package="2"
  2752. />
  2753. <otaLanguage
  2754. id="0"
  2755. name="Italian"
  2756. package="3"
  2757. />
  2758. <otaLanguage
  2759. id="0"
  2760. name="German"
  2761. package="4"
  2762. />
  2763. <otaLanguage
  2764. id="0"
  2765. name="Dutch"
  2766. package="5"
  2767. />
  2768. <otaLanguage
  2769. id="0"
  2770. name="Russian"
  2771. package="6"
  2772. />
  2773. <otaLanguage
  2774. id="0"
  2775. name="Chinese"
  2776. package="7"
  2777. />
  2778. <otaLanguage
  2779. id="0"
  2780. name="Korean"
  2781. package="8"
  2782. />
  2783. <otaLanguage
  2784. id="0"
  2785. name="Japanese"
  2786. package="9"
  2787. />
  2788. <otaLanguage
  2789. id="0"
  2790. name="Finnish"
  2791. package="10"
  2792. />
  2793. <otaLanguage
  2794. id="0"
  2795. name="Polish"
  2796. package="11"
  2797. />
  2798. </otaLanguages>
  2799. <otaPackages>
  2800. <package
  2801. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0.img"
  2802. size="5183988"
  2803. />
  2804. <package
  2805. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fr-FR.img"
  2806. size="5183988"
  2807. />
  2808. <package
  2809. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-es-ES.img"
  2810. size="5183988"
  2811. />
  2812. <package
  2813. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-it-IT.img"
  2814. size="5183988"
  2815. />
  2816. <package
  2817. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-de-DE.img"
  2818. size="5183988"
  2819. />
  2820. <package
  2821. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-nl-NL.img"
  2822. size="5183988"
  2823. />
  2824. <package
  2825. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ru-RU.img"
  2826. size="5183988"
  2827. />
  2828. <package
  2829. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-cmn-CN.img"
  2830. size="5183988"
  2831. />
  2832. <package
  2833. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ko-KR.img"
  2834. size="5183988"
  2835. />
  2836. <package
  2837. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ja-JP.img"
  2838. size="5183988"
  2839. />
  2840. <package
  2841. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fi-FI.img"
  2842. size="5183988"
  2843. />
  2844. <package
  2845. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-pl-PL.img"
  2846. size="5183988"
  2847. />
  2848. </otaPackages>
  2849. </productMenu>
  2850. <productMenu id="wa"
  2851. type="0" >
  2852. </productMenu>
  2853. <productMenu id="led"
  2854. type="5" >
  2855. </productMenu>
  2856. <productMenu id="led+"
  2857. type="2"
  2858. url="1" >
  2859. </productMenu>
  2860. <productMenu id="meshIntercom"
  2861. type="30" >
  2862. </productMenu>
  2863. <productMenu id="meshIntercom+"
  2864. type="3"
  2865. url="2" >
  2866. </productMenu>
  2867. <productMenu id="waveIntercom"
  2868. type="1" >
  2869. </productMenu>
  2870. <productMenu id="fmradio"
  2871. type="0" >
  2872. </productMenu>
  2873. <productMenu id="phone"
  2874. type="1" >
  2875. </productMenu>
  2876. <productMenu id="music"
  2877. type="1" >
  2878. </productMenu>
  2879. <productMenu id="musicSharing"
  2880. type="0" >
  2881. </productMenu>
  2882. <productMenu id="deviceSetting"
  2883. type="1"
  2884. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2885. <productMenuURL version="1.2.4"
  2886. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2887. />
  2888. </productMenu>
  2889. <productMenu id="quickGuide"
  2890. type="0"
  2891. url=""
  2892. size="1.12MB" >
  2893. </productMenu>
  2894. <productMenu id="userGuide"
  2895. type="1"
  2896. url=""
  2897. size="2.0MB" >
  2898. </productMenu>
  2899. <productMenu id="videoGuide"
  2900. type="0"
  2901. url=""
  2902. size="3.41MB" >
  2903. </productMenu>
  2904. <productMenu id="volume"
  2905. type="16" >
  2906. </productMenu>
  2907. <productMenu id="volume+"
  2908. type="2"
  2909. url="0x6004" >
  2910. </productMenu>
  2911. <productMenu id="soundMode"
  2912. type="1" >
  2913. </productMenu>
  2914. <productMenu id="battery"
  2915. type="1" >
  2916. </productMenu>
  2917. <productID id="6A13"
  2918. />
  2919. <productGroupable type="0"
  2920. />
  2921. </product>
  2922. <product id="PHANTOMCamera"
  2923. name="PHANTOM Camera"
  2924. series="Helmet"
  2925. latestVersion="1.0.1"
  2926. latestVersionVoicePrompt="0.4"
  2927. show = "-1" >
  2928. <productMenu id="protocol"
  2929. type="2" >
  2930. </productMenu>
  2931. <productMenu id="ota"
  2932. type="3" >
  2933. <otaLanguages>
  2934. <otaLanguage
  2935. id="0"
  2936. name="English"
  2937. package="0"
  2938. />
  2939. <otaLanguage
  2940. id="0"
  2941. name="French"
  2942. package="1"
  2943. />
  2944. <otaLanguage
  2945. id="0"
  2946. name="Spanish"
  2947. package="2"
  2948. />
  2949. <otaLanguage
  2950. id="0"
  2951. name="Italian"
  2952. package="3"
  2953. />
  2954. <otaLanguage
  2955. id="0"
  2956. name="German"
  2957. package="4"
  2958. />
  2959. <otaLanguage
  2960. id="0"
  2961. name="Dutch"
  2962. package="5"
  2963. />
  2964. <otaLanguage
  2965. id="0"
  2966. name="Russian"
  2967. package="6"
  2968. />
  2969. <otaLanguage
  2970. id="0"
  2971. name="Chinese"
  2972. package="7"
  2973. />
  2974. <otaLanguage
  2975. id="0"
  2976. name="Korean"
  2977. package="8"
  2978. />
  2979. <otaLanguage
  2980. id="0"
  2981. name="Japanese"
  2982. package="9"
  2983. />
  2984. <otaLanguage
  2985. id="0"
  2986. name="Finnish"
  2987. package="10"
  2988. />
  2989. <otaLanguage
  2990. id="0"
  2991. name="Polish"
  2992. package="11"
  2993. />
  2994. </otaLanguages>
  2995. <otaPackages>
  2996. <package
  2997. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2998. size="5183988"
  2999. />
  3000. <package
  3001. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  3002. size="5183988"
  3003. />
  3004. <package
  3005. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  3006. size="5183988"
  3007. />
  3008. <package
  3009. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  3010. size="5183988"
  3011. />
  3012. <package
  3013. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  3014. size="5183988"
  3015. />
  3016. <package
  3017. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  3018. size="5183988"
  3019. />
  3020. <package
  3021. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  3022. size="5183988"
  3023. />
  3024. <package
  3025. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  3026. size="5183988"
  3027. />
  3028. <package
  3029. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  3030. size="5183988"
  3031. />
  3032. <package
  3033. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  3034. size="5183988"
  3035. />
  3036. <package
  3037. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  3038. size="5183988"
  3039. />
  3040. <package
  3041. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  3042. size="5183988"
  3043. />
  3044. </otaPackages>
  3045. </productMenu>
  3046. <productMenu id="wa"
  3047. type="0" >
  3048. </productMenu>
  3049. <productMenu id="led"
  3050. type="5" >
  3051. </productMenu>
  3052. <productMenu id="led+"
  3053. type="2"
  3054. url="1" >
  3055. </productMenu>
  3056. <productMenu id="meshIntercom"
  3057. type="30" >
  3058. </productMenu>
  3059. <productMenu id="meshIntercom+"
  3060. type="3"
  3061. url="2" >
  3062. </productMenu>
  3063. <productMenu id="waveIntercom"
  3064. type="1" >
  3065. </productMenu>
  3066. <productMenu id="fmradio"
  3067. type="0" >
  3068. </productMenu>
  3069. <productMenu id="phone"
  3070. type="1" >
  3071. </productMenu>
  3072. <productMenu id="music"
  3073. type="1" >
  3074. </productMenu>
  3075. <productMenu id="musicSharing"
  3076. type="0" >
  3077. </productMenu>
  3078. <productMenu id="deviceSetting"
  3079. type="1"
  3080. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3081. </productMenu>
  3082. <productMenu id="quickGuide"
  3083. type="0"
  3084. url=""
  3085. size="1.12MB" >
  3086. </productMenu>
  3087. <productMenu id="userGuide"
  3088. type="1"
  3089. url=""
  3090. size="2.0MB" >
  3091. </productMenu>
  3092. <productMenu id="videoGuide"
  3093. type="0"
  3094. url=""
  3095. size="3.41MB" >
  3096. </productMenu>
  3097. <productMenu id="volume"
  3098. type="16" >
  3099. </productMenu>
  3100. <productMenu id="battery"
  3101. type="1" >
  3102. </productMenu>
  3103. <productID id="6A10"
  3104. />
  3105. <productGroupable type="0"
  3106. />
  3107. </product>
  3108. <product id="PHANTOMCamera"
  3109. name="PHANTOM Camera"
  3110. series="Helmet"
  3111. latestVersion="1.0.1"
  3112. latestVersionVoicePrompt="0.4"
  3113. show = "-1" >
  3114. <productMenu id="protocol"
  3115. type="2" >
  3116. </productMenu>
  3117. <productMenu id="ota"
  3118. type="3" >
  3119. <otaLanguages>
  3120. <otaLanguage
  3121. id="0"
  3122. name="English"
  3123. package="0"
  3124. />
  3125. <otaLanguage
  3126. id="0"
  3127. name="French"
  3128. package="1"
  3129. />
  3130. <otaLanguage
  3131. id="0"
  3132. name="Spanish"
  3133. package="2"
  3134. />
  3135. <otaLanguage
  3136. id="0"
  3137. name="Italian"
  3138. package="3"
  3139. />
  3140. <otaLanguage
  3141. id="0"
  3142. name="German"
  3143. package="4"
  3144. />
  3145. <otaLanguage
  3146. id="0"
  3147. name="Dutch"
  3148. package="5"
  3149. />
  3150. <otaLanguage
  3151. id="0"
  3152. name="Russian"
  3153. package="6"
  3154. />
  3155. <otaLanguage
  3156. id="0"
  3157. name="Chinese"
  3158. package="7"
  3159. />
  3160. <otaLanguage
  3161. id="0"
  3162. name="Korean"
  3163. package="8"
  3164. />
  3165. <otaLanguage
  3166. id="0"
  3167. name="Japanese"
  3168. package="9"
  3169. />
  3170. <otaLanguage
  3171. id="0"
  3172. name="Finnish"
  3173. package="10"
  3174. />
  3175. <otaLanguage
  3176. id="0"
  3177. name="Polish"
  3178. package="11"
  3179. />
  3180. </otaLanguages>
  3181. <otaPackages>
  3182. <package
  3183. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  3184. size="5183988"
  3185. />
  3186. <package
  3187. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  3188. size="5183988"
  3189. />
  3190. <package
  3191. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  3192. size="5183988"
  3193. />
  3194. <package
  3195. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  3196. size="5183988"
  3197. />
  3198. <package
  3199. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  3200. size="5183988"
  3201. />
  3202. <package
  3203. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  3204. size="5183988"
  3205. />
  3206. <package
  3207. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  3208. size="5183988"
  3209. />
  3210. <package
  3211. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  3212. size="5183988"
  3213. />
  3214. <package
  3215. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  3216. size="5183988"
  3217. />
  3218. <package
  3219. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  3220. size="5183988"
  3221. />
  3222. <package
  3223. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  3224. size="5183988"
  3225. />
  3226. <package
  3227. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  3228. size="5183988"
  3229. />
  3230. </otaPackages>
  3231. </productMenu>
  3232. <productMenu id="wa"
  3233. type="0" >
  3234. </productMenu>
  3235. <productMenu id="led"
  3236. type="5" >
  3237. </productMenu>
  3238. <productMenu id="led+"
  3239. type="2"
  3240. url="1" >
  3241. </productMenu>
  3242. <productMenu id="meshIntercom"
  3243. type="30" >
  3244. </productMenu>
  3245. <productMenu id="meshIntercom+"
  3246. type="3"
  3247. url="2" >
  3248. </productMenu>
  3249. <productMenu id="waveIntercom"
  3250. type="1" >
  3251. </productMenu>
  3252. <productMenu id="fmradio"
  3253. type="0" >
  3254. </productMenu>
  3255. <productMenu id="phone"
  3256. type="1" >
  3257. </productMenu>
  3258. <productMenu id="music"
  3259. type="1" >
  3260. </productMenu>
  3261. <productMenu id="musicSharing"
  3262. type="0" >
  3263. </productMenu>
  3264. <productMenu id="deviceSetting"
  3265. type="1"
  3266. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3267. </productMenu>
  3268. <productMenu id="quickGuide"
  3269. type="0"
  3270. url=""
  3271. size="1.12MB" >
  3272. </productMenu>
  3273. <productMenu id="userGuide"
  3274. type="1"
  3275. url=""
  3276. size="2.0MB" >
  3277. </productMenu>
  3278. <productMenu id="videoGuide"
  3279. type="0"
  3280. url=""
  3281. size="3.41MB" >
  3282. </productMenu>
  3283. <productMenu id="volume"
  3284. type="16" >
  3285. </productMenu>
  3286. <productMenu id="battery"
  3287. type="1" >
  3288. </productMenu>
  3289. <productID id="6A09"
  3290. />
  3291. <productGroupable type="0"
  3292. />
  3293. </product>
  3294. <product id="PHANTOM"
  3295. name="PHANTOM ANC"
  3296. series="Helmet"
  3297. latestVersion="1.2.9"
  3298. latestVersionVoicePrompt="1.7"
  3299. show = "1" >
  3300. <productMenu id="protocol"
  3301. type="2" >
  3302. </productMenu>
  3303. <productMenu id="ota"
  3304. type="2" >
  3305. <productMenuType version="0.6.9"
  3306. type="0"
  3307. />
  3308. <otaLanguages>
  3309. <otaLanguage
  3310. id="0"
  3311. name="English"
  3312. package="0"
  3313. />
  3314. <otaLanguage
  3315. id="0"
  3316. name="French"
  3317. package="1"
  3318. />
  3319. <otaLanguage
  3320. id="0"
  3321. name="Spanish"
  3322. package="2"
  3323. />
  3324. <otaLanguage
  3325. id="0"
  3326. name="Italian"
  3327. package="3"
  3328. />
  3329. <otaLanguage
  3330. id="0"
  3331. name="German"
  3332. package="4"
  3333. />
  3334. <otaLanguage
  3335. id="0"
  3336. name="Dutch"
  3337. package="5"
  3338. />
  3339. <otaLanguage
  3340. id="0"
  3341. name="Russian"
  3342. package="6"
  3343. />
  3344. <otaLanguage
  3345. id="0"
  3346. name="Chinese"
  3347. package="7"
  3348. />
  3349. <otaLanguage
  3350. id="0"
  3351. name="Korean"
  3352. package="8"
  3353. />
  3354. <otaLanguage
  3355. id="0"
  3356. name="Japanese"
  3357. package="9"
  3358. />
  3359. <otaLanguage
  3360. id="0"
  3361. name="Finnish"
  3362. package="10"
  3363. />
  3364. <otaLanguage
  3365. id="0"
  3366. name="Polish"
  3367. package="11"
  3368. />
  3369. </otaLanguages>
  3370. <otaPackages>
  3371. <package
  3372. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0.img"
  3373. size="5183988"
  3374. />
  3375. <package
  3376. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fr-FR.img"
  3377. size="5183988"
  3378. />
  3379. <package
  3380. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-es-ES.img"
  3381. size="5183988"
  3382. />
  3383. <package
  3384. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-it-IT.img"
  3385. size="5183988"
  3386. />
  3387. <package
  3388. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-de-DE.img"
  3389. size="5183988"
  3390. />
  3391. <package
  3392. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-nl-NL.img"
  3393. size="5183988"
  3394. />
  3395. <package
  3396. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ru-RU.img"
  3397. size="5183988"
  3398. />
  3399. <package
  3400. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-cmn-CN.img"
  3401. size="5183988"
  3402. />
  3403. <package
  3404. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ko-KR.img"
  3405. size="5183988"
  3406. />
  3407. <package
  3408. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ja-JP.img"
  3409. size="5183988"
  3410. />
  3411. <package
  3412. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fi-FI.img"
  3413. size="5183988"
  3414. />
  3415. <package
  3416. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-pl-PL.img"
  3417. size="5183988"
  3418. />
  3419. </otaPackages>
  3420. </productMenu>
  3421. <productMenu id="wa"
  3422. type="0" >
  3423. </productMenu>
  3424. <productMenu id="led"
  3425. type="5" >
  3426. </productMenu>
  3427. <productMenu id="led+"
  3428. type="2"
  3429. url="1" >
  3430. </productMenu>
  3431. <productMenu id="meshIntercom"
  3432. type="30" >
  3433. </productMenu>
  3434. <productMenu id="meshIntercom+"
  3435. type="3"
  3436. url="2" >
  3437. <productMenuURL version="1.0.4"
  3438. url="10"
  3439. />
  3440. </productMenu>
  3441. <productMenu id="waveIntercom"
  3442. type="1" >
  3443. <productMenuType version="1.0.9"
  3444. type="0"
  3445. />
  3446. </productMenu>
  3447. <productMenu id="fmradio"
  3448. type="0" >
  3449. </productMenu>
  3450. <productMenu id="phone"
  3451. type="1" >
  3452. </productMenu>
  3453. <productMenu id="music"
  3454. type="1" >
  3455. </productMenu>
  3456. <productMenu id="musicSharing"
  3457. type="0" >
  3458. </productMenu>
  3459. <productMenu id="deviceSetting"
  3460. type="1"
  3461. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3462. <productMenuURL version="1.2.4"
  3463. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3464. />
  3465. <productMenuURL version="1.2.1"
  3466. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3467. />
  3468. <productMenuURL version="1.1.2"
  3469. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3470. />
  3471. <productMenuURL version="1.0.4"
  3472. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3473. />
  3474. </productMenu>
  3475. <productMenu id="quickGuide"
  3476. type="0"
  3477. url=""
  3478. size="1.12MB" >
  3479. </productMenu>
  3480. <productMenu id="userGuide"
  3481. type="1"
  3482. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3483. size="2.0MB" >
  3484. </productMenu>
  3485. <productMenu id="videoGuide"
  3486. type="0"
  3487. url=""
  3488. size="3.41MB" >
  3489. </productMenu>
  3490. <productMenu id="volume"
  3491. type="16" >
  3492. </productMenu>
  3493. <productMenu id="volume+"
  3494. type="2"
  3495. url="0x6004" >
  3496. </productMenu>
  3497. <productMenu id="soundMode"
  3498. type="1" >
  3499. <productMenuType version="0.9.11"
  3500. type="0"
  3501. />
  3502. </productMenu>
  3503. <productMenu id="battery"
  3504. type="1" >
  3505. </productMenu>
  3506. <productID id="6A01"
  3507. />
  3508. <productGroupable type="0"
  3509. />
  3510. </product>
  3511. <product id="PHANTOM"
  3512. name="PHANTOM ANC"
  3513. series="Helmet"
  3514. latestVersion="1.2.9"
  3515. latestVersionVoicePrompt="1.7"
  3516. show = "-1" >
  3517. <productMenu id="protocol"
  3518. type="2" >
  3519. </productMenu>
  3520. <productMenu id="ota"
  3521. type="2" >
  3522. <otaLanguages>
  3523. <otaLanguage
  3524. id="0"
  3525. name="English"
  3526. package="0"
  3527. />
  3528. <otaLanguage
  3529. id="0"
  3530. name="French"
  3531. package="1"
  3532. />
  3533. <otaLanguage
  3534. id="0"
  3535. name="Spanish"
  3536. package="2"
  3537. />
  3538. <otaLanguage
  3539. id="0"
  3540. name="Italian"
  3541. package="3"
  3542. />
  3543. <otaLanguage
  3544. id="0"
  3545. name="German"
  3546. package="4"
  3547. />
  3548. <otaLanguage
  3549. id="0"
  3550. name="Dutch"
  3551. package="5"
  3552. />
  3553. <otaLanguage
  3554. id="0"
  3555. name="Russian"
  3556. package="6"
  3557. />
  3558. <otaLanguage
  3559. id="0"
  3560. name="Chinese"
  3561. package="7"
  3562. />
  3563. <otaLanguage
  3564. id="0"
  3565. name="Korean"
  3566. package="8"
  3567. />
  3568. <otaLanguage
  3569. id="0"
  3570. name="Japanese"
  3571. package="9"
  3572. />
  3573. <otaLanguage
  3574. id="0"
  3575. name="Finnish"
  3576. package="10"
  3577. />
  3578. <otaLanguage
  3579. id="0"
  3580. name="Polish"
  3581. package="11"
  3582. />
  3583. </otaLanguages>
  3584. <otaPackages>
  3585. <package
  3586. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0.img"
  3587. size="5183988"
  3588. />
  3589. <package
  3590. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fr-FR.img"
  3591. size="5183988"
  3592. />
  3593. <package
  3594. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-es-ES.img"
  3595. size="5183988"
  3596. />
  3597. <package
  3598. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-it-IT.img"
  3599. size="5183988"
  3600. />
  3601. <package
  3602. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-de-DE.img"
  3603. size="5183988"
  3604. />
  3605. <package
  3606. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-nl-NL.img"
  3607. size="5183988"
  3608. />
  3609. <package
  3610. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ru-RU.img"
  3611. size="5183988"
  3612. />
  3613. <package
  3614. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-cmn-CN.img"
  3615. size="5183988"
  3616. />
  3617. <package
  3618. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ko-KR.img"
  3619. size="5183988"
  3620. />
  3621. <package
  3622. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ja-JP.img"
  3623. size="5183988"
  3624. />
  3625. <package
  3626. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fi-FI.img"
  3627. size="5183988"
  3628. />
  3629. <package
  3630. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-pl-PL.img"
  3631. size="5183988"
  3632. />
  3633. </otaPackages>
  3634. </productMenu>
  3635. <productMenu id="led"
  3636. type="5" >
  3637. </productMenu>
  3638. <productMenu id="led+"
  3639. type="2"
  3640. url="1" >
  3641. </productMenu>
  3642. <productMenu id="meshIntercom"
  3643. type="30" >
  3644. </productMenu>
  3645. <productMenu id="meshIntercom+"
  3646. type="3"
  3647. url="2" >
  3648. </productMenu>
  3649. <productMenu id="waveIntercom"
  3650. type="1" >
  3651. </productMenu>
  3652. <productMenu id="fmradio"
  3653. type="0" >
  3654. </productMenu>
  3655. <productMenu id="phone"
  3656. type="1" >
  3657. </productMenu>
  3658. <productMenu id="music"
  3659. type="1" >
  3660. </productMenu>
  3661. <productMenu id="musicSharing"
  3662. type="0" >
  3663. </productMenu>
  3664. <productMenu id="deviceSetting"
  3665. type="1"
  3666. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3667. <productMenuURL version="1.2.4"
  3668. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3669. />
  3670. </productMenu>
  3671. <productMenu id="quickGuide"
  3672. type="0"
  3673. url=""
  3674. size="1.12MB" >
  3675. </productMenu>
  3676. <productMenu id="userGuide"
  3677. type="1"
  3678. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3679. size="2.0MB" >
  3680. </productMenu>
  3681. <productMenu id="videoGuide"
  3682. type="0"
  3683. url=""
  3684. size="3.41MB" >
  3685. </productMenu>
  3686. <productMenu id="volume"
  3687. type="16" >
  3688. </productMenu>
  3689. <productMenu id="volume+"
  3690. type="2"
  3691. url="0x6004" >
  3692. </productMenu>
  3693. <productMenu id="soundMode"
  3694. type="1" >
  3695. </productMenu>
  3696. <productMenu id="battery"
  3697. type="1" >
  3698. </productMenu>
  3699. <productID id="6A19"
  3700. />
  3701. <productGroupable type="0"
  3702. />
  3703. </product>
  3704. <product id="PHANTOM"
  3705. name="PHANTOM"
  3706. series="Helmet"
  3707. latestVersion="1.2.9"
  3708. latestVersionVoicePrompt="1.7"
  3709. show = "-1" >
  3710. <productMenu id="protocol"
  3711. type="2" >
  3712. </productMenu>
  3713. <productMenu id="ota"
  3714. type="2" >
  3715. <otaLanguages>
  3716. <otaLanguage
  3717. id="0"
  3718. name="English"
  3719. package="0"
  3720. />
  3721. <otaLanguage
  3722. id="0"
  3723. name="French"
  3724. package="1"
  3725. />
  3726. <otaLanguage
  3727. id="0"
  3728. name="Spanish"
  3729. package="2"
  3730. />
  3731. <otaLanguage
  3732. id="0"
  3733. name="Italian"
  3734. package="3"
  3735. />
  3736. <otaLanguage
  3737. id="0"
  3738. name="German"
  3739. package="4"
  3740. />
  3741. <otaLanguage
  3742. id="0"
  3743. name="Dutch"
  3744. package="5"
  3745. />
  3746. <otaLanguage
  3747. id="0"
  3748. name="Russian"
  3749. package="6"
  3750. />
  3751. <otaLanguage
  3752. id="0"
  3753. name="Chinese"
  3754. package="7"
  3755. />
  3756. <otaLanguage
  3757. id="0"
  3758. name="Korean"
  3759. package="8"
  3760. />
  3761. <otaLanguage
  3762. id="0"
  3763. name="Japanese"
  3764. package="9"
  3765. />
  3766. <otaLanguage
  3767. id="0"
  3768. name="Finnish"
  3769. package="10"
  3770. />
  3771. <otaLanguage
  3772. id="0"
  3773. name="Polish"
  3774. package="11"
  3775. />
  3776. </otaLanguages>
  3777. <otaPackages>
  3778. <package
  3779. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0.img"
  3780. size="5183988"
  3781. />
  3782. <package
  3783. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fr-FR.img"
  3784. size="5183988"
  3785. />
  3786. <package
  3787. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-es-ES.img"
  3788. size="5183988"
  3789. />
  3790. <package
  3791. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-it-IT.img"
  3792. size="5183988"
  3793. />
  3794. <package
  3795. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-de-DE.img"
  3796. size="5183988"
  3797. />
  3798. <package
  3799. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-nl-NL.img"
  3800. size="5183988"
  3801. />
  3802. <package
  3803. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ru-RU.img"
  3804. size="5183988"
  3805. />
  3806. <package
  3807. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-cmn-CN.img"
  3808. size="5183988"
  3809. />
  3810. <package
  3811. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ko-KR.img"
  3812. size="5183988"
  3813. />
  3814. <package
  3815. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ja-JP.img"
  3816. size="5183988"
  3817. />
  3818. <package
  3819. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fi-FI.img"
  3820. size="5183988"
  3821. />
  3822. <package
  3823. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-pl-PL.img"
  3824. size="5183988"
  3825. />
  3826. </otaPackages>
  3827. </productMenu>
  3828. <productMenu id="wa"
  3829. type="0" >
  3830. </productMenu>
  3831. <productMenu id="led"
  3832. type="5" >
  3833. </productMenu>
  3834. <productMenu id="led+"
  3835. type="2"
  3836. url="1" >
  3837. </productMenu>
  3838. <productMenu id="meshIntercom"
  3839. type="30" >
  3840. </productMenu>
  3841. <productMenu id="meshIntercom+"
  3842. type="3"
  3843. url="2" >
  3844. </productMenu>
  3845. <productMenu id="waveIntercom"
  3846. type="1" >
  3847. </productMenu>
  3848. <productMenu id="fmradio"
  3849. type="0" >
  3850. </productMenu>
  3851. <productMenu id="phone"
  3852. type="1" >
  3853. </productMenu>
  3854. <productMenu id="music"
  3855. type="1" >
  3856. </productMenu>
  3857. <productMenu id="musicSharing"
  3858. type="0" >
  3859. </productMenu>
  3860. <productMenu id="deviceSetting"
  3861. type="1"
  3862. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3863. <productMenuURL version="1.2.4"
  3864. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3865. />
  3866. </productMenu>
  3867. <productMenu id="quickGuide"
  3868. type="0"
  3869. url=""
  3870. size="1.52MB" >
  3871. </productMenu>
  3872. <productMenu id="userGuide"
  3873. type="1"
  3874. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3875. size="2.01MB" >
  3876. </productMenu>
  3877. <productMenu id="videoGuide"
  3878. type="0"
  3879. url=""
  3880. size="3.46MB" >
  3881. </productMenu>
  3882. <productMenu id="connectGuide"
  3883. type="1"
  3884. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3885. size="1.1MB" >
  3886. </productMenu>
  3887. <productMenu id="volume"
  3888. type="16" >
  3889. </productMenu>
  3890. <productMenu id="volume+"
  3891. type="2"
  3892. url="0x6004" >
  3893. </productMenu>
  3894. <productMenu id="battery"
  3895. type="1" >
  3896. </productMenu>
  3897. <productID id="6A0E"
  3898. />
  3899. <productGroupable type="0"
  3900. />
  3901. </product>
  3902. <product id="PHANTOM"
  3903. name="PHANTOM"
  3904. series="Helmet"
  3905. latestVersion="1.2.9"
  3906. latestVersionVoicePrompt="1.7"
  3907. show = "1" >
  3908. <productMenu id="protocol"
  3909. type="2" >
  3910. </productMenu>
  3911. <productMenu id="ota"
  3912. type="2" >
  3913. <otaLanguages>
  3914. <otaLanguage
  3915. id="0"
  3916. name="English"
  3917. package="0"
  3918. />
  3919. <otaLanguage
  3920. id="0"
  3921. name="French"
  3922. package="1"
  3923. />
  3924. <otaLanguage
  3925. id="0"
  3926. name="Spanish"
  3927. package="2"
  3928. />
  3929. <otaLanguage
  3930. id="0"
  3931. name="Italian"
  3932. package="3"
  3933. />
  3934. <otaLanguage
  3935. id="0"
  3936. name="German"
  3937. package="4"
  3938. />
  3939. <otaLanguage
  3940. id="0"
  3941. name="Dutch"
  3942. package="5"
  3943. />
  3944. <otaLanguage
  3945. id="0"
  3946. name="Russian"
  3947. package="6"
  3948. />
  3949. <otaLanguage
  3950. id="0"
  3951. name="Chinese"
  3952. package="7"
  3953. />
  3954. <otaLanguage
  3955. id="0"
  3956. name="Korean"
  3957. package="8"
  3958. />
  3959. <otaLanguage
  3960. id="0"
  3961. name="Japanese"
  3962. package="9"
  3963. />
  3964. <otaLanguage
  3965. id="0"
  3966. name="Finnish"
  3967. package="10"
  3968. />
  3969. <otaLanguage
  3970. id="0"
  3971. name="Polish"
  3972. package="11"
  3973. />
  3974. </otaLanguages>
  3975. <otaPackages>
  3976. <package
  3977. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0.img"
  3978. size="5183988"
  3979. />
  3980. <package
  3981. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fr-FR.img"
  3982. size="5183988"
  3983. />
  3984. <package
  3985. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-es-ES.img"
  3986. size="5183988"
  3987. />
  3988. <package
  3989. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-it-IT.img"
  3990. size="5183988"
  3991. />
  3992. <package
  3993. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-de-DE.img"
  3994. size="5183988"
  3995. />
  3996. <package
  3997. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-nl-NL.img"
  3998. size="5183988"
  3999. />
  4000. <package
  4001. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ru-RU.img"
  4002. size="5183988"
  4003. />
  4004. <package
  4005. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-cmn-CN.img"
  4006. size="5183988"
  4007. />
  4008. <package
  4009. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ko-KR.img"
  4010. size="5183988"
  4011. />
  4012. <package
  4013. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ja-JP.img"
  4014. size="5183988"
  4015. />
  4016. <package
  4017. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fi-FI.img"
  4018. size="5183988"
  4019. />
  4020. <package
  4021. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-pl-PL.img"
  4022. size="5183988"
  4023. />
  4024. </otaPackages>
  4025. </productMenu>
  4026. <productMenu id="wa"
  4027. type="0" >
  4028. </productMenu>
  4029. <productMenu id="led"
  4030. type="5" >
  4031. <productMenuType version="1.0.1"
  4032. type="4"
  4033. />
  4034. </productMenu>
  4035. <productMenu id="led+"
  4036. type="2"
  4037. url="1" >
  4038. <productMenuType version="1.0.1"
  4039. type="-1"
  4040. />
  4041. </productMenu>
  4042. <productMenu id="meshIntercom"
  4043. type="30" >
  4044. </productMenu>
  4045. <productMenu id="meshIntercom+"
  4046. type="3"
  4047. url="2" >
  4048. <productMenuURL version="1.0.4"
  4049. url="10"
  4050. />
  4051. </productMenu>
  4052. <productMenu id="waveIntercom"
  4053. type="1" >
  4054. <productMenuType version="1.0.9"
  4055. type="0"
  4056. />
  4057. </productMenu>
  4058. <productMenu id="fmradio"
  4059. type="0" >
  4060. </productMenu>
  4061. <productMenu id="phone"
  4062. type="1" >
  4063. </productMenu>
  4064. <productMenu id="music"
  4065. type="1" >
  4066. </productMenu>
  4067. <productMenu id="musicSharing"
  4068. type="0" >
  4069. </productMenu>
  4070. <productMenu id="deviceSetting"
  4071. type="1"
  4072. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  4073. <productMenuURL version="1.2.4"
  4074. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4075. />
  4076. <productMenuURL version="1.2.1"
  4077. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4078. />
  4079. <productMenuURL version="1.0.4"
  4080. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4081. />
  4082. <productMenuURL version="1.0.1"
  4083. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4084. />
  4085. </productMenu>
  4086. <productMenu id="quickGuide"
  4087. type="0"
  4088. url=""
  4089. size="1.12MB" >
  4090. </productMenu>
  4091. <productMenu id="userGuide"
  4092. type="1"
  4093. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4094. size="2.0MB" >
  4095. </productMenu>
  4096. <productMenu id="videoGuide"
  4097. type="0"
  4098. url=""
  4099. size="3.41MB" >
  4100. </productMenu>
  4101. <productMenu id="connectGuide"
  4102. type="1"
  4103. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4104. size="1.12MB" >
  4105. </productMenu>
  4106. <productMenu id="volume"
  4107. type="16" >
  4108. <productMenuType version="1.0"
  4109. type="13"
  4110. />
  4111. </productMenu>
  4112. <productMenu id="volume+"
  4113. type="2"
  4114. url="0x6004" >
  4115. </productMenu>
  4116. <productMenu id="battery"
  4117. type="1" >
  4118. </productMenu>
  4119. <productID id="6A04"
  4120. />
  4121. <productGroupable type="0"
  4122. />
  4123. </product>
  4124. <product id="PHANTOMEasyLink"
  4125. name="PHANTOM EasyLink"
  4126. series="Helmet"
  4127. latestVersion="0.1"
  4128. latestVersionVoicePrompt="1.2"
  4129. show = "-1" >
  4130. <productMenu id="protocol"
  4131. type="2" >
  4132. </productMenu>
  4133. <productMenu id="ota"
  4134. type="0" >
  4135. <otaLanguages>
  4136. <otaLanguage
  4137. id="0"
  4138. name="English"
  4139. package="0"
  4140. />
  4141. <otaLanguage
  4142. id="0"
  4143. name="French"
  4144. package="1"
  4145. />
  4146. <otaLanguage
  4147. id="0"
  4148. name="Spanish"
  4149. package="2"
  4150. />
  4151. <otaLanguage
  4152. id="0"
  4153. name="Italian"
  4154. package="3"
  4155. />
  4156. <otaLanguage
  4157. id="0"
  4158. name="German"
  4159. package="4"
  4160. />
  4161. <otaLanguage
  4162. id="0"
  4163. name="Dutch"
  4164. package="5"
  4165. />
  4166. <otaLanguage
  4167. id="0"
  4168. name="Russian"
  4169. package="6"
  4170. />
  4171. <otaLanguage
  4172. id="0"
  4173. name="Chinese"
  4174. package="7"
  4175. />
  4176. <otaLanguage
  4177. id="0"
  4178. name="Korean"
  4179. package="8"
  4180. />
  4181. <otaLanguage
  4182. id="0"
  4183. name="Japanese"
  4184. package="9"
  4185. />
  4186. <otaLanguage
  4187. id="0"
  4188. name="Finnish"
  4189. package="10"
  4190. />
  4191. <otaLanguage
  4192. id="0"
  4193. name="Polish"
  4194. package="11"
  4195. />
  4196. </otaLanguages>
  4197. <otaPackages>
  4198. <package
  4199. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4200. size="5183988"
  4201. />
  4202. <package
  4203. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4204. size="5183988"
  4205. />
  4206. <package
  4207. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4208. size="5183988"
  4209. />
  4210. <package
  4211. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4212. size="5183988"
  4213. />
  4214. <package
  4215. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4216. size="5183988"
  4217. />
  4218. <package
  4219. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4220. size="5183988"
  4221. />
  4222. <package
  4223. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4224. size="5183988"
  4225. />
  4226. <package
  4227. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4228. size="5183988"
  4229. />
  4230. <package
  4231. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4232. size="5183988"
  4233. />
  4234. <package
  4235. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4236. size="5183988"
  4237. />
  4238. <package
  4239. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4240. size="5183988"
  4241. />
  4242. <package
  4243. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4244. size="5183988"
  4245. />
  4246. </otaPackages>
  4247. </productMenu>
  4248. <productMenu id="meshIntercom"
  4249. type="30" >
  4250. </productMenu>
  4251. <productMenu id="meshIntercom+"
  4252. type="3"
  4253. url="2" >
  4254. </productMenu>
  4255. <productMenu id="waveIntercom"
  4256. type="1" >
  4257. </productMenu>
  4258. <productMenu id="fmradio"
  4259. type="0" >
  4260. </productMenu>
  4261. <productMenu id="phone"
  4262. type="1" >
  4263. </productMenu>
  4264. <productMenu id="music"
  4265. type="1" >
  4266. </productMenu>
  4267. <productMenu id="musicSharing"
  4268. type="0" >
  4269. </productMenu>
  4270. <productMenu id="deviceSetting"
  4271. type="1"
  4272. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4273. </productMenu>
  4274. <productMenu id="quickGuide"
  4275. type="0"
  4276. url=""
  4277. size="1.12MB" >
  4278. </productMenu>
  4279. <productMenu id="userGuide"
  4280. type="1"
  4281. url=""
  4282. size="2.0MB" >
  4283. </productMenu>
  4284. <productMenu id="videoGuide"
  4285. type="0"
  4286. url=""
  4287. size="3.41MB" >
  4288. </productMenu>
  4289. <productMenu id="connectGuide"
  4290. type="0"
  4291. url=""
  4292. size="1.12MB" >
  4293. </productMenu>
  4294. <productMenu id="volume"
  4295. type="16" >
  4296. </productMenu>
  4297. <productMenu id="battery"
  4298. type="1" >
  4299. </productMenu>
  4300. <productID id="6A18"
  4301. />
  4302. <productGroupable type="0"
  4303. />
  4304. </product>
  4305. <product id="SPIDERXSlim"
  4306. name="SPIDER X Slim"
  4307. series="SPIDER"
  4308. latestVersion="1.0"
  4309. latestVersionVoicePrompt="1.7"
  4310. show = "1" >
  4311. <productMenu id="protocol"
  4312. type="2" >
  4313. </productMenu>
  4314. <productMenu id="ota"
  4315. type="2" >
  4316. <otaLanguages>
  4317. <otaLanguage
  4318. id="0"
  4319. name="English"
  4320. package="0"
  4321. />
  4322. <otaLanguage
  4323. id="0"
  4324. name="French"
  4325. package="1"
  4326. />
  4327. <otaLanguage
  4328. id="0"
  4329. name="Spanish"
  4330. package="2"
  4331. />
  4332. <otaLanguage
  4333. id="0"
  4334. name="Italian"
  4335. package="3"
  4336. />
  4337. <otaLanguage
  4338. id="0"
  4339. name="German"
  4340. package="4"
  4341. />
  4342. <otaLanguage
  4343. id="0"
  4344. name="Dutch"
  4345. package="5"
  4346. />
  4347. <otaLanguage
  4348. id="0"
  4349. name="Russian"
  4350. package="6"
  4351. />
  4352. <otaLanguage
  4353. id="0"
  4354. name="Chinese"
  4355. package="7"
  4356. />
  4357. <otaLanguage
  4358. id="0"
  4359. name="Korean"
  4360. package="8"
  4361. />
  4362. <otaLanguage
  4363. id="0"
  4364. name="Japanese"
  4365. package="9"
  4366. />
  4367. <otaLanguage
  4368. id="0"
  4369. name="Finnish"
  4370. package="10"
  4371. />
  4372. <otaLanguage
  4373. id="0"
  4374. name="Polish"
  4375. package="11"
  4376. />
  4377. </otaLanguages>
  4378. <otaPackages>
  4379. <package
  4380. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5.img"
  4381. size="5183988"
  4382. />
  4383. <package
  4384. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fr-FR.img"
  4385. size="5183988"
  4386. />
  4387. <package
  4388. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-es-ES.img"
  4389. size="5183988"
  4390. />
  4391. <package
  4392. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-it-IT.img"
  4393. size="5183988"
  4394. />
  4395. <package
  4396. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-de-DE.img"
  4397. size="5183988"
  4398. />
  4399. <package
  4400. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-nl-NL.img"
  4401. size="5183988"
  4402. />
  4403. <package
  4404. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ru-RU.img"
  4405. size="5183988"
  4406. />
  4407. <package
  4408. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-cmn-CN.img"
  4409. size="5183988"
  4410. />
  4411. <package
  4412. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ko-KR.img"
  4413. size="5183988"
  4414. />
  4415. <package
  4416. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ja-JP.img"
  4417. size="5183988"
  4418. />
  4419. <package
  4420. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fi-FI.img"
  4421. size="5183988"
  4422. />
  4423. <package
  4424. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-pl-PL.img"
  4425. size="5183988"
  4426. />
  4427. </otaPackages>
  4428. </productMenu>
  4429. <productMenu id="meshIntercom"
  4430. type="30" >
  4431. </productMenu>
  4432. <productMenu id="meshIntercom+"
  4433. type="3"
  4434. url="2" >
  4435. </productMenu>
  4436. <productMenu id="waveIntercom"
  4437. type="1" >
  4438. </productMenu>
  4439. <productMenu id="fmradio"
  4440. type="1"
  4441. url="1" >
  4442. </productMenu>
  4443. <productMenu id="phone"
  4444. type="1" >
  4445. </productMenu>
  4446. <productMenu id="music"
  4447. type="1" >
  4448. </productMenu>
  4449. <productMenu id="musicSharing"
  4450. type="0" >
  4451. </productMenu>
  4452. <productMenu id="deviceSetting"
  4453. type="1"
  4454. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4455. </productMenu>
  4456. <productMenu id="quickGuide"
  4457. type="0"
  4458. url=""
  4459. size="1.12MB" >
  4460. </productMenu>
  4461. <productMenu id="userGuide"
  4462. type="1"
  4463. url=""
  4464. size="2.0MB" >
  4465. </productMenu>
  4466. <productMenu id="videoGuide"
  4467. type="0"
  4468. url=""
  4469. size="3.41MB" >
  4470. </productMenu>
  4471. <productMenu id="volume"
  4472. type="16" >
  4473. </productMenu>
  4474. <productMenu id="volume+"
  4475. type="2"
  4476. url="0x6004" >
  4477. </productMenu>
  4478. <productMenu id="appearance"
  4479. type="1"
  4480. url="2|white,silver,chrome,black" >
  4481. </productMenu>
  4482. <productMenu id="battery"
  4483. type="1" >
  4484. </productMenu>
  4485. <productID id="6A07"
  4486. />
  4487. <productGroupable type="0"
  4488. />
  4489. </product>
  4490. <product id="XFITM"
  4491. name="X-FIT M"
  4492. series="SPIDER"
  4493. latestVersion="0.1.11"
  4494. latestVersionVoicePrompt="1.1"
  4495. show = "-1" >
  4496. <productMenu id="protocol"
  4497. type="2" >
  4498. </productMenu>
  4499. <productMenu id="ota"
  4500. type="0" >
  4501. <otaLanguages>
  4502. <otaLanguage
  4503. id="0"
  4504. name="English"
  4505. package="0"
  4506. />
  4507. <otaLanguage
  4508. id="0"
  4509. name="French"
  4510. package="1"
  4511. />
  4512. <otaLanguage
  4513. id="0"
  4514. name="Spanish"
  4515. package="2"
  4516. />
  4517. <otaLanguage
  4518. id="0"
  4519. name="Italian"
  4520. package="3"
  4521. />
  4522. <otaLanguage
  4523. id="0"
  4524. name="German"
  4525. package="4"
  4526. />
  4527. <otaLanguage
  4528. id="0"
  4529. name="Dutch"
  4530. package="5"
  4531. />
  4532. <otaLanguage
  4533. id="0"
  4534. name="Russian"
  4535. package="6"
  4536. />
  4537. <otaLanguage
  4538. id="0"
  4539. name="Chinese"
  4540. package="7"
  4541. />
  4542. <otaLanguage
  4543. id="0"
  4544. name="Korean"
  4545. package="8"
  4546. />
  4547. <otaLanguage
  4548. id="0"
  4549. name="Japanese"
  4550. package="9"
  4551. />
  4552. <otaLanguage
  4553. id="0"
  4554. name="Finnish"
  4555. package="10"
  4556. />
  4557. <otaLanguage
  4558. id="0"
  4559. name="Polish"
  4560. package="11"
  4561. />
  4562. </otaLanguages>
  4563. <otaPackages>
  4564. <package
  4565. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4566. size="5183988"
  4567. />
  4568. <package
  4569. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4570. size="5183988"
  4571. />
  4572. <package
  4573. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4574. size="5183988"
  4575. />
  4576. <package
  4577. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4578. size="5183988"
  4579. />
  4580. <package
  4581. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4582. size="5183988"
  4583. />
  4584. <package
  4585. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4586. size="5183988"
  4587. />
  4588. <package
  4589. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4590. size="5183988"
  4591. />
  4592. <package
  4593. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4594. size="5183988"
  4595. />
  4596. <package
  4597. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4598. size="5183988"
  4599. />
  4600. <package
  4601. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4602. size="5183988"
  4603. />
  4604. <package
  4605. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4606. size="5183988"
  4607. />
  4608. <package
  4609. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4610. size="5183988"
  4611. />
  4612. </otaPackages>
  4613. </productMenu>
  4614. <productMenu id="meshIntercom"
  4615. type="30" >
  4616. </productMenu>
  4617. <productMenu id="meshIntercom+"
  4618. type="3"
  4619. url="2" >
  4620. </productMenu>
  4621. <productMenu id="waveIntercom"
  4622. type="1" >
  4623. </productMenu>
  4624. <productMenu id="fmradio"
  4625. type="1"
  4626. url="1" >
  4627. </productMenu>
  4628. <productMenu id="phone"
  4629. type="1" >
  4630. </productMenu>
  4631. <productMenu id="music"
  4632. type="1" >
  4633. </productMenu>
  4634. <productMenu id="musicSharing"
  4635. type="0" >
  4636. </productMenu>
  4637. <productMenu id="deviceSetting"
  4638. type="1"
  4639. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4640. </productMenu>
  4641. <productMenu id="quickGuide"
  4642. type="0"
  4643. url=""
  4644. size="1.12MB" >
  4645. </productMenu>
  4646. <productMenu id="userGuide"
  4647. type="1"
  4648. url=""
  4649. size="2.0MB" >
  4650. </productMenu>
  4651. <productMenu id="videoGuide"
  4652. type="0"
  4653. url=""
  4654. size="3.41MB" >
  4655. </productMenu>
  4656. <productMenu id="volume"
  4657. type="16" >
  4658. </productMenu>
  4659. <productMenu id="volume+"
  4660. type="2"
  4661. url="0x6004" >
  4662. </productMenu>
  4663. <productMenu id="battery"
  4664. type="1" >
  4665. </productMenu>
  4666. <productID id="6A17"
  4667. />
  4668. <productGroupable type="0"
  4669. />
  4670. </product>
  4671. <product id="VORTEXMESH"
  4672. name="VORTEX MESH"
  4673. series="Helmet"
  4674. latestVersion="0.1.11"
  4675. latestVersionVoicePrompt="1.1"
  4676. show = "-1" >
  4677. <productMenu id="protocol"
  4678. type="2" >
  4679. </productMenu>
  4680. <productMenu id="ota"
  4681. type="0" >
  4682. <otaLanguages>
  4683. <otaLanguage
  4684. id="0"
  4685. name="English"
  4686. package="0"
  4687. />
  4688. <otaLanguage
  4689. id="0"
  4690. name="French"
  4691. package="1"
  4692. />
  4693. <otaLanguage
  4694. id="0"
  4695. name="Spanish"
  4696. package="2"
  4697. />
  4698. <otaLanguage
  4699. id="0"
  4700. name="Italian"
  4701. package="3"
  4702. />
  4703. <otaLanguage
  4704. id="0"
  4705. name="German"
  4706. package="4"
  4707. />
  4708. <otaLanguage
  4709. id="0"
  4710. name="Dutch"
  4711. package="5"
  4712. />
  4713. <otaLanguage
  4714. id="0"
  4715. name="Russian"
  4716. package="6"
  4717. />
  4718. <otaLanguage
  4719. id="0"
  4720. name="Chinese"
  4721. package="7"
  4722. />
  4723. <otaLanguage
  4724. id="0"
  4725. name="Korean"
  4726. package="8"
  4727. />
  4728. <otaLanguage
  4729. id="0"
  4730. name="Japanese"
  4731. package="9"
  4732. />
  4733. <otaLanguage
  4734. id="0"
  4735. name="Finnish"
  4736. package="10"
  4737. />
  4738. <otaLanguage
  4739. id="0"
  4740. name="Polish"
  4741. package="11"
  4742. />
  4743. </otaLanguages>
  4744. <otaPackages>
  4745. <package
  4746. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4747. size="5183988"
  4748. />
  4749. <package
  4750. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4751. size="5183988"
  4752. />
  4753. <package
  4754. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4755. size="5183988"
  4756. />
  4757. <package
  4758. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4759. size="5183988"
  4760. />
  4761. <package
  4762. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4763. size="5183988"
  4764. />
  4765. <package
  4766. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4767. size="5183988"
  4768. />
  4769. <package
  4770. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4771. size="5183988"
  4772. />
  4773. <package
  4774. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4775. size="5183988"
  4776. />
  4777. <package
  4778. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4779. size="5183988"
  4780. />
  4781. <package
  4782. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4783. size="5183988"
  4784. />
  4785. <package
  4786. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4787. size="5183988"
  4788. />
  4789. <package
  4790. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4791. size="5183988"
  4792. />
  4793. </otaPackages>
  4794. </productMenu>
  4795. <productMenu id="wa"
  4796. type="0" >
  4797. </productMenu>
  4798. <productMenu id="led"
  4799. type="5" >
  4800. </productMenu>
  4801. <productMenu id="led+"
  4802. type="2"
  4803. url="1" >
  4804. </productMenu>
  4805. <productMenu id="meshIntercom"
  4806. type="30" >
  4807. </productMenu>
  4808. <productMenu id="meshIntercom+"
  4809. type="3"
  4810. url="2" >
  4811. </productMenu>
  4812. <productMenu id="waveIntercom"
  4813. type="1" >
  4814. </productMenu>
  4815. <productMenu id="fmradio"
  4816. type="0" >
  4817. </productMenu>
  4818. <productMenu id="phone"
  4819. type="1" >
  4820. </productMenu>
  4821. <productMenu id="music"
  4822. type="1" >
  4823. </productMenu>
  4824. <productMenu id="musicSharing"
  4825. type="0" >
  4826. </productMenu>
  4827. <productMenu id="deviceSetting"
  4828. type="1"
  4829. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4830. </productMenu>
  4831. <productMenu id="quickGuide"
  4832. type="0"
  4833. url=""
  4834. size="1.12MB" >
  4835. </productMenu>
  4836. <productMenu id="userGuide"
  4837. type="1"
  4838. url=""
  4839. size="2.0MB" >
  4840. </productMenu>
  4841. <productMenu id="videoGuide"
  4842. type="0"
  4843. url=""
  4844. size="3.41MB" >
  4845. </productMenu>
  4846. <productMenu id="volume"
  4847. type="16" >
  4848. </productMenu>
  4849. <productMenu id="battery"
  4850. type="1" >
  4851. </productMenu>
  4852. <productID id="6A12"
  4853. />
  4854. <productGroupable type="0"
  4855. />
  4856. </product>
  4857. <product id="MeshOn"
  4858. name="Mesh ON"
  4859. series="Other"
  4860. latestVersion="1.0.1"
  4861. latestVersionVoicePrompt="0.7"
  4862. show = "1" >
  4863. <productMenu id="protocol"
  4864. type="2" >
  4865. </productMenu>
  4866. <productMenu id="ota"
  4867. type="2" >
  4868. <otaPackages>
  4869. <package
  4870. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4871. size="2945812"
  4872. />
  4873. </otaPackages>
  4874. </productMenu>
  4875. <productMenu id="meshIntercom+"
  4876. type="3"
  4877. url="4" >
  4878. </productMenu>
  4879. <productMenu id="waveIntercom"
  4880. type="0" >
  4881. </productMenu>
  4882. <productMenu id="phone"
  4883. type="0" >
  4884. </productMenu>
  4885. <productMenu id="music"
  4886. type="0" >
  4887. </productMenu>
  4888. <productMenu id="musicSharing"
  4889. type="0" >
  4890. </productMenu>
  4891. <productMenu id="deviceSetting"
  4892. type="1"
  4893. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4894. </productMenu>
  4895. <productMenu id="userGuide"
  4896. type="1"
  4897. url=""
  4898. size="2.0MB" >
  4899. </productMenu>
  4900. <productMenu id="bluetoothHeadset"
  4901. type="1"
  4902. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4903. </productMenu>
  4904. <productMenu id="volume"
  4905. type="0" >
  4906. </productMenu>
  4907. <productMenu id="battery"
  4908. type="1" >
  4909. </productMenu>
  4910. <productID id="684E"
  4911. />
  4912. <productGroupable type="0"
  4913. />
  4914. </product>
  4915. <product id="Impulse"
  4916. name="Impulse"
  4917. series="Helmet"
  4918. latestVersion="1.4.1"
  4919. show = "1" >
  4920. <productMenu id="protocol"
  4921. type="2" >
  4922. </productMenu>
  4923. <productMenu id="alexa"
  4924. type="0" >
  4925. </productMenu>
  4926. <productMenu id="ota"
  4927. type="0" >
  4928. </productMenu>
  4929. <productMenu id="wa"
  4930. type="24" >
  4931. </productMenu>
  4932. <productMenu id="manager"
  4933. type="0" >
  4934. </productMenu>
  4935. <productMenu id="sip"
  4936. type="1" >
  4937. </productMenu>
  4938. <productMenu id="led"
  4939. type="1" >
  4940. <productMenuType version="1.0.1"
  4941. type="2"
  4942. />
  4943. <productMenuType version="1.0"
  4944. type="1"
  4945. />
  4946. </productMenu>
  4947. <productMenu id="meshIntercom"
  4948. type="30" >
  4949. <productMenuType version="1.1.1"
  4950. type="20"
  4951. />
  4952. </productMenu>
  4953. <productMenu id="meshIntercom+"
  4954. type="3"
  4955. url="2" >
  4956. <productMenuType version="1.3.9"
  4957. type="2"
  4958. />
  4959. <productMenuURL version="1.1.1"
  4960. url="0"
  4961. />
  4962. </productMenu>
  4963. <productMenu id="waveIntercom"
  4964. type="1" >
  4965. <productMenuType version="1.3.9"
  4966. type="0"
  4967. />
  4968. </productMenu>
  4969. <productMenu id="bluetoothIntercom"
  4970. type="1" >
  4971. </productMenu>
  4972. <productMenu id="phone"
  4973. type="1" >
  4974. </productMenu>
  4975. <productMenu id="music"
  4976. type="1" >
  4977. </productMenu>
  4978. <productMenu id="fmradio"
  4979. type="1" >
  4980. </productMenu>
  4981. <productMenu id="deviceSetting"
  4982. type="1"
  4983. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4984. <productMenuURL version="1.3.9"
  4985. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4986. />
  4987. <productMenuURL version="1.1.1"
  4988. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4989. />
  4990. <productMenuURL version="1.0.4"
  4991. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4992. />
  4993. </productMenu>
  4994. <productMenu id="quickGuide"
  4995. type="0"
  4996. url=""
  4997. size="344KB" >
  4998. </productMenu>
  4999. <productMenu id="userGuide"
  5000. type="1"
  5001. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  5002. size="3.41MB" >
  5003. </productMenu>
  5004. <productMenu id="connectGuide"
  5005. type="1"
  5006. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5007. size="1.12MB" >
  5008. </productMenu>
  5009. <productMenu id="volume"
  5010. type="11" >
  5011. </productMenu>
  5012. <productMenu id="battery"
  5013. type="1" >
  5014. </productMenu>
  5015. <productID id="3148"
  5016. />
  5017. <productGroupable type="0"
  5018. />
  5019. </product>
  5020. <product id="Impulse"
  5021. name="Impulse"
  5022. series="Helmet"
  5023. latestVersion="2.0"
  5024. show = "-1" >
  5025. <productMenu id="protocol"
  5026. type="2" >
  5027. </productMenu>
  5028. <productMenu id="alexa"
  5029. type="0" >
  5030. </productMenu>
  5031. <productMenu id="ota"
  5032. type="0" >
  5033. </productMenu>
  5034. <productMenu id="wa"
  5035. type="8" >
  5036. </productMenu>
  5037. <productMenu id="manager"
  5038. type="0" >
  5039. </productMenu>
  5040. <productMenu id="sip"
  5041. type="1" >
  5042. </productMenu>
  5043. <productMenu id="led"
  5044. type="3" >
  5045. </productMenu>
  5046. <productMenu id="meshIntercom"
  5047. type="20" >
  5048. </productMenu>
  5049. <productMenu id="bluetoothIntercom"
  5050. type="1" >
  5051. </productMenu>
  5052. <productMenu id="phone"
  5053. type="1" >
  5054. </productMenu>
  5055. <productMenu id="music"
  5056. type="1" >
  5057. </productMenu>
  5058. <productMenu id="fmradio"
  5059. type="1" >
  5060. </productMenu>
  5061. <productMenu id="deviceSetting"
  5062. type="1"
  5063. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5064. </productMenu>
  5065. <productMenu id="quickGuide"
  5066. type="1"
  5067. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5068. size="344KB" >
  5069. </productMenu>
  5070. <productMenu id="userGuide"
  5071. type="1"
  5072. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5073. size="3.41MB" >
  5074. </productMenu>
  5075. <productMenu id="volume"
  5076. type="11" >
  5077. </productMenu>
  5078. <productMenu id="battery"
  5079. type="1" >
  5080. </productMenu>
  5081. <productID id="3221"
  5082. />
  5083. <productGroupable type="0"
  5084. />
  5085. </product>
  5086. <product id="Stryker"
  5087. name="Stryker"
  5088. series="Helmet"
  5089. latestVersion="1.4.1"
  5090. show = "1" >
  5091. <productMenu id="protocol"
  5092. type="2" >
  5093. </productMenu>
  5094. <productMenu id="alexa"
  5095. type="0" >
  5096. </productMenu>
  5097. <productMenu id="ota"
  5098. type="0" >
  5099. </productMenu>
  5100. <productMenu id="wa"
  5101. type="40" >
  5102. </productMenu>
  5103. <productMenu id="manager"
  5104. type="0" >
  5105. </productMenu>
  5106. <productMenu id="sip"
  5107. type="1" >
  5108. </productMenu>
  5109. <productMenu id="led"
  5110. type="1" >
  5111. <productMenuType version="1.0.1"
  5112. type="2"
  5113. />
  5114. <productMenuType version="1.0"
  5115. type="1"
  5116. />
  5117. </productMenu>
  5118. <productMenu id="meshIntercom"
  5119. type="30" >
  5120. <productMenuType version="1.1.1"
  5121. type="20"
  5122. />
  5123. </productMenu>
  5124. <productMenu id="meshIntercom+"
  5125. type="3"
  5126. url="2" >
  5127. <productMenuType version="1.3.9"
  5128. type="2"
  5129. />
  5130. <productMenuURL version="1.1.1"
  5131. url="0"
  5132. />
  5133. </productMenu>
  5134. <productMenu id="waveIntercom"
  5135. type="1" >
  5136. <productMenuType version="1.2.9"
  5137. type="0"
  5138. />
  5139. </productMenu>
  5140. <productMenu id="bluetoothIntercom"
  5141. type="1" >
  5142. </productMenu>
  5143. <productMenu id="phone"
  5144. type="1" >
  5145. </productMenu>
  5146. <productMenu id="music"
  5147. type="1" >
  5148. </productMenu>
  5149. <productMenu id="fmradio"
  5150. type="1" >
  5151. </productMenu>
  5152. <productMenu id="deviceSetting"
  5153. type="1"
  5154. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5155. <productMenuURL version="1.3.9"
  5156. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5157. />
  5158. <productMenuURL version="1.1.1"
  5159. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5160. />
  5161. <productMenuURL version="1.0.4"
  5162. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5163. />
  5164. </productMenu>
  5165. <productMenu id="quickGuide"
  5166. type="0"
  5167. url=""
  5168. size="344KB" >
  5169. </productMenu>
  5170. <productMenu id="userGuide"
  5171. type="1"
  5172. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5173. size="3.41MB" >
  5174. </productMenu>
  5175. <productMenu id="connectGuide"
  5176. type="1"
  5177. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5178. size="1.12MB" >
  5179. </productMenu>
  5180. <productMenu id="volume"
  5181. type="11" >
  5182. </productMenu>
  5183. <productMenu id="battery"
  5184. type="1" >
  5185. </productMenu>
  5186. <productID id="3154"
  5187. />
  5188. <productGroupable type="0"
  5189. />
  5190. </product>
  5191. <product id="SRL3Plus"
  5192. name="SRL3 Plus"
  5193. series="60"
  5194. latestVersion="0.9.5"
  5195. latestVersionMesh="0.19"
  5196. latestVersionVoicePrompt="1.2"
  5197. show = "-1" >
  5198. <productMenu id="protocol"
  5199. type="2" >
  5200. </productMenu>
  5201. <productMenu id="ota"
  5202. type="2" >
  5203. <otaLanguages>
  5204. <otaLanguage
  5205. id="0"
  5206. name="English"
  5207. package="0"
  5208. />
  5209. <otaLanguage
  5210. id="0"
  5211. name="French"
  5212. package="1"
  5213. />
  5214. <otaLanguage
  5215. id="0"
  5216. name="Spanish"
  5217. package="2"
  5218. />
  5219. <otaLanguage
  5220. id="0"
  5221. name="Italian"
  5222. package="3"
  5223. />
  5224. <otaLanguage
  5225. id="0"
  5226. name="German"
  5227. package="4"
  5228. />
  5229. <otaLanguage
  5230. id="0"
  5231. name="Dutch"
  5232. package="5"
  5233. />
  5234. <otaLanguage
  5235. id="0"
  5236. name="Russian"
  5237. package="6"
  5238. />
  5239. <otaLanguage
  5240. id="0"
  5241. name="Chinese"
  5242. package="7"
  5243. />
  5244. <otaLanguage
  5245. id="0"
  5246. name="Korean"
  5247. package="8"
  5248. />
  5249. <otaLanguage
  5250. id="0"
  5251. name="Japanese"
  5252. package="9"
  5253. />
  5254. <otaLanguage
  5255. id="0"
  5256. name="Finnish"
  5257. package="10"
  5258. />
  5259. </otaLanguages>
  5260. <otaPackages>
  5261. <package
  5262. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0.img"
  5263. size="5183988"
  5264. />
  5265. <package
  5266. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fr-FR.img"
  5267. size="5183988"
  5268. />
  5269. <package
  5270. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-es-ES.img"
  5271. size="5183988"
  5272. />
  5273. <package
  5274. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-it-IT.img"
  5275. size="5183988"
  5276. />
  5277. <package
  5278. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-de-DE.img"
  5279. size="5183988"
  5280. />
  5281. <package
  5282. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-nl-NL.img"
  5283. size="5183988"
  5284. />
  5285. <package
  5286. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ru-RU.img"
  5287. size="5183988"
  5288. />
  5289. <package
  5290. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-cmn-CN.img"
  5291. size="5183988"
  5292. />
  5293. <package
  5294. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ko-KR.img"
  5295. size="5183988"
  5296. />
  5297. <package
  5298. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ja-JP.img"
  5299. size="5183988"
  5300. />
  5301. <package
  5302. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fi-FI.img"
  5303. size="5183988"
  5304. />
  5305. </otaPackages>
  5306. </productMenu>
  5307. <productMenu id="sip"
  5308. type="1" >
  5309. </productMenu>
  5310. <productMenu id="illusion"
  5311. type="1" >
  5312. </productMenu>
  5313. <productMenu id="meshIntercom+"
  5314. type="3"
  5315. url="2" >
  5316. </productMenu>
  5317. <productMenu id="waveIntercom"
  5318. type="1" >
  5319. </productMenu>
  5320. <productMenu id="bluetoothIntercom"
  5321. type="1"
  5322. url="2" >
  5323. </productMenu>
  5324. <productMenu id="bluetoothIntercomGrouping"
  5325. type="0" >
  5326. </productMenu>
  5327. <productMenu id="fmradio"
  5328. type="1"
  5329. url="1" >
  5330. </productMenu>
  5331. <productMenu id="phone"
  5332. type="1" >
  5333. </productMenu>
  5334. <productMenu id="music"
  5335. type="1" >
  5336. </productMenu>
  5337. <productMenu id="musicSharing"
  5338. type="0" >
  5339. </productMenu>
  5340. <productMenu id="deviceSetting"
  5341. type="1"
  5342. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  5343. </productMenu>
  5344. <productMenu id="quickGuide"
  5345. type="0"
  5346. url=""
  5347. size="1.12MB" >
  5348. </productMenu>
  5349. <productMenu id="userGuide"
  5350. type="0"
  5351. url=""
  5352. size="2.0MB" >
  5353. </productMenu>
  5354. <productMenu id="videoGuide"
  5355. type="0"
  5356. url=""
  5357. size="3.41MB" >
  5358. </productMenu>
  5359. <productMenu id="volume"
  5360. type="16" >
  5361. </productMenu>
  5362. <productMenu id="soundMode"
  5363. type="1" >
  5364. </productMenu>
  5365. <productMenu id="battery"
  5366. type="1" >
  5367. </productMenu>
  5368. <productID id="6A08"
  5369. />
  5370. <productGroupable type="0"
  5371. />
  5372. </product>
  5373. <product id="SRL3"
  5374. name="SRL3"
  5375. series="SRL"
  5376. latestVersion="1.5"
  5377. show = "1" >
  5378. <productMenu id="protocol"
  5379. type="2" >
  5380. </productMenu>
  5381. <productMenu id="alexa"
  5382. type="0" >
  5383. </productMenu>
  5384. <productMenu id="ota"
  5385. type="0" >
  5386. </productMenu>
  5387. <productMenu id="wa"
  5388. type="1" >
  5389. </productMenu>
  5390. <productMenu id="sip"
  5391. type="1" >
  5392. </productMenu>
  5393. <productMenu id="meshIntercom"
  5394. type="30" >
  5395. </productMenu>
  5396. <productMenu id="meshIntercom+"
  5397. type="3"
  5398. url="2" >
  5399. <productMenuType version="1.3.9"
  5400. type="2"
  5401. />
  5402. </productMenu>
  5403. <productMenu id="waveIntercom"
  5404. type="1" >
  5405. <productMenuType version="1.4.9"
  5406. type="0"
  5407. />
  5408. </productMenu>
  5409. <productMenu id="bluetoothIntercom"
  5410. type="1" >
  5411. </productMenu>
  5412. <productMenu id="phone"
  5413. type="1" >
  5414. </productMenu>
  5415. <productMenu id="music"
  5416. type="1" >
  5417. </productMenu>
  5418. <productMenu id="fmradio"
  5419. type="1" >
  5420. </productMenu>
  5421. <productMenu id="deviceSetting"
  5422. type="1"
  5423. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5424. <productMenuURL version="1.3"
  5425. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5426. />
  5427. </productMenu>
  5428. <productMenu id="quickGuide"
  5429. type="0"
  5430. url=""
  5431. size="344KB" >
  5432. </productMenu>
  5433. <productMenu id="userGuide"
  5434. type="1"
  5435. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5436. size="3.41MB" >
  5437. </productMenu>
  5438. <productMenu id="connectGuide"
  5439. type="1"
  5440. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5441. size="1.12MB" >
  5442. </productMenu>
  5443. <productMenu id="volume"
  5444. type="11" >
  5445. </productMenu>
  5446. <productMenu id="battery"
  5447. type="1" >
  5448. </productMenu>
  5449. <productID id="3219"
  5450. />
  5451. <productGroupable type="0"
  5452. />
  5453. </product>
  5454. <product id="SRL_Mesh"
  5455. name="SRL-Mesh"
  5456. series="SRL"
  5457. latestVersion="1.7.1"
  5458. show = "1" >
  5459. <productMenu id="protocol"
  5460. type="2" >
  5461. </productMenu>
  5462. <productMenu id="alexa"
  5463. type="0" >
  5464. </productMenu>
  5465. <productMenu id="ota"
  5466. type="0" >
  5467. </productMenu>
  5468. <productMenu id="wa"
  5469. type="1" >
  5470. </productMenu>
  5471. <productMenu id="sip"
  5472. type="1" >
  5473. </productMenu>
  5474. <productMenu id="meshIntercom"
  5475. type="30" >
  5476. <productMenuType version="1.1.1"
  5477. type="20"
  5478. />
  5479. </productMenu>
  5480. <productMenu id="meshIntercom+"
  5481. type="3"
  5482. url="2" >
  5483. <productMenuType version="1.5.9"
  5484. type="2"
  5485. />
  5486. <productMenuURL version="1.1.1"
  5487. url="0"
  5488. />
  5489. </productMenu>
  5490. <productMenu id="waveIntercom"
  5491. type="1" >
  5492. <productMenuType version="1.6.9"
  5493. type="0"
  5494. />
  5495. </productMenu>
  5496. <productMenu id="bluetoothIntercom"
  5497. type="1" >
  5498. </productMenu>
  5499. <productMenu id="phone"
  5500. type="1" >
  5501. </productMenu>
  5502. <productMenu id="music"
  5503. type="1" >
  5504. </productMenu>
  5505. <productMenu id="fmradio"
  5506. type="1" >
  5507. </productMenu>
  5508. <productMenu id="deviceSetting"
  5509. type="1"
  5510. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5511. <productMenuURL version="1.5"
  5512. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5513. />
  5514. <productMenuURL version="1.1.1"
  5515. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5516. />
  5517. <productMenuURL version="1.0.3"
  5518. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5519. />
  5520. </productMenu>
  5521. <productMenu id="quickGuide"
  5522. type="0"
  5523. url=""
  5524. size="344KB" >
  5525. </productMenu>
  5526. <productMenu id="userGuide"
  5527. type="1"
  5528. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5529. size="3.41MB" >
  5530. </productMenu>
  5531. <productMenu id="connectGuide"
  5532. type="1"
  5533. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5534. size="1.12MB" >
  5535. </productMenu>
  5536. <productMenu id="volume"
  5537. type="11" >
  5538. </productMenu>
  5539. <productMenu id="battery"
  5540. type="1" >
  5541. </productMenu>
  5542. <productID id="3216"
  5543. />
  5544. <productGroupable type="0"
  5545. />
  5546. </product>
  5547. <product id="SRL_EXT"
  5548. name="SRL-EXT"
  5549. series="SRL"
  5550. latestVersion="1.7.1"
  5551. show = "1" >
  5552. <productMenu id="protocol"
  5553. type="2" >
  5554. </productMenu>
  5555. <productMenu id="alexa"
  5556. type="0" >
  5557. </productMenu>
  5558. <productMenu id="ota"
  5559. type="0" >
  5560. </productMenu>
  5561. <productMenu id="wa"
  5562. type="0" >
  5563. </productMenu>
  5564. <productMenu id="sip"
  5565. type="1" >
  5566. </productMenu>
  5567. <productMenu id="meshIntercom"
  5568. type="30" >
  5569. <productMenuType version="1.1.1"
  5570. type="20"
  5571. />
  5572. </productMenu>
  5573. <productMenu id="meshIntercom+"
  5574. type="3"
  5575. url="2" >
  5576. <productMenuType version="1.5.9"
  5577. type="2"
  5578. />
  5579. <productMenuURL version="1.1.1"
  5580. url="0"
  5581. />
  5582. </productMenu>
  5583. <productMenu id="waveIntercom"
  5584. type="1" >
  5585. <productMenuType version="1.6.9"
  5586. type="0"
  5587. />
  5588. </productMenu>
  5589. <productMenu id="bluetoothIntercom"
  5590. type="1" >
  5591. </productMenu>
  5592. <productMenu id="phone"
  5593. type="1" >
  5594. </productMenu>
  5595. <productMenu id="music"
  5596. type="1" >
  5597. </productMenu>
  5598. <productMenu id="fmradio"
  5599. type="1" >
  5600. </productMenu>
  5601. <productMenu id="deviceSetting"
  5602. type="1"
  5603. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5604. <productMenuURL version="1.5"
  5605. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5606. />
  5607. <productMenuURL version="1.1.1"
  5608. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5609. />
  5610. <productMenuURL version="1.0.3"
  5611. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5612. />
  5613. </productMenu>
  5614. <productMenu id="quickGuide"
  5615. type="0"
  5616. url=""
  5617. size="344KB" >
  5618. </productMenu>
  5619. <productMenu id="userGuide"
  5620. type="1"
  5621. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5622. size="3.41MB" >
  5623. </productMenu>
  5624. <productMenu id="connectGuide"
  5625. type="1"
  5626. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5627. size="1.12MB" >
  5628. </productMenu>
  5629. <productMenu id="volume"
  5630. type="11" >
  5631. </productMenu>
  5632. <productMenu id="battery"
  5633. type="1" >
  5634. </productMenu>
  5635. <productID id="3212"
  5636. />
  5637. <productGroupable type="0"
  5638. />
  5639. </product>
  5640. <product id="SRL2"
  5641. name="SRL2"
  5642. series="SRL"
  5643. latestVersion="1.0.9"
  5644. show = "1" >
  5645. <productMenu id="protocol"
  5646. type="0">
  5647. </productMenu>
  5648. <productMenu id="sip"
  5649. type="1" >
  5650. </productMenu>
  5651. <productMenu id="bluetoothIntercom"
  5652. type="1" >
  5653. </productMenu>
  5654. <productMenu id="intercomSetting"
  5655. type="1" >
  5656. </productMenu>
  5657. <productMenu id="phone"
  5658. type="2" >
  5659. </productMenu>
  5660. <productMenu id="fmradio"
  5661. type="3" >
  5662. </productMenu>
  5663. <productMenu id="deviceSetting"
  5664. type="1"
  5665. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5666. </productMenu>
  5667. <productMenu id="quickGuide"
  5668. type="1"
  5669. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5670. size="846KB" >
  5671. </productMenu>
  5672. <productMenu id="userGuide"
  5673. type="1"
  5674. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5675. size="1.18MB" >
  5676. </productMenu>
  5677. <productMenu id="connectGuide"
  5678. type="1"
  5679. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5680. size="1.12MB" >
  5681. </productMenu>
  5682. <productID id="4530"
  5683. />
  5684. <productGroupable type="1"
  5685. />
  5686. </product>
  5687. <product id="Neotec2"
  5688. name="SRL Neotec2"
  5689. series="SRL"
  5690. latestVersion="1.1.5"
  5691. show = "1" >
  5692. <productMenu id="protocol"
  5693. type="0">
  5694. </productMenu>
  5695. <productMenu id="sip"
  5696. type="1" >
  5697. </productMenu>
  5698. <productMenu id="bluetoothIntercom"
  5699. type="1" >
  5700. </productMenu>
  5701. <productMenu id="intercomSetting"
  5702. type="1" >
  5703. </productMenu>
  5704. <productMenu id="phone"
  5705. type="2" >
  5706. </productMenu>
  5707. <productMenu id="fmradio"
  5708. type="3" >
  5709. </productMenu>
  5710. <productMenu id="deviceSetting"
  5711. type="1"
  5712. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5713. </productMenu>
  5714. <productMenu id="quickGuide"
  5715. type="0"
  5716. url=""
  5717. size="796KB" >
  5718. </productMenu>
  5719. <productMenu id="userGuide"
  5720. type="1"
  5721. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5722. size="1.90MB" >
  5723. </productMenu>
  5724. <productMenu id="connectGuide"
  5725. type="1"
  5726. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5727. size="1.12MB" >
  5728. </productMenu>
  5729. <productID id="4510"
  5730. />
  5731. <productGroupable type="1"
  5732. />
  5733. </product>
  5734. <product id="SPIDERST2ANC"
  5735. name="SPIDER ST2 ANC"
  5736. series="SPIDER"
  5737. latestVersion="0.5.1"
  5738. latestVersionVoicePrompt="0.2"
  5739. latestVersionMesh="0.8"
  5740. show = "-1" >
  5741. <productMenu id="protocol"
  5742. type="2" >
  5743. </productMenu>
  5744. <productMenu id="ota"
  5745. type="0" >
  5746. <otaPackages>
  5747. <package
  5748. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5749. size="2945812"
  5750. />
  5751. </otaPackages>
  5752. </productMenu>
  5753. <productMenu id="wa"
  5754. type="0" >
  5755. </productMenu>
  5756. <productMenu id="led"
  5757. type="1" >
  5758. </productMenu>
  5759. <productMenu id="meshIntercom"
  5760. type="30" >
  5761. </productMenu>
  5762. <productMenu id="fmradio"
  5763. type="1" >
  5764. </productMenu>
  5765. <productMenu id="phone"
  5766. type="1" >
  5767. </productMenu>
  5768. <productMenu id="music"
  5769. type="1" >
  5770. </productMenu>
  5771. <productMenu id="musicSharing"
  5772. type="0" >
  5773. </productMenu>
  5774. <productMenu id="deviceSetting"
  5775. type="1"
  5776. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  5777. </productMenu>
  5778. <productMenu id="quickGuide"
  5779. type="1"
  5780. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5781. size="1.12MB" >
  5782. </productMenu>
  5783. <productMenu id="userGuide"
  5784. type="1"
  5785. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5786. size="2.0MB" >
  5787. </productMenu>
  5788. <productMenu id="videoGuide"
  5789. type="1"
  5790. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5791. size="3.41MB" >
  5792. </productMenu>
  5793. <productMenu id="volume"
  5794. type="12" >
  5795. </productMenu>
  5796. <productMenu id="battery"
  5797. type="1" >
  5798. </productMenu>
  5799. <productID id="6A00"
  5800. />
  5801. <productGroupable type="0"
  5802. />
  5803. </product>
  5804. <product id="SPIDER_ST1"
  5805. name="SPIDER ST1"
  5806. series="SPIDER"
  5807. latestVersion="2.5.3"
  5808. latestVersionVoicePrompt="1.6"
  5809. show = "1" >
  5810. <productMenu id="protocol"
  5811. type="2" >
  5812. </productMenu>
  5813. <productMenu id="alexa"
  5814. type="0" >
  5815. </productMenu>
  5816. <productMenu id="ota"
  5817. type="2" >
  5818. <productMenuType version="2.1.9"
  5819. type="0"
  5820. />
  5821. <otaPackages>
  5822. <package
  5823. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  5824. size="2945812"
  5825. />
  5826. </otaPackages>
  5827. </productMenu>
  5828. <productMenu id="wa"
  5829. type="0" >
  5830. </productMenu>
  5831. <productMenu id="meshIntercom"
  5832. type="30" >
  5833. <productMenuType version="2.1.1"
  5834. type="20"
  5835. />
  5836. </productMenu>
  5837. <productMenu id="meshIntercom+"
  5838. type="3"
  5839. url="2" >
  5840. <productMenuType version="2.2.9"
  5841. type="2"
  5842. />
  5843. <productMenuURL version="2.1.1"
  5844. url="0"
  5845. />
  5846. </productMenu>
  5847. <productMenu id="waveIntercom"
  5848. type="1" >
  5849. <productMenuType version="2.3.9"
  5850. type="0"
  5851. />
  5852. </productMenu>
  5853. <productMenu id="phone"
  5854. type="1" >
  5855. </productMenu>
  5856. <productMenu id="music"
  5857. type="1" >
  5858. </productMenu>
  5859. <productMenu id="musicSharing"
  5860. type="0" >
  5861. </productMenu>
  5862. <productMenu id="deviceSetting"
  5863. type="1"
  5864. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5865. <productMenuURL version="2.4.9"
  5866. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5867. />
  5868. <productMenuURL version="2.2.2"
  5869. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5870. />
  5871. <productMenuURL version="2.1.1"
  5872. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5873. />
  5874. </productMenu>
  5875. <productMenu id="quickGuide"
  5876. type="0"
  5877. url=""
  5878. size="1.12MB" >
  5879. </productMenu>
  5880. <productMenu id="userGuide"
  5881. type="1"
  5882. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5883. size="2.0MB" >
  5884. </productMenu>
  5885. <productMenu id="videoGuide"
  5886. type="1"
  5887. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5888. size="3.41MB" >
  5889. </productMenu>
  5890. <productMenu id="connectGuide"
  5891. type="1"
  5892. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5893. size="1.12MB" >
  5894. </productMenu>
  5895. <productMenu id="volume"
  5896. type="12" >
  5897. </productMenu>
  5898. <productMenu id="battery"
  5899. type="1" >
  5900. </productMenu>
  5901. <productID id="6800"
  5902. />
  5903. <productGroupable type="0"
  5904. />
  5905. </product>
  5906. <product id="SPIDER_ST1"
  5907. name="SPIDER ST1"
  5908. series="SPIDER"
  5909. latestVersion="1.2.2"
  5910. show = "-1" >
  5911. <productMenu id="protocol"
  5912. type="2" >
  5913. </productMenu>
  5914. <productMenu id="alexa"
  5915. type="0" >
  5916. </productMenu>
  5917. <productMenu id="ota"
  5918. type="0" >
  5919. </productMenu>
  5920. <productMenu id="wa"
  5921. type="0" >
  5922. </productMenu>
  5923. <productMenu id="meshIntercom"
  5924. type="20" >
  5925. </productMenu>
  5926. <productMenu id="phone"
  5927. type="1" >
  5928. </productMenu>
  5929. <productMenu id="music"
  5930. type="1" >
  5931. </productMenu>
  5932. <productMenu id="deviceSetting"
  5933. type="1"
  5934. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5935. </productMenu>
  5936. <productMenu id="quickGuide"
  5937. type="0"
  5938. url=""
  5939. size="1.12MB" >
  5940. </productMenu>
  5941. <productMenu id="userGuide"
  5942. type="1"
  5943. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5944. size="2.0MB" >
  5945. </productMenu>
  5946. <productMenu id="videoGuide"
  5947. type="1"
  5948. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5949. size="3.41MB" >
  5950. </productMenu>
  5951. <productMenu id="volume"
  5952. type="13" >
  5953. <productMenuType version="1.1.6"
  5954. type="14"/>
  5955. </productMenu>
  5956. <productMenu id="battery"
  5957. type="1" >
  5958. </productMenu>
  5959. <productID id="6510"
  5960. />
  5961. <productGroupable type="0"
  5962. />
  5963. </product>
  5964. <product id="SPIDER_RT1"
  5965. name="SPIDER RT1"
  5966. series="SPIDER"
  5967. latestVersion="2.5.3"
  5968. latestVersionVoicePrompt="1.6"
  5969. show = "1" >
  5970. <productMenu id="protocol"
  5971. type="2" >
  5972. </productMenu>
  5973. <productMenu id="alexa"
  5974. type="0" >
  5975. </productMenu>
  5976. <productMenu id="ota"
  5977. type="2" >
  5978. <productMenuType version="2.1.9"
  5979. type="0"
  5980. />
  5981. <otaPackages>
  5982. <package
  5983. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  5984. size="2945812"
  5985. />
  5986. </otaPackages>
  5987. </productMenu>
  5988. <productMenu id="wa"
  5989. type="0" >
  5990. </productMenu>
  5991. <productMenu id="meshIntercom"
  5992. type="30" >
  5993. <productMenuType version="2.1.1"
  5994. type="20"
  5995. />
  5996. </productMenu>
  5997. <productMenu id="meshIntercom+"
  5998. type="3"
  5999. url="2" >
  6000. <productMenuType version="2.2.9"
  6001. type="2"
  6002. />
  6003. <productMenuURL version="2.1.1"
  6004. url="0"
  6005. />
  6006. </productMenu>
  6007. <productMenu id="waveIntercom"
  6008. type="1" >
  6009. <productMenuType version="2.3.9"
  6010. type="0"
  6011. />
  6012. </productMenu>
  6013. <productMenu id="phone"
  6014. type="1" >
  6015. </productMenu>
  6016. <productMenu id="music"
  6017. type="1" >
  6018. </productMenu>
  6019. <productMenu id="musicSharing"
  6020. type="0" >
  6021. </productMenu>
  6022. <productMenu id="deviceSetting"
  6023. type="1"
  6024. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6025. <productMenuURL version="2.4.9"
  6026. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6027. />
  6028. <productMenuURL version="2.2.2"
  6029. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6030. />
  6031. <productMenuURL version="2.1.1"
  6032. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6033. />
  6034. </productMenu>
  6035. <productMenu id="quickGuide"
  6036. type="0"
  6037. url=""
  6038. size="1.12MB" >
  6039. </productMenu>
  6040. <productMenu id="userGuide"
  6041. type="1"
  6042. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6043. size="2.0MB" >
  6044. </productMenu>
  6045. <productMenu id="videoGuide"
  6046. type="1"
  6047. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6048. size="3.41MB" >
  6049. </productMenu>
  6050. <productMenu id="connectGuide"
  6051. type="1"
  6052. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6053. size="1.12MB" >
  6054. </productMenu>
  6055. <productMenu id="volume"
  6056. type="12" >
  6057. </productMenu>
  6058. <productMenu id="battery"
  6059. type="1" >
  6060. </productMenu>
  6061. <productID id="6810"
  6062. />
  6063. <productGroupable type="0"
  6064. />
  6065. </product>
  6066. <product id="SPIDER_RT1"
  6067. name="SPIDER RT1"
  6068. series="SPIDER"
  6069. latestVersion="1.2.2"
  6070. show = "-1" >
  6071. <productMenu id="protocol"
  6072. type="2" >
  6073. </productMenu>
  6074. <productMenu id="alexa"
  6075. type="0" >
  6076. </productMenu>
  6077. <productMenu id="ota"
  6078. type="0" >
  6079. </productMenu>
  6080. <productMenu id="wa"
  6081. type="0" >
  6082. </productMenu>
  6083. <productMenu id="meshIntercom"
  6084. type="20" >
  6085. </productMenu>
  6086. <productMenu id="phone"
  6087. type="1" >
  6088. </productMenu>
  6089. <productMenu id="music"
  6090. type="1" >
  6091. </productMenu>
  6092. <productMenu id="deviceSetting"
  6093. type="1"
  6094. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6095. </productMenu>
  6096. <productMenu id="quickGuide"
  6097. type="0"
  6098. url=""
  6099. size="1.32MB" >
  6100. </productMenu>
  6101. <productMenu id="userGuide"
  6102. type="1"
  6103. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6104. size="1.79MB" >
  6105. </productMenu>
  6106. <productMenu id="videoGuide"
  6107. type="1"
  6108. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6109. size="3.41MB" >
  6110. </productMenu>
  6111. <productMenu id="volume"
  6112. type="13" >
  6113. <productMenuType version="1.1.6"
  6114. type="14"/>
  6115. </productMenu>
  6116. <productMenu id="battery"
  6117. type="1" >
  6118. </productMenu>
  6119. <productID id="6500"
  6120. />
  6121. <productGroupable type="0"
  6122. />
  6123. </product>
  6124. <product id="30K"
  6125. name="30K"
  6126. series="30"
  6127. latestVersion="4.5.1"
  6128. show = "1" >
  6129. <productMenu id="protocol"
  6130. type="2" >
  6131. </productMenu>
  6132. <productMenu id="alexa"
  6133. type="0" >
  6134. </productMenu>
  6135. <productMenu id="wa"
  6136. type="1" >
  6137. </productMenu>
  6138. <productMenu id="sip"
  6139. type="1" >
  6140. </productMenu>
  6141. <productMenu id="meshIntercom"
  6142. type="30" >
  6143. <productMenuType version="4.0.4"
  6144. type="20"
  6145. />
  6146. </productMenu>
  6147. <productMenu id="meshIntercom+"
  6148. type="3"
  6149. url="2" >
  6150. <productMenuType version="4.3.9"
  6151. type="2"
  6152. />
  6153. <productMenuURL version="4.0.4"
  6154. url="0"
  6155. />
  6156. </productMenu>
  6157. <productMenu id="waveIntercom"
  6158. type="1" >
  6159. <productMenuType version="4.4.9"
  6160. type="0"
  6161. />
  6162. </productMenu>
  6163. <productMenu id="bluetoothIntercom"
  6164. type="1" >
  6165. </productMenu>
  6166. <productMenu id="phone"
  6167. type="1" >
  6168. </productMenu>
  6169. <productMenu id="music"
  6170. type="1" >
  6171. </productMenu>
  6172. <productMenu id="fmradio"
  6173. type="1" >
  6174. </productMenu>
  6175. <productMenu id="deviceSetting"
  6176. type="1"
  6177. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6178. <productMenuURL version="4.3"
  6179. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6180. />
  6181. <productMenuURL version="4.2"
  6182. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6183. />
  6184. <productMenuURL version="4.0.4"
  6185. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6186. />
  6187. </productMenu>
  6188. <productMenu id="quickGuide"
  6189. type="0"
  6190. url=""
  6191. size="934KB" >
  6192. </productMenu>
  6193. <productMenu id="userGuide"
  6194. type="1"
  6195. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6196. size="1.14MB" >
  6197. </productMenu>
  6198. <productMenu id="connectGuide"
  6199. type="1"
  6200. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6201. size="1.12MB" >
  6202. </productMenu>
  6203. <productMenu id="volume"
  6204. type="11" >
  6205. </productMenu>
  6206. <productMenu id="battery"
  6207. type="1" >
  6208. </productMenu>
  6209. <productID id="3211"
  6210. />
  6211. <productGroupable type="0"
  6212. />
  6213. </product>
  6214. <product id="30K"
  6215. name="30K"
  6216. series="30"
  6217. latestVersion="3.5"
  6218. show = "-1" >
  6219. <productMenu id="protocol"
  6220. type="1"
  6221. url="0">
  6222. </productMenu>
  6223. <productMenu id="wa"
  6224. type="7" >
  6225. </productMenu>
  6226. <productMenu id="sip"
  6227. type="1" >
  6228. </productMenu>
  6229. <productMenu id="meshIntercom"
  6230. type="20" >
  6231. <productMenuType version="2.9.9"
  6232. type="10"
  6233. />
  6234. </productMenu>
  6235. <productMenu id="meshIntercom+"
  6236. type="3"
  6237. url="2" >
  6238. <productMenuType version="3.4.9"
  6239. type="2"
  6240. />
  6241. <productMenuType version="2.9.9"
  6242. type="1"
  6243. />
  6244. <productMenuURL version="3.3.1"
  6245. url="0"
  6246. />
  6247. </productMenu>
  6248. <productMenu id="bluetoothIntercom"
  6249. type="1" >
  6250. </productMenu>
  6251. <productMenu id="phone"
  6252. type="1" >
  6253. </productMenu>
  6254. <productMenu id="music"
  6255. type="1" >
  6256. </productMenu>
  6257. <productMenu id="fmradio"
  6258. type="1" >
  6259. </productMenu>
  6260. <productMenu id="deviceSetting"
  6261. type="1"
  6262. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6263. <productMenuURL version="3.4.9"
  6264. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6265. />
  6266. <productMenuURL version="3.3.1"
  6267. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6268. />
  6269. <productMenuURL version="3.0.1"
  6270. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6271. />
  6272. <productMenuURL version="2.3.1"
  6273. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6274. />
  6275. <productMenuURL version="2.0"
  6276. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6277. />
  6278. <productMenuURL version="1.0.3"
  6279. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6280. />
  6281. </productMenu>
  6282. <productMenu id="quickGuide"
  6283. type="0"
  6284. url=""
  6285. size="1.06MB" >
  6286. </productMenu>
  6287. <productMenu id="userGuide"
  6288. type="1"
  6289. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6290. size="3.15MB" >
  6291. </productMenu>
  6292. <productMenu id="volume"
  6293. type="1" >
  6294. </productMenu>
  6295. <productID id="3110"
  6296. />
  6297. <productGroupable type="0"
  6298. />
  6299. </product>
  6300. <product id="FURY"
  6301. name="FURY"
  6302. series="Helmet"
  6303. latestVersion="1.0"
  6304. show = "-1" >
  6305. <productMenu id="protocol"
  6306. type="2" >
  6307. </productMenu>
  6308. <productMenu id="alexa"
  6309. type="0" >
  6310. </productMenu>
  6311. <productMenu id="ota"
  6312. type="0" >
  6313. </productMenu>
  6314. <productMenu id="wa"
  6315. type="0" >
  6316. </productMenu>
  6317. <productMenu id="meshIntercom"
  6318. type="20" >
  6319. </productMenu>
  6320. <productMenu id="phone"
  6321. type="1" >
  6322. </productMenu>
  6323. <productMenu id="music"
  6324. type="1" >
  6325. </productMenu>
  6326. <productMenu id="fmradio"
  6327. type="1" >
  6328. </productMenu>
  6329. <productMenu id="deviceSetting"
  6330. type="1"
  6331. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6332. </productMenu>
  6333. <productMenu id="quickGuide"
  6334. type="1"
  6335. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6336. size="1.12MB" >
  6337. </productMenu>
  6338. <productMenu id="userGuide"
  6339. type="1"
  6340. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6341. size="2.0MB" >
  6342. </productMenu>
  6343. <productMenu id="volume"
  6344. type="13" >
  6345. </productMenu>
  6346. <productMenu id="battery"
  6347. type="1" >
  6348. </productMenu>
  6349. <productID id="5552"
  6350. />
  6351. <productGroupable type="0"
  6352. />
  6353. </product>
  6354. <product id="MomentumM"
  6355. name="Momentum EVO"
  6356. series="Helmet"
  6357. latestVersion="2.1.2"
  6358. show = "1" >
  6359. <productMenu id="protocol"
  6360. type="1"
  6361. url="0">
  6362. </productMenu>
  6363. <productMenu id="wa"
  6364. type="3" >
  6365. </productMenu>
  6366. <productMenu id="sip"
  6367. type="1" >
  6368. </productMenu>
  6369. <productMenu id="meshIntercom"
  6370. type="20" >
  6371. <productMenuType version="1.9.9"
  6372. type="10"
  6373. />
  6374. </productMenu>
  6375. <productMenu id="bluetoothIntercom"
  6376. type="1" >
  6377. </productMenu>
  6378. <productMenu id="phone"
  6379. type="1" >
  6380. </productMenu>
  6381. <productMenu id="music"
  6382. type="1" >
  6383. </productMenu>
  6384. <productMenu id="fmradio"
  6385. type="1" >
  6386. </productMenu>
  6387. <productMenu id="deviceSetting"
  6388. type="1"
  6389. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6390. <productMenuURL version="1.0.1"
  6391. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6392. />
  6393. </productMenu>
  6394. <productMenu id="quickGuide"
  6395. type="1"
  6396. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6397. size="1.06MB" >
  6398. </productMenu>
  6399. <productMenu id="userGuide"
  6400. type="1"
  6401. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6402. size="3.15MB" >
  6403. </productMenu>
  6404. <productMenu id="connectGuide"
  6405. type="1"
  6406. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6407. size="1.12MB" >
  6408. </productMenu>
  6409. <productMenu id="volume"
  6410. type="2" >
  6411. </productMenu>
  6412. <productID id="3116"
  6413. />
  6414. <productGroupable type="0"
  6415. />
  6416. </product>
  6417. <product id="Momentum"
  6418. name="Momentum"
  6419. series="Helmet"
  6420. latestVersion="1.0.9"
  6421. show = "1" >
  6422. <productMenu id="protocol"
  6423. type="0">
  6424. </productMenu>
  6425. <productMenu id="sip"
  6426. type="1" >
  6427. </productMenu>
  6428. <productMenu id="bluetoothIntercom"
  6429. type="1" >
  6430. </productMenu>
  6431. <productMenu id="intercomSetting"
  6432. type="1" >
  6433. </productMenu>
  6434. <productMenu id="phone"
  6435. type="2" >
  6436. </productMenu>
  6437. <productMenu id="fmradio"
  6438. type="3" >
  6439. </productMenu>
  6440. <productMenu id="deviceSetting"
  6441. type="1"
  6442. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6443. </productMenu>
  6444. <productMenu id="quickGuide"
  6445. type="1"
  6446. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6447. size="796KB" >
  6448. </productMenu>
  6449. <productMenu id="userGuide"
  6450. type="1"
  6451. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6452. size="1.90MB" >
  6453. </productMenu>
  6454. <productMenu id="connectGuide"
  6455. type="1"
  6456. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6457. size="1.12MB" >
  6458. </productMenu>
  6459. <productID id="4310"
  6460. />
  6461. <productGroupable type="1"
  6462. />
  6463. </product>
  6464. <product id="Momentum_Pro"
  6465. name="Momentum Pro"
  6466. series="Helmet"
  6467. latestVersion="1.0.6"
  6468. show = "1" >
  6469. <productMenu id="protocol"
  6470. type="0">
  6471. </productMenu>
  6472. <productMenu id="sip"
  6473. type="1" >
  6474. </productMenu>
  6475. <productMenu id="bluetoothIntercom"
  6476. type="1" >
  6477. </productMenu>
  6478. <productMenu id="intercomSetting"
  6479. type="1" >
  6480. </productMenu>
  6481. <productMenu id="phone"
  6482. type="2" >
  6483. </productMenu>
  6484. <productMenu id="fmradio"
  6485. type="3" >
  6486. </productMenu>
  6487. <productMenu id="deviceSetting"
  6488. type="1"
  6489. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6490. </productMenu>
  6491. <productMenu id="quickGuide"
  6492. type="1"
  6493. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6494. size="796KB" >
  6495. </productMenu>
  6496. <productMenu id="userGuide"
  6497. type="1"
  6498. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6499. size="1.90MB" >
  6500. </productMenu>
  6501. <productMenu id="connectGuide"
  6502. type="1"
  6503. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6504. size="1.12MB" >
  6505. </productMenu>
  6506. <productID id="4330"
  6507. />
  6508. <productGroupable type="1"
  6509. />
  6510. </product>
  6511. <product id="Momentum_INC"
  6512. name="Momentum INC"
  6513. series="Helmet"
  6514. latestVersion="1.0.7"
  6515. show = "1" >
  6516. <productMenu id="protocol"
  6517. type="0">
  6518. </productMenu>
  6519. <productMenu id="sip"
  6520. type="1" >
  6521. </productMenu>
  6522. <productMenu id="bluetoothIntercom"
  6523. type="1" >
  6524. </productMenu>
  6525. <productMenu id="intercomSetting"
  6526. type="1" >
  6527. </productMenu>
  6528. <productMenu id="phone"
  6529. type="2" >
  6530. </productMenu>
  6531. <productMenu id="fmradio"
  6532. type="3" >
  6533. </productMenu>
  6534. <productMenu id="deviceSetting"
  6535. type="1"
  6536. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6537. </productMenu>
  6538. <productMenu id="quickGuide"
  6539. type="1"
  6540. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6541. size="794KB" >
  6542. </productMenu>
  6543. <productMenu id="userGuide"
  6544. type="1"
  6545. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6546. size="1.53MB" >
  6547. </productMenu>
  6548. <productMenu id="connectGuide"
  6549. type="1"
  6550. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6551. size="1.12MB" >
  6552. </productMenu>
  6553. <productID id="4410"
  6554. />
  6555. <productGroupable type="1"
  6556. />
  6557. </product>
  6558. <product id="Momentum_INCP"
  6559. name="Momentum INC Pro"
  6560. series="Helmet"
  6561. latestVersion="1.0.4"
  6562. show = "1" >
  6563. <productMenu id="protocol"
  6564. type="0">
  6565. </productMenu>
  6566. <productMenu id="sip"
  6567. type="1" >
  6568. </productMenu>
  6569. <productMenu id="bluetoothIntercom"
  6570. type="1" >
  6571. </productMenu>
  6572. <productMenu id="intercomSetting"
  6573. type="1" >
  6574. </productMenu>
  6575. <productMenu id="phone"
  6576. type="2" >
  6577. </productMenu>
  6578. <productMenu id="fmradio"
  6579. type="3" >
  6580. </productMenu>
  6581. <productMenu id="deviceSetting"
  6582. type="1"
  6583. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6584. </productMenu>
  6585. <productMenu id="quickGuide"
  6586. type="1"
  6587. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6588. size="794KB" >
  6589. </productMenu>
  6590. <productMenu id="userGuide"
  6591. type="1"
  6592. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6593. size="1.53MB" >
  6594. </productMenu>
  6595. <productMenu id="connectGuide"
  6596. type="1"
  6597. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6598. size="1.12MB" >
  6599. </productMenu>
  6600. <productID id="4430"
  6601. />
  6602. <productGroupable type="1"
  6603. />
  6604. </product>
  6605. <product id="Momentum_Lite"
  6606. name="Momentum Lite"
  6607. series="Helmet"
  6608. latestVersion="2.0.3"
  6609. show = "1" >
  6610. <productMenu id="protocol"
  6611. type="0">
  6612. </productMenu>
  6613. <productMenu id="sip"
  6614. type="1" >
  6615. </productMenu>
  6616. <productMenu id="bluetoothIntercom"
  6617. type="1" >
  6618. </productMenu>
  6619. <productMenu id="phone"
  6620. type="2" >
  6621. </productMenu>
  6622. <productMenu id="fmradio"
  6623. type="3" >
  6624. </productMenu>
  6625. <productMenu id="deviceSetting"
  6626. type="1"
  6627. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6628. <productMenuURL version="1.1"
  6629. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6630. />
  6631. </productMenu>
  6632. <productMenu id="quickGuide"
  6633. type="1"
  6634. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6635. size="790KB" >
  6636. </productMenu>
  6637. <productMenu id="userGuide"
  6638. type="1"
  6639. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6640. size="1.42MB" >
  6641. </productMenu>
  6642. <productMenu id="connectGuide"
  6643. type="1"
  6644. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6645. size="1.12MB" >
  6646. </productMenu>
  6647. <productID id="5526"
  6648. />
  6649. <productGroupable type="0"
  6650. />
  6651. </product>
  6652. <product id="OUTRUSHM"
  6653. name="OUTRUSH M"
  6654. series="Helmet"
  6655. latestVersion="1.0"
  6656. show = "-1" >
  6657. <productMenu id="protocol"
  6658. type="2" >
  6659. </productMenu>
  6660. <productMenu id="alexa"
  6661. type="0" >
  6662. </productMenu>
  6663. <productMenu id="ota"
  6664. type="0" >
  6665. </productMenu>
  6666. <productMenu id="wa"
  6667. type="0" >
  6668. </productMenu>
  6669. <productMenu id="meshIntercom"
  6670. type="30" >
  6671. </productMenu>
  6672. <productMenu id="phone"
  6673. type="1" >
  6674. </productMenu>
  6675. <productMenu id="music"
  6676. type="1" >
  6677. </productMenu>
  6678. <productMenu id="fmradio"
  6679. type="1" >
  6680. </productMenu>
  6681. <productMenu id="deviceSetting"
  6682. type="1"
  6683. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6684. </productMenu>
  6685. <productMenu id="quickGuide"
  6686. type="1"
  6687. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6688. size="1.12MB" >
  6689. </productMenu>
  6690. <productMenu id="userGuide"
  6691. type="1"
  6692. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6693. size="2.0MB" >
  6694. </productMenu>
  6695. <productMenu id="volume"
  6696. type="13" >
  6697. </productMenu>
  6698. <productMenu id="battery"
  6699. type="1" >
  6700. </productMenu>
  6701. <productID id="5600"
  6702. />
  6703. <productGroupable type="0"
  6704. />
  6705. </product>
  6706. <product id="ProRideEVO"
  6707. name="ProRide EVO"
  6708. series="Helmet"
  6709. latestVersion="1.1.2"
  6710. show = "1" >
  6711. <productMenu id="protocol"
  6712. type="0">
  6713. </productMenu>
  6714. <productMenu id="sip"
  6715. type="1" >
  6716. </productMenu>
  6717. <productMenu id="bluetoothIntercom"
  6718. type="1" >
  6719. </productMenu>
  6720. <productMenu id="phone"
  6721. type="2" >
  6722. </productMenu>
  6723. <productMenu id="fmradio"
  6724. type="3" >
  6725. </productMenu>
  6726. <productMenu id="deviceSetting"
  6727. type="1"
  6728. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6729. </productMenu>
  6730. <productMenu id="userGuide"
  6731. type="1"
  6732. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6733. size="778KB" >
  6734. </productMenu>
  6735. <productMenu id="connectGuide"
  6736. type="1"
  6737. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6738. size="1.12MB" >
  6739. </productMenu>
  6740. <productID id="5426"
  6741. />
  6742. <productGroupable type="0"
  6743. />
  6744. </product>
  6745. <product id="OUTRUSHR"
  6746. name="OUTRUSH R"
  6747. series="Helmet"
  6748. latestVersion="2.1"
  6749. show = "1" >
  6750. <productMenu id="protocol"
  6751. type="3" >
  6752. </productMenu>
  6753. <productMenu id="sip"
  6754. type="1" >
  6755. </productMenu>
  6756. <productMenu id="bluetoothIntercom"
  6757. type="1" >
  6758. </productMenu>
  6759. <productMenu id="phone"
  6760. type="1" >
  6761. </productMenu>
  6762. <productMenu id="fmradio"
  6763. type="0" >
  6764. </productMenu>
  6765. <productMenu id="deviceSetting"
  6766. type="1"
  6767. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6768. </productMenu>
  6769. <productMenu id="userGuide"
  6770. type="1"
  6771. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6772. size="1.14MB" >
  6773. </productMenu>
  6774. <productMenu id="connectGuide"
  6775. type="1"
  6776. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6777. size="1.12MB" >
  6778. </productMenu>
  6779. <productID id="5440"
  6780. />
  6781. <productGroupable type="0"
  6782. />
  6783. </product>
  6784. <product id="OUTRUSHR"
  6785. name="OUTRUSH R"
  6786. series="Helmet"
  6787. latestVersion="1.1.4"
  6788. show = "-1" >
  6789. <productMenu id="protocol"
  6790. type="0">
  6791. </productMenu>
  6792. <productMenu id="sip"
  6793. type="1" >
  6794. </productMenu>
  6795. <productMenu id="bluetoothIntercom"
  6796. type="1" >
  6797. </productMenu>
  6798. <productMenu id="phone"
  6799. type="2" >
  6800. </productMenu>
  6801. <productMenu id="fmradio"
  6802. type="3" >
  6803. </productMenu>
  6804. <productMenu id="deviceSetting"
  6805. type="1"
  6806. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6807. </productMenu>
  6808. <productMenu id="userGuide"
  6809. type="1"
  6810. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6811. size="660KB" >
  6812. </productMenu>
  6813. <productMenu id="connectGuide"
  6814. type="1"
  6815. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6816. size="1.12MB" >
  6817. </productMenu>
  6818. <productID id="5424"
  6819. />
  6820. <productGroupable type="0"
  6821. />
  6822. </product>
  6823. <product id="OUTSTARS"
  6824. name="OUTSTAR S"
  6825. series="Helmet"
  6826. latestVersion="2.0.1"
  6827. show = "-1" >
  6828. <productMenu id="protocol"
  6829. type="3" >
  6830. </productMenu>
  6831. <productMenu id="sip"
  6832. type="1" >
  6833. </productMenu>
  6834. <productMenu id="bluetoothIntercom"
  6835. type="1" >
  6836. </productMenu>
  6837. <productMenu id="phone"
  6838. type="1" >
  6839. </productMenu>
  6840. <productMenu id="fmradio"
  6841. type="0" >
  6842. </productMenu>
  6843. <productMenu id="deviceSetting"
  6844. type="1"
  6845. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6846. </productMenu>
  6847. <productMenu id="userGuide"
  6848. type="0"
  6849. url=""
  6850. size="1.14MB" >
  6851. </productMenu>
  6852. <productID id="5443"
  6853. />
  6854. <productGroupable type="0"
  6855. />
  6856. </product>
  6857. <product id="OUTSTARS"
  6858. name="OUTSTAR S"
  6859. series="Helmet"
  6860. latestVersion="1.1.4"
  6861. show = "1" >
  6862. <productMenu id="protocol"
  6863. type="0">
  6864. </productMenu>
  6865. <productMenu id="sip"
  6866. type="1" >
  6867. </productMenu>
  6868. <productMenu id="bluetoothIntercom"
  6869. type="1" >
  6870. </productMenu>
  6871. <productMenu id="phone"
  6872. type="2" >
  6873. </productMenu>
  6874. <productMenu id="fmradio"
  6875. type="3" >
  6876. </productMenu>
  6877. <productMenu id="deviceSetting"
  6878. type="1"
  6879. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6880. </productMenu>
  6881. <productMenu id="quickGuide"
  6882. type="1"
  6883. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6884. size="643KB" >
  6885. </productMenu>
  6886. <productMenu id="userGuide"
  6887. type="1"
  6888. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6889. size="1.15MB" >
  6890. </productMenu>
  6891. <productMenu id="connectGuide"
  6892. type="1"
  6893. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6894. size="1.12MB" >
  6895. </productMenu>
  6896. <productID id="5428"
  6897. />
  6898. <productGroupable type="0"
  6899. />
  6900. </product>
  6901. <product id="OUTRIDE"
  6902. name="OUTRIDE"
  6903. series="Helmet"
  6904. latestVersion="1.0.1"
  6905. show = "1" >
  6906. <productMenu id="protocol"
  6907. type="0">
  6908. </productMenu>
  6909. <productMenu id="sip"
  6910. type="1" >
  6911. </productMenu>
  6912. <productMenu id="bluetoothIntercom"
  6913. type="1" >
  6914. </productMenu>
  6915. <productMenu id="phone"
  6916. type="2" >
  6917. </productMenu>
  6918. <productMenu id="fmradio"
  6919. type="3" >
  6920. </productMenu>
  6921. <productMenu id="deviceSetting"
  6922. type="1"
  6923. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6924. </productMenu>
  6925. <productMenu id="quickGuide"
  6926. type="1"
  6927. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6928. size="643KB" >
  6929. </productMenu>
  6930. <productMenu id="userGuide"
  6931. type="1"
  6932. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6933. size="660KB" >
  6934. </productMenu>
  6935. <productMenu id="connectGuide"
  6936. type="1"
  6937. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6938. size="1.12MB" >
  6939. </productMenu>
  6940. <productID id="5432"
  6941. />
  6942. <productGroupable type="0"
  6943. />
  6944. </product>
  6945. <product id="OUTFORCE"
  6946. name="OUTFORCE"
  6947. series="Helmet"
  6948. latestVersion="1.0.1"
  6949. show = "1" >
  6950. <productMenu id="protocol"
  6951. type="0">
  6952. </productMenu>
  6953. <productMenu id="sip"
  6954. type="1" >
  6955. </productMenu>
  6956. <productMenu id="bluetoothIntercom"
  6957. type="1" >
  6958. </productMenu>
  6959. <productMenu id="phone"
  6960. type="2" >
  6961. </productMenu>
  6962. <productMenu id="fmradio"
  6963. type="3" >
  6964. </productMenu>
  6965. <productMenu id="deviceSetting"
  6966. type="1"
  6967. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6968. </productMenu>
  6969. <productMenu id="quickGuide"
  6970. type="1"
  6971. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6972. size="643KB" >
  6973. </productMenu>
  6974. <productMenu id="userGuide"
  6975. type="1"
  6976. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6977. size="660KB" >
  6978. </productMenu>
  6979. <productMenu id="connectGuide"
  6980. type="1"
  6981. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6982. size="1.12MB" >
  6983. </productMenu>
  6984. <productID id="5430"
  6985. />
  6986. <productGroupable type="0"
  6987. />
  6988. </product>
  6989. <product id="Rumba"
  6990. name="Rumba"
  6991. series="30"
  6992. latestVersion="2.0"
  6993. show = "-1" >
  6994. <productMenu id="protocol"
  6995. type="3" >
  6996. </productMenu>
  6997. <productMenu id="sip"
  6998. type="1" >
  6999. </productMenu>
  7000. <productMenu id="bluetoothIntercom"
  7001. type="1" >
  7002. </productMenu>
  7003. <productMenu id="deviceSetting"
  7004. type="1"
  7005. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  7006. </productMenu>
  7007. <productMenu id="quickGuide"
  7008. type="1"
  7009. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  7010. size="344KB" >
  7011. </productMenu>
  7012. <productMenu id="userGuide"
  7013. type="1"
  7014. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  7015. size="1.14MB" >
  7016. </productMenu>
  7017. <productID id="6322"
  7018. />
  7019. <productGroupable type="0"
  7020. />
  7021. </product>
  7022. <product id="Savage"
  7023. name="Savage"
  7024. series="Helmet"
  7025. latestVersion="1.2.2"
  7026. show = "1" >
  7027. <productMenu id="protocol"
  7028. type="0">
  7029. </productMenu>
  7030. <productMenu id="sip"
  7031. type="1" >
  7032. </productMenu>
  7033. <productMenu id="bluetoothIntercom"
  7034. type="1" >
  7035. </productMenu>
  7036. <productMenu id="phone"
  7037. type="2" >
  7038. </productMenu>
  7039. <productMenu id="fmradio"
  7040. type="3" >
  7041. </productMenu>
  7042. <productMenu id="deviceSetting"
  7043. type="1"
  7044. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7045. <productMenuURL version="1.9"
  7046. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7047. />
  7048. <productMenuURL version="1.1"
  7049. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7050. />
  7051. </productMenu>
  7052. <productMenu id="quickGuide"
  7053. type="1"
  7054. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7055. size="796KB" >
  7056. </productMenu>
  7057. <productMenu id="userGuide"
  7058. type="1"
  7059. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7060. size="910KB" >
  7061. </productMenu>
  7062. <productMenu id="connectGuide"
  7063. type="1"
  7064. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7065. size="1.12MB" >
  7066. </productMenu>
  7067. <productID id="5550"
  7068. />
  7069. <productGroupable type="0"
  7070. />
  7071. </product>
  7072. <product id="SPECTER"
  7073. name="SPECTER"
  7074. series="Helmet"
  7075. latestVersion="1.0.9"
  7076. latestVersionVoicePrompt="1.7"
  7077. show = "1" >
  7078. <productMenu id="protocol"
  7079. type="2" >
  7080. </productMenu>
  7081. <productMenu id="ota"
  7082. type="2" >
  7083. <otaLanguages>
  7084. <otaLanguage
  7085. id="0"
  7086. name="English"
  7087. package="0"
  7088. />
  7089. <otaLanguage
  7090. id="0"
  7091. name="French"
  7092. package="1"
  7093. />
  7094. <otaLanguage
  7095. id="0"
  7096. name="Spanish"
  7097. package="2"
  7098. />
  7099. <otaLanguage
  7100. id="0"
  7101. name="Italian"
  7102. package="3"
  7103. />
  7104. <otaLanguage
  7105. id="0"
  7106. name="German"
  7107. package="4"
  7108. />
  7109. <otaLanguage
  7110. id="0"
  7111. name="Dutch"
  7112. package="5"
  7113. />
  7114. <otaLanguage
  7115. id="0"
  7116. name="Russian"
  7117. package="6"
  7118. />
  7119. <otaLanguage
  7120. id="0"
  7121. name="Chinese"
  7122. package="7"
  7123. />
  7124. <otaLanguage
  7125. id="0"
  7126. name="Korean"
  7127. package="8"
  7128. />
  7129. <otaLanguage
  7130. id="0"
  7131. name="Japanese"
  7132. package="9"
  7133. />
  7134. <otaLanguage
  7135. id="0"
  7136. name="Finnish"
  7137. package="10"
  7138. />
  7139. <otaLanguage
  7140. id="0"
  7141. name="Polish"
  7142. package="11"
  7143. />
  7144. </otaLanguages>
  7145. <otaPackages>
  7146. <package
  7147. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0.img"
  7148. size="5183988"
  7149. />
  7150. <package
  7151. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fr-FR.img"
  7152. size="5183988"
  7153. />
  7154. <package
  7155. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-es-ES.img"
  7156. size="5183988"
  7157. />
  7158. <package
  7159. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-it-IT.img"
  7160. size="5183988"
  7161. />
  7162. <package
  7163. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-de-DE.img"
  7164. size="5183988"
  7165. />
  7166. <package
  7167. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-nl-NL.img"
  7168. size="5183988"
  7169. />
  7170. <package
  7171. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ru-RU.img"
  7172. size="5183988"
  7173. />
  7174. <package
  7175. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-cmn-CN.img"
  7176. size="5183988"
  7177. />
  7178. <package
  7179. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ko-KR.img"
  7180. size="5183988"
  7181. />
  7182. <package
  7183. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ja-JP.img"
  7184. size="5183988"
  7185. />
  7186. <package
  7187. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fi-FI.img"
  7188. size="5183988"
  7189. />
  7190. <package
  7191. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-pl-PL.img"
  7192. size="5183988"
  7193. />
  7194. </otaPackages>
  7195. </productMenu>
  7196. <productMenu id="wa"
  7197. type="0" >
  7198. </productMenu>
  7199. <productMenu id="led"
  7200. type="5" >
  7201. </productMenu>
  7202. <productMenu id="led+"
  7203. type="2"
  7204. url="1" >
  7205. </productMenu>
  7206. <productMenu id="meshIntercom+"
  7207. type="3"
  7208. url="2" >
  7209. </productMenu>
  7210. <productMenu id="waveIntercom"
  7211. type="1" >
  7212. </productMenu>
  7213. <productMenu id="fmradio"
  7214. type="0" >
  7215. </productMenu>
  7216. <productMenu id="phone"
  7217. type="1" >
  7218. </productMenu>
  7219. <productMenu id="music"
  7220. type="1" >
  7221. </productMenu>
  7222. <productMenu id="musicSharing"
  7223. type="0" >
  7224. </productMenu>
  7225. <productMenu id="deviceSetting"
  7226. type="1"
  7227. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7228. <productMenuURL version="1.0.4"
  7229. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7230. />
  7231. </productMenu>
  7232. <productMenu id="quickGuide"
  7233. type="0"
  7234. url=""
  7235. size="1.12MB" >
  7236. </productMenu>
  7237. <productMenu id="userGuide"
  7238. type="1"
  7239. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7240. size="2.0MB" >
  7241. </productMenu>
  7242. <productMenu id="videoGuide"
  7243. type="0"
  7244. url=""
  7245. size="3.41MB" >
  7246. </productMenu>
  7247. <productMenu id="volume"
  7248. type="16" >
  7249. </productMenu>
  7250. <productMenu id="volume+"
  7251. type="2"
  7252. url="0x6004" >
  7253. </productMenu>
  7254. <productMenu id="battery"
  7255. type="1" >
  7256. </productMenu>
  7257. <productID id="6A11"
  7258. />
  7259. <productGroupable type="0"
  7260. />
  7261. </product>
  7262. <product id="SPECTER"
  7263. name="SPECTER"
  7264. series="Helmet"
  7265. latestVersion="1.0.9"
  7266. latestVersionVoicePrompt="1.7"
  7267. show = "-1" >
  7268. <productMenu id="protocol"
  7269. type="2" >
  7270. </productMenu>
  7271. <productMenu id="ota"
  7272. type="2" >
  7273. <otaLanguages>
  7274. <otaLanguage
  7275. id="0"
  7276. name="English"
  7277. package="0"
  7278. />
  7279. <otaLanguage
  7280. id="0"
  7281. name="French"
  7282. package="1"
  7283. />
  7284. <otaLanguage
  7285. id="0"
  7286. name="Spanish"
  7287. package="2"
  7288. />
  7289. <otaLanguage
  7290. id="0"
  7291. name="Italian"
  7292. package="3"
  7293. />
  7294. <otaLanguage
  7295. id="0"
  7296. name="German"
  7297. package="4"
  7298. />
  7299. <otaLanguage
  7300. id="0"
  7301. name="Dutch"
  7302. package="5"
  7303. />
  7304. <otaLanguage
  7305. id="0"
  7306. name="Russian"
  7307. package="6"
  7308. />
  7309. <otaLanguage
  7310. id="0"
  7311. name="Chinese"
  7312. package="7"
  7313. />
  7314. <otaLanguage
  7315. id="0"
  7316. name="Korean"
  7317. package="8"
  7318. />
  7319. <otaLanguage
  7320. id="0"
  7321. name="Japanese"
  7322. package="9"
  7323. />
  7324. <otaLanguage
  7325. id="0"
  7326. name="Finnish"
  7327. package="10"
  7328. />
  7329. <otaLanguage
  7330. id="0"
  7331. name="Polish"
  7332. package="11"
  7333. />
  7334. </otaLanguages>
  7335. <otaPackages>
  7336. <package
  7337. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0.img"
  7338. size="5183988"
  7339. />
  7340. <package
  7341. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fr-FR.img"
  7342. size="5183988"
  7343. />
  7344. <package
  7345. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-es-ES.img"
  7346. size="5183988"
  7347. />
  7348. <package
  7349. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-it-IT.img"
  7350. size="5183988"
  7351. />
  7352. <package
  7353. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-de-DE.img"
  7354. size="5183988"
  7355. />
  7356. <package
  7357. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-nl-NL.img"
  7358. size="5183988"
  7359. />
  7360. <package
  7361. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ru-RU.img"
  7362. size="5183988"
  7363. />
  7364. <package
  7365. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-cmn-CN.img"
  7366. size="5183988"
  7367. />
  7368. <package
  7369. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ko-KR.img"
  7370. size="5183988"
  7371. />
  7372. <package
  7373. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ja-JP.img"
  7374. size="5183988"
  7375. />
  7376. <package
  7377. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fi-FI.img"
  7378. size="5183988"
  7379. />
  7380. <package
  7381. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-pl-PL.img"
  7382. size="5183988"
  7383. />
  7384. </otaPackages>
  7385. </productMenu>
  7386. <productMenu id="wa"
  7387. type="0" >
  7388. </productMenu>
  7389. <productMenu id="led"
  7390. type="5" >
  7391. </productMenu>
  7392. <productMenu id="led+"
  7393. type="2"
  7394. url="1" >
  7395. </productMenu>
  7396. <productMenu id="meshIntercom+"
  7397. type="3"
  7398. url="2" >
  7399. </productMenu>
  7400. <productMenu id="waveIntercom"
  7401. type="1" >
  7402. </productMenu>
  7403. <productMenu id="fmradio"
  7404. type="0" >
  7405. </productMenu>
  7406. <productMenu id="phone"
  7407. type="1" >
  7408. </productMenu>
  7409. <productMenu id="music"
  7410. type="1" >
  7411. </productMenu>
  7412. <productMenu id="musicSharing"
  7413. type="0" >
  7414. </productMenu>
  7415. <productMenu id="deviceSetting"
  7416. type="1"
  7417. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7418. <productMenuURL version="1.0.4"
  7419. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7420. />
  7421. <productMenuURL version="1.0"
  7422. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7423. />
  7424. </productMenu>
  7425. <productMenu id="quickGuide"
  7426. type="0"
  7427. url=""
  7428. size="1.12MB" >
  7429. </productMenu>
  7430. <productMenu id="userGuide"
  7431. type="1"
  7432. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7433. size="2.0MB" >
  7434. </productMenu>
  7435. <productMenu id="videoGuide"
  7436. type="0"
  7437. url=""
  7438. size="3.41MB" >
  7439. </productMenu>
  7440. <productMenu id="volume"
  7441. type="16" >
  7442. </productMenu>
  7443. <productMenu id="volume+"
  7444. type="2"
  7445. url="0x6004" >
  7446. </productMenu>
  7447. <productMenu id="battery"
  7448. type="1" >
  7449. </productMenu>
  7450. <productID id="6A0A"
  7451. />
  7452. <productGroupable type="0"
  7453. />
  7454. </product>
  7455. <product id="OUTLANDER"
  7456. name="OUTLANDER"
  7457. series="Helmet"
  7458. latestVersion="1.0.9"
  7459. latestVersionVoicePrompt="1.7"
  7460. show = "1" >
  7461. <productMenu id="protocol"
  7462. type="2" >
  7463. </productMenu>
  7464. <productMenu id="ota"
  7465. type="2" >
  7466. <otaLanguages>
  7467. <otaLanguage
  7468. id="0"
  7469. name="English"
  7470. package="0"
  7471. />
  7472. <otaLanguage
  7473. id="0"
  7474. name="French"
  7475. package="1"
  7476. />
  7477. <otaLanguage
  7478. id="0"
  7479. name="Spanish"
  7480. package="2"
  7481. />
  7482. <otaLanguage
  7483. id="0"
  7484. name="Italian"
  7485. package="3"
  7486. />
  7487. <otaLanguage
  7488. id="0"
  7489. name="German"
  7490. package="4"
  7491. />
  7492. <otaLanguage
  7493. id="0"
  7494. name="Dutch"
  7495. package="5"
  7496. />
  7497. <otaLanguage
  7498. id="0"
  7499. name="Russian"
  7500. package="6"
  7501. />
  7502. <otaLanguage
  7503. id="0"
  7504. name="Chinese"
  7505. package="7"
  7506. />
  7507. <otaLanguage
  7508. id="0"
  7509. name="Korean"
  7510. package="8"
  7511. />
  7512. <otaLanguage
  7513. id="0"
  7514. name="Japanese"
  7515. package="9"
  7516. />
  7517. <otaLanguage
  7518. id="0"
  7519. name="Finnish"
  7520. package="10"
  7521. />
  7522. <otaLanguage
  7523. id="0"
  7524. name="Polish"
  7525. package="11"
  7526. />
  7527. </otaLanguages>
  7528. <otaPackages>
  7529. <package
  7530. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0.img"
  7531. size="5183988"
  7532. />
  7533. <package
  7534. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fr-FR.img"
  7535. size="5183988"
  7536. />
  7537. <package
  7538. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-es-ES.img"
  7539. size="5183988"
  7540. />
  7541. <package
  7542. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-it-IT.img"
  7543. size="5183988"
  7544. />
  7545. <package
  7546. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-de-DE.img"
  7547. size="5183988"
  7548. />
  7549. <package
  7550. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-nl-NL.img"
  7551. size="5183988"
  7552. />
  7553. <package
  7554. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ru-RU.img"
  7555. size="5183988"
  7556. />
  7557. <package
  7558. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-cmn-CN.img"
  7559. size="5183988"
  7560. />
  7561. <package
  7562. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ko-KR.img"
  7563. size="5183988"
  7564. />
  7565. <package
  7566. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ja-JP.img"
  7567. size="5183988"
  7568. />
  7569. <package
  7570. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fi-FI.img"
  7571. size="5183988"
  7572. />
  7573. <package
  7574. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-pl-PL.img"
  7575. size="5183988"
  7576. />
  7577. </otaPackages>
  7578. </productMenu>
  7579. <productMenu id="wa"
  7580. type="0" >
  7581. </productMenu>
  7582. <productMenu id="led"
  7583. type="5" >
  7584. </productMenu>
  7585. <productMenu id="led+"
  7586. type="2"
  7587. url="1" >
  7588. </productMenu>
  7589. <productMenu id="meshIntercom+"
  7590. type="3"
  7591. url="2" >
  7592. </productMenu>
  7593. <productMenu id="waveIntercom"
  7594. type="1" >
  7595. </productMenu>
  7596. <productMenu id="fmradio"
  7597. type="0" >
  7598. </productMenu>
  7599. <productMenu id="phone"
  7600. type="1" >
  7601. </productMenu>
  7602. <productMenu id="music"
  7603. type="1" >
  7604. </productMenu>
  7605. <productMenu id="musicSharing"
  7606. type="0" >
  7607. </productMenu>
  7608. <productMenu id="deviceSetting"
  7609. type="1"
  7610. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml" >
  7611. <productMenuURL version="1.0.4"
  7612. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7613. />
  7614. </productMenu>
  7615. <productMenu id="quickGuide"
  7616. type="0"
  7617. url=""
  7618. size="1.12MB" >
  7619. </productMenu>
  7620. <productMenu id="userGuide"
  7621. type="1"
  7622. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7623. size="2.0MB" >
  7624. </productMenu>
  7625. <productMenu id="videoGuide"
  7626. type="0"
  7627. url=""
  7628. size="3.41MB" >
  7629. </productMenu>
  7630. <productMenu id="volume"
  7631. type="16" >
  7632. </productMenu>
  7633. <productMenu id="volume+"
  7634. type="2"
  7635. url="0x6004" >
  7636. </productMenu>
  7637. <productMenu id="battery"
  7638. type="1" >
  7639. </productMenu>
  7640. <productID id="6A05"
  7641. />
  7642. <productGroupable type="0"
  7643. />
  7644. </product>
  7645. <product id="OUTRUSH2"
  7646. name="OUTRUSH 2"
  7647. series="Helmet"
  7648. latestVersion="1.0.3"
  7649. latestVersionVoicePrompt="1.6"
  7650. show = "1" >
  7651. <productMenu id="protocol"
  7652. type="2" >
  7653. </productMenu>
  7654. <productMenu id="alexa"
  7655. type="0" >
  7656. </productMenu>
  7657. <productMenu id="ota"
  7658. type="2" >
  7659. <otaPackages>
  7660. <package
  7661. url="https://api.sena.com/support/OTA/Motorcycles/OUTRUSH2/OUTRUSH_2-v1.0.3-build0.img"
  7662. size="2945812"
  7663. />
  7664. </otaPackages>
  7665. </productMenu>
  7666. <productMenu id="meshIntercom+"
  7667. type="3"
  7668. url="2" >
  7669. </productMenu>
  7670. <productMenu id="waveIntercom"
  7671. type="1" >
  7672. </productMenu>
  7673. <productMenu id="phone"
  7674. type="1" >
  7675. </productMenu>
  7676. <productMenu id="music"
  7677. type="1" >
  7678. </productMenu>
  7679. <productMenu id="musicSharing"
  7680. type="0" >
  7681. </productMenu>
  7682. <productMenu id="deviceSetting"
  7683. type="1"
  7684. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7685. <productMenuURL version="1.0"
  7686. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  7687. />
  7688. </productMenu>
  7689. <productMenu id="quickGuide"
  7690. type="0"
  7691. url=""
  7692. size="1.12MB" >
  7693. </productMenu>
  7694. <productMenu id="userGuide"
  7695. type="1"
  7696. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  7697. size="2.0MB" >
  7698. </productMenu>
  7699. <productMenu id="volume"
  7700. type="12" >
  7701. </productMenu>
  7702. <productMenu id="battery"
  7703. type="1" >
  7704. </productMenu>
  7705. <productID id="684A"
  7706. />
  7707. <productGroupable type="0"
  7708. />
  7709. </product>
  7710. <product id="OUTSTAR2"
  7711. name="OUTSTAR 2"
  7712. series="Helmet"
  7713. latestVersion="1.0.2"
  7714. latestVersionVoicePrompt="1.6"
  7715. show = "1" >
  7716. <productMenu id="protocol"
  7717. type="2" >
  7718. </productMenu>
  7719. <productMenu id="alexa"
  7720. type="0" >
  7721. </productMenu>
  7722. <productMenu id="ota"
  7723. type="2" >
  7724. <otaPackages>
  7725. <package
  7726. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.2-build0.img"
  7727. size="2945812"
  7728. />
  7729. </otaPackages>
  7730. </productMenu>
  7731. <productMenu id="meshIntercom+"
  7732. type="3"
  7733. url="2" >
  7734. </productMenu>
  7735. <productMenu id="waveIntercom"
  7736. type="1" >
  7737. </productMenu>
  7738. <productMenu id="phone"
  7739. type="1" >
  7740. </productMenu>
  7741. <productMenu id="music"
  7742. type="1" >
  7743. </productMenu>
  7744. <productMenu id="musicSharing"
  7745. type="0" >
  7746. </productMenu>
  7747. <productMenu id="deviceSetting"
  7748. type="1"
  7749. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7750. </productMenu>
  7751. <productMenu id="quickGuide"
  7752. type="0"
  7753. url=""
  7754. size="1.12MB" >
  7755. </productMenu>
  7756. <productMenu id="userGuide"
  7757. type="1"
  7758. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  7759. size="2.0MB" >
  7760. </productMenu>
  7761. <productMenu id="volume"
  7762. type="12" >
  7763. </productMenu>
  7764. <productMenu id="battery"
  7765. type="1" >
  7766. </productMenu>
  7767. <productID id="684B"
  7768. />
  7769. <productGroupable type="0"
  7770. />
  7771. </product>
  7772. <product id="SURGE"
  7773. name="SURGE"
  7774. series="Helmet"
  7775. latestVersion="1.2"
  7776. latestVersionVoicePrompt="1.3"
  7777. show = "1" >
  7778. <productMenu id="protocol"
  7779. type="2" >
  7780. </productMenu>
  7781. <productMenu id="alexa"
  7782. type="0" >
  7783. </productMenu>
  7784. <productMenu id="ota"
  7785. type="2" >
  7786. <otaPackages>
  7787. <package
  7788. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  7789. size="2945812"
  7790. />
  7791. </otaPackages>
  7792. </productMenu>
  7793. <productMenu id="meshIntercom"
  7794. type="30" >
  7795. </productMenu>
  7796. <productMenu id="meshIntercom+"
  7797. type="3"
  7798. url="2" >
  7799. <productMenuType version="1.0.1"
  7800. type="2"
  7801. />
  7802. </productMenu>
  7803. <productMenu id="waveIntercom"
  7804. type="1" >
  7805. <productMenuType version="1.0.9"
  7806. type="0"
  7807. />
  7808. </productMenu>
  7809. <productMenu id="phone"
  7810. type="1" >
  7811. </productMenu>
  7812. <productMenu id="music"
  7813. type="1" >
  7814. </productMenu>
  7815. <productMenu id="musicSharing"
  7816. type="0" >
  7817. </productMenu>
  7818. <productMenu id="deviceSetting"
  7819. type="1"
  7820. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  7821. <productMenuURL version="1.1.9"
  7822. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  7823. />
  7824. <productMenuURL version="1.0.1"
  7825. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  7826. />
  7827. </productMenu>
  7828. <productMenu id="quickGuide"
  7829. type="0"
  7830. url=""
  7831. size="1.12MB" >
  7832. </productMenu>
  7833. <productMenu id="userGuide"
  7834. type="1"
  7835. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  7836. size="2.0MB" >
  7837. </productMenu>
  7838. <productMenu id="volume"
  7839. type="12" >
  7840. </productMenu>
  7841. <productMenu id="battery"
  7842. type="1" >
  7843. </productMenu>
  7844. <productID id="6840"
  7845. />
  7846. <productGroupable type="0"
  7847. />
  7848. </product>
  7849. <product id="Cavalry2"
  7850. name="Cavalry 2"
  7851. series="Helmet"
  7852. latestVersion="1.2"
  7853. latestVersionVoicePrompt="1.3"
  7854. show = "1" >
  7855. <productMenu id="protocol"
  7856. type="2" >
  7857. </productMenu>
  7858. <productMenu id="alexa"
  7859. type="0" >
  7860. </productMenu>
  7861. <productMenu id="ota"
  7862. type="2" >
  7863. <otaPackages>
  7864. <package
  7865. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  7866. size="3144148"
  7867. />
  7868. </otaPackages>
  7869. </productMenu>
  7870. <productMenu id="wa"
  7871. type="0" >
  7872. </productMenu>
  7873. <productMenu id="meshIntercom"
  7874. type="30" >
  7875. </productMenu>
  7876. <productMenu id="meshIntercom+"
  7877. type="3"
  7878. url="2" >
  7879. <productMenuType version="1.0"
  7880. type="2"
  7881. />
  7882. </productMenu>
  7883. <productMenu id="waveIntercom"
  7884. type="1" >
  7885. <productMenuType version="1.0.9"
  7886. type="0"
  7887. />
  7888. </productMenu>
  7889. <productMenu id="phone"
  7890. type="1" >
  7891. </productMenu>
  7892. <productMenu id="music"
  7893. type="1" >
  7894. </productMenu>
  7895. <productMenu id="musicSharing"
  7896. type="0" >
  7897. </productMenu>
  7898. <productMenu id="deviceSetting"
  7899. type="1"
  7900. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  7901. <productMenuURL version="1.1.9"
  7902. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  7903. />
  7904. <productMenuURL version="1.0"
  7905. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  7906. />
  7907. </productMenu>
  7908. <productMenu id="quickGuide"
  7909. type="0"
  7910. url=""
  7911. size="1.12MB" >
  7912. </productMenu>
  7913. <productMenu id="userGuide"
  7914. type="1"
  7915. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  7916. size="2.0MB" >
  7917. </productMenu>
  7918. <productMenu id="connectGuide"
  7919. type="1"
  7920. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  7921. size="1.12MB" >
  7922. </productMenu>
  7923. <productMenu id="volume"
  7924. type="12" >
  7925. </productMenu>
  7926. <productMenu id="battery"
  7927. type="1" >
  7928. </productMenu>
  7929. <productID id="6839"
  7930. />
  7931. <productGroupable type="0"
  7932. />
  7933. </product>
  7934. <product id="Cavalry"
  7935. name="Cavalry"
  7936. series="Helmet"
  7937. latestVersion="1.2.2"
  7938. show = "1" >
  7939. <productMenu id="protocol"
  7940. type="0">
  7941. </productMenu>
  7942. <productMenu id="sip"
  7943. type="1" >
  7944. </productMenu>
  7945. <productMenu id="bluetoothIntercom"
  7946. type="1" >
  7947. </productMenu>
  7948. <productMenu id="phone"
  7949. type="2" >
  7950. </productMenu>
  7951. <productMenu id="fmradio"
  7952. type="3" >
  7953. </productMenu>
  7954. <productMenu id="deviceSetting"
  7955. type="1"
  7956. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  7957. <productMenuURL version="1.9"
  7958. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  7959. />
  7960. <productMenuURL version="1.0.1"
  7961. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  7962. />
  7963. </productMenu>
  7964. <productMenu id="quickGuide"
  7965. type="1"
  7966. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  7967. size="795KB" >
  7968. </productMenu>
  7969. <productMenu id="userGuide"
  7970. type="1"
  7971. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  7972. size="1.87MB" >
  7973. </productMenu>
  7974. <productMenu id="connectGuide"
  7975. type="1"
  7976. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7977. size="1.12MB" >
  7978. </productMenu>
  7979. <productID id="5524"
  7980. />
  7981. <productGroupable type="0"
  7982. />
  7983. </product>
  7984. <product id="Cavalry_Lite"
  7985. name="Cavalry Lite"
  7986. series="Helmet"
  7987. latestVersion="1.0.2"
  7988. show = "1" >
  7989. <productMenu id="protocol"
  7990. type="0">
  7991. </productMenu>
  7992. <productMenu id="sip"
  7993. type="1" >
  7994. </productMenu>
  7995. <productMenu id="bluetoothIntercom"
  7996. type="1" >
  7997. </productMenu>
  7998. <productMenu id="phone"
  7999. type="2" >
  8000. </productMenu>
  8001. <productMenu id="fmradio"
  8002. type="3" >
  8003. </productMenu>
  8004. <productMenu id="deviceSetting"
  8005. type="1"
  8006. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  8007. </productMenu>
  8008. <productMenu id="userGuide"
  8009. type="1"
  8010. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  8011. size="1.74MB" >
  8012. </productMenu>
  8013. <productMenu id="connectGuide"
  8014. type="1"
  8015. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8016. size="1.12MB" >
  8017. </productMenu>
  8018. <productID id="5536"
  8019. />
  8020. <productGroupable type="0"
  8021. />
  8022. </product>
  8023. <product id="VORTEX"
  8024. name="VORTEX"
  8025. series="VORTEX"
  8026. latestVersion="1.0"
  8027. latestVersionVoicePrompt="1.0"
  8028. show = "1" >
  8029. <productMenu id="protocol"
  8030. type="2" >
  8031. </productMenu>
  8032. <productMenu id="warranty"
  8033. type="1" >
  8034. </productMenu>
  8035. <productMenu id="serialNumber"
  8036. type="1" >
  8037. </productMenu>
  8038. <productMenu id="ota"
  8039. type="2" >
  8040. <otaLanguages>
  8041. <otaLanguage
  8042. id="0"
  8043. name="English"
  8044. package="0"
  8045. />
  8046. <otaLanguage
  8047. id="0"
  8048. name="French"
  8049. package="1"
  8050. />
  8051. <otaLanguage
  8052. id="0"
  8053. name="Spanish"
  8054. package="2"
  8055. />
  8056. <otaLanguage
  8057. id="0"
  8058. name="Italian"
  8059. package="3"
  8060. />
  8061. <otaLanguage
  8062. id="0"
  8063. name="German"
  8064. package="4"
  8065. />
  8066. <otaLanguage
  8067. id="0"
  8068. name="Dutch"
  8069. package="5"
  8070. />
  8071. <otaLanguage
  8072. id="0"
  8073. name="Russian"
  8074. package="6"
  8075. />
  8076. <otaLanguage
  8077. id="0"
  8078. name="Chinese"
  8079. package="7"
  8080. />
  8081. <otaLanguage
  8082. id="0"
  8083. name="Korean"
  8084. package="8"
  8085. />
  8086. <otaLanguage
  8087. id="0"
  8088. name="Japanese"
  8089. package="9"
  8090. />
  8091. <otaLanguage
  8092. id="0"
  8093. name="Finnish"
  8094. package="10"
  8095. />
  8096. <otaLanguage
  8097. id="0"
  8098. name="Polish"
  8099. package="11"
  8100. />
  8101. </otaLanguages>
  8102. <otaPackages>
  8103. <package
  8104. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4.img"
  8105. size="5183988"
  8106. />
  8107. <package
  8108. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fr-FR.img"
  8109. size="5183988"
  8110. />
  8111. <package
  8112. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-es-ES.img"
  8113. size="5183988"
  8114. />
  8115. <package
  8116. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-it-IT.img"
  8117. size="5183988"
  8118. />
  8119. <package
  8120. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-de-DE.img"
  8121. size="5183988"
  8122. />
  8123. <package
  8124. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-nl-NL.img"
  8125. size="5183988"
  8126. />
  8127. <package
  8128. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ru-RU.img"
  8129. size="5183988"
  8130. />
  8131. <package
  8132. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-cmn-CN.img"
  8133. size="5183988"
  8134. />
  8135. <package
  8136. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ko-KR.img"
  8137. size="5183988"
  8138. />
  8139. <package
  8140. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ja-JP.img"
  8141. size="5183988"
  8142. />
  8143. <package
  8144. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fi-FI.img"
  8145. size="5183988"
  8146. />
  8147. <package
  8148. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-pl-PL.img"
  8149. size="5183988"
  8150. />
  8151. </otaPackages>
  8152. </productMenu>
  8153. <productMenu id="sip"
  8154. type="1" >
  8155. </productMenu>
  8156. <productMenu id="bluetoothIntercom"
  8157. type="1" >
  8158. </productMenu>
  8159. <productMenu id="phone"
  8160. type="1" >
  8161. </productMenu>
  8162. <productMenu id="music"
  8163. type="1" >
  8164. </productMenu>
  8165. <productMenu id="fmradio"
  8166. type="1"
  8167. url="1" >
  8168. </productMenu>
  8169. <productMenu id="deviceSetting"
  8170. type="1"
  8171. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8172. </productMenu>
  8173. <productMenu id="quickGuide"
  8174. type="0"
  8175. url=""
  8176. size="934KB" >
  8177. </productMenu>
  8178. <productMenu id="userGuide"
  8179. type="1"
  8180. url=""
  8181. size="1.14MB" >
  8182. </productMenu>
  8183. <productMenu id="connectGuide"
  8184. type="0"
  8185. url=""
  8186. size="1.12MB" >
  8187. </productMenu>
  8188. <productMenu id="volume"
  8189. type="15" >
  8190. </productMenu>
  8191. <productMenu id="appearance"
  8192. type="1"
  8193. url="1|white,silver,black" >
  8194. </productMenu>
  8195. <productID id="3451"
  8196. />
  8197. <productGroupable type="0"
  8198. />
  8199. </product>
  8200. <product id="SF4"
  8201. name="SF4"
  8202. series="SF"
  8203. latestVersion="1.1.5"
  8204. show = "-1" >
  8205. <productMenu id="protocol"
  8206. type="1"
  8207. url="3">
  8208. </productMenu>
  8209. <productMenu id="sip"
  8210. type="1" >
  8211. </productMenu>
  8212. <productMenu id="bluetoothIntercom"
  8213. type="1" >
  8214. </productMenu>
  8215. <productMenu id="phone"
  8216. type="1" >
  8217. </productMenu>
  8218. <productMenu id="music"
  8219. type="1" >
  8220. </productMenu>
  8221. <productMenu id="fmradio"
  8222. type="1" >
  8223. </productMenu>
  8224. <productMenu id="deviceSetting"
  8225. type="1"
  8226. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8227. <productMenuURL version="1.0.1"
  8228. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8229. />
  8230. </productMenu>
  8231. <productMenu id="quickGuide"
  8232. type="1"
  8233. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8234. size="607KB" >
  8235. </productMenu>
  8236. <productMenu id="userGuide"
  8237. type="1"
  8238. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8239. size="1.91MB" >
  8240. </productMenu>
  8241. <productMenu id="volume"
  8242. type="4" >
  8243. </productMenu>
  8244. <productID id="5414"
  8245. />
  8246. <productGroupable type="0"
  8247. />
  8248. </product>
  8249. <product id="SF4"
  8250. name="SF4"
  8251. series="SF"
  8252. latestVersion="3.4.4"
  8253. show = "1" >
  8254. <productMenu id="protocol"
  8255. type="2" >
  8256. </productMenu>
  8257. <productMenu id="sip"
  8258. type="1" >
  8259. </productMenu>
  8260. <productMenu id="bluetoothIntercom"
  8261. type="1" >
  8262. </productMenu>
  8263. <productMenu id="phone"
  8264. type="1" >
  8265. </productMenu>
  8266. <productMenu id="music"
  8267. type="1" >
  8268. </productMenu>
  8269. <productMenu id="fmradio"
  8270. type="1" >
  8271. </productMenu>
  8272. <productMenu id="deviceSetting"
  8273. type="1"
  8274. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8275. <productMenuURL version="3.0"
  8276. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8277. />
  8278. </productMenu>
  8279. <productMenu id="quickGuide"
  8280. type="0"
  8281. url=""
  8282. size="934KB" >
  8283. </productMenu>
  8284. <productMenu id="userGuide"
  8285. type="1"
  8286. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8287. size="1.14MB" >
  8288. </productMenu>
  8289. <productMenu id="connectGuide"
  8290. type="1"
  8291. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8292. size="1.12MB" >
  8293. </productMenu>
  8294. <productMenu id="volume"
  8295. type="15" >
  8296. </productMenu>
  8297. <productID id="3370"
  8298. />
  8299. <productGroupable type="0"
  8300. />
  8301. </product>
  8302. <product id="SF2"
  8303. name="SF2"
  8304. series="SF"
  8305. latestVersion="1.2.1"
  8306. show = "-1" >
  8307. <productMenu id="protocol"
  8308. type="1"
  8309. url="2">
  8310. </productMenu>
  8311. <productMenu id="sip"
  8312. type="1" >
  8313. </productMenu>
  8314. <productMenu id="bluetoothIntercom"
  8315. type="1" >
  8316. </productMenu>
  8317. <productMenu id="phone"
  8318. type="1" >
  8319. </productMenu>
  8320. <productMenu id="music"
  8321. type="1" >
  8322. </productMenu>
  8323. <productMenu id="fmradio"
  8324. type="1" >
  8325. </productMenu>
  8326. <productMenu id="deviceSetting"
  8327. type="1"
  8328. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8329. <productMenuURL version="1.0.1"
  8330. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8331. />
  8332. </productMenu>
  8333. <productMenu id="quickGuide"
  8334. type="1"
  8335. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8336. size="607KB" >
  8337. </productMenu>
  8338. <productMenu id="userGuide"
  8339. type="1"
  8340. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8341. size="1.91MB" >
  8342. </productMenu>
  8343. <productMenu id="volume"
  8344. type="4" >
  8345. </productMenu>
  8346. <productID id="5412"
  8347. />
  8348. <productGroupable type="0"
  8349. />
  8350. </product>
  8351. <product id="SF2"
  8352. name="SF2"
  8353. series="SF"
  8354. latestVersion="3.3.4"
  8355. show = "1" >
  8356. <productMenu id="protocol"
  8357. type="2" >
  8358. </productMenu>
  8359. <productMenu id="sip"
  8360. type="1" >
  8361. </productMenu>
  8362. <productMenu id="bluetoothIntercom"
  8363. type="1" >
  8364. </productMenu>
  8365. <productMenu id="phone"
  8366. type="1" >
  8367. </productMenu>
  8368. <productMenu id="music"
  8369. type="1" >
  8370. </productMenu>
  8371. <productMenu id="fmradio"
  8372. type="0" >
  8373. </productMenu>
  8374. <productMenu id="deviceSetting"
  8375. type="1"
  8376. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8377. <productMenuURL version="3.0"
  8378. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8379. />
  8380. </productMenu>
  8381. <productMenu id="quickGuide"
  8382. type="0"
  8383. url=""
  8384. size="934KB" >
  8385. </productMenu>
  8386. <productMenu id="userGuide"
  8387. type="1"
  8388. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8389. size="1.14MB" >
  8390. </productMenu>
  8391. <productMenu id="connectGuide"
  8392. type="1"
  8393. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8394. size="1.12MB" >
  8395. </productMenu>
  8396. <productMenu id="volume"
  8397. type="15" >
  8398. </productMenu>
  8399. <productID id="3360"
  8400. />
  8401. <productGroupable type="0"
  8402. />
  8403. </product>
  8404. <product id="SF1"
  8405. name="SF1"
  8406. series="SF"
  8407. latestVersion="2.0.5"
  8408. show = "-1" >
  8409. <productMenu id="protocol"
  8410. type="1"
  8411. url="1">
  8412. </productMenu>
  8413. <productMenu id="sip"
  8414. type="1" >
  8415. </productMenu>
  8416. <productMenu id="bluetoothIntercom"
  8417. type="1" >
  8418. <productMenuType version="1.1"
  8419. type="0"
  8420. />
  8421. </productMenu>
  8422. <productMenu id="phone"
  8423. type="1" >
  8424. </productMenu>
  8425. <productMenu id="music"
  8426. type="1" >
  8427. </productMenu>
  8428. <productMenu id="deviceSetting"
  8429. type="1"
  8430. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8431. <productMenuURL version="1.1"
  8432. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8433. />
  8434. <productMenuURL version="1.0"
  8435. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8436. />
  8437. </productMenu>
  8438. <productMenu id="quickGuide"
  8439. type="1"
  8440. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8441. size="401KB" >
  8442. </productMenu>
  8443. <productMenu id="userGuide"
  8444. type="1"
  8445. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8446. size="1.91MB" >
  8447. </productMenu>
  8448. <productMenu id="volume"
  8449. type="3" >
  8450. </productMenu>
  8451. <productID id="5410"
  8452. />
  8453. <productGroupable type="0"
  8454. />
  8455. </product>
  8456. <product id="SF1"
  8457. name="SF1"
  8458. series="SF"
  8459. latestVersion="3.3.4"
  8460. show = "1" >
  8461. <productMenu id="protocol"
  8462. type="2" >
  8463. </productMenu>
  8464. <productMenu id="sip"
  8465. type="1" >
  8466. </productMenu>
  8467. <productMenu id="bluetoothIntercom"
  8468. type="1" >
  8469. </productMenu>
  8470. <productMenu id="phone"
  8471. type="1" >
  8472. </productMenu>
  8473. <productMenu id="music"
  8474. type="1" >
  8475. </productMenu>
  8476. <productMenu id="fmradio"
  8477. type="0" >
  8478. </productMenu>
  8479. <productMenu id="deviceSetting"
  8480. type="1"
  8481. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8482. <productMenuURL version="3.0"
  8483. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8484. />
  8485. </productMenu>
  8486. <productMenu id="quickGuide"
  8487. type="0"
  8488. url=""
  8489. size="934KB" >
  8490. </productMenu>
  8491. <productMenu id="userGuide"
  8492. type="1"
  8493. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8494. size="1.14MB" >
  8495. </productMenu>
  8496. <productMenu id="connectGuide"
  8497. type="1"
  8498. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8499. size="1.12MB" >
  8500. </productMenu>
  8501. <productMenu id="volume"
  8502. type="15" >
  8503. </productMenu>
  8504. <productID id="3350"
  8505. />
  8506. <productGroupable type="0"
  8507. />
  8508. </product>
  8509. <product id="SFR"
  8510. name="SFR"
  8511. series="SF"
  8512. latestVersion="1.1.1"
  8513. show = "1" >
  8514. <productMenu id="protocol"
  8515. type="1"
  8516. url="3">
  8517. </productMenu>
  8518. <productMenu id="sip"
  8519. type="1" >
  8520. </productMenu>
  8521. <productMenu id="bluetoothIntercom"
  8522. type="1" >
  8523. </productMenu>
  8524. <productMenu id="phone"
  8525. type="1" >
  8526. </productMenu>
  8527. <productMenu id="music"
  8528. type="1" >
  8529. </productMenu>
  8530. <productMenu id="fmradio"
  8531. type="1" >
  8532. </productMenu>
  8533. <productMenu id="deviceSetting"
  8534. type="1"
  8535. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8536. </productMenu>
  8537. <productMenu id="quickGuide"
  8538. type="1"
  8539. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8540. size="607KB" >
  8541. </productMenu>
  8542. <productMenu id="userGuide"
  8543. type="1"
  8544. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8545. size="1.91MB" >
  8546. </productMenu>
  8547. <productMenu id="volume"
  8548. type="4" >
  8549. </productMenu>
  8550. <productID id="5418"
  8551. />
  8552. <productGroupable type="0"
  8553. />
  8554. </product>
  8555. <product id="20S"
  8556. name="20S"
  8557. series="20"
  8558. latestVersion="2.2.3"
  8559. show = "1" >
  8560. <productMenu id="protocol"
  8561. type="0">
  8562. </productMenu>
  8563. <productMenu id="wa"
  8564. type="5" >
  8565. </productMenu>
  8566. <productMenu id="sip"
  8567. type="1" >
  8568. <productMenuType version="1.0"
  8569. type="0"
  8570. />
  8571. </productMenu>
  8572. <productMenu id="bluetoothIntercom"
  8573. type="1" >
  8574. <productMenuType version="1.0"
  8575. type="0"
  8576. />
  8577. </productMenu>
  8578. <productMenu id="intercomSetting"
  8579. type="1" >
  8580. </productMenu>
  8581. <productMenu id="phone"
  8582. type="2" >
  8583. </productMenu>
  8584. <productMenu id="fmradio"
  8585. type="3" >
  8586. </productMenu>
  8587. <productMenu id="deviceSetting"
  8588. type="1"
  8589. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8590. <productMenuURL version="2.0.2"
  8591. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8592. />
  8593. <productMenuURL version="1.5"
  8594. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8595. />
  8596. <productMenuURL version="1.4.1"
  8597. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8598. />
  8599. <productMenuURL version="1.1"
  8600. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8601. />
  8602. <productMenuURL version="1.0"
  8603. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8604. />
  8605. </productMenu>
  8606. <productMenu id="quickGuide"
  8607. type="0"
  8608. url=""
  8609. size="264KB" >
  8610. </productMenu>
  8611. <productMenu id="userGuide"
  8612. type="1"
  8613. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8614. size="3.09MB" >
  8615. </productMenu>
  8616. <productMenu id="connectGuide"
  8617. type="1"
  8618. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8619. size="1.12MB" >
  8620. </productMenu>
  8621. <productID id="4210"
  8622. />
  8623. <productGroupable type="1"
  8624. />
  8625. </product>
  8626. <product id="20S_EVO"
  8627. name="20S EVO"
  8628. series="20"
  8629. latestVersion="2.2.3"
  8630. show = "1" >
  8631. <productMenu id="protocol"
  8632. type="0">
  8633. </productMenu>
  8634. <productMenu id="wa"
  8635. type="5" >
  8636. </productMenu>
  8637. <productMenu id="sip"
  8638. type="1" >
  8639. <productMenuType version="1.0"
  8640. type="0"
  8641. />
  8642. </productMenu>
  8643. <productMenu id="bluetoothIntercom"
  8644. type="1" >
  8645. <productMenuType version="1.0"
  8646. type="0"
  8647. />
  8648. </productMenu>
  8649. <productMenu id="intercomSetting"
  8650. type="1" >
  8651. </productMenu>
  8652. <productMenu id="phone"
  8653. type="2" >
  8654. </productMenu>
  8655. <productMenu id="fmradio"
  8656. type="3" >
  8657. </productMenu>
  8658. <productMenu id="deviceSetting"
  8659. type="1"
  8660. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8661. <productMenuURL version="2.0.2"
  8662. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8663. />
  8664. <productMenuURL version="1.5"
  8665. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8666. />
  8667. <productMenuURL version="1.4.1"
  8668. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8669. />
  8670. <productMenuURL version="1.1"
  8671. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8672. />
  8673. <productMenuURL version="1.0"
  8674. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8675. />
  8676. </productMenu>
  8677. <productMenu id="quickGuide"
  8678. type="0"
  8679. url=""
  8680. size="264KB" >
  8681. </productMenu>
  8682. <productMenu id="userGuide"
  8683. type="1"
  8684. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8685. size="3.09MB" >
  8686. </productMenu>
  8687. <productMenu id="connectGuide"
  8688. type="1"
  8689. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8690. size="1.12MB" >
  8691. </productMenu>
  8692. <productID id="4210"
  8693. />
  8694. <productProductKey key="16"
  8695. />
  8696. <productGroupable type="1"
  8697. />
  8698. </product>
  8699. <product id="10S"
  8700. name="10S"
  8701. series="10"
  8702. latestVersion="3.0.2"
  8703. show = "1" >
  8704. <productMenu id="protocol"
  8705. type="3" >
  8706. </productMenu>
  8707. <productMenu id="sip"
  8708. type="1" >
  8709. </productMenu>
  8710. <productMenu id="bluetoothIntercom"
  8711. type="1" >
  8712. </productMenu>
  8713. <productMenu id="phone"
  8714. type="1" >
  8715. </productMenu>
  8716. <productMenu id="deviceSetting"
  8717. type="1"
  8718. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  8719. </productMenu>
  8720. <productMenu id="quickGuide"
  8721. type="1"
  8722. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  8723. size="934KB" >
  8724. </productMenu>
  8725. <productMenu id="userGuide"
  8726. type="1"
  8727. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  8728. size="1.14MB" >
  8729. </productMenu>
  8730. <productMenu id="connectGuide"
  8731. type="1"
  8732. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  8733. size="1.12MB" >
  8734. </productMenu>
  8735. <productID id="3380"
  8736. />
  8737. <productGroupable type="0"
  8738. />
  8739. </product>
  8740. <product id="10S"
  8741. name="10S"
  8742. series="10"
  8743. latestVersion="2.1.1"
  8744. show = "-1" >
  8745. <productMenu id="protocol"
  8746. type="0">
  8747. </productMenu>
  8748. <productMenu id="sip"
  8749. type="1" >
  8750. </productMenu>
  8751. <productMenu id="bluetoothIntercom"
  8752. type="1" >
  8753. </productMenu>
  8754. <productMenu id="phone"
  8755. type="2" >
  8756. </productMenu>
  8757. <productMenu id="fmradio"
  8758. type="3" >
  8759. </productMenu>
  8760. <productMenu id="deviceSetting"
  8761. type="1"
  8762. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  8763. <productMenuURL version="1.5"
  8764. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  8765. />
  8766. <productMenuURL version="1.3.1"
  8767. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  8768. />
  8769. </productMenu>
  8770. <productMenu id="quickGuide"
  8771. type="1"
  8772. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  8773. size="310KB" >
  8774. </productMenu>
  8775. <productMenu id="userGuide"
  8776. type="1"
  8777. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  8778. size="1.57MB" >
  8779. </productMenu>
  8780. <productID id="5530"
  8781. />
  8782. <productGroupable type="0"
  8783. />
  8784. </product>
  8785. <product id="Apex"
  8786. name="Apex"
  8787. series="Apex"
  8788. latestVersion="1.0"
  8789. latestVersionVoicePrompt="1.0"
  8790. show = "-1" >
  8791. <productMenu id="protocol"
  8792. type="2" >
  8793. </productMenu>
  8794. <productMenu id="serialNumber"
  8795. type="1" >
  8796. </productMenu>
  8797. <productMenu id="ota"
  8798. type="0" >
  8799. <otaLanguages>
  8800. <otaLanguage
  8801. id="0"
  8802. name="English"
  8803. package="0"
  8804. />
  8805. <otaLanguage
  8806. id="0"
  8807. name="French"
  8808. package="1"
  8809. />
  8810. <otaLanguage
  8811. id="0"
  8812. name="Spanish"
  8813. package="2"
  8814. />
  8815. <otaLanguage
  8816. id="0"
  8817. name="Italian"
  8818. package="3"
  8819. />
  8820. <otaLanguage
  8821. id="0"
  8822. name="German"
  8823. package="4"
  8824. />
  8825. <otaLanguage
  8826. id="0"
  8827. name="Dutch"
  8828. package="5"
  8829. />
  8830. <otaLanguage
  8831. id="0"
  8832. name="Russian"
  8833. package="6"
  8834. />
  8835. <otaLanguage
  8836. id="0"
  8837. name="Chinese"
  8838. package="7"
  8839. />
  8840. <otaLanguage
  8841. id="0"
  8842. name="Korean"
  8843. package="8"
  8844. />
  8845. <otaLanguage
  8846. id="0"
  8847. name="Japanese"
  8848. package="9"
  8849. />
  8850. <otaLanguage
  8851. id="0"
  8852. name="Finnish"
  8853. package="10"
  8854. />
  8855. <otaLanguage
  8856. id="0"
  8857. name="Polish"
  8858. package="11"
  8859. />
  8860. </otaLanguages>
  8861. <otaPackages>
  8862. <package
  8863. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0.img"
  8864. size="5183988"
  8865. />
  8866. <package
  8867. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fr-FR.img"
  8868. size="5183988"
  8869. />
  8870. <package
  8871. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-es-ES.img"
  8872. size="5183988"
  8873. />
  8874. <package
  8875. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-it-IT.img"
  8876. size="5183988"
  8877. />
  8878. <package
  8879. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-de-DE.img"
  8880. size="5183988"
  8881. />
  8882. <package
  8883. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-nl-NL.img"
  8884. size="5183988"
  8885. />
  8886. <package
  8887. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ru-RU.img"
  8888. size="5183988"
  8889. />
  8890. <package
  8891. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-cmn-CN.img"
  8892. size="5183988"
  8893. />
  8894. <package
  8895. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ko-KR.img"
  8896. size="5183988"
  8897. />
  8898. <package
  8899. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ja-JP.img"
  8900. size="5183988"
  8901. />
  8902. <package
  8903. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fi-FI.img"
  8904. size="5183988"
  8905. />
  8906. <package
  8907. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-pl-PL.img"
  8908. size="5183988"
  8909. />
  8910. </otaPackages>
  8911. </productMenu>
  8912. <productMenu id="sip"
  8913. type="1" >
  8914. </productMenu>
  8915. <productMenu id="bluetoothIntercom"
  8916. type="1" >
  8917. </productMenu>
  8918. <productMenu id="phone"
  8919. type="1" >
  8920. </productMenu>
  8921. <productMenu id="music"
  8922. type="1" >
  8923. </productMenu>
  8924. <productMenu id="fmradio"
  8925. type="1"
  8926. url="1" >
  8927. </productMenu>
  8928. <productMenu id="deviceSetting"
  8929. type="1"
  8930. url="https://api.sena.com/support/test/xml/NS_Apex_test_03.xml" >
  8931. </productMenu>
  8932. <productMenu id="quickGuide"
  8933. type="0"
  8934. url=""
  8935. size="934KB" >
  8936. </productMenu>
  8937. <productMenu id="userGuide"
  8938. type="1"
  8939. url=""
  8940. size="1.14MB" >
  8941. </productMenu>
  8942. <productMenu id="volume"
  8943. type="15" >
  8944. </productMenu>
  8945. <productID id="3452"
  8946. />
  8947. <productGroupable type="0"
  8948. />
  8949. </product>
  8950. <product id="ApexPlus"
  8951. name="Apex Plus"
  8952. series="Apex"
  8953. latestVersion="1.0"
  8954. latestVersionVoicePrompt="1.0"
  8955. show = "-1" >
  8956. <productMenu id="protocol"
  8957. type="2" >
  8958. </productMenu>
  8959. <productMenu id="serialNumber"
  8960. type="1" >
  8961. </productMenu>
  8962. <productMenu id="ota"
  8963. type="0" >
  8964. <otaLanguages>
  8965. <otaLanguage
  8966. id="0"
  8967. name="English"
  8968. package="0"
  8969. />
  8970. <otaLanguage
  8971. id="0"
  8972. name="French"
  8973. package="1"
  8974. />
  8975. <otaLanguage
  8976. id="0"
  8977. name="Spanish"
  8978. package="2"
  8979. />
  8980. <otaLanguage
  8981. id="0"
  8982. name="Italian"
  8983. package="3"
  8984. />
  8985. <otaLanguage
  8986. id="0"
  8987. name="German"
  8988. package="4"
  8989. />
  8990. <otaLanguage
  8991. id="0"
  8992. name="Dutch"
  8993. package="5"
  8994. />
  8995. <otaLanguage
  8996. id="0"
  8997. name="Russian"
  8998. package="6"
  8999. />
  9000. <otaLanguage
  9001. id="0"
  9002. name="Chinese"
  9003. package="7"
  9004. />
  9005. <otaLanguage
  9006. id="0"
  9007. name="Korean"
  9008. package="8"
  9009. />
  9010. <otaLanguage
  9011. id="0"
  9012. name="Japanese"
  9013. package="9"
  9014. />
  9015. <otaLanguage
  9016. id="0"
  9017. name="Finnish"
  9018. package="10"
  9019. />
  9020. <otaLanguage
  9021. id="0"
  9022. name="Polish"
  9023. package="11"
  9024. />
  9025. </otaLanguages>
  9026. <otaPackages>
  9027. <package
  9028. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0.img"
  9029. size="5183988"
  9030. />
  9031. <package
  9032. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fr-FR.img"
  9033. size="5183988"
  9034. />
  9035. <package
  9036. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-es-ES.img"
  9037. size="5183988"
  9038. />
  9039. <package
  9040. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-it-IT.img"
  9041. size="5183988"
  9042. />
  9043. <package
  9044. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-de-DE.img"
  9045. size="5183988"
  9046. />
  9047. <package
  9048. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-nl-NL.img"
  9049. size="5183988"
  9050. />
  9051. <package
  9052. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ru-RU.img"
  9053. size="5183988"
  9054. />
  9055. <package
  9056. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-cmn-CN.img"
  9057. size="5183988"
  9058. />
  9059. <package
  9060. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ko-KR.img"
  9061. size="5183988"
  9062. />
  9063. <package
  9064. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ja-JP.img"
  9065. size="5183988"
  9066. />
  9067. <package
  9068. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fi-FI.img"
  9069. size="5183988"
  9070. />
  9071. <package
  9072. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-pl-PL.img"
  9073. size="5183988"
  9074. />
  9075. </otaPackages>
  9076. </productMenu>
  9077. <productMenu id="sip"
  9078. type="1" >
  9079. </productMenu>
  9080. <productMenu id="bluetoothIntercom"
  9081. type="1" >
  9082. </productMenu>
  9083. <productMenu id="phone"
  9084. type="1" >
  9085. </productMenu>
  9086. <productMenu id="music"
  9087. type="1" >
  9088. </productMenu>
  9089. <productMenu id="fmradio"
  9090. type="1"
  9091. url="1" >
  9092. </productMenu>
  9093. <productMenu id="deviceSetting"
  9094. type="1"
  9095. url="https://api.sena.com/support/test/xml/NS_Apex_test_03.xml" >
  9096. </productMenu>
  9097. <productMenu id="quickGuide"
  9098. type="0"
  9099. url=""
  9100. size="934KB" >
  9101. </productMenu>
  9102. <productMenu id="userGuide"
  9103. type="1"
  9104. url=""
  9105. size="1.14MB" >
  9106. </productMenu>
  9107. <productMenu id="volume"
  9108. type="15" >
  9109. </productMenu>
  9110. <productID id="3453"
  9111. />
  9112. <productGroupable type="0"
  9113. />
  9114. </product>
  9115. <product id="10R2"
  9116. name="10R 2"
  9117. series="10"
  9118. latestVersion="0.9"
  9119. latestVersionVoicePrompt="1.1"
  9120. show = "-1" >
  9121. <productMenu id="protocol"
  9122. type="2" >
  9123. </productMenu>
  9124. <productMenu id="ota"
  9125. type="2" >
  9126. <otaPackages>
  9127. <package
  9128. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9129. size="2945812"
  9130. />
  9131. </otaPackages>
  9132. </productMenu>
  9133. <productMenu id="sip"
  9134. type="1" >
  9135. </productMenu>
  9136. <productMenu id="bluetoothIntercom"
  9137. type="1" >
  9138. </productMenu>
  9139. <productMenu id="phone"
  9140. type="1" >
  9141. </productMenu>
  9142. <productMenu id="music"
  9143. type="1" >
  9144. </productMenu>
  9145. <productMenu id="fmradio"
  9146. type="1"
  9147. url="1" >
  9148. </productMenu>
  9149. <productMenu id="deviceSetting"
  9150. type="1"
  9151. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9152. </productMenu>
  9153. <productMenu id="quickGuide"
  9154. type="1"
  9155. url=""
  9156. size="934KB" >
  9157. </productMenu>
  9158. <productMenu id="userGuide"
  9159. type="0"
  9160. url=""
  9161. size="1.14MB" >
  9162. </productMenu>
  9163. <productMenu id="volume"
  9164. type="15" >
  9165. </productMenu>
  9166. <productID id="4000"
  9167. />
  9168. <productGroupable type="0"
  9169. />
  9170. </product>
  9171. <product id="10R"
  9172. name="10R"
  9173. series="10"
  9174. latestVersion="2.1.1"
  9175. show = "1" >
  9176. <productMenu id="protocol"
  9177. type="0">
  9178. </productMenu>
  9179. <productMenu id="sip"
  9180. type="1" >
  9181. <productMenuType version="1.0.2"
  9182. type="0"
  9183. />
  9184. </productMenu>
  9185. <productMenu id="bluetoothIntercom"
  9186. type="1" >
  9187. <productMenuType version="1.0.2"
  9188. type="0"
  9189. />
  9190. </productMenu>
  9191. <productMenu id="phone"
  9192. type="2" >
  9193. </productMenu>
  9194. <productMenu id="fmradio"
  9195. type="3" >
  9196. </productMenu>
  9197. <productMenu id="deviceSetting"
  9198. type="1"
  9199. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9200. <productMenuURL version="1.4"
  9201. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9202. />
  9203. <productMenuURL version="1.2.1"
  9204. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9205. />
  9206. <productMenuURL version="1.0.2"
  9207. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9208. />
  9209. <productMenuURL version="1.0"
  9210. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9211. />
  9212. </productMenu>
  9213. <productMenu id="quickGuide"
  9214. type="1"
  9215. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9216. size="400KB" >
  9217. </productMenu>
  9218. <productMenu id="userGuide"
  9219. type="1"
  9220. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9221. size="2.75MB" >
  9222. </productMenu>
  9223. <productMenu id="connectGuide"
  9224. type="1"
  9225. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9226. size="1.12MB" >
  9227. </productMenu>
  9228. <productID id="5520"
  9229. />
  9230. <productGroupable type="0"
  9231. />
  9232. </product>
  9233. <product id="10C_EVO"
  9234. name="10C EVO"
  9235. series="10"
  9236. latestVersion="1.7"
  9237. show = "1" >
  9238. <productMenu id="protocol"
  9239. type="0">
  9240. </productMenu>
  9241. <productMenu id="sip"
  9242. type="1" >
  9243. </productMenu>
  9244. <productMenu id="bluetoothIntercom"
  9245. type="1" >
  9246. </productMenu>
  9247. <productMenu id="phone"
  9248. type="2" >
  9249. </productMenu>
  9250. <productMenu id="fmradio"
  9251. type="3" >
  9252. </productMenu>
  9253. <productMenu id="deviceSetting"
  9254. type="1"
  9255. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9256. <productMenuURL version="1.3.1"
  9257. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9258. />
  9259. </productMenu>
  9260. <productMenu id="quickGuide"
  9261. type="1"
  9262. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9263. size="1.32MB" >
  9264. </productMenu>
  9265. <productMenu id="userGuide"
  9266. type="1"
  9267. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9268. size="1.68MB" >
  9269. </productMenu>
  9270. <productMenu id="connectGuide"
  9271. type="1"
  9272. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9273. size="1.12MB" >
  9274. </productMenu>
  9275. <productID id="5570"
  9276. />
  9277. <productGroupable type="0"
  9278. />
  9279. </product>
  9280. <product id="10C_Pro"
  9281. name="10C Pro"
  9282. series="10"
  9283. latestVersion="2.7.1"
  9284. show = "1" >
  9285. <productMenu id="protocol"
  9286. type="0">
  9287. </productMenu>
  9288. <productMenu id="sip"
  9289. type="1" >
  9290. </productMenu>
  9291. <productMenu id="bluetoothIntercom"
  9292. type="1" >
  9293. </productMenu>
  9294. <productMenu id="phone"
  9295. type="2" >
  9296. </productMenu>
  9297. <productMenu id="fmradio"
  9298. type="3" >
  9299. </productMenu>
  9300. <productMenu id="deviceSetting"
  9301. type="1"
  9302. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9303. <productMenuURL version="2.5.1"
  9304. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9305. />
  9306. <productMenuURL version="1.0"
  9307. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9308. />
  9309. </productMenu>
  9310. <productMenu id="quickGuide"
  9311. type="1"
  9312. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9313. size="651KB" >
  9314. </productMenu>
  9315. <productMenu id="userGuide"
  9316. type="1"
  9317. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9318. size="2.34MB" >
  9319. </productMenu>
  9320. <productMenu id="connectGuide"
  9321. type="1"
  9322. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9323. size="1.12MB" >
  9324. </productMenu>
  9325. <productID id="5580"
  9326. />
  9327. <productGroupable type="0"
  9328. />
  9329. </product>
  9330. <product id="10C"
  9331. name="10C"
  9332. series="10"
  9333. latestVersion="3.0.4"
  9334. show = "1" >
  9335. <productMenu id="protocol"
  9336. type="0">
  9337. </productMenu>
  9338. <productMenu id="sip"
  9339. type="1" >
  9340. <productMenuType version="1.0.4"
  9341. type="0"
  9342. />
  9343. </productMenu>
  9344. <productMenu id="bluetoothIntercom"
  9345. type="1" >
  9346. <productMenuType version="1.0.4"
  9347. type="0"
  9348. />
  9349. </productMenu>
  9350. <productMenu id="phone"
  9351. type="2" >
  9352. </productMenu>
  9353. <productMenu id="fmradio"
  9354. type="3" >
  9355. </productMenu>
  9356. <productMenu id="deviceSetting"
  9357. type="1"
  9358. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9359. <productMenuURL version="2.3"
  9360. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9361. />
  9362. <productMenuURL version="2.1.1"
  9363. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9364. />
  9365. <productMenuURL version="1.0.4"
  9366. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9367. />
  9368. <productMenuURL version="1.0.2"
  9369. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9370. />
  9371. </productMenu>
  9372. <productMenu id="quickGuide"
  9373. type="1"
  9374. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9375. size="935KB" >
  9376. </productMenu>
  9377. <productMenu id="userGuide"
  9378. type="1"
  9379. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9380. size="2.82MB" >
  9381. </productMenu>
  9382. <productMenu id="connectGuide"
  9383. type="1"
  9384. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9385. size="1.12MB" >
  9386. </productMenu>
  9387. <productID id="5510"
  9388. />
  9389. <productGroupable type="0"
  9390. />
  9391. </product>
  9392. <product id="10U_GT_AIR"
  9393. name="10U GT-Air"
  9394. series="10"
  9395. latestVersion="2.0.4"
  9396. show = "1" >
  9397. <productMenu id="protocol"
  9398. type="0">
  9399. </productMenu>
  9400. <productMenu id="sip"
  9401. type="1" >
  9402. <productMenuType version="1.0.2"
  9403. type="0"
  9404. />
  9405. </productMenu>
  9406. <productMenu id="bluetoothIntercom"
  9407. type="1" >
  9408. <productMenuType version="1.0.2"
  9409. type="0"
  9410. />
  9411. </productMenu>
  9412. <productMenu id="phone"
  9413. type="2" >
  9414. </productMenu>
  9415. <productMenu id="fmradio"
  9416. type="3" >
  9417. </productMenu>
  9418. <productMenu id="deviceSetting"
  9419. type="1"
  9420. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9421. <productMenuURL version="1.3.2"
  9422. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9423. />
  9424. <productMenuURL version="1.0.2"
  9425. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9426. />
  9427. </productMenu>
  9428. <productMenu id="quickGuide"
  9429. type="1"
  9430. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9431. size="685KB" >
  9432. </productMenu>
  9433. <productMenu id="userGuide"
  9434. type="1"
  9435. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9436. size="684KB" >
  9437. </productMenu>
  9438. <productMenu id="connectGuide"
  9439. type="1"
  9440. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9441. size="1.12MB" >
  9442. </productMenu>
  9443. <productID id="5610"
  9444. />
  9445. <productGroupable type="0"
  9446. />
  9447. </product>
  9448. <product id="10U_NEOTEC"
  9449. name="10U Neotec"
  9450. series="10"
  9451. latestVersion="2.0.4"
  9452. show = "1" >
  9453. <productMenu id="protocol"
  9454. type="0">
  9455. </productMenu>
  9456. <productMenu id="sip"
  9457. type="1" >
  9458. <productMenuType version="1.0.2"
  9459. type="0"
  9460. />
  9461. </productMenu>
  9462. <productMenu id="bluetoothIntercom"
  9463. type="1" >
  9464. <productMenuType version="1.0.2"
  9465. type="0"
  9466. />
  9467. </productMenu>
  9468. <productMenu id="phone"
  9469. type="2" >
  9470. </productMenu>
  9471. <productMenu id="fmradio"
  9472. type="3" >
  9473. </productMenu>
  9474. <productMenu id="deviceSetting"
  9475. type="1"
  9476. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9477. <productMenuURL version="1.3.2"
  9478. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9479. />
  9480. <productMenuURL version="1.0.2"
  9481. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9482. />
  9483. </productMenu>
  9484. <productMenu id="quickGuide"
  9485. type="1"
  9486. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9487. size="689KB" >
  9488. </productMenu>
  9489. <productMenu id="userGuide"
  9490. type="1"
  9491. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9492. size="684KB" >
  9493. </productMenu>
  9494. <productMenu id="connectGuide"
  9495. type="1"
  9496. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9497. size="1.12MB" >
  9498. </productMenu>
  9499. <productID id="5611"
  9500. />
  9501. <productGroupable type="0"
  9502. />
  9503. </product>
  9504. <product id="10U_J_CRUISE"
  9505. name="10U J-Cruise"
  9506. series="10"
  9507. latestVersion="2.0.4"
  9508. show = "1" >
  9509. <productMenu id="protocol"
  9510. type="0">
  9511. </productMenu>
  9512. <productMenu id="sip"
  9513. type="1" >
  9514. <productMenuType version="1.0.2"
  9515. type="0"
  9516. />
  9517. </productMenu>
  9518. <productMenu id="bluetoothIntercom"
  9519. type="1" >
  9520. <productMenuType version="1.0.2"
  9521. type="0"
  9522. />
  9523. </productMenu>
  9524. <productMenu id="phone"
  9525. type="2" >
  9526. </productMenu>
  9527. <productMenu id="fmradio"
  9528. type="3" >
  9529. </productMenu>
  9530. <productMenu id="deviceSetting"
  9531. type="1"
  9532. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9533. <productMenuURL version="1.3.2"
  9534. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9535. />
  9536. <productMenuURL version="1.0.2"
  9537. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9538. />
  9539. </productMenu>
  9540. <productMenu id="quickGuide"
  9541. type="1"
  9542. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9543. size="686KB" >
  9544. </productMenu>
  9545. <productMenu id="userGuide"
  9546. type="1"
  9547. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9548. size="684KB" >
  9549. </productMenu>
  9550. <productMenu id="connectGuide"
  9551. type="1"
  9552. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9553. size="1.12MB" >
  9554. </productMenu>
  9555. <productID id="5612"
  9556. />
  9557. <productGroupable type="0"
  9558. />
  9559. </product>
  9560. <product id="10U_C3"
  9561. name="10U C3/C3Pro"
  9562. series="10"
  9563. latestVersion="2.0.4"
  9564. show = "1" >
  9565. <productMenu id="protocol"
  9566. type="0">
  9567. </productMenu>
  9568. <productMenu id="sip"
  9569. type="1" >
  9570. <productMenuType version="1.0.2"
  9571. type="0"
  9572. />
  9573. </productMenu>
  9574. <productMenu id="bluetoothIntercom"
  9575. type="1" >
  9576. <productMenuType version="1.0.2"
  9577. type="0"
  9578. />
  9579. </productMenu>
  9580. <productMenu id="phone"
  9581. type="2" >
  9582. </productMenu>
  9583. <productMenu id="fmradio"
  9584. type="3" >
  9585. </productMenu>
  9586. <productMenu id="deviceSetting"
  9587. type="1"
  9588. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9589. <productMenuURL version="1.3.2"
  9590. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9591. />
  9592. <productMenuURL version="1.0.2"
  9593. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9594. />
  9595. </productMenu>
  9596. <productMenu id="quickGuide"
  9597. type="1"
  9598. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9599. size="199KB" >
  9600. </productMenu>
  9601. <productMenu id="userGuide"
  9602. type="1"
  9603. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9604. size="684KB" >
  9605. </productMenu>
  9606. <productMenu id="connectGuide"
  9607. type="1"
  9608. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9609. size="1.12MB" >
  9610. </productMenu>
  9611. <productID id="5620"
  9612. />
  9613. <productGroupable type="0"
  9614. />
  9615. </product>
  9616. <product id="10U_ARAI"
  9617. name="10U Arai"
  9618. series="10"
  9619. latestVersion="2.0.4"
  9620. show = "1" >
  9621. <productMenu id="protocol"
  9622. type="0">
  9623. </productMenu>
  9624. <productMenu id="sip"
  9625. type="1" >
  9626. <productMenuType version="1.0.2"
  9627. type="0"
  9628. />
  9629. </productMenu>
  9630. <productMenu id="bluetoothIntercom"
  9631. type="1" >
  9632. <productMenuType version="1.0.2"
  9633. type="0"
  9634. />
  9635. </productMenu>
  9636. <productMenu id="phone"
  9637. type="2" >
  9638. </productMenu>
  9639. <productMenu id="fmradio"
  9640. type="3" >
  9641. </productMenu>
  9642. <productMenu id="deviceSetting"
  9643. type="1"
  9644. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9645. <productMenuURL version="1.3.2"
  9646. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9647. />
  9648. <productMenuURL version="1.0.2"
  9649. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9650. />
  9651. </productMenu>
  9652. <productMenu id="quickGuide"
  9653. type="1"
  9654. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  9655. size="689KB" >
  9656. </productMenu>
  9657. <productMenu id="userGuide"
  9658. type="1"
  9659. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9660. size="684KB" >
  9661. </productMenu>
  9662. <productMenu id="connectGuide"
  9663. type="1"
  9664. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9665. size="1.12MB" >
  9666. </productMenu>
  9667. <productID id="5621"
  9668. />
  9669. <productGroupable type="0"
  9670. />
  9671. </product>
  9672. <product id="10Upad"
  9673. name="10Upad"
  9674. series="10"
  9675. latestVersion="2.0.3"
  9676. show = "1" >
  9677. <productMenu id="protocol"
  9678. type="0">
  9679. </productMenu>
  9680. <productMenu id="sip"
  9681. type="1" >
  9682. </productMenu>
  9683. <productMenu id="bluetoothIntercom"
  9684. type="1" >
  9685. </productMenu>
  9686. <productMenu id="phone"
  9687. type="2" >
  9688. </productMenu>
  9689. <productMenu id="fmradio"
  9690. type="3" >
  9691. </productMenu>
  9692. <productMenu id="deviceSetting"
  9693. type="1"
  9694. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  9695. <productMenuURL version="1.0.3"
  9696. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  9697. />
  9698. </productMenu>
  9699. <productMenu id="quickGuide"
  9700. type="1"
  9701. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  9702. size="615KB" >
  9703. </productMenu>
  9704. <productMenu id="userGuide"
  9705. type="1"
  9706. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  9707. size="0.99MB" >
  9708. </productMenu>
  9709. <productMenu id="connectGuide"
  9710. type="1"
  9711. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9712. size="1.12MB" >
  9713. </productMenu>
  9714. <productID id="6210"
  9715. />
  9716. <productGroupable type="0"
  9717. />
  9718. </product>
  9719. <product id="5S"
  9720. name="5S"
  9721. series="5"
  9722. latestVersion="2.3.1"
  9723. show = "1" >
  9724. <productMenu id="protocol"
  9725. type="3" >
  9726. </productMenu>
  9727. <productMenu id="sip"
  9728. type="1" >
  9729. </productMenu>
  9730. <productMenu id="bluetoothIntercom"
  9731. type="1" >
  9732. </productMenu>
  9733. <productMenu id="phone"
  9734. type="1" >
  9735. </productMenu>
  9736. <productMenu id="fmradio"
  9737. type="0" >
  9738. </productMenu>
  9739. <productMenu id="deviceSetting"
  9740. type="1"
  9741. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9742. </productMenu>
  9743. <productMenu id="quickGuide"
  9744. type="0"
  9745. url=""
  9746. size="934KB" >
  9747. </productMenu>
  9748. <productMenu id="userGuide"
  9749. type="1"
  9750. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  9751. size="1.14MB" >
  9752. </productMenu>
  9753. <productMenu id="connectGuide"
  9754. type="1"
  9755. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  9756. size="1.12MB" >
  9757. </productMenu>
  9758. <productID id="5590"
  9759. />
  9760. <productGroupable type="0"
  9761. />
  9762. </product>
  9763. <product id="5S"
  9764. name="5S"
  9765. series="5"
  9766. latestVersion="1.2"
  9767. show = "-1" >
  9768. <productMenu id="protocol"
  9769. type="0">
  9770. </productMenu>
  9771. <productMenu id="sip"
  9772. type="1" >
  9773. </productMenu>
  9774. <productMenu id="bluetoothIntercom"
  9775. type="1" >
  9776. </productMenu>
  9777. <productMenu id="phone"
  9778. type="2" >
  9779. </productMenu>
  9780. <productMenu id="fmradio"
  9781. type="3" >
  9782. </productMenu>
  9783. <productMenu id="deviceSetting"
  9784. type="1"
  9785. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  9786. </productMenu>
  9787. <productMenu id="quickGuide"
  9788. type="0"
  9789. url=""
  9790. size="970KB" >
  9791. </productMenu>
  9792. <productMenu id="userGuide"
  9793. type="1"
  9794. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  9795. size="1.26MB" >
  9796. </productMenu>
  9797. <productID id="5534"
  9798. />
  9799. <productGroupable type="0"
  9800. />
  9801. </product>
  9802. <product id="5S"
  9803. name="5S"
  9804. series="5"
  9805. latestVersion="3.0.1"
  9806. show = "-1" >
  9807. <productMenu id="protocol"
  9808. type="0">
  9809. </productMenu>
  9810. <productMenu id="sip"
  9811. type="1" >
  9812. </productMenu>
  9813. <productMenu id="bluetoothIntercom"
  9814. type="1" >
  9815. </productMenu>
  9816. <productMenu id="phone"
  9817. type="2" >
  9818. </productMenu>
  9819. <productMenu id="fmradio"
  9820. type="0" >
  9821. </productMenu>
  9822. <productMenu id="deviceSetting"
  9823. type="1"
  9824. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  9825. </productMenu>
  9826. <productMenu id="quickGuide"
  9827. type="0"
  9828. url=""
  9829. size="970KB" >
  9830. </productMenu>
  9831. <productMenu id="userGuide"
  9832. type="1"
  9833. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  9834. size="1.26MB" >
  9835. </productMenu>
  9836. <productID id="5538"
  9837. />
  9838. <productGroupable type="0"
  9839. />
  9840. </product>
  9841. <product id="3SPLUS"
  9842. name="3S PLUS"
  9843. series="3"
  9844. latestVersion="2.2"
  9845. show = "1" >
  9846. <productMenu id="protocol"
  9847. type="3" >
  9848. </productMenu>
  9849. <productMenu id="sip"
  9850. type="1" >
  9851. </productMenu>
  9852. <productMenu id="bluetoothIntercom"
  9853. type="1" >
  9854. </productMenu>
  9855. <productMenu id="deviceSetting"
  9856. type="1"
  9857. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  9858. <productMenuURL version="2.2.1"
  9859. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  9860. />
  9861. </productMenu>
  9862. <productMenu id="quickGuide"
  9863. type="1"
  9864. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9865. size="344KB" >
  9866. </productMenu>
  9867. <productMenu id="userGuide"
  9868. type="1"
  9869. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  9870. size="1.14MB" >
  9871. </productMenu>
  9872. <productMenu id="connectGuide"
  9873. type="1"
  9874. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  9875. size="1.12MB" >
  9876. </productMenu>
  9877. <productID id="4023"
  9878. />
  9879. <productGroupable type="0"
  9880. />
  9881. </product>
  9882. <product id="3SPLUS"
  9883. name="3S PLUS"
  9884. series="3"
  9885. latestVersion="1.1"
  9886. show = "-1" >
  9887. <productMenu id="protocol"
  9888. type="0">
  9889. </productMenu>
  9890. <productMenu id="sip"
  9891. type="1" >
  9892. </productMenu>
  9893. <productMenu id="bluetoothIntercom"
  9894. type="1" >
  9895. </productMenu>
  9896. <productMenu id="deviceSetting"
  9897. type="1"
  9898. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  9899. </productMenu>
  9900. <productMenu id="quickGuide"
  9901. type="1"
  9902. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9903. size="842KB" >
  9904. </productMenu>
  9905. <productMenu id="userGuide"
  9906. type="1"
  9907. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  9908. size="1.02MB" >
  9909. </productMenu>
  9910. <productID id="6320"
  9911. />
  9912. <productGroupable type="0"
  9913. />
  9914. </product>
  9915. <product id="AConnect"
  9916. name="Alpinestars A-Connect"
  9917. series="60"
  9918. latestVersion="1.0.2"
  9919. latestVersionMesh="0.19"
  9920. latestVersionVoicePrompt="1.6"
  9921. show = "-1" >
  9922. <productMenu id="protocol"
  9923. type="2" >
  9924. </productMenu>
  9925. <productMenu id="ota"
  9926. type="2" >
  9927. <otaLanguages>
  9928. <otaLanguage
  9929. id="0"
  9930. name="English"
  9931. package="0"
  9932. />
  9933. <otaLanguage
  9934. id="0"
  9935. name="French"
  9936. package="1"
  9937. />
  9938. <otaLanguage
  9939. id="0"
  9940. name="Spanish"
  9941. package="2"
  9942. />
  9943. <otaLanguage
  9944. id="0"
  9945. name="Italian"
  9946. package="3"
  9947. />
  9948. <otaLanguage
  9949. id="0"
  9950. name="German"
  9951. package="4"
  9952. />
  9953. <otaLanguage
  9954. id="0"
  9955. name="Dutch"
  9956. package="5"
  9957. />
  9958. <otaLanguage
  9959. id="0"
  9960. name="Russian"
  9961. package="6"
  9962. />
  9963. <otaLanguage
  9964. id="0"
  9965. name="Chinese"
  9966. package="7"
  9967. />
  9968. <otaLanguage
  9969. id="0"
  9970. name="Korean"
  9971. package="8"
  9972. />
  9973. <otaLanguage
  9974. id="0"
  9975. name="Japanese"
  9976. package="9"
  9977. />
  9978. <otaLanguage
  9979. id="0"
  9980. name="Finnish"
  9981. package="10"
  9982. />
  9983. <otaLanguage
  9984. id="0"
  9985. name="Polish"
  9986. package="11"
  9987. />
  9988. </otaLanguages>
  9989. <otaPackages>
  9990. <package
  9991. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  9992. size="5183988"
  9993. />
  9994. <package
  9995. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  9996. size="5183988"
  9997. />
  9998. <package
  9999. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  10000. size="5183988"
  10001. />
  10002. <package
  10003. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  10004. size="5183988"
  10005. />
  10006. <package
  10007. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  10008. size="5183988"
  10009. />
  10010. <package
  10011. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  10012. size="5183988"
  10013. />
  10014. <package
  10015. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  10016. size="5183988"
  10017. />
  10018. <package
  10019. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  10020. size="5183988"
  10021. />
  10022. <package
  10023. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  10024. size="5183988"
  10025. />
  10026. <package
  10027. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10028. size="5183988"
  10029. />
  10030. <package
  10031. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10032. size="5183988"
  10033. />
  10034. <package
  10035. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10036. size="5183988"
  10037. />
  10038. </otaPackages>
  10039. </productMenu>
  10040. <productMenu id="sip"
  10041. type="1" >
  10042. </productMenu>
  10043. <productMenu id="illusion"
  10044. type="0" >
  10045. </productMenu>
  10046. <productMenu id="meshIntercom+"
  10047. type="3"
  10048. url="2" >
  10049. </productMenu>
  10050. <productMenu id="waveIntercom"
  10051. type="1" >
  10052. </productMenu>
  10053. <productMenu id="bluetoothIntercom"
  10054. type="1"
  10055. url="2" >
  10056. </productMenu>
  10057. <productMenu id="bluetoothIntercomGrouping"
  10058. type="0" >
  10059. </productMenu>
  10060. <productMenu id="fmradio"
  10061. type="1"
  10062. url="1" >
  10063. </productMenu>
  10064. <productMenu id="phone"
  10065. type="1" >
  10066. </productMenu>
  10067. <productMenu id="music"
  10068. type="1" >
  10069. </productMenu>
  10070. <productMenu id="musicSharing"
  10071. type="0" >
  10072. </productMenu>
  10073. <productMenu id="deviceSetting"
  10074. type="1"
  10075. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  10076. </productMenu>
  10077. <productMenu id="quickGuide"
  10078. type="0"
  10079. url=""
  10080. size="1.12MB" >
  10081. </productMenu>
  10082. <productMenu id="userGuide"
  10083. type="1"
  10084. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  10085. size="2.0MB" >
  10086. </productMenu>
  10087. <productMenu id="videoGuide"
  10088. type="0"
  10089. url=""
  10090. size="3.41MB" >
  10091. </productMenu>
  10092. <productMenu id="volume"
  10093. type="16" >
  10094. </productMenu>
  10095. <productMenu id="volume+"
  10096. type="2"
  10097. url="0x6004" >
  10098. </productMenu>
  10099. <productMenu id="soundMode"
  10100. type="0" >
  10101. </productMenu>
  10102. <productMenu id="battery"
  10103. type="1" >
  10104. </productMenu>
  10105. <productID id="6A82"
  10106. />
  10107. <productGroupable type="0"
  10108. />
  10109. </product>
  10110. <product id="iCon"
  10111. name="iCon"
  10112. series="50"
  10113. latestVersion="1.2"
  10114. show = "0" >
  10115. <productMenu id="protocol"
  10116. type="2" >
  10117. </productMenu>
  10118. <productMenu id="alexa"
  10119. type="0" >
  10120. </productMenu>
  10121. <productMenu id="wa"
  10122. type="0" >
  10123. </productMenu>
  10124. <productMenu id="sip"
  10125. type="1" >
  10126. </productMenu>
  10127. <productMenu id="led"
  10128. type="3" >
  10129. </productMenu>
  10130. <productMenu id="meshIntercom"
  10131. type="20" >
  10132. </productMenu>
  10133. <productMenu id="meshIntercom+"
  10134. type="3"
  10135. url="0" >
  10136. <productMenuType version="1.0.9"
  10137. type="2"
  10138. />
  10139. </productMenu>
  10140. <productMenu id="bluetoothIntercom"
  10141. type="1" >
  10142. </productMenu>
  10143. <productMenu id="phone"
  10144. type="1" >
  10145. </productMenu>
  10146. <productMenu id="music"
  10147. type="1" >
  10148. </productMenu>
  10149. <productMenu id="fmradio"
  10150. type="1" >
  10151. </productMenu>
  10152. <productMenu id="deviceSetting"
  10153. type="1"
  10154. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10155. <productMenuURL version="1.0.9"
  10156. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10157. />
  10158. </productMenu>
  10159. <productMenu id="quickGuide"
  10160. type="1"
  10161. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10162. size="344KB" >
  10163. </productMenu>
  10164. <productMenu id="userGuide"
  10165. type="1"
  10166. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10167. size="3.41MB" >
  10168. </productMenu>
  10169. <productMenu id="volume"
  10170. type="11" >
  10171. </productMenu>
  10172. <productMenu id="battery"
  10173. type="1" >
  10174. </productMenu>
  10175. <productID id="3900"
  10176. />
  10177. <productGroupable type="0"
  10178. />
  10179. </product>
  10180. <product id="ICONHelmLinkSL"
  10181. name="ICON HelmLink SL"
  10182. series="50"
  10183. latestVersion="1.0"
  10184. latestVersionVoicePrompt="1.6"
  10185. show = "-1" >
  10186. <productMenu id="protocol"
  10187. type="2" >
  10188. </productMenu>
  10189. <productMenu id="alexa"
  10190. type="0" >
  10191. </productMenu>
  10192. <productMenu id="ota"
  10193. type="0" >
  10194. <otaPackages>
  10195. <package
  10196. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/ICON_HELMLINK_SL-v0.9-build0.img"
  10197. size="2945812"
  10198. />
  10199. </otaPackages>
  10200. </productMenu>
  10201. <productMenu id="wa"
  10202. type="0" >
  10203. </productMenu>
  10204. <productMenu id="meshIntercom"
  10205. type="30" >
  10206. </productMenu>
  10207. <productMenu id="meshIntercom+"
  10208. type="3"
  10209. url="2" >
  10210. </productMenu>
  10211. <productMenu id="waveIntercom"
  10212. type="1" >
  10213. </productMenu>
  10214. <productMenu id="phone"
  10215. type="1" >
  10216. </productMenu>
  10217. <productMenu id="music"
  10218. type="1" >
  10219. </productMenu>
  10220. <productMenu id="musicSharing"
  10221. type="0" >
  10222. </productMenu>
  10223. <productMenu id="deviceSetting"
  10224. type="1"
  10225. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10226. </productMenu>
  10227. <productMenu id="quickGuide"
  10228. type="0"
  10229. url=""
  10230. size="1.12MB" >
  10231. </productMenu>
  10232. <productMenu id="userGuide"
  10233. type="1"
  10234. url=""
  10235. size="2.0MB" >
  10236. </productMenu>
  10237. <productMenu id="volume"
  10238. type="12" >
  10239. </productMenu>
  10240. <productMenu id="battery"
  10241. type="1" >
  10242. </productMenu>
  10243. <productID id="6842"
  10244. />
  10245. <productGroupable type="0"
  10246. />
  10247. </product>
  10248. <product id="HD50S"
  10249. name="H-D Audio 50S"
  10250. series="50"
  10251. latestVersion="1.0.1"
  10252. show = "-1" >
  10253. <productMenu id="protocol"
  10254. type="2" >
  10255. </productMenu>
  10256. <productMenu id="alexa"
  10257. type="0" >
  10258. </productMenu>
  10259. <productMenu id="ota"
  10260. type="0"
  10261. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10262. size="1150234" >
  10263. </productMenu>
  10264. <productMenu id="wa"
  10265. type="1" >
  10266. </productMenu>
  10267. <productMenu id="sip"
  10268. type="1" >
  10269. </productMenu>
  10270. <productMenu id="meshIntercom"
  10271. type="20" >
  10272. </productMenu>
  10273. <productMenu id="meshIntercom+"
  10274. type="3"
  10275. url="0" >
  10276. <productMenuType version="1.0.9"
  10277. type="2"
  10278. />
  10279. </productMenu>
  10280. <productMenu id="bluetoothIntercom"
  10281. type="1" >
  10282. </productMenu>
  10283. <productMenu id="phone"
  10284. type="1" >
  10285. </productMenu>
  10286. <productMenu id="music"
  10287. type="1" >
  10288. </productMenu>
  10289. <productMenu id="fmradio"
  10290. type="1" >
  10291. </productMenu>
  10292. <productMenu id="deviceSetting"
  10293. type="1"
  10294. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10295. <productMenuURL version="1.0.9"
  10296. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10297. />
  10298. </productMenu>
  10299. <productMenu id="quickGuide"
  10300. type="1"
  10301. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10302. size="934KB" >
  10303. </productMenu>
  10304. <productMenu id="userGuide"
  10305. type="1"
  10306. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10307. size="1.14MB" >
  10308. </productMenu>
  10309. <productMenu id="volume"
  10310. type="11" >
  10311. </productMenu>
  10312. <productMenu id="battery"
  10313. type="1" >
  10314. </productMenu>
  10315. <productID id="3156"
  10316. />
  10317. <productGroupable type="0"
  10318. />
  10319. </product>
  10320. <product id="HD50S"
  10321. name="H-D Audio 50S"
  10322. series="50"
  10323. latestVersion="2.0.2"
  10324. show = "0" >
  10325. <productMenu id="protocol"
  10326. type="2" >
  10327. </productMenu>
  10328. <productMenu id="alexa"
  10329. type="0" >
  10330. </productMenu>
  10331. <productMenu id="ota"
  10332. type="0"
  10333. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10334. size="1150234" >
  10335. </productMenu>
  10336. <productMenu id="wa"
  10337. type="1" >
  10338. </productMenu>
  10339. <productMenu id="sip"
  10340. type="1" >
  10341. </productMenu>
  10342. <productMenu id="meshIntercom"
  10343. type="20" >
  10344. </productMenu>
  10345. <productMenu id="meshIntercom+"
  10346. type="3"
  10347. url="0" >
  10348. <productMenuType version="2.0.9"
  10349. type="2"
  10350. />
  10351. </productMenu>
  10352. <productMenu id="bluetoothIntercom"
  10353. type="1" >
  10354. </productMenu>
  10355. <productMenu id="phone"
  10356. type="1" >
  10357. </productMenu>
  10358. <productMenu id="music"
  10359. type="1" >
  10360. </productMenu>
  10361. <productMenu id="fmradio"
  10362. type="1" >
  10363. </productMenu>
  10364. <productMenu id="deviceSetting"
  10365. type="1"
  10366. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10367. <productMenuURL version="2.0.9"
  10368. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10369. />
  10370. </productMenu>
  10371. <productMenu id="quickGuide"
  10372. type="1"
  10373. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10374. size="934KB" >
  10375. </productMenu>
  10376. <productMenu id="userGuide"
  10377. type="1"
  10378. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10379. size="1.14MB" >
  10380. </productMenu>
  10381. <productMenu id="volume"
  10382. type="11" >
  10383. </productMenu>
  10384. <productMenu id="battery"
  10385. type="1" >
  10386. </productMenu>
  10387. <productID id="3213"
  10388. />
  10389. <productGroupable type="0"
  10390. />
  10391. </product>
  10392. <product id="HD50C"
  10393. name="H-D Audio 50C"
  10394. series="50"
  10395. latestVersion="1.0.1"
  10396. show = "0" >
  10397. <productMenu id="protocol"
  10398. type="2" >
  10399. </productMenu>
  10400. <productMenu id="ota"
  10401. type="0" >
  10402. </productMenu>
  10403. <productMenu id="wa"
  10404. type="1" >
  10405. </productMenu>
  10406. <productMenu id="sip"
  10407. type="1" >
  10408. </productMenu>
  10409. <productMenu id="meshIntercom"
  10410. type="20" >
  10411. </productMenu>
  10412. <productMenu id="meshIntercom+"
  10413. type="3"
  10414. url="0" >
  10415. <productMenuType version="1.0.9"
  10416. type="2"
  10417. />
  10418. </productMenu>
  10419. <productMenu id="bluetoothIntercom"
  10420. type="1" >
  10421. </productMenu>
  10422. <productMenu id="phone"
  10423. type="1" >
  10424. </productMenu>
  10425. <productMenu id="music"
  10426. type="1" >
  10427. </productMenu>
  10428. <productMenu id="fmradio"
  10429. type="1" >
  10430. </productMenu>
  10431. <productMenu id="deviceSetting"
  10432. type="1"
  10433. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10434. <productMenuURL version="1.0.9"
  10435. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10436. />
  10437. </productMenu>
  10438. <productMenu id="quickGuide"
  10439. type="1"
  10440. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10441. size="344KB" >
  10442. </productMenu>
  10443. <productMenu id="userGuide"
  10444. type="1"
  10445. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10446. size="3.41MB" >
  10447. </productMenu>
  10448. <productMenu id="volume"
  10449. type="11" >
  10450. </productMenu>
  10451. <productMenu id="battery"
  10452. type="1" >
  10453. </productMenu>
  10454. <productID id="3240"
  10455. />
  10456. <productGroupable type="0"
  10457. />
  10458. </product>
  10459. <product id="HD50S"
  10460. name="FURY N04"
  10461. series="Helmet"
  10462. latestVersion="1.0"
  10463. show = "0" >
  10464. <productMenu id="protocol"
  10465. type="2" >
  10466. </productMenu>
  10467. <productMenu id="alexa"
  10468. type="0" >
  10469. </productMenu>
  10470. <productMenu id="ota"
  10471. type="0" >
  10472. </productMenu>
  10473. <productMenu id="wa"
  10474. type="0" >
  10475. </productMenu>
  10476. <productMenu id="meshIntercom"
  10477. type="20" >
  10478. </productMenu>
  10479. <productMenu id="meshIntercom+"
  10480. type="3"
  10481. url="0" >
  10482. <productMenuType version="1.0.9"
  10483. type="2"
  10484. />
  10485. </productMenu>
  10486. <productMenu id="phone"
  10487. type="1" >
  10488. </productMenu>
  10489. <productMenu id="music"
  10490. type="1" >
  10491. </productMenu>
  10492. <productMenu id="fmradio"
  10493. type="1" >
  10494. </productMenu>
  10495. <productMenu id="deviceSetting"
  10496. type="1"
  10497. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10498. <productMenuURL version="1.0.9"
  10499. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10500. />
  10501. </productMenu>
  10502. <productMenu id="quickGuide"
  10503. type="1"
  10504. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10505. size="1.12MB" >
  10506. </productMenu>
  10507. <productMenu id="userGuide"
  10508. type="1"
  10509. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10510. size="2.0MB" >
  10511. </productMenu>
  10512. <productMenu id="volume"
  10513. type="13" >
  10514. </productMenu>
  10515. <productMenu id="battery"
  10516. type="1" >
  10517. </productMenu>
  10518. <productID id="5553"
  10519. />
  10520. <productGroupable type="0"
  10521. />
  10522. </product>
  10523. <product id="XCOM3Pro"
  10524. name="X-COM3 Pro"
  10525. series="50"
  10526. latestVersion="1.1"
  10527. show = "0" >
  10528. <productMenu id="protocol"
  10529. type="2" >
  10530. </productMenu>
  10531. <productMenu id="alexa"
  10532. type="0" >
  10533. </productMenu>
  10534. <productMenu id="ota"
  10535. type="0" >
  10536. </productMenu>
  10537. <productMenu id="wa"
  10538. type="0" >
  10539. </productMenu>
  10540. <productMenu id="sip"
  10541. type="1" >
  10542. </productMenu>
  10543. <productMenu id="meshIntercom"
  10544. type="30" >
  10545. </productMenu>
  10546. <productMenu id="meshIntercom+"
  10547. type="3"
  10548. url="2" >
  10549. <productMenuType version="1.1"
  10550. type="2"
  10551. />
  10552. </productMenu>
  10553. <productMenu id="waveIntercom"
  10554. type="1" >
  10555. <productMenuType version="1.1"
  10556. type="0"
  10557. />
  10558. </productMenu>
  10559. <productMenu id="bluetoothIntercom"
  10560. type="1" >
  10561. </productMenu>
  10562. <productMenu id="phone"
  10563. type="1" >
  10564. </productMenu>
  10565. <productMenu id="music"
  10566. type="1" >
  10567. </productMenu>
  10568. <productMenu id="fmradio"
  10569. type="1" >
  10570. </productMenu>
  10571. <productMenu id="deviceSetting"
  10572. type="1"
  10573. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10574. <productMenuURL version="1.1"
  10575. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10576. />
  10577. </productMenu>
  10578. <productMenu id="quickGuide"
  10579. type="0"
  10580. url=""
  10581. size="344KB" >
  10582. </productMenu>
  10583. <productMenu id="userGuide"
  10584. type="1"
  10585. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10586. size="3.41MB" >
  10587. </productMenu>
  10588. <productMenu id="volume"
  10589. type="11" >
  10590. </productMenu>
  10591. <productMenu id="battery"
  10592. type="1" >
  10593. </productMenu>
  10594. <productID id="321A"
  10595. />
  10596. <productGroupable type="0"
  10597. />
  10598. </product>
  10599. <product id="XCOM3"
  10600. name="X-COM3"
  10601. series="20"
  10602. latestVersion="1.0"
  10603. show = "0" >
  10604. <productMenu id="protocol"
  10605. type="2" >
  10606. </productMenu>
  10607. <productMenu id="sip"
  10608. type="1" >
  10609. </productMenu>
  10610. <productMenu id="bluetoothIntercom"
  10611. type="1" >
  10612. </productMenu>
  10613. <productMenu id="phone"
  10614. type="1" >
  10615. </productMenu>
  10616. <productMenu id="music"
  10617. type="1" >
  10618. </productMenu>
  10619. <productMenu id="fmradio"
  10620. type="1" >
  10621. </productMenu>
  10622. <productMenu id="deviceSetting"
  10623. type="1"
  10624. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10625. </productMenu>
  10626. <productMenu id="quickGuide"
  10627. type="0"
  10628. url=""
  10629. size="934KB" >
  10630. </productMenu>
  10631. <productMenu id="userGuide"
  10632. type="1"
  10633. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  10634. size="1.14MB" >
  10635. </productMenu>
  10636. <productMenu id="volume"
  10637. type="15" >
  10638. </productMenu>
  10639. <productID id="3410"
  10640. />
  10641. <productGroupable type="0"
  10642. />
  10643. </product>
  10644. <product id="X-COM2"
  10645. name="X-COM2"
  10646. series="20"
  10647. latestVersion="1.0.5"
  10648. show = "0" >
  10649. <productMenu id="protocol"
  10650. type="0">
  10651. </productMenu>
  10652. <productMenu id="sip"
  10653. type="1" >
  10654. </productMenu>
  10655. <productMenu id="bluetoothIntercom"
  10656. type="1" >
  10657. </productMenu>
  10658. <productMenu id="intercomSetting"
  10659. type="1" >
  10660. </productMenu>
  10661. <productMenu id="phone"
  10662. type="2" >
  10663. </productMenu>
  10664. <productMenu id="fmradio"
  10665. type="3" >
  10666. </productMenu>
  10667. <productMenu id="deviceSetting"
  10668. type="1"
  10669. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  10670. </productMenu>
  10671. <productMenu id="quickGuide"
  10672. type="1"
  10673. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  10674. size="796KB" >
  10675. </productMenu>
  10676. <productMenu id="userGuide"
  10677. type="1"
  10678. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  10679. size="1.90MB" >
  10680. </productMenu>
  10681. <productID id="2030"
  10682. />
  10683. <productGroupable type="1"
  10684. />
  10685. </product>
  10686. <product id="AVAABC"
  10687. name="AVA ABC"
  10688. series="SPIDER"
  10689. latestVersion="1.1"
  10690. show = "0" >
  10691. <productMenu id="protocol"
  10692. type="2" >
  10693. </productMenu>
  10694. <productMenu id="alexa"
  10695. type="0" >
  10696. </productMenu>
  10697. <productMenu id="ota"
  10698. type="0" >
  10699. <productMenuType version="1.0"
  10700. type="0"
  10701. />
  10702. <otaPackages>
  10703. <package
  10704. url="https://api.sena.com/support/OTA/"
  10705. size="2945812"
  10706. />
  10707. </otaPackages>
  10708. </productMenu>
  10709. <productMenu id="wa"
  10710. type="0" >
  10711. </productMenu>
  10712. <productMenu id="meshIntercom"
  10713. type="30" >
  10714. <productMenuType version="1.0"
  10715. type="20"
  10716. />
  10717. </productMenu>
  10718. <productMenu id="meshIntercom+"
  10719. type="3"
  10720. url="2" >
  10721. <productMenuType version="1.0"
  10722. type="2"
  10723. />
  10724. <productMenuURL version="1.0"
  10725. url="0"
  10726. />
  10727. </productMenu>
  10728. <productMenu id="waveIntercom"
  10729. type="1" >
  10730. <productMenuType version="1.0"
  10731. type="0"
  10732. />
  10733. </productMenu>
  10734. <productMenu id="phone"
  10735. type="1" >
  10736. </productMenu>
  10737. <productMenu id="music"
  10738. type="1" >
  10739. </productMenu>
  10740. <productMenu id="musicSharing"
  10741. type="0" >
  10742. </productMenu>
  10743. <productMenu id="deviceSetting"
  10744. type="1"
  10745. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  10746. <productMenuURL version="1.0"
  10747. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  10748. />
  10749. </productMenu>
  10750. <productMenu id="quickGuide"
  10751. type="1"
  10752. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  10753. size="1.12MB" >
  10754. </productMenu>
  10755. <productMenu id="userGuide"
  10756. type="1"
  10757. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  10758. size="2.0MB" >
  10759. </productMenu>
  10760. <productMenu id="volume"
  10761. type="12" >
  10762. </productMenu>
  10763. <productMenu id="battery"
  10764. type="1" >
  10765. </productMenu>
  10766. <productID id="6808"
  10767. />
  10768. <productGroupable type="0"
  10769. />
  10770. </product>
  10771. <product id="ADVANCEProCOM2"
  10772. name="ADVANCE ProCOM 2"
  10773. series="Helmet"
  10774. latestVersion="0.5"
  10775. latestVersionVoicePrompt="0.3"
  10776. show = "-1" >
  10777. <productMenu id="protocol"
  10778. type="2" >
  10779. </productMenu>
  10780. <productMenu id="ota"
  10781. type="2" >
  10782. <otaLanguages>
  10783. <otaLanguage
  10784. id="0"
  10785. name="English"
  10786. package="0"
  10787. />
  10788. <otaLanguage
  10789. id="0"
  10790. name="French"
  10791. package="1"
  10792. />
  10793. <otaLanguage
  10794. id="0"
  10795. name="Spanish"
  10796. package="2"
  10797. />
  10798. <otaLanguage
  10799. id="0"
  10800. name="Italian"
  10801. package="3"
  10802. />
  10803. <otaLanguage
  10804. id="0"
  10805. name="German"
  10806. package="4"
  10807. />
  10808. <otaLanguage
  10809. id="0"
  10810. name="Dutch"
  10811. package="5"
  10812. />
  10813. <otaLanguage
  10814. id="0"
  10815. name="Russian"
  10816. package="6"
  10817. />
  10818. <otaLanguage
  10819. id="0"
  10820. name="Chinese"
  10821. package="7"
  10822. />
  10823. <otaLanguage
  10824. id="0"
  10825. name="Korean"
  10826. package="8"
  10827. />
  10828. <otaLanguage
  10829. id="0"
  10830. name="Japanese"
  10831. package="9"
  10832. />
  10833. <otaLanguage
  10834. id="0"
  10835. name="Finnish"
  10836. package="10"
  10837. />
  10838. <otaLanguage
  10839. id="0"
  10840. name="Polish"
  10841. package="11"
  10842. />
  10843. </otaLanguages>
  10844. <otaPackages>
  10845. <package
  10846. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  10847. size="5183988"
  10848. />
  10849. <package
  10850. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  10851. size="5183988"
  10852. />
  10853. <package
  10854. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  10855. size="5183988"
  10856. />
  10857. <package
  10858. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  10859. size="5183988"
  10860. />
  10861. <package
  10862. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  10863. size="5183988"
  10864. />
  10865. <package
  10866. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  10867. size="5183988"
  10868. />
  10869. <package
  10870. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  10871. size="5183988"
  10872. />
  10873. <package
  10874. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  10875. size="5183988"
  10876. />
  10877. <package
  10878. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  10879. size="5183988"
  10880. />
  10881. <package
  10882. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  10883. size="5183988"
  10884. />
  10885. <package
  10886. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  10887. size="5183988"
  10888. />
  10889. <package
  10890. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  10891. size="5183988"
  10892. />
  10893. </otaPackages>
  10894. </productMenu>
  10895. <productMenu id="wa"
  10896. type="0" >
  10897. </productMenu>
  10898. <productMenu id="meshIntercom"
  10899. type="30" >
  10900. </productMenu>
  10901. <productMenu id="meshIntercom+"
  10902. type="3"
  10903. url="2" >
  10904. </productMenu>
  10905. <productMenu id="waveIntercom"
  10906. type="1" >
  10907. </productMenu>
  10908. <productMenu id="fmradio"
  10909. type="1" >
  10910. </productMenu>
  10911. <productMenu id="phone"
  10912. type="0" >
  10913. </productMenu>
  10914. <productMenu id="music"
  10915. type="1" >
  10916. </productMenu>
  10917. <productMenu id="musicSharing"
  10918. type="0" >
  10919. </productMenu>
  10920. <productMenu id="deviceSetting"
  10921. type="1"
  10922. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  10923. </productMenu>
  10924. <productMenu id="quickGuide"
  10925. type="0"
  10926. url=""
  10927. size="1.12MB" >
  10928. </productMenu>
  10929. <productMenu id="userGuide"
  10930. type="1"
  10931. url=""
  10932. size="2.0MB" >
  10933. </productMenu>
  10934. <productMenu id="videoGuide"
  10935. type="0"
  10936. url=""
  10937. size="3.41MB" >
  10938. </productMenu>
  10939. <productMenu id="connectGuide"
  10940. type="1"
  10941. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  10942. size="1.12MB" >
  10943. </productMenu>
  10944. <productMenu id="volume"
  10945. type="16" >
  10946. </productMenu>
  10947. <productMenu id="battery"
  10948. type="1" >
  10949. </productMenu>
  10950. <productID id="6A85"
  10951. />
  10952. <productGroupable type="0"
  10953. />
  10954. </product>
  10955. <product id="TRIUMPH60X"
  10956. name="TRIUMPH 60X"
  10957. series="60"
  10958. latestVersion="1.0"
  10959. latestVersionMesh="0.19"
  10960. latestVersionVoicePrompt="1.7"
  10961. show = "-1" >
  10962. <productMenu id="protocol"
  10963. type="2" >
  10964. </productMenu>
  10965. <productMenu id="ota"
  10966. type="0" >
  10967. <otaLanguages>
  10968. <otaLanguage
  10969. id="0"
  10970. name="English"
  10971. package="0"
  10972. />
  10973. <otaLanguage
  10974. id="0"
  10975. name="French"
  10976. package="1"
  10977. />
  10978. <otaLanguage
  10979. id="0"
  10980. name="Spanish"
  10981. package="2"
  10982. />
  10983. <otaLanguage
  10984. id="0"
  10985. name="Italian"
  10986. package="3"
  10987. />
  10988. <otaLanguage
  10989. id="0"
  10990. name="German"
  10991. package="4"
  10992. />
  10993. <otaLanguage
  10994. id="0"
  10995. name="Dutch"
  10996. package="5"
  10997. />
  10998. <otaLanguage
  10999. id="0"
  11000. name="Russian"
  11001. package="6"
  11002. />
  11003. <otaLanguage
  11004. id="0"
  11005. name="Chinese"
  11006. package="7"
  11007. />
  11008. <otaLanguage
  11009. id="0"
  11010. name="Korean"
  11011. package="8"
  11012. />
  11013. <otaLanguage
  11014. id="0"
  11015. name="Japanese"
  11016. package="9"
  11017. />
  11018. <otaLanguage
  11019. id="0"
  11020. name="Finnish"
  11021. package="10"
  11022. />
  11023. <otaLanguage
  11024. id="0"
  11025. name="Polish"
  11026. package="11"
  11027. />
  11028. </otaLanguages>
  11029. <otaPackages>
  11030. <package
  11031. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5.img"
  11032. size="5183988"
  11033. />
  11034. <package
  11035. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fr-FR.img"
  11036. size="5183988"
  11037. />
  11038. <package
  11039. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-es-ES.img"
  11040. size="5183988"
  11041. />
  11042. <package
  11043. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-it-IT.img"
  11044. size="5183988"
  11045. />
  11046. <package
  11047. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-de-DE.img"
  11048. size="5183988"
  11049. />
  11050. <package
  11051. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-nl-NL.img"
  11052. size="5183988"
  11053. />
  11054. <package
  11055. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ru-RU.img"
  11056. size="5183988"
  11057. />
  11058. <package
  11059. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-cmn-CN.img"
  11060. size="5183988"
  11061. />
  11062. <package
  11063. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ko-KR.img"
  11064. size="5183988"
  11065. />
  11066. <package
  11067. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ja-JP.img"
  11068. size="5183988"
  11069. />
  11070. <package
  11071. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fi-FI.img"
  11072. size="5183988"
  11073. />
  11074. <package
  11075. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-pl-PL.img"
  11076. size="5183988"
  11077. />
  11078. </otaPackages>
  11079. </productMenu>
  11080. <productMenu id="wa"
  11081. type="0" >
  11082. </productMenu>
  11083. <productMenu id="sip"
  11084. type="1" >
  11085. </productMenu>
  11086. <productMenu id="led"
  11087. type="1" >
  11088. </productMenu>
  11089. <productMenu id="illusion"
  11090. type="1" >
  11091. </productMenu>
  11092. <productMenu id="meshIntercom"
  11093. type="30" >
  11094. </productMenu>
  11095. <productMenu id="meshIntercom+"
  11096. type="3"
  11097. url="2" >
  11098. </productMenu>
  11099. <productMenu id="bluetoothIntercom"
  11100. type="1" >
  11101. </productMenu>
  11102. <productMenu id="fmradio"
  11103. type="1"
  11104. url="1" >
  11105. </productMenu>
  11106. <productMenu id="mic"
  11107. type="0" >
  11108. </productMenu>
  11109. <productMenu id="phone"
  11110. type="1" >
  11111. </productMenu>
  11112. <productMenu id="music"
  11113. type="1" >
  11114. </productMenu>
  11115. <productMenu id="musicSharing"
  11116. type="0" >
  11117. </productMenu>
  11118. <productMenu id="deviceSetting"
  11119. type="1"
  11120. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  11121. </productMenu>
  11122. <productMenu id="quickGuide"
  11123. type="0"
  11124. url=""
  11125. size="1.12MB" >
  11126. </productMenu>
  11127. <productMenu id="userGuide"
  11128. type="1"
  11129. url=""
  11130. size="2.0MB" >
  11131. </productMenu>
  11132. <productMenu id="videoGuide"
  11133. type="0"
  11134. url=""
  11135. size="3.41MB" >
  11136. </productMenu>
  11137. <productMenu id="keySettings"
  11138. type="1"
  11139. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  11140. </productMenu>
  11141. <productMenu id="volume"
  11142. type="13" >
  11143. </productMenu>
  11144. <productMenu id="volume+"
  11145. type="2"
  11146. url="0x6004" >
  11147. </productMenu>
  11148. <productMenu id="battery"
  11149. type="1" >
  11150. </productMenu>
  11151. <productID id="6A1C"
  11152. />
  11153. <productGroupable type="0"
  11154. />
  11155. </product>
  11156. <product id="Triumph_50S"
  11157. name="Triumph 50S"
  11158. series="50"
  11159. latestVersion="1.5"
  11160. show = "0" >
  11161. <productMenu id="protocol"
  11162. type="2" >
  11163. </productMenu>
  11164. <productMenu id="alexa"
  11165. type="0" >
  11166. </productMenu>
  11167. <productMenu id="ota"
  11168. type="0"
  11169. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11170. size="1150234" >
  11171. </productMenu>
  11172. <productMenu id="wa"
  11173. type="1" >
  11174. </productMenu>
  11175. <productMenu id="sip"
  11176. type="1" >
  11177. </productMenu>
  11178. <productMenu id="meshIntercom"
  11179. type="20" >
  11180. </productMenu>
  11181. <productMenu id="bluetoothIntercom"
  11182. type="1" >
  11183. </productMenu>
  11184. <productMenu id="meshIntercom+"
  11185. type="3"
  11186. url="2" >
  11187. <productMenuType version="1.2.9"
  11188. type="2"
  11189. />
  11190. <productMenuURL version="1.2.9"
  11191. url="0"
  11192. />
  11193. </productMenu>
  11194. <productMenu id="waveIntercom"
  11195. type="1" >
  11196. <productMenuType version="1.2.9"
  11197. type="0"
  11198. />
  11199. </productMenu>
  11200. <productMenu id="phone"
  11201. type="1" >
  11202. </productMenu>
  11203. <productMenu id="music"
  11204. type="1" >
  11205. </productMenu>
  11206. <productMenu id="fmradio"
  11207. type="1" >
  11208. </productMenu>
  11209. <productMenu id="deviceSetting"
  11210. type="1"
  11211. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11212. <productMenuURL version="1.2.9"
  11213. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  11214. />
  11215. <productMenuURL version="1.0"
  11216. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11217. />
  11218. </productMenu>
  11219. <productMenu id="quickGuide"
  11220. type="1"
  11221. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  11222. size="934KB" >
  11223. </productMenu>
  11224. <productMenu id="userGuide"
  11225. type="1"
  11226. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  11227. size="1.14MB" >
  11228. </productMenu>
  11229. <productMenu id="volume"
  11230. type="11" >
  11231. </productMenu>
  11232. <productMenu id="battery"
  11233. type="1" >
  11234. </productMenu>
  11235. <productID id="3264"
  11236. />
  11237. <productGroupable type="0"
  11238. />
  11239. </product>
  11240. <product id="RE50S"
  11241. name="RE 50S"
  11242. series="50"
  11243. latestVersion="2.7"
  11244. show = "0" >
  11245. <productMenu id="protocol"
  11246. type="2" >
  11247. </productMenu>
  11248. <productMenu id="alexa"
  11249. type="0" >
  11250. </productMenu>
  11251. <productMenu id="ota"
  11252. type="0"
  11253. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11254. size="1150234" >
  11255. </productMenu>
  11256. <productMenu id="wa"
  11257. type="1" >
  11258. </productMenu>
  11259. <productMenu id="sip"
  11260. type="1" >
  11261. </productMenu>
  11262. <productMenu id="meshIntercom"
  11263. type="30" >
  11264. </productMenu>
  11265. <productMenu id="meshIntercom+"
  11266. type="3"
  11267. url="2" >
  11268. <productMenuType version="2.5"
  11269. type="2"
  11270. />
  11271. </productMenu>
  11272. <productMenu id="waveIntercom"
  11273. type="1" >
  11274. <productMenuType version="2.5"
  11275. type="0"
  11276. />
  11277. </productMenu>
  11278. <productMenu id="bluetoothIntercom"
  11279. type="1" >
  11280. </productMenu>
  11281. <productMenu id="phone"
  11282. type="1" >
  11283. </productMenu>
  11284. <productMenu id="music"
  11285. type="1" >
  11286. </productMenu>
  11287. <productMenu id="fmradio"
  11288. type="1" >
  11289. </productMenu>
  11290. <productMenu id="deviceSetting"
  11291. type="1"
  11292. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11293. <productMenuURL version="2.5.9"
  11294. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11295. />
  11296. </productMenu>
  11297. <productMenu id="quickGuide"
  11298. type="1"
  11299. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11300. size="934KB" >
  11301. </productMenu>
  11302. <productMenu id="userGuide"
  11303. type="1"
  11304. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11305. size="1.14MB" >
  11306. </productMenu>
  11307. <productMenu id="videoGuide"
  11308. type="0"
  11309. url=""
  11310. size="3.41MB" >
  11311. </productMenu>
  11312. <productMenu id="volume"
  11313. type="11" >
  11314. </productMenu>
  11315. <productMenu id="battery"
  11316. type="1" >
  11317. </productMenu>
  11318. <productID id="321C"
  11319. />
  11320. <productGroupable type="0"
  11321. />
  11322. </product>
  11323. <product id="BMW_HELMET_II_U1"
  11324. name="BMW HELMET II U1"
  11325. series="50"
  11326. latestVersion="1.0"
  11327. show = "0" >
  11328. <productMenu id="protocol"
  11329. type="2" >
  11330. </productMenu>
  11331. <productMenu id="alexa"
  11332. type="0" >
  11333. </productMenu>
  11334. <productMenu id="sip"
  11335. type="1" >
  11336. </productMenu>
  11337. <productMenu id="meshIntercom"
  11338. type="20" >
  11339. </productMenu>
  11340. <productMenu id="bluetoothIntercom"
  11341. type="1" >
  11342. </productMenu>
  11343. <productMenu id="bluetoothIntercom2"
  11344. type="1" >
  11345. </productMenu>
  11346. <productMenu id="phone"
  11347. type="1" >
  11348. </productMenu>
  11349. <productMenu id="music"
  11350. type="1" >
  11351. </productMenu>
  11352. <productMenu id="fmradio"
  11353. type="1" >
  11354. </productMenu>
  11355. <productMenu id="deviceSetting"
  11356. type="1"
  11357. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11358. </productMenu>
  11359. <productMenu id="quickGuide"
  11360. type="1"
  11361. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11362. size="934KB" >
  11363. </productMenu>
  11364. <productMenu id="userGuide"
  11365. type="1"
  11366. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11367. size="1.14MB" >
  11368. </productMenu>
  11369. <productMenu id="volume"
  11370. type="11" >
  11371. </productMenu>
  11372. <productMenu id="battery"
  11373. type="1" >
  11374. </productMenu>
  11375. <productID id="3260"
  11376. />
  11377. <productGroupable type="0"
  11378. />
  11379. </product>
  11380. <product id="OUTRUSHR"
  11381. name="CX935"
  11382. series="Helmet"
  11383. latestVersion="2.1"
  11384. show = "-1" >
  11385. <productMenu id="protocol"
  11386. type="3">
  11387. </productMenu>
  11388. <productMenu id="sip"
  11389. type="1" >
  11390. </productMenu>
  11391. <productMenu id="bluetoothIntercom"
  11392. type="1" >
  11393. </productMenu>
  11394. <productMenu id="phone"
  11395. type="1" >
  11396. </productMenu>
  11397. <productMenu id="fmradio"
  11398. type="0" >
  11399. </productMenu>
  11400. <productMenu id="deviceSetting"
  11401. type="1"
  11402. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11403. </productMenu>
  11404. <productMenu id="userGuide"
  11405. type="1"
  11406. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11407. size="660KB" >
  11408. </productMenu>
  11409. <productID id="5446"
  11410. />
  11411. <productGroupable type="0"
  11412. />
  11413. </product>
  11414. <product id="LSE_01"
  11415. name="LSE-01"
  11416. series="SF"
  11417. latestVersion="1.2.3"
  11418. show = "0" >
  11419. <productMenu id="protocol"
  11420. type="1"
  11421. url="3">
  11422. </productMenu>
  11423. <productMenu id="sip"
  11424. type="1" >
  11425. </productMenu>
  11426. <productMenu id="bluetoothIntercom"
  11427. type="1" >
  11428. </productMenu>
  11429. <productMenu id="phone"
  11430. type="1" >
  11431. </productMenu>
  11432. <productMenu id="music"
  11433. type="1" >
  11434. </productMenu>
  11435. <productMenu id="fmradio"
  11436. type="1" >
  11437. </productMenu>
  11438. <productMenu id="deviceSetting"
  11439. type="1"
  11440. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11441. <productMenuURL version="1.1"
  11442. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11443. />
  11444. <productMenuURL version="1.0"
  11445. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11446. />
  11447. </productMenu>
  11448. <productMenu id="quickGuide"
  11449. type="1"
  11450. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11451. size="607KB" >
  11452. </productMenu>
  11453. <productMenu id="userGuide"
  11454. type="1"
  11455. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11456. size="1.91MB" >
  11457. </productMenu>
  11458. <productMenu id="volume"
  11459. type="4" >
  11460. </productMenu>
  11461. <productID id="5416"
  11462. />
  11463. <productGroupable type="0"
  11464. />
  11465. </product>
  11466. <product id="AGV_ARK"
  11467. name="AGV ARK"
  11468. series="SF"
  11469. latestVersion="1.0.3"
  11470. show = "0" >
  11471. <productMenu id="protocol"
  11472. type="1"
  11473. url="3">
  11474. </productMenu>
  11475. <productMenu id="sip"
  11476. type="1" >
  11477. </productMenu>
  11478. <productMenu id="bluetoothIntercom"
  11479. type="1" >
  11480. </productMenu>
  11481. <productMenu id="phone"
  11482. type="1" >
  11483. </productMenu>
  11484. <productMenu id="music"
  11485. type="1" >
  11486. </productMenu>
  11487. <productMenu id="fmradio"
  11488. type="1" >
  11489. </productMenu>
  11490. <productMenu id="deviceSetting"
  11491. type="1"
  11492. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11493. </productMenu>
  11494. <productMenu id="quickGuide"
  11495. type="1"
  11496. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11497. size="607KB" >
  11498. </productMenu>
  11499. <productMenu id="userGuide"
  11500. type="1"
  11501. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11502. size="1.91MB" >
  11503. </productMenu>
  11504. <productMenu id="volume"
  11505. type="4" >
  11506. </productMenu>
  11507. <productID id="5420"
  11508. />
  11509. <productGroupable type="0"
  11510. />
  11511. </product>
  11512. <product id="KLIM_KRIOS"
  11513. name="KLIM Krios"
  11514. series="10"
  11515. latestVersion="1.1.2"
  11516. show = "0" >
  11517. <productMenu id="protocol"
  11518. type="0">
  11519. </productMenu>
  11520. <productMenu id="sip"
  11521. type="1" >
  11522. </productMenu>
  11523. <productMenu id="bluetoothIntercom"
  11524. type="1" >
  11525. </productMenu>
  11526. <productMenu id="phone"
  11527. type="2" >
  11528. </productMenu>
  11529. <productMenu id="fmradio"
  11530. type="3" >
  11531. </productMenu>
  11532. <productMenu id="deviceSetting"
  11533. type="1"
  11534. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11535. <productMenuURL version="1.0"
  11536. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11537. />
  11538. </productMenu>
  11539. <productMenu id="quickGuide"
  11540. type="1"
  11541. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11542. size="649KB" >
  11543. </productMenu>
  11544. <productMenu id="userGuide"
  11545. type="1"
  11546. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11547. size="1.43MB" >
  11548. </productMenu>
  11549. <productID id="5910"
  11550. />
  11551. <productGroupable type="0"
  11552. />
  11553. </product>
  11554. <product id="POLARIS_SLINGSHOT"
  11555. name="Polaris Slingshot"
  11556. series="10"
  11557. latestVersion="1.1.2"
  11558. show = "0" >
  11559. <productMenu id="protocol"
  11560. type="0">
  11561. </productMenu>
  11562. <productMenu id="sip"
  11563. type="1" >
  11564. </productMenu>
  11565. <productMenu id="bluetoothIntercom"
  11566. type="1" >
  11567. </productMenu>
  11568. <productMenu id="phone"
  11569. type="2" >
  11570. </productMenu>
  11571. <productMenu id="fmradio"
  11572. type="3" >
  11573. </productMenu>
  11574. <productMenu id="deviceSetting"
  11575. type="1"
  11576. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11577. <productMenuURL version="1.0"
  11578. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11579. />
  11580. </productMenu>
  11581. <productMenu id="quickGuide"
  11582. type="1"
  11583. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11584. size="689KB" >
  11585. </productMenu>
  11586. <productMenu id="userGuide"
  11587. type="1"
  11588. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11589. size="1.43MB" >
  11590. </productMenu>
  11591. <productID id="5920"
  11592. />
  11593. <productGroupable type="0"
  11594. />
  11595. </product>
  11596. <product id="DWO6"
  11597. name="SEDICI DWO6-PRO"
  11598. series="10"
  11599. latestVersion="1.0.2"
  11600. show = "0" >
  11601. <productMenu id="protocol"
  11602. type="0">
  11603. </productMenu>
  11604. <productMenu id="sip"
  11605. type="1" >
  11606. </productMenu>
  11607. <productMenu id="bluetoothIntercom"
  11608. type="1" >
  11609. </productMenu>
  11610. <productMenu id="phone"
  11611. type="2" >
  11612. </productMenu>
  11613. <productMenu id="fmradio"
  11614. type="3" >
  11615. </productMenu>
  11616. <productMenu id="deviceSetting"
  11617. type="1"
  11618. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  11619. </productMenu>
  11620. <productMenu id="quickGuide"
  11621. type="1"
  11622. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11623. size="529KB" >
  11624. </productMenu>
  11625. <productMenu id="userGuide"
  11626. type="1"
  11627. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11628. size="4.09MB" >
  11629. </productMenu>
  11630. <productID id="6112"
  11631. />
  11632. <productGroupable type="0"
  11633. />
  11634. </product>
  11635. <product id="DWO6A"
  11636. name="SEDICI DWO-6"
  11637. series="10"
  11638. latestVersion="1.0.2"
  11639. show = "0" >
  11640. <productMenu id="protocol"
  11641. type="0">
  11642. </productMenu>
  11643. <productMenu id="sip"
  11644. type="1" >
  11645. </productMenu>
  11646. <productMenu id="bluetoothIntercom"
  11647. type="1" >
  11648. </productMenu>
  11649. <productMenu id="phone"
  11650. type="2" >
  11651. </productMenu>
  11652. <productMenu id="fmradio"
  11653. type="3" >
  11654. </productMenu>
  11655. <productMenu id="deviceSetting"
  11656. type="1"
  11657. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  11658. </productMenu>
  11659. <productMenu id="quickGuide"
  11660. type="1"
  11661. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  11662. size="522KB" >
  11663. </productMenu>
  11664. <productMenu id="userGuide"
  11665. type="1"
  11666. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  11667. size="2.71MB" >
  11668. </productMenu>
  11669. <productID id="6114"
  11670. />
  11671. <productGroupable type="0"
  11672. />
  11673. </product>
  11674. <product id="3SPLUS"
  11675. name="ZILL"
  11676. series="3"
  11677. latestVersion="1.0.4"
  11678. show = "0" >
  11679. <productMenu id="protocol"
  11680. type="0">
  11681. </productMenu>
  11682. <productMenu id="sip"
  11683. type="1" >
  11684. </productMenu>
  11685. <productMenu id="bluetoothIntercom"
  11686. type="1" >
  11687. </productMenu>
  11688. <productMenu id="deviceSetting"
  11689. type="1"
  11690. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  11691. </productMenu>
  11692. <productMenu id="quickGuide"
  11693. type="1"
  11694. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11695. size="842KB" >
  11696. </productMenu>
  11697. <productMenu id="userGuide"
  11698. type="1"
  11699. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  11700. size="1.02MB" >
  11701. </productMenu>
  11702. <productID id="6335"
  11703. />
  11704. <productGroupable type="0"
  11705. />
  11706. </product>
  11707. <product id="HD50S"
  11708. name="Boom! Audio 30K"
  11709. series="30"
  11710. latestVersion="3.4"
  11711. show = "0" >
  11712. <productMenu id="protocol"
  11713. type="1"
  11714. url="0">
  11715. </productMenu>
  11716. <productMenu id="wa"
  11717. type="0" >
  11718. </productMenu>
  11719. <productMenu id="sip"
  11720. type="1" >
  11721. </productMenu>
  11722. <productMenu id="meshIntercom"
  11723. type="20" >
  11724. <productMenuType version="2.9.9"
  11725. type="10"
  11726. />
  11727. </productMenu>
  11728. <productMenu id="bluetoothIntercom"
  11729. type="1" >
  11730. </productMenu>
  11731. <productMenu id="phone"
  11732. type="1" >
  11733. </productMenu>
  11734. <productMenu id="music"
  11735. type="1" >
  11736. </productMenu>
  11737. <productMenu id="fmradio"
  11738. type="1" >
  11739. </productMenu>
  11740. <productMenu id="deviceSetting"
  11741. type="1"
  11742. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  11743. <productMenuURL version="3.2"
  11744. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  11745. />
  11746. <productMenuURL version="3.0"
  11747. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  11748. />
  11749. <productMenuURL version="2.2"
  11750. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11751. />
  11752. </productMenu>
  11753. <productMenu id="quickGuide"
  11754. type="1"
  11755. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11756. size="1.06MB" >
  11757. </productMenu>
  11758. <productMenu id="userGuide"
  11759. type="1"
  11760. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11761. size="3.15MB" >
  11762. </productMenu>
  11763. <productMenu id="volume"
  11764. type="1" >
  11765. </productMenu>
  11766. <productID id="3112"
  11767. />
  11768. <productGroupable type="0"
  11769. />
  11770. </product>
  11771. <product id="HD50S"
  11772. name="Boom! Audio N02"
  11773. series="30"
  11774. latestVersion="3.1"
  11775. show = "0" >
  11776. <productMenu id="protocol"
  11777. type="1"
  11778. url="0">
  11779. </productMenu>
  11780. <productMenu id="wa"
  11781. type="2" >
  11782. </productMenu>
  11783. <productMenu id="sip"
  11784. type="1" >
  11785. </productMenu>
  11786. <productMenu id="meshIntercom"
  11787. type="20" >
  11788. <productMenuType version="2.9.9"
  11789. type="10"
  11790. />
  11791. </productMenu>
  11792. <productMenu id="bluetoothIntercom"
  11793. type="1" >
  11794. </productMenu>
  11795. <productMenu id="phone"
  11796. type="1" >
  11797. </productMenu>
  11798. <productMenu id="music"
  11799. type="1" >
  11800. </productMenu>
  11801. <productMenu id="fmradio"
  11802. type="1" >
  11803. </productMenu>
  11804. <productMenu id="deviceSetting"
  11805. type="1"
  11806. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  11807. <productMenuURL version="2.2"
  11808. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11809. />
  11810. </productMenu>
  11811. <productMenu id="quickGuide"
  11812. type="1"
  11813. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  11814. size="1.06MB" >
  11815. </productMenu>
  11816. <productMenu id="userGuide"
  11817. type="1"
  11818. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  11819. size="3.15MB" >
  11820. </productMenu>
  11821. <productMenu id="volume"
  11822. type="2" >
  11823. </productMenu>
  11824. <productID id="3114"
  11825. />
  11826. <productGroupable type="0"
  11827. />
  11828. </product>
  11829. <product id="HD50S"
  11830. name="Boom Audio 20S"
  11831. series="50"
  11832. latestVersion="2.5.2"
  11833. show = "0" >
  11834. <productMenu id="protocol"
  11835. type="0">
  11836. </productMenu>
  11837. <productMenu id="sip"
  11838. type="1" >
  11839. <productMenuType version="1.0"
  11840. type="0"
  11841. />
  11842. </productMenu>
  11843. <productMenu id="bluetoothIntercom"
  11844. type="1" >
  11845. <productMenuType version="1.0"
  11846. type="0"
  11847. />
  11848. </productMenu>
  11849. <productMenu id="intercomSetting"
  11850. type="1" >
  11851. </productMenu>
  11852. <productMenu id="phone"
  11853. type="2" >
  11854. </productMenu>
  11855. <productMenu id="fmradio"
  11856. type="3" >
  11857. </productMenu>
  11858. <productMenu id="deviceSetting"
  11859. type="1"
  11860. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11861. <productMenuURL version="2.4"
  11862. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11863. />
  11864. <productMenuURL version="1.5"
  11865. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11866. />
  11867. <productMenuURL version="1.4.1"
  11868. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11869. />
  11870. <productMenuURL version="1.1"
  11871. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11872. />
  11873. <productMenuURL version="1.0"
  11874. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11875. />
  11876. </productMenu>
  11877. <productMenu id="quickGuide"
  11878. type="1"
  11879. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11880. size="264KB" >
  11881. </productMenu>
  11882. <productMenu id="userGuide"
  11883. type="1"
  11884. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11885. size="3.09MB" >
  11886. </productMenu>
  11887. <productMenu id="connectGuide"
  11888. type="1"
  11889. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  11890. size="1.12MB" >
  11891. </productMenu>
  11892. <productID id="4210"
  11893. />
  11894. <productProductKey key="11"
  11895. />
  11896. <productID id="4230"
  11897. />
  11898. <productProductKey key="11"
  11899. />
  11900. <productGroupable type="1"
  11901. />
  11902. </product>
  11903. <product id="HD50S"
  11904. name="Boom Audio 20S EVO"
  11905. series="50"
  11906. latestVersion="2.5.2"
  11907. show = "0" >
  11908. <productMenu id="protocol"
  11909. type="0">
  11910. </productMenu>
  11911. <productMenu id="sip"
  11912. type="1" >
  11913. <productMenuType version="1.0"
  11914. type="0"
  11915. />
  11916. </productMenu>
  11917. <productMenu id="bluetoothIntercom"
  11918. type="1" >
  11919. <productMenuType version="1.0"
  11920. type="0"
  11921. />
  11922. </productMenu>
  11923. <productMenu id="intercomSetting"
  11924. type="1" >
  11925. </productMenu>
  11926. <productMenu id="phone"
  11927. type="2" >
  11928. </productMenu>
  11929. <productMenu id="fmradio"
  11930. type="3" >
  11931. </productMenu>
  11932. <productMenu id="deviceSetting"
  11933. type="1"
  11934. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11935. <productMenuURL version="2.4"
  11936. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11937. />
  11938. <productMenuURL version="1.5"
  11939. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11940. />
  11941. <productMenuURL version="1.4.1"
  11942. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11943. />
  11944. <productMenuURL version="1.1"
  11945. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11946. />
  11947. <productMenuURL version="1.0"
  11948. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11949. />
  11950. </productMenu>
  11951. <productMenu id="quickGuide"
  11952. type="1"
  11953. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11954. size="321KB" >
  11955. </productMenu>
  11956. <productMenu id="userGuide"
  11957. type="1"
  11958. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11959. size="2.46MB" >
  11960. </productMenu>
  11961. <productID id="4230"
  11962. />
  11963. <productProductKey key="27"
  11964. />
  11965. <productGroupable type="1"
  11966. />
  11967. </product>
  11968. <product id="HD50S"
  11969. name="Boom! Audio 10S"
  11970. series="50"
  11971. latestVersion="1.1.3"
  11972. show = "0" >
  11973. <productMenu id="protocol"
  11974. type="0">
  11975. </productMenu>
  11976. <productMenu id="sip"
  11977. type="1" >
  11978. </productMenu>
  11979. <productMenu id="bluetoothIntercom"
  11980. type="1" >
  11981. </productMenu>
  11982. <productMenu id="phone"
  11983. type="2" >
  11984. </productMenu>
  11985. <productMenu id="fmradio"
  11986. type="3" >
  11987. </productMenu>
  11988. <productMenu id="deviceSetting"
  11989. type="1"
  11990. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  11991. </productMenu>
  11992. <productMenu id="quickGuide"
  11993. type="1"
  11994. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11995. size="538KB" >
  11996. </productMenu>
  11997. <productMenu id="userGuide"
  11998. type="1"
  11999. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12000. size="1.55MB" >
  12001. </productMenu>
  12002. <productID id="5532"
  12003. />
  12004. <productGroupable type="0"
  12005. />
  12006. </product>
  12007. <product id="HD50S"
  12008. name="Boom! Audio N01 10R"
  12009. series="50"
  12010. latestVersion="1.1.3"
  12011. show = "0" >
  12012. <productMenu id="protocol"
  12013. type="0">
  12014. </productMenu>
  12015. <productMenu id="sip"
  12016. type="1" >
  12017. </productMenu>
  12018. <productMenu id="bluetoothIntercom"
  12019. type="1" >
  12020. </productMenu>
  12021. <productMenu id="phone"
  12022. type="2" >
  12023. </productMenu>
  12024. <productMenu id="fmradio"
  12025. type="3" >
  12026. </productMenu>
  12027. <productMenu id="deviceSetting"
  12028. type="1"
  12029. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  12030. </productMenu>
  12031. <productMenu id="quickGuide"
  12032. type="1"
  12033. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12034. size="766KB" >
  12035. </productMenu>
  12036. <productMenu id="userGuide"
  12037. type="1"
  12038. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12039. size="1.45MB" >
  12040. </productMenu>
  12041. <productID id="5522"
  12042. />
  12043. <productGroupable type="0"
  12044. />
  12045. </product>
  12046. <product id="HD50S"
  12047. name="OUTRUSH-R N03"
  12048. series="50"
  12049. latestVersion="1.2.1"
  12050. show = "-1" >
  12051. <productMenu id="protocol"
  12052. type="0">
  12053. </productMenu>
  12054. <productMenu id="sip"
  12055. type="1" >
  12056. </productMenu>
  12057. <productMenu id="bluetoothIntercom"
  12058. type="1" >
  12059. </productMenu>
  12060. <productMenu id="phone"
  12061. type="2" >
  12062. </productMenu>
  12063. <productMenu id="fmradio"
  12064. type="3" >
  12065. </productMenu>
  12066. <productMenu id="deviceSetting"
  12067. type="1"
  12068. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  12069. </productMenu>
  12070. <productMenu id="userGuide"
  12071. type="1"
  12072. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  12073. size="660KB" >
  12074. </productMenu>
  12075. <productID id="5434"
  12076. />
  12077. <productGroupable type="0"
  12078. />
  12079. </product>
  12080. <product id="HD50S"
  12081. name="OUTRUSH-R N03"
  12082. series="50"
  12083. latestVersion="2.0"
  12084. show = "0" >
  12085. <productMenu id="protocol"
  12086. type="3" >
  12087. </productMenu>
  12088. <productMenu id="sip"
  12089. type="1" >
  12090. </productMenu>
  12091. <productMenu id="bluetoothIntercom"
  12092. type="1" >
  12093. </productMenu>
  12094. <productMenu id="phone"
  12095. type="1" >
  12096. </productMenu>
  12097. <productMenu id="fmradio"
  12098. type="1" >
  12099. </productMenu>
  12100. <productMenu id="deviceSetting"
  12101. type="1"
  12102. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  12103. </productMenu>
  12104. <productMenu id="userGuide"
  12105. type="1"
  12106. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  12107. size="1.14MB" >
  12108. </productMenu>
  12109. <productID id="5441"
  12110. />
  12111. <productGroupable type="0"
  12112. />
  12113. </product>
  12114. <product id="5R"
  12115. name="5R"
  12116. series="5"
  12117. latestVersion="1.0.1"
  12118. show = "1" >
  12119. <productMenu id="protocol"
  12120. type="3" >
  12121. </productMenu>
  12122. <productMenu id="sip"
  12123. type="1" >
  12124. </productMenu>
  12125. <productMenu id="bluetoothIntercom"
  12126. type="1" >
  12127. </productMenu>
  12128. <productMenu id="phone"
  12129. type="1" >
  12130. </productMenu>
  12131. <productMenu id="fmradio"
  12132. type="1" >
  12133. </productMenu>
  12134. <productMenu id="deviceSetting"
  12135. type="1"
  12136. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12137. </productMenu>
  12138. <productMenu id="quickGuide"
  12139. type="0"
  12140. url=""
  12141. size="934KB" >
  12142. </productMenu>
  12143. <productMenu id="userGuide"
  12144. type="1"
  12145. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  12146. size="1.14MB" >
  12147. </productMenu>
  12148. <productMenu id="connectGuide"
  12149. type="1"
  12150. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12151. size="1.12MB" >
  12152. </productMenu>
  12153. <productID id="5591"
  12154. />
  12155. <productGroupable type="0"
  12156. />
  12157. </product>
  12158. <product id="5R"
  12159. name="5R LITE"
  12160. series="5"
  12161. latestVersion="1.0.1"
  12162. show = "1" >
  12163. <productMenu id="protocol"
  12164. type="3" >
  12165. </productMenu>
  12166. <productMenu id="sip"
  12167. type="1" >
  12168. </productMenu>
  12169. <productMenu id="bluetoothIntercom"
  12170. type="1" >
  12171. </productMenu>
  12172. <productMenu id="phone"
  12173. type="1" >
  12174. </productMenu>
  12175. <productMenu id="fmradio"
  12176. type="1" >
  12177. </productMenu>
  12178. <productMenu id="deviceSetting"
  12179. type="1"
  12180. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12181. </productMenu>
  12182. <productMenu id="quickGuide"
  12183. type="0"
  12184. url=""
  12185. size="934KB" >
  12186. </productMenu>
  12187. <productMenu id="userGuide"
  12188. type="1"
  12189. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12190. size="1.14MB" >
  12191. </productMenu>
  12192. <productMenu id="connectGuide"
  12193. type="1"
  12194. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12195. size="1.12MB" >
  12196. </productMenu>
  12197. <productID id="5592"
  12198. />
  12199. <productGroupable type="0"
  12200. />
  12201. </product>
  12202. <product id="50RLE"
  12203. name="50R LE"
  12204. series="50"
  12205. latestVersion="1.1"
  12206. show = "0" >
  12207. <productMenu id="protocol"
  12208. type="2" >
  12209. </productMenu>
  12210. <productMenu id="alexa"
  12211. type="0" >
  12212. </productMenu>
  12213. <productMenu id="sip"
  12214. type="1" >
  12215. </productMenu>
  12216. <productMenu id="meshIntercom"
  12217. type="30" >
  12218. </productMenu>
  12219. <productMenu id="meshIntercom+"
  12220. type="3"
  12221. url="2" >
  12222. <productMenuType version="1.0.9"
  12223. type="2"
  12224. />
  12225. </productMenu>
  12226. <productMenu id="waveIntercom"
  12227. type="1" >
  12228. <productMenuType version="1.0.9"
  12229. type="0"
  12230. />
  12231. </productMenu>
  12232. <productMenu id="bluetoothIntercom"
  12233. type="1" >
  12234. </productMenu>
  12235. <productMenu id="phone"
  12236. type="1" >
  12237. </productMenu>
  12238. <productMenu id="music"
  12239. type="1" >
  12240. </productMenu>
  12241. <productMenu id="fmradio"
  12242. type="0" >
  12243. </productMenu>
  12244. <productMenu id="deviceSetting"
  12245. type="1"
  12246. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  12247. <productMenuURL version="1.0.9"
  12248. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  12249. />
  12250. </productMenu>
  12251. <productMenu id="quickGuide"
  12252. type="0"
  12253. url=""
  12254. size="344KB" >
  12255. </productMenu>
  12256. <productMenu id="userGuide"
  12257. type="0"
  12258. url=""
  12259. size="3.41MB" >
  12260. </productMenu>
  12261. <productMenu id="volume"
  12262. type="11" >
  12263. </productMenu>
  12264. <productMenu id="battery"
  12265. type="1" >
  12266. </productMenu>
  12267. <productID id="3223"
  12268. />
  12269. <productGroupable type="0"
  12270. />
  12271. </product>
  12272. <product id="5RLOUIS"
  12273. name="5R LOUIS EDITION"
  12274. series="5"
  12275. latestVersion="1.0"
  12276. show = "-1" >
  12277. <productMenu id="protocol"
  12278. type="3" >
  12279. </productMenu>
  12280. <productMenu id="sip"
  12281. type="1" >
  12282. </productMenu>
  12283. <productMenu id="bluetoothIntercom"
  12284. type="1" >
  12285. </productMenu>
  12286. <productMenu id="phone"
  12287. type="1" >
  12288. </productMenu>
  12289. <productMenu id="fmradio"
  12290. type="1" >
  12291. </productMenu>
  12292. <productMenu id="deviceSetting"
  12293. type="1"
  12294. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12295. </productMenu>
  12296. <productMenu id="quickGuide"
  12297. type="0"
  12298. url=""
  12299. size="934KB" >
  12300. </productMenu>
  12301. <productMenu id="userGuide"
  12302. type="0"
  12303. url=""
  12304. size="1.14MB" >
  12305. </productMenu>
  12306. <productID id="5597"
  12307. />
  12308. <productGroupable type="0"
  12309. />
  12310. </product>
  12311. <product id="5S"
  12312. name="Ridekont 5S"
  12313. series="5"
  12314. latestVersion="2.3"
  12315. show = "-1" >
  12316. <productMenu id="protocol"
  12317. type="3" >
  12318. </productMenu>
  12319. <productMenu id="sip"
  12320. type="1" >
  12321. </productMenu>
  12322. <productMenu id="bluetoothIntercom"
  12323. type="1" >
  12324. </productMenu>
  12325. <productMenu id="phone"
  12326. type="1" >
  12327. </productMenu>
  12328. <productMenu id="fmradio"
  12329. type="0" >
  12330. </productMenu>
  12331. <productMenu id="deviceSetting"
  12332. type="1"
  12333. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12334. </productMenu>
  12335. <productMenu id="quickGuide"
  12336. type="0"
  12337. url=""
  12338. size="934KB" >
  12339. </productMenu>
  12340. <productMenu id="userGuide"
  12341. type="1"
  12342. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12343. size="1.14MB" >
  12344. </productMenu>
  12345. <productID id="5589"
  12346. />
  12347. <productGroupable type="0"
  12348. />
  12349. </product>
  12350. <product id="5R"
  12351. name="Ridekont 5R"
  12352. series="5"
  12353. latestVersion="1.0"
  12354. show = "0" >
  12355. <productMenu id="protocol"
  12356. type="3" >
  12357. </productMenu>
  12358. <productMenu id="sip"
  12359. type="1" >
  12360. </productMenu>
  12361. <productMenu id="bluetoothIntercom"
  12362. type="1" >
  12363. </productMenu>
  12364. <productMenu id="phone"
  12365. type="1" >
  12366. </productMenu>
  12367. <productMenu id="fmradio"
  12368. type="1" >
  12369. </productMenu>
  12370. <productMenu id="deviceSetting"
  12371. type="1"
  12372. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12373. </productMenu>
  12374. <productMenu id="quickGuide"
  12375. type="1"
  12376. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12377. size="934KB" >
  12378. </productMenu>
  12379. <productMenu id="userGuide"
  12380. type="1"
  12381. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12382. size="1.14MB" >
  12383. </productMenu>
  12384. <productID id="5593"
  12385. />
  12386. <productGroupable type="0"
  12387. />
  12388. </product>
  12389. <product id="5R"
  12390. name="Ridekont 5R LITE"
  12391. series="5"
  12392. latestVersion="1.0"
  12393. show = "0" >
  12394. <productMenu id="protocol"
  12395. type="3" >
  12396. </productMenu>
  12397. <productMenu id="sip"
  12398. type="1" >
  12399. </productMenu>
  12400. <productMenu id="bluetoothIntercom"
  12401. type="1" >
  12402. </productMenu>
  12403. <productMenu id="phone"
  12404. type="1" >
  12405. </productMenu>
  12406. <productMenu id="fmradio"
  12407. type="1" >
  12408. </productMenu>
  12409. <productMenu id="deviceSetting"
  12410. type="1"
  12411. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12412. </productMenu>
  12413. <productMenu id="quickGuide"
  12414. type="0"
  12415. url=""
  12416. size="934KB" >
  12417. </productMenu>
  12418. <productMenu id="userGuide"
  12419. type="1"
  12420. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12421. size="1.14MB" >
  12422. </productMenu>
  12423. <productID id="5594"
  12424. />
  12425. <productGroupable type="0"
  12426. />
  12427. </product>
  12428. <product id="SA30"
  12429. name="SA30"
  12430. series="SA"
  12431. latestVersion="1.0.1"
  12432. latestVersionVoicePrompt="0.15"
  12433. show = "-1" >
  12434. <productMenu id="protocol"
  12435. type="2" >
  12436. </productMenu>
  12437. <productMenu id="ota"
  12438. type="2" >
  12439. <otaPackages>
  12440. <package
  12441. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.1-build0.img"
  12442. size="3144148"
  12443. />
  12444. </otaPackages>
  12445. </productMenu>
  12446. <productMenu id="meshIntercom"
  12447. type="30" >
  12448. </productMenu>
  12449. <productMenu id="meshIntercom+"
  12450. type="3"
  12451. url="2" >
  12452. </productMenu>
  12453. <productMenu id="phone"
  12454. type="1" >
  12455. </productMenu>
  12456. <productMenu id="music"
  12457. type="1" >
  12458. </productMenu>
  12459. <productMenu id="musicSharing"
  12460. type="0" >
  12461. </productMenu>
  12462. <productMenu id="deviceSetting"
  12463. type="1"
  12464. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12465. </productMenu>
  12466. <productMenu id="quickGuide"
  12467. type="0"
  12468. url=""
  12469. size="1.12MB" >
  12470. </productMenu>
  12471. <productMenu id="userGuide"
  12472. type="1"
  12473. url=""
  12474. size="2.0MB" >
  12475. </productMenu>
  12476. <productMenu id="videoGuide"
  12477. type="0"
  12478. url=""
  12479. size="3.41MB" >
  12480. </productMenu>
  12481. <productMenu id="volume"
  12482. type="12" >
  12483. </productMenu>
  12484. <productMenu id="battery"
  12485. type="1" >
  12486. </productMenu>
  12487. <productID id="6852"
  12488. />
  12489. <productGroupable type="0"
  12490. />
  12491. </product>
  12492. <product id="I30"
  12493. name="I30"
  12494. series="I"
  12495. latestVersion="1.0.1"
  12496. latestVersionVoicePrompt="0.2"
  12497. show = "-1" >
  12498. <productMenu id="protocol"
  12499. type="2" >
  12500. </productMenu>
  12501. <productMenu id="ota"
  12502. type="2" >
  12503. <otaPackages>
  12504. <package
  12505. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.1-build0.img"
  12506. size="3144148"
  12507. />
  12508. </otaPackages>
  12509. </productMenu>
  12510. <productMenu id="meshIntercom"
  12511. type="30" >
  12512. </productMenu>
  12513. <productMenu id="meshIntercom+"
  12514. type="3"
  12515. url="2" >
  12516. </productMenu>
  12517. <productMenu id="phone"
  12518. type="1" >
  12519. </productMenu>
  12520. <productMenu id="music"
  12521. type="1" >
  12522. </productMenu>
  12523. <productMenu id="musicSharing"
  12524. type="0" >
  12525. </productMenu>
  12526. <productMenu id="deviceSetting"
  12527. type="1"
  12528. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12529. </productMenu>
  12530. <productMenu id="quickGuide"
  12531. type="0"
  12532. url=""
  12533. size="1.12MB" >
  12534. </productMenu>
  12535. <productMenu id="userGuide"
  12536. type="1"
  12537. url=""
  12538. size="2.10MB" >
  12539. </productMenu>
  12540. <productMenu id="videoGuide"
  12541. type="0"
  12542. url=""
  12543. size="3.11MB" >
  12544. </productMenu>
  12545. <productMenu id="volume"
  12546. type="12" >
  12547. </productMenu>
  12548. <productMenu id="battery"
  12549. type="1" >
  12550. </productMenu>
  12551. <productID id="6853"
  12552. />
  12553. <productGroupable type="0"
  12554. />
  12555. </product>
  12556. <product id="LS2C30"
  12557. name="LS2-C30"
  12558. series="C"
  12559. latestVersion="1.0"
  12560. latestVersionVoicePrompt="0.13"
  12561. show = "-1" >
  12562. <productMenu id="protocol"
  12563. type="2" >
  12564. </productMenu>
  12565. <productMenu id="ota"
  12566. type="0" >
  12567. <otaPackages>
  12568. <package
  12569. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_LS2C30-v1.2.2-build0.img"
  12570. size="3144148"
  12571. />
  12572. </otaPackages>
  12573. </productMenu>
  12574. <productMenu id="meshIntercom+"
  12575. type="3"
  12576. url="2" >
  12577. </productMenu>
  12578. <productMenu id="waveIntercom"
  12579. type="1" >
  12580. </productMenu>
  12581. <productMenu id="phone"
  12582. type="1" >
  12583. </productMenu>
  12584. <productMenu id="music"
  12585. type="1" >
  12586. </productMenu>
  12587. <productMenu id="musicSharing"
  12588. type="0" >
  12589. </productMenu>
  12590. <productMenu id="deviceSetting"
  12591. type="1"
  12592. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  12593. </productMenu>
  12594. <productMenu id="quickGuide"
  12595. type="0"
  12596. url=""
  12597. size="1.17MB" >
  12598. </productMenu>
  12599. <productMenu id="userGuide"
  12600. type="1"
  12601. url=""
  12602. size="2.0MB" >
  12603. </productMenu>
  12604. <productMenu id="videoGuide"
  12605. type="0"
  12606. url=""
  12607. size="3.41MB" >
  12608. </productMenu>
  12609. <productMenu id="volume"
  12610. type="12" >
  12611. </productMenu>
  12612. <productMenu id="battery"
  12613. type="1" >
  12614. </productMenu>
  12615. <productID id="685E"
  12616. />
  12617. <productGroupable type="0"
  12618. />
  12619. </product>
  12620. <product id="C30EVO"
  12621. name="C30 EVO"
  12622. series="C"
  12623. latestVersion="1.0"
  12624. latestVersionVoicePrompt="0.13"
  12625. show = "-1" >
  12626. <productMenu id="protocol"
  12627. type="2" >
  12628. </productMenu>
  12629. <productMenu id="ota"
  12630. type="0" >
  12631. <otaPackages>
  12632. <package
  12633. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  12634. size="3144148"
  12635. />
  12636. </otaPackages>
  12637. </productMenu>
  12638. <productMenu id="meshIntercom+"
  12639. type="3"
  12640. url="2" >
  12641. </productMenu>
  12642. <productMenu id="waveIntercom"
  12643. type="1" >
  12644. </productMenu>
  12645. <productMenu id="phone"
  12646. type="1" >
  12647. </productMenu>
  12648. <productMenu id="music"
  12649. type="1" >
  12650. </productMenu>
  12651. <productMenu id="musicSharing"
  12652. type="0" >
  12653. </productMenu>
  12654. <productMenu id="deviceSetting"
  12655. type="1"
  12656. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  12657. </productMenu>
  12658. <productMenu id="quickGuide"
  12659. type="0"
  12660. url=""
  12661. size="1.17MB" >
  12662. </productMenu>
  12663. <productMenu id="userGuide"
  12664. type="1"
  12665. url=""
  12666. size="2.0MB" >
  12667. </productMenu>
  12668. <productMenu id="videoGuide"
  12669. type="0"
  12670. url=""
  12671. size="3.41MB" >
  12672. </productMenu>
  12673. <productMenu id="volume"
  12674. type="12" >
  12675. </productMenu>
  12676. <productMenu id="battery"
  12677. type="1" >
  12678. </productMenu>
  12679. <productID id="685B"
  12680. />
  12681. <productGroupable type="0"
  12682. />
  12683. </product>
  12684. <product id="C30"
  12685. name="SENA C30"
  12686. series="C"
  12687. latestVersion="1.2.2"
  12688. latestVersionVoicePrompt="0.13"
  12689. show = "1" >
  12690. <productMenu id="protocol"
  12691. type="2" >
  12692. </productMenu>
  12693. <productMenu id="alexa"
  12694. type="0" >
  12695. </productMenu>
  12696. <productMenu id="ota"
  12697. type="2" >
  12698. <otaPackages>
  12699. <package
  12700. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.2-build0.img"
  12701. size="3144148"
  12702. />
  12703. </otaPackages>
  12704. </productMenu>
  12705. <productMenu id="wa"
  12706. type="0" >
  12707. </productMenu>
  12708. <productMenu id="meshIntercom"
  12709. type="30" >
  12710. </productMenu>
  12711. <productMenu id="meshIntercom+"
  12712. type="3"
  12713. url="2" >
  12714. <productMenuType version="1.0.9"
  12715. type="2"
  12716. />
  12717. </productMenu>
  12718. <productMenu id="waveIntercom"
  12719. type="1" >
  12720. <productMenuType version="1.1.9"
  12721. type="0"
  12722. />
  12723. </productMenu>
  12724. <productMenu id="phone"
  12725. type="1" >
  12726. </productMenu>
  12727. <productMenu id="music"
  12728. type="1" >
  12729. </productMenu>
  12730. <productMenu id="musicSharing"
  12731. type="0" >
  12732. </productMenu>
  12733. <productMenu id="deviceSetting"
  12734. type="1"
  12735. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  12736. <productMenuURL version="1.1.3"
  12737. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  12738. />
  12739. <productMenuURL version="1.0.9"
  12740. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  12741. />
  12742. </productMenu>
  12743. <productMenu id="quickGuide"
  12744. type="1"
  12745. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  12746. size="1.12MB" >
  12747. </productMenu>
  12748. <productMenu id="userGuide"
  12749. type="0"
  12750. url=""
  12751. size="2.0MB" >
  12752. </productMenu>
  12753. <productMenu id="videoGuide"
  12754. type="0"
  12755. url=""
  12756. size="3.41MB" >
  12757. </productMenu>
  12758. <productMenu id="volume"
  12759. type="12" >
  12760. </productMenu>
  12761. <productMenu id="battery"
  12762. type="1" >
  12763. </productMenu>
  12764. <productID id="683A"
  12765. />
  12766. <productGroupable type="0"
  12767. />
  12768. </product>
  12769. <product id="C20"
  12770. name="C20"
  12771. series="C"
  12772. latestVersion="1.0"
  12773. show = "1" >
  12774. <productMenu id="protocol"
  12775. type="3" >
  12776. </productMenu>
  12777. <productMenu id="sip"
  12778. type="1" >
  12779. </productMenu>
  12780. <productMenu id="bluetoothIntercom"
  12781. type="1" >
  12782. </productMenu>
  12783. <productMenu id="phone"
  12784. type="1" >
  12785. </productMenu>
  12786. <productMenu id="deviceSetting"
  12787. type="1"
  12788. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  12789. </productMenu>
  12790. <productMenu id="quickGuide"
  12791. type="1"
  12792. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  12793. size="934KB" >
  12794. </productMenu>
  12795. <productMenu id="userGuide"
  12796. type="1"
  12797. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  12798. size="1.14MB" >
  12799. </productMenu>
  12800. <productID id="3701"
  12801. />
  12802. <productGroupable type="0"
  12803. />
  12804. </product>
  12805. <product id="C10"
  12806. name="C10"
  12807. series="C"
  12808. latestVersion="1.4.4"
  12809. show = "1" >
  12810. <productMenu id="protocol"
  12811. type="3" >
  12812. </productMenu>
  12813. <productMenu id="sip"
  12814. type="1" >
  12815. </productMenu>
  12816. <productMenu id="bluetoothIntercom"
  12817. type="1" >
  12818. </productMenu>
  12819. <productMenu id="phone"
  12820. type="1" >
  12821. </productMenu>
  12822. <productMenu id="fmradio"
  12823. type="0" >
  12824. </productMenu>
  12825. <productMenu id="deviceSetting"
  12826. type="1"
  12827. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12828. </productMenu>
  12829. <productMenu id="userGuide"
  12830. type="1"
  12831. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  12832. size="1.14MB" >
  12833. </productMenu>
  12834. <productID id="5595"
  12835. />
  12836. <productGroupable type="0"
  12837. />
  12838. </product>
  12839. <product id="J30"
  12840. name="J30"
  12841. series="J"
  12842. latestVersion="1.2.2"
  12843. latestVersionVoicePrompt="0.14"
  12844. show = "0" >
  12845. <productMenu id="protocol"
  12846. type="2" >
  12847. </productMenu>
  12848. <productMenu id="alexa"
  12849. type="0" >
  12850. </productMenu>
  12851. <productMenu id="ota"
  12852. type="2" >
  12853. <otaPackages>
  12854. <package
  12855. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.2-build1.img"
  12856. size="3144148"
  12857. />
  12858. </otaPackages>
  12859. </productMenu>
  12860. <productMenu id="wa"
  12861. type="0" >
  12862. </productMenu>
  12863. <productMenu id="meshIntercom"
  12864. type="30" >
  12865. </productMenu>
  12866. <productMenu id="meshIntercom+"
  12867. type="3"
  12868. url="2" >
  12869. <productMenuType version="1.0.9"
  12870. type="2"
  12871. />
  12872. </productMenu>
  12873. <productMenu id="waveIntercom"
  12874. type="1" >
  12875. <productMenuType version="1.1.9"
  12876. type="0"
  12877. />
  12878. </productMenu>
  12879. <productMenu id="phone"
  12880. type="1" >
  12881. </productMenu>
  12882. <productMenu id="music"
  12883. type="1" >
  12884. </productMenu>
  12885. <productMenu id="musicSharing"
  12886. type="0" >
  12887. </productMenu>
  12888. <productMenu id="deviceSetting"
  12889. type="1"
  12890. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  12891. <productMenuURL version="1.0.9"
  12892. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  12893. />
  12894. </productMenu>
  12895. <productMenu id="quickGuide"
  12896. type="0"
  12897. url=""
  12898. size="1.12MB" >
  12899. </productMenu>
  12900. <productMenu id="userGuide"
  12901. type="1"
  12902. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  12903. size="2.0MB" >
  12904. </productMenu>
  12905. <productMenu id="videoGuide"
  12906. type="0"
  12907. url=""
  12908. size="3.41MB" >
  12909. </productMenu>
  12910. <productMenu id="volume"
  12911. type="12" >
  12912. </productMenu>
  12913. <productMenu id="battery"
  12914. type="1" >
  12915. </productMenu>
  12916. <productID id="6848"
  12917. />
  12918. <productGroupable type="0"
  12919. />
  12920. </product>
  12921. <product id="J10"
  12922. name="J10"
  12923. series="5"
  12924. latestVersion="1.1.4"
  12925. show = "0" >
  12926. <productMenu id="protocol"
  12927. type="3" >
  12928. </productMenu>
  12929. <productMenu id="sip"
  12930. type="1" >
  12931. </productMenu>
  12932. <productMenu id="bluetoothIntercom"
  12933. type="1" >
  12934. </productMenu>
  12935. <productMenu id="phone"
  12936. type="1" >
  12937. </productMenu>
  12938. <productMenu id="fmradio"
  12939. type="0" >
  12940. </productMenu>
  12941. <productMenu id="deviceSetting"
  12942. type="1"
  12943. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12944. </productMenu>
  12945. <productMenu id="userGuide"
  12946. type="1"
  12947. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  12948. size="1.14MB" >
  12949. </productMenu>
  12950. <productID id="5598"
  12951. />
  12952. <productGroupable type="0"
  12953. />
  12954. </product>
  12955. <product id="B20"
  12956. name="B20"
  12957. series="B"
  12958. latestVersion="1.1.2"
  12959. latestVersionVoicePrompt="0.14"
  12960. show = "0" >
  12961. <productMenu id="protocol"
  12962. type="2" >
  12963. </productMenu>
  12964. <productMenu id="alexa"
  12965. type="0" >
  12966. </productMenu>
  12967. <productMenu id="ota"
  12968. type="2" >
  12969. <otaPackages>
  12970. <package
  12971. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.2-build1.img"
  12972. size="3144148"
  12973. />
  12974. </otaPackages>
  12975. </productMenu>
  12976. <productMenu id="wa"
  12977. type="0" >
  12978. </productMenu>
  12979. <productMenu id="meshIntercom"
  12980. type="30" >
  12981. </productMenu>
  12982. <productMenu id="phone"
  12983. type="1" >
  12984. </productMenu>
  12985. <productMenu id="music"
  12986. type="1" >
  12987. </productMenu>
  12988. <productMenu id="musicSharing"
  12989. type="0" >
  12990. </productMenu>
  12991. <productMenu id="deviceSetting"
  12992. type="1"
  12993. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  12994. <productMenuURL version="1.0.9"
  12995. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  12996. />
  12997. </productMenu>
  12998. <productMenu id="quickGuide"
  12999. type="0"
  13000. url=""
  13001. size="1.12MB" >
  13002. </productMenu>
  13003. <productMenu id="userGuide"
  13004. type="1"
  13005. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  13006. size="2.0MB" >
  13007. </productMenu>
  13008. <productMenu id="videoGuide"
  13009. type="0"
  13010. url=""
  13011. size="3.41MB" >
  13012. </productMenu>
  13013. <productMenu id="volume"
  13014. type="12" >
  13015. </productMenu>
  13016. <productMenu id="battery"
  13017. type="1" >
  13018. </productMenu>
  13019. <productID id="6847"
  13020. />
  13021. <productGroupable type="0"
  13022. />
  13023. </product>
  13024. <product id="B10"
  13025. name="B10"
  13026. series="5"
  13027. latestVersion="1.2.4"
  13028. show = "0" >
  13029. <productMenu id="protocol"
  13030. type="3" >
  13031. </productMenu>
  13032. <productMenu id="sip"
  13033. type="1" >
  13034. </productMenu>
  13035. <productMenu id="bluetoothIntercom"
  13036. type="1" >
  13037. </productMenu>
  13038. <productMenu id="phone"
  13039. type="1" >
  13040. </productMenu>
  13041. <productMenu id="fmradio"
  13042. type="0" >
  13043. </productMenu>
  13044. <productMenu id="deviceSetting"
  13045. type="1"
  13046. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  13047. </productMenu>
  13048. <productMenu id="userGuide"
  13049. type="1"
  13050. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  13051. size="1.14MB" >
  13052. </productMenu>
  13053. <productID id="5596"
  13054. />
  13055. <productGroupable type="0"
  13056. />
  13057. </product>
  13058. <product id="E30"
  13059. name="E30"
  13060. series="E"
  13061. latestVersion="1.1.2"
  13062. latestVersionVoicePrompt="0.14"
  13063. show = "0" >
  13064. <productMenu id="protocol"
  13065. type="2" >
  13066. </productMenu>
  13067. <productMenu id="alexa"
  13068. type="0" >
  13069. </productMenu>
  13070. <productMenu id="ota"
  13071. type="2" >
  13072. <otaPackages>
  13073. <package
  13074. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.2-build1.img"
  13075. size="3144148"
  13076. />
  13077. </otaPackages>
  13078. </productMenu>
  13079. <productMenu id="wa"
  13080. type="0" >
  13081. </productMenu>
  13082. <productMenu id="meshIntercom"
  13083. type="30" >
  13084. </productMenu>
  13085. <productMenu id="meshIntercom+"
  13086. type="3"
  13087. url="2" >
  13088. </productMenu>
  13089. <productMenu id="waveIntercom"
  13090. type="1" >
  13091. <productMenuType version="1.0.9"
  13092. type="0"
  13093. />
  13094. </productMenu>
  13095. <productMenu id="phone"
  13096. type="1" >
  13097. </productMenu>
  13098. <productMenu id="music"
  13099. type="1" >
  13100. </productMenu>
  13101. <productMenu id="musicSharing"
  13102. type="0" >
  13103. </productMenu>
  13104. <productMenu id="deviceSetting"
  13105. type="1"
  13106. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  13107. </productMenu>
  13108. <productMenu id="quickGuide"
  13109. type="0"
  13110. url=""
  13111. size="1.12MB" >
  13112. </productMenu>
  13113. <productMenu id="userGuide"
  13114. type="1"
  13115. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  13116. size="2.0MB" >
  13117. </productMenu>
  13118. <productMenu id="videoGuide"
  13119. type="0"
  13120. url=""
  13121. size="3.41MB" >
  13122. </productMenu>
  13123. <productMenu id="volume"
  13124. type="12" >
  13125. </productMenu>
  13126. <productMenu id="battery"
  13127. type="1" >
  13128. </productMenu>
  13129. <productID id="6846"
  13130. />
  13131. <productGroupable type="0"
  13132. />
  13133. </product>
  13134. <product id="ACSRAM"
  13135. name="ACS-RAM"
  13136. series="ACS"
  13137. latestVersion="1.0.5"
  13138. show = "1" >
  13139. <productMenu id="protocol"
  13140. type="3" >
  13141. </productMenu>
  13142. <productMenu id="sip"
  13143. type="1" >
  13144. </productMenu>
  13145. <productMenu id="bluetoothIntercom"
  13146. type="1" >
  13147. </productMenu>
  13148. <productMenu id="deviceSetting"
  13149. type="1"
  13150. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  13151. </productMenu>
  13152. <productMenu id="quickGuide"
  13153. type="1"
  13154. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  13155. size="344KB" >
  13156. </productMenu>
  13157. <productMenu id="userGuide"
  13158. type="1"
  13159. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  13160. size="1.14MB" >
  13161. </productMenu>
  13162. <productMenu id="connectGuide"
  13163. type="1"
  13164. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  13165. size="1.12MB" >
  13166. </productMenu>
  13167. <productID id="3400"
  13168. />
  13169. <productGroupable type="0"
  13170. />
  13171. </product>
  13172. <product id="ACS10"
  13173. name="ACS10"
  13174. series="ACS"
  13175. latestVersion="1.0.2"
  13176. show = "1" >
  13177. <productMenu id="protocol"
  13178. type="0">
  13179. </productMenu>
  13180. <productMenu id="sip"
  13181. type="1" >
  13182. </productMenu>
  13183. <productMenu id="bluetoothIntercom"
  13184. type="1" >
  13185. </productMenu>
  13186. <productMenu id="phone"
  13187. type="2" >
  13188. </productMenu>
  13189. <productMenu id="deviceSetting"
  13190. type="1"
  13191. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  13192. </productMenu>
  13193. <productMenu id="quickGuide"
  13194. type="1"
  13195. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  13196. size="970KB" >
  13197. </productMenu>
  13198. <productMenu id="userGuide"
  13199. type="1"
  13200. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  13201. size="1.26MB" >
  13202. </productMenu>
  13203. <productMenu id="connectGuide"
  13204. type="1"
  13205. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  13206. size="1.12MB" >
  13207. </productMenu>
  13208. <productID id="3300"
  13209. />
  13210. <productGroupable type="0"
  13211. />
  13212. </product>
  13213. <product id="DWO7ProMesh"
  13214. name="DWO 7 Pro Mesh"
  13215. series="50"
  13216. latestVersion="1.1"
  13217. latestVersionVoicePrompt="0.9"
  13218. show = "0" >
  13219. <productMenu id="protocol"
  13220. type="2" >
  13221. </productMenu>
  13222. <productMenu id="alexa"
  13223. type="0" >
  13224. </productMenu>
  13225. <productMenu id="ota"
  13226. type="2" >
  13227. <otaPackages>
  13228. <package
  13229. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  13230. size="2945812"
  13231. />
  13232. </otaPackages>
  13233. </productMenu>
  13234. <productMenu id="wa"
  13235. type="0" >
  13236. </productMenu>
  13237. <productMenu id="meshIntercom"
  13238. type="20" >
  13239. </productMenu>
  13240. <productMenu id="meshIntercom+"
  13241. type="3"
  13242. url="2" >
  13243. <productMenuType version="1.0.9"
  13244. type="2"
  13245. />
  13246. <productMenuURL version="2.1.1"
  13247. url="0"
  13248. />
  13249. </productMenu>
  13250. <productMenu id="waveIntercom"
  13251. type="1" >
  13252. <productMenuType version="1.0.9"
  13253. type="0"
  13254. />
  13255. </productMenu>
  13256. <productMenu id="phone"
  13257. type="1" >
  13258. </productMenu>
  13259. <productMenu id="music"
  13260. type="1" >
  13261. </productMenu>
  13262. <productMenu id="fmradio"
  13263. type="1" >
  13264. </productMenu>
  13265. <productMenu id="musicSharing"
  13266. type="0" >
  13267. </productMenu>
  13268. <productMenu id="deviceSetting"
  13269. type="1"
  13270. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  13271. <productMenuURL version="1.0.9"
  13272. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  13273. />
  13274. </productMenu>
  13275. <productMenu id="quickGuide"
  13276. type="1"
  13277. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13278. size="1.12MB" >
  13279. </productMenu>
  13280. <productMenu id="userGuide"
  13281. type="1"
  13282. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13283. size="2.0MB" >
  13284. </productMenu>
  13285. <productMenu id="volume"
  13286. type="12" >
  13287. </productMenu>
  13288. <productMenu id="battery"
  13289. type="1" >
  13290. </productMenu>
  13291. <productID id="6806"
  13292. />
  13293. <productGroupable type="0"
  13294. />
  13295. </product>
  13296. <product id="ERA1X"
  13297. name="ERA 1 X"
  13298. series="UCOM"
  13299. latestVersion="0.2.1"
  13300. latestVersionMesh="0.19"
  13301. latestVersionVoicePrompt="1.2"
  13302. show = "-1" >
  13303. <productMenu id="protocol"
  13304. type="2" >
  13305. </productMenu>
  13306. <productMenu id="ota"
  13307. type="2" >
  13308. <otaLanguages>
  13309. <otaLanguage
  13310. id="0"
  13311. name="English"
  13312. package="0"
  13313. />
  13314. <otaLanguage
  13315. id="0"
  13316. name="French"
  13317. package="1"
  13318. />
  13319. <otaLanguage
  13320. id="0"
  13321. name="Spanish"
  13322. package="2"
  13323. />
  13324. <otaLanguage
  13325. id="0"
  13326. name="Italian"
  13327. package="3"
  13328. />
  13329. <otaLanguage
  13330. id="0"
  13331. name="German"
  13332. package="4"
  13333. />
  13334. <otaLanguage
  13335. id="0"
  13336. name="Dutch"
  13337. package="5"
  13338. />
  13339. <otaLanguage
  13340. id="0"
  13341. name="Russian"
  13342. package="6"
  13343. />
  13344. <otaLanguage
  13345. id="0"
  13346. name="Chinese"
  13347. package="7"
  13348. />
  13349. <otaLanguage
  13350. id="0"
  13351. name="Korean"
  13352. package="8"
  13353. />
  13354. <otaLanguage
  13355. id="0"
  13356. name="Japanese"
  13357. package="9"
  13358. />
  13359. <otaLanguage
  13360. id="0"
  13361. name="Finnish"
  13362. package="10"
  13363. />
  13364. <otaLanguage
  13365. id="0"
  13366. name="Polish"
  13367. package="11"
  13368. />
  13369. <otaLanguage
  13370. id="0"
  13371. name="Czech"
  13372. package="12"
  13373. />
  13374. <otaLanguage
  13375. id="0"
  13376. name="Danish"
  13377. package="13"
  13378. />
  13379. <otaLanguage
  13380. id="0"
  13381. name="Norwegian"
  13382. package="14"
  13383. />
  13384. <otaLanguage
  13385. id="0"
  13386. name="Swedish"
  13387. package="15"
  13388. />
  13389. <otaLanguage
  13390. id="0"
  13391. name="Turkish"
  13392. package="16"
  13393. />
  13394. <otaLanguage
  13395. id="0"
  13396. name="Hungarian"
  13397. package="17"
  13398. />
  13399. <otaLanguage
  13400. id="0"
  13401. name="Portuguese"
  13402. package="18"
  13403. />
  13404. <otaLanguage
  13405. id="0"
  13406. name="Hebrew"
  13407. package="19"
  13408. />
  13409. <otaLanguage
  13410. id="0"
  13411. name="Greek"
  13412. package="20"
  13413. />
  13414. </otaLanguages>
  13415. <otaPackages>
  13416. <package
  13417. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13418. size="5183988"
  13419. />
  13420. <package
  13421. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13422. size="5183988"
  13423. />
  13424. <package
  13425. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13426. size="5183988"
  13427. />
  13428. <package
  13429. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13430. size="5183988"
  13431. />
  13432. <package
  13433. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13434. size="5183988"
  13435. />
  13436. <package
  13437. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13438. size="5183988"
  13439. />
  13440. <package
  13441. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13442. size="5183988"
  13443. />
  13444. <package
  13445. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13446. size="5183988"
  13447. />
  13448. <package
  13449. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13450. size="5183988"
  13451. />
  13452. <package
  13453. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13454. size="5183988"
  13455. />
  13456. <package
  13457. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13458. size="5183988"
  13459. />
  13460. <package
  13461. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13462. size="5183988"
  13463. />
  13464. <package
  13465. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13466. size="5183988"
  13467. />
  13468. <package
  13469. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13470. size="5183988"
  13471. />
  13472. <package
  13473. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13474. size="5183988"
  13475. />
  13476. <package
  13477. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13478. size="5183988"
  13479. />
  13480. <package
  13481. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13482. size="5183988"
  13483. />
  13484. <package
  13485. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13486. size="5183988"
  13487. />
  13488. <package
  13489. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13490. size="5183988"
  13491. />
  13492. <package
  13493. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13494. size="5183988"
  13495. />
  13496. <package
  13497. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13498. size="5183988"
  13499. />
  13500. </otaPackages>
  13501. </productMenu>
  13502. <productMenu id="wa"
  13503. type="0" >
  13504. </productMenu>
  13505. <productMenu id="sip"
  13506. type="1" >
  13507. </productMenu>
  13508. <productMenu id="led"
  13509. type="0" >
  13510. </productMenu>
  13511. <productMenu id="illusion"
  13512. type="1" >
  13513. </productMenu>
  13514. <productMenu id="meshIntercom"
  13515. type="30" >
  13516. </productMenu>
  13517. <productMenu id="meshIntercom+"
  13518. type="3"
  13519. url="2" >
  13520. </productMenu>
  13521. <productMenu id="waveIntercom"
  13522. type="0" >
  13523. </productMenu>
  13524. <productMenu id="bluetoothIntercom"
  13525. type="1" >
  13526. </productMenu>
  13527. <productMenu id="bluetoothIntercomGrouping"
  13528. type="0" >
  13529. </productMenu>
  13530. <productMenu id="fmradio"
  13531. type="1"
  13532. url="1" >
  13533. </productMenu>
  13534. <productMenu id="phone"
  13535. type="1" >
  13536. </productMenu>
  13537. <productMenu id="music"
  13538. type="1" >
  13539. </productMenu>
  13540. <productMenu id="musicSharing"
  13541. type="0" >
  13542. </productMenu>
  13543. <productMenu id="deviceSetting"
  13544. type="1"
  13545. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  13546. </productMenu>
  13547. <productMenu id="quickGuide"
  13548. type="0"
  13549. url=""
  13550. size="1.12MB" >
  13551. </productMenu>
  13552. <productMenu id="userGuide"
  13553. type="1"
  13554. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  13555. size="2.0MB" >
  13556. </productMenu>
  13557. <productMenu id="videoGuide"
  13558. type="0"
  13559. url=""
  13560. size="3.41MB" >
  13561. </productMenu>
  13562. <productMenu id="volume"
  13563. type="16" >
  13564. </productMenu>
  13565. <productMenu id="soundMode"
  13566. type="1" >
  13567. </productMenu>
  13568. <productMenu id="battery"
  13569. type="1" >
  13570. </productMenu>
  13571. <productID id="6A83"
  13572. />
  13573. <productGroupable type="0"
  13574. />
  13575. </product>
  13576. <product id="MeshStation"
  13577. name="Mesh Station"
  13578. series="50"
  13579. latestVersion="0.9"
  13580. show = "-1" >
  13581. <productMenu id="protocol"
  13582. type="2" >
  13583. </productMenu>
  13584. <productMenu id="meshIntercom"
  13585. type="20"
  13586. url="99" >
  13587. </productMenu>
  13588. <productID id="3161"
  13589. />
  13590. <productGroupable type="0"
  13591. />
  13592. </product>
  13593. </products>
  13594. </sna>