snm.xml 509 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260168" 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/60SEVO/NS_60SEVO.xml" >
  504. <productMenuURL version="1.0.2"
  505. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06_Auto.xml"
  506. />
  507. </productMenu>
  508. <productMenu id="quickGuide"
  509. type="0"
  510. url=""
  511. size="1.12MB" >
  512. </productMenu>
  513. <productMenu id="userGuide"
  514. type="1"
  515. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.1.0_en_260630.pdf"
  516. size="2.0MB" >
  517. </productMenu>
  518. <productMenu id="videoGuide"
  519. type="0"
  520. url=""
  521. size="3.41MB" >
  522. </productMenu>
  523. <productMenu id="connectGuide"
  524. type="1"
  525. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60sevo.json"
  526. size="1.12MB" >
  527. </productMenu>
  528. <productMenu id="volume"
  529. type="16" >
  530. </productMenu>
  531. <productMenu id="volume+"
  532. type="2"
  533. url="0x6004" >
  534. </productMenu>
  535. <productMenu id="soundMode"
  536. type="1" >
  537. </productMenu>
  538. <productMenu id="appearance"
  539. type="1"
  540. url="1|white,silver,black,glossy_black" >
  541. </productMenu>
  542. <productMenu id="battery"
  543. type="1" >
  544. </productMenu>
  545. <productID id="6A15"
  546. />
  547. <productGroupable type="0"
  548. />
  549. </product>
  550. <product id="60S"
  551. name="60S"
  552. series="60"
  553. latestVersion="1.2.9"
  554. latestVersionMesh="1.2"
  555. latestVersionVoicePrompt="1.7"
  556. show = "1" >
  557. <productMenu id="protocol"
  558. type="2" >
  559. </productMenu>
  560. <productMenu id="ota"
  561. type="2" >
  562. <otaLanguages>
  563. <otaLanguage
  564. id="0"
  565. name="English"
  566. package="0"
  567. />
  568. <otaLanguage
  569. id="0"
  570. name="French"
  571. package="1"
  572. />
  573. <otaLanguage
  574. id="0"
  575. name="Spanish"
  576. package="2"
  577. />
  578. <otaLanguage
  579. id="0"
  580. name="Italian"
  581. package="3"
  582. />
  583. <otaLanguage
  584. id="0"
  585. name="German"
  586. package="4"
  587. />
  588. <otaLanguage
  589. id="0"
  590. name="Dutch"
  591. package="5"
  592. />
  593. <otaLanguage
  594. id="0"
  595. name="Russian"
  596. package="6"
  597. />
  598. <otaLanguage
  599. id="0"
  600. name="Chinese"
  601. package="7"
  602. />
  603. <otaLanguage
  604. id="0"
  605. name="Korean"
  606. package="8"
  607. />
  608. <otaLanguage
  609. id="0"
  610. name="Japanese"
  611. package="9"
  612. />
  613. <otaLanguage
  614. id="0"
  615. name="Finnish"
  616. package="10"
  617. />
  618. <otaLanguage
  619. id="0"
  620. name="Polish"
  621. package="11"
  622. />
  623. </otaLanguages>
  624. <otaPackages>
  625. <package
  626. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0.img"
  627. size="5183988"
  628. />
  629. <package
  630. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fr-FR.img"
  631. size="5183988"
  632. />
  633. <package
  634. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-es-ES.img"
  635. size="5183988"
  636. />
  637. <package
  638. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-it-IT.img"
  639. size="5183988"
  640. />
  641. <package
  642. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-de-DE.img"
  643. size="5183988"
  644. />
  645. <package
  646. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-nl-NL.img"
  647. size="5183988"
  648. />
  649. <package
  650. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ru-RU.img"
  651. size="5183988"
  652. />
  653. <package
  654. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-cmn-CN.img"
  655. size="5183988"
  656. />
  657. <package
  658. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ko-KR.img"
  659. size="5183988"
  660. />
  661. <package
  662. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ja-JP.img"
  663. size="5183988"
  664. />
  665. <package
  666. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fi-FI.img"
  667. size="5183988"
  668. />
  669. <package
  670. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-pl-PL.img"
  671. size="5183988"
  672. />
  673. </otaPackages>
  674. </productMenu>
  675. <productMenu id="sip"
  676. type="1" >
  677. </productMenu>
  678. <productMenu id="illusion"
  679. type="1" >
  680. </productMenu>
  681. <productMenu id="meshIntercom"
  682. type="30" >
  683. </productMenu>
  684. <productMenu id="meshIntercom+"
  685. type="3"
  686. url="2" >
  687. </productMenu>
  688. <productMenu id="waveIntercom"
  689. type="1" >
  690. </productMenu>
  691. <productMenu id="bluetoothIntercom"
  692. type="1"
  693. url="2" >
  694. </productMenu>
  695. <productMenu id="bluetoothIntercomGrouping"
  696. type="0" >
  697. </productMenu>
  698. <productMenu id="fmradio"
  699. type="1"
  700. url="1" >
  701. </productMenu>
  702. <productMenu id="phone"
  703. type="1" >
  704. </productMenu>
  705. <productMenu id="music"
  706. type="1" >
  707. </productMenu>
  708. <productMenu id="musicSharing"
  709. type="0" >
  710. </productMenu>
  711. <productMenu id="deviceSetting"
  712. type="1"
  713. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  714. <productMenuURL version="1.2.10"
  715. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  716. />
  717. <productMenuURL version="1.2.6"
  718. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  719. />
  720. <productMenuURL version="1.2.3"
  721. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  722. />
  723. </productMenu>
  724. <productMenu id="quickGuide"
  725. type="0"
  726. url=""
  727. size="1.12MB" >
  728. </productMenu>
  729. <productMenu id="userGuide"
  730. type="1"
  731. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  732. size="2.0MB" >
  733. </productMenu>
  734. <productMenu id="videoGuide"
  735. type="0"
  736. url=""
  737. size="3.41MB" >
  738. </productMenu>
  739. <productMenu id="connectGuide"
  740. type="1"
  741. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  742. size="1.12MB" >
  743. </productMenu>
  744. <productMenu id="volume"
  745. type="16" >
  746. </productMenu>
  747. <productMenu id="volume+"
  748. type="2"
  749. url="0x6004" >
  750. <productMenuURL version="1.2.3"
  751. url="0x6004"
  752. />
  753. </productMenu>
  754. <productMenu id="soundMode"
  755. type="0" >
  756. </productMenu>
  757. <productMenu id="appearance"
  758. type="1"
  759. url="2|white,silver,chrome,black" >
  760. </productMenu>
  761. <productMenu id="battery"
  762. type="1" >
  763. </productMenu>
  764. <productID id="6A0D"
  765. />
  766. <productGroupable type="0"
  767. />
  768. </product>
  769. <product id="60S"
  770. name="60S"
  771. series="60"
  772. latestVersion="1.2.9"
  773. latestVersionMesh="1.2"
  774. latestVersionVoicePrompt="1.7"
  775. show = "-1" >
  776. <productMenu id="protocol"
  777. type="2" >
  778. </productMenu>
  779. <productMenu id="ota"
  780. type="2" >
  781. <otaLanguages>
  782. <otaLanguage
  783. id="0"
  784. name="English"
  785. package="0"
  786. />
  787. <otaLanguage
  788. id="0"
  789. name="French"
  790. package="1"
  791. />
  792. <otaLanguage
  793. id="0"
  794. name="Spanish"
  795. package="2"
  796. />
  797. <otaLanguage
  798. id="0"
  799. name="Italian"
  800. package="3"
  801. />
  802. <otaLanguage
  803. id="0"
  804. name="German"
  805. package="4"
  806. />
  807. <otaLanguage
  808. id="0"
  809. name="Dutch"
  810. package="5"
  811. />
  812. <otaLanguage
  813. id="0"
  814. name="Russian"
  815. package="6"
  816. />
  817. <otaLanguage
  818. id="0"
  819. name="Chinese"
  820. package="7"
  821. />
  822. <otaLanguage
  823. id="0"
  824. name="Korean"
  825. package="8"
  826. />
  827. <otaLanguage
  828. id="0"
  829. name="Japanese"
  830. package="9"
  831. />
  832. <otaLanguage
  833. id="0"
  834. name="Finnish"
  835. package="10"
  836. />
  837. <otaLanguage
  838. id="0"
  839. name="Polish"
  840. package="11"
  841. />
  842. </otaLanguages>
  843. <otaPackages>
  844. <package
  845. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0.img"
  846. size="5183988"
  847. />
  848. <package
  849. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fr-FR.img"
  850. size="5183988"
  851. />
  852. <package
  853. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-es-ES.img"
  854. size="5183988"
  855. />
  856. <package
  857. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-it-IT.img"
  858. size="5183988"
  859. />
  860. <package
  861. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-de-DE.img"
  862. size="5183988"
  863. />
  864. <package
  865. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-nl-NL.img"
  866. size="5183988"
  867. />
  868. <package
  869. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ru-RU.img"
  870. size="5183988"
  871. />
  872. <package
  873. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-cmn-CN.img"
  874. size="5183988"
  875. />
  876. <package
  877. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ko-KR.img"
  878. size="5183988"
  879. />
  880. <package
  881. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ja-JP.img"
  882. size="5183988"
  883. />
  884. <package
  885. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fi-FI.img"
  886. size="5183988"
  887. />
  888. <package
  889. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-pl-PL.img"
  890. size="5183988"
  891. />
  892. </otaPackages>
  893. </productMenu>
  894. <productMenu id="wa"
  895. type="0" >
  896. </productMenu>
  897. <productMenu id="sip"
  898. type="1" >
  899. </productMenu>
  900. <productMenu id="led"
  901. type="0" >
  902. </productMenu>
  903. <productMenu id="illusion"
  904. type="1" >
  905. </productMenu>
  906. <productMenu id="meshIntercom"
  907. type="30" >
  908. </productMenu>
  909. <productMenu id="meshIntercom+"
  910. type="3"
  911. url="2" >
  912. <productMenuURL version="1.0.2"
  913. url="10"
  914. />
  915. </productMenu>
  916. <productMenu id="waveIntercom"
  917. type="1" >
  918. <productMenuType version="1.0.9"
  919. type="0"
  920. />
  921. </productMenu>
  922. <productMenu id="bluetoothIntercom"
  923. type="1"
  924. url="2" >
  925. </productMenu>
  926. <productMenu id="bluetoothIntercomGrouping"
  927. type="0" >
  928. </productMenu>
  929. <productMenu id="fmradio"
  930. type="1"
  931. url="1" >
  932. </productMenu>
  933. <productMenu id="phone"
  934. type="1" >
  935. </productMenu>
  936. <productMenu id="music"
  937. type="1" >
  938. </productMenu>
  939. <productMenu id="musicSharing"
  940. type="0" >
  941. </productMenu>
  942. <productMenu id="deviceSetting"
  943. type="1"
  944. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  945. <productMenuURL version="1.2.10"
  946. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  947. />
  948. <productMenuURL version="1.2.6"
  949. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  950. />
  951. <productMenuURL version="1.2.3"
  952. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  953. />
  954. <productMenuURL version="1.0.2"
  955. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  956. />
  957. <productMenuURL version="1.0"
  958. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  959. />
  960. <productMenuURL version="0.9.11"
  961. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  962. />
  963. </productMenu>
  964. <productMenu id="quickGuide"
  965. type="0"
  966. url=""
  967. size="1.12MB" >
  968. </productMenu>
  969. <productMenu id="userGuide"
  970. type="1"
  971. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  972. size="2.0MB" >
  973. </productMenu>
  974. <productMenu id="videoGuide"
  975. type="0"
  976. url=""
  977. size="3.41MB" >
  978. </productMenu>
  979. <productMenu id="connectGuide"
  980. type="1"
  981. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  982. size="1.12MB" >
  983. </productMenu>
  984. <productMenu id="volume"
  985. type="16" >
  986. <productMenuType version="0.9.11"
  987. type="13"
  988. />
  989. </productMenu>
  990. <productMenu id="volume+"
  991. type="2"
  992. url="0x6004" >
  993. <productMenuURL version="1.2.3"
  994. url="0x6004"
  995. />
  996. </productMenu>
  997. <productMenu id="soundMode"
  998. type="0" >
  999. <productMenuType version="0.9.11"
  1000. type="0"
  1001. />
  1002. </productMenu>
  1003. <productMenu id="appearance"
  1004. type="1"
  1005. url="2|white,silver,chrome,black" >
  1006. </productMenu>
  1007. <productMenu id="battery"
  1008. type="1" >
  1009. </productMenu>
  1010. <productID id="6A02"
  1011. />
  1012. <productGroupable type="0"
  1013. />
  1014. </product>
  1015. <product id="60X"
  1016. name="60X"
  1017. series="60"
  1018. latestVersion="1.0"
  1019. latestVersionMesh="0.19"
  1020. latestVersionVoicePrompt="1.7"
  1021. show = "1" >
  1022. <productMenu id="protocol"
  1023. type="2" >
  1024. </productMenu>
  1025. <productMenu id="warranty"
  1026. type="1" >
  1027. </productMenu>
  1028. <productMenu id="serialNumber"
  1029. type="1" >
  1030. </productMenu>
  1031. <productMenu id="ota"
  1032. type="2" >
  1033. <otaLanguages>
  1034. <otaLanguage
  1035. id="0"
  1036. name="English"
  1037. package="0"
  1038. />
  1039. <otaLanguage
  1040. id="0"
  1041. name="French"
  1042. package="1"
  1043. />
  1044. <otaLanguage
  1045. id="0"
  1046. name="Spanish"
  1047. package="2"
  1048. />
  1049. <otaLanguage
  1050. id="0"
  1051. name="Italian"
  1052. package="3"
  1053. />
  1054. <otaLanguage
  1055. id="0"
  1056. name="German"
  1057. package="4"
  1058. />
  1059. <otaLanguage
  1060. id="0"
  1061. name="Dutch"
  1062. package="5"
  1063. />
  1064. <otaLanguage
  1065. id="0"
  1066. name="Russian"
  1067. package="6"
  1068. />
  1069. <otaLanguage
  1070. id="0"
  1071. name="Chinese"
  1072. package="7"
  1073. />
  1074. <otaLanguage
  1075. id="0"
  1076. name="Korean"
  1077. package="8"
  1078. />
  1079. <otaLanguage
  1080. id="0"
  1081. name="Japanese"
  1082. package="9"
  1083. />
  1084. <otaLanguage
  1085. id="0"
  1086. name="Finnish"
  1087. package="10"
  1088. />
  1089. <otaLanguage
  1090. id="0"
  1091. name="Polish"
  1092. package="11"
  1093. />
  1094. </otaLanguages>
  1095. <otaPackages>
  1096. <package
  1097. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5.img"
  1098. size="5183988"
  1099. />
  1100. <package
  1101. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fr-FR.img"
  1102. size="5183988"
  1103. />
  1104. <package
  1105. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-es-ES.img"
  1106. size="5183988"
  1107. />
  1108. <package
  1109. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-it-IT.img"
  1110. size="5183988"
  1111. />
  1112. <package
  1113. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-de-DE.img"
  1114. size="5183988"
  1115. />
  1116. <package
  1117. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-nl-NL.img"
  1118. size="5183988"
  1119. />
  1120. <package
  1121. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ru-RU.img"
  1122. size="5183988"
  1123. />
  1124. <package
  1125. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-cmn-CN.img"
  1126. size="5183988"
  1127. />
  1128. <package
  1129. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ko-KR.img"
  1130. size="5183988"
  1131. />
  1132. <package
  1133. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ja-JP.img"
  1134. size="5183988"
  1135. />
  1136. <package
  1137. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fi-FI.img"
  1138. size="5183988"
  1139. />
  1140. <package
  1141. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-pl-PL.img"
  1142. size="5183988"
  1143. />
  1144. </otaPackages>
  1145. </productMenu>
  1146. <productMenu id="wa"
  1147. type="0" >
  1148. </productMenu>
  1149. <productMenu id="sip"
  1150. type="1" >
  1151. </productMenu>
  1152. <productMenu id="led"
  1153. type="1" >
  1154. </productMenu>
  1155. <productMenu id="illusion"
  1156. type="1" >
  1157. </productMenu>
  1158. <productMenu id="meshIntercom"
  1159. type="30" >
  1160. </productMenu>
  1161. <productMenu id="meshIntercom+"
  1162. type="3"
  1163. url="2" >
  1164. </productMenu>
  1165. <productMenu id="waveIntercom"
  1166. type="1" >
  1167. </productMenu>
  1168. <productMenu id="bluetoothIntercom"
  1169. type="1" >
  1170. </productMenu>
  1171. <productMenu id="fmradio"
  1172. type="1"
  1173. url="1" >
  1174. </productMenu>
  1175. <productMenu id="mic"
  1176. type="0" >
  1177. </productMenu>
  1178. <productMenu id="phone"
  1179. type="1" >
  1180. </productMenu>
  1181. <productMenu id="music"
  1182. type="1" >
  1183. </productMenu>
  1184. <productMenu id="musicSharing"
  1185. type="0" >
  1186. </productMenu>
  1187. <productMenu id="deviceSetting"
  1188. type="1"
  1189. url="https://api.sena.com/support/SenaNeoApp/60X/NS_60X.xml" >
  1190. <productMenuURL version="1.0"
  1191. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml"
  1192. />
  1193. </productMenu>
  1194. <productMenu id="quickGuide"
  1195. type="0"
  1196. url=""
  1197. size="1.12MB" >
  1198. </productMenu>
  1199. <productMenu id="userGuide"
  1200. type="1"
  1201. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60X_1.0.2_en_260811.pdf"
  1202. size="2.0MB" >
  1203. </productMenu>
  1204. <productMenu id="videoGuide"
  1205. type="0"
  1206. url=""
  1207. size="3.41MB" >
  1208. </productMenu>
  1209. <productMenu id="keySettings"
  1210. type="1"
  1211. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1212. </productMenu>
  1213. <productMenu id="volume"
  1214. type="13" >
  1215. </productMenu>
  1216. <productMenu id="volume+"
  1217. type="2"
  1218. url="0x6004" >
  1219. </productMenu>
  1220. <productMenu id="appearance"
  1221. type="1"
  1222. url="1|white,silver,black,glossy_black" >
  1223. </productMenu>
  1224. <productMenu id="battery"
  1225. type="1" >
  1226. </productMenu>
  1227. <productID id="6A03"
  1228. />
  1229. <productGroupable type="0"
  1230. />
  1231. </product>
  1232. <product id="R35"
  1233. name="R35"
  1234. series="R"
  1235. latestVersion="1.1.1"
  1236. latestVersionVoicePrompt="1.5"
  1237. show = "1" >
  1238. <productMenu id="protocol"
  1239. type="2" >
  1240. </productMenu>
  1241. <productMenu id="ota"
  1242. type="2" >
  1243. <otaLanguages>
  1244. <otaLanguage
  1245. id="0"
  1246. name="English"
  1247. package="0"
  1248. />
  1249. <otaLanguage
  1250. id="0"
  1251. name="Chinese"
  1252. package="1"
  1253. />
  1254. <otaLanguage
  1255. id="0"
  1256. name="Chinese Singapore"
  1257. package="2"
  1258. />
  1259. <otaLanguage
  1260. id="0"
  1261. name="Filipino"
  1262. package="3"
  1263. />
  1264. <otaLanguage
  1265. id="0"
  1266. name="Hebrew"
  1267. package="4"
  1268. />
  1269. <otaLanguage
  1270. id="0"
  1271. name="Hindi"
  1272. package="5"
  1273. />
  1274. <otaLanguage
  1275. id="0"
  1276. name="Indonesian"
  1277. package="6"
  1278. />
  1279. <otaLanguage
  1280. id="0"
  1281. name="Japanese"
  1282. package="7"
  1283. />
  1284. <otaLanguage
  1285. id="0"
  1286. name="Korean"
  1287. package="8"
  1288. />
  1289. <otaLanguage
  1290. id="0"
  1291. name="Malay"
  1292. package="9"
  1293. />
  1294. <otaLanguage
  1295. id="0"
  1296. name="Modern Standard Arabic"
  1297. package="10"
  1298. />
  1299. <otaLanguage
  1300. id="0"
  1301. name="Taiwanese"
  1302. package="11"
  1303. />
  1304. <otaLanguage
  1305. id="0"
  1306. name="Tamil"
  1307. package="12"
  1308. />
  1309. <otaLanguage
  1310. id="0"
  1311. name="Thai"
  1312. package="13"
  1313. />
  1314. <otaLanguage
  1315. id="0"
  1316. name="东北话"
  1317. package="14"
  1318. />
  1319. <otaLanguage
  1320. id="0"
  1321. name="广东话"
  1322. package="15"
  1323. />
  1324. <otaLanguage
  1325. id="0"
  1326. name="江浙沪"
  1327. package="16"
  1328. />
  1329. <otaLanguage
  1330. id="0"
  1331. name="四川话"
  1332. package="17"
  1333. />
  1334. <otaLanguage
  1335. id="0"
  1336. name="陕西话"
  1337. package="18"
  1338. />
  1339. </otaLanguages>
  1340. <otaPackages>
  1341. <package
  1342. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0.img"
  1343. size="5183988"
  1344. />
  1345. <package
  1346. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-CN.img"
  1347. size="5183988"
  1348. />
  1349. <package
  1350. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-SG.img"
  1351. size="5183988"
  1352. />
  1353. <package
  1354. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-tl-PH.img"
  1355. size="5183988"
  1356. />
  1357. <package
  1358. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-he-IL.img"
  1359. size="5183988"
  1360. />
  1361. <package
  1362. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-hi-IN.img"
  1363. size="5183988"
  1364. />
  1365. <package
  1366. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-id-ID.img"
  1367. size="5183988"
  1368. />
  1369. <package
  1370. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ja-JP.img"
  1371. size="5183988"
  1372. />
  1373. <package
  1374. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ko-KR.img"
  1375. size="5183988"
  1376. />
  1377. <package
  1378. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ms-MY.img"
  1379. size="5183988"
  1380. />
  1381. <package
  1382. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ar-XA.img"
  1383. size="5183988"
  1384. />
  1385. <package
  1386. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-nan-TW.img"
  1387. size="5183988"
  1388. />
  1389. <package
  1390. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ta-IN.img"
  1391. size="5183988"
  1392. />
  1393. <package
  1394. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-th-TH.img"
  1395. size="5183988"
  1396. />
  1397. <package
  1398. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zdb-CN.img"
  1399. size="5183988"
  1400. />
  1401. <package
  1402. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-yue-CN.img"
  1403. size="5183988"
  1404. />
  1405. <package
  1406. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-wuu-CN.img"
  1407. size="5183988"
  1408. />
  1409. <package
  1410. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsc-CN.img"
  1411. size="5183988"
  1412. />
  1413. <package
  1414. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsn-CN.img"
  1415. size="5183988"
  1416. />
  1417. </otaPackages>
  1418. </productMenu>
  1419. <productMenu id="sip"
  1420. type="1" >
  1421. </productMenu>
  1422. <productMenu id="illusion"
  1423. type="1" >
  1424. </productMenu>
  1425. <productMenu id="meshIntercom"
  1426. type="30" >
  1427. </productMenu>
  1428. <productMenu id="meshIntercom+"
  1429. type="3"
  1430. url="2" >
  1431. </productMenu>
  1432. <productMenu id="waveIntercom"
  1433. type="1" >
  1434. </productMenu>
  1435. <productMenu id="phone"
  1436. type="1" >
  1437. </productMenu>
  1438. <productMenu id="music"
  1439. type="1" >
  1440. </productMenu>
  1441. <productMenu id="musicSharing"
  1442. type="0" >
  1443. </productMenu>
  1444. <productMenu id="deviceSetting"
  1445. type="1"
  1446. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_02.xml" >
  1447. <productMenuURL version="1.1.1"
  1448. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml"
  1449. />
  1450. <productMenuURL version="1.0.3"
  1451. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1452. />
  1453. </productMenu>
  1454. <productMenu id="quickGuide"
  1455. type="0"
  1456. url=""
  1457. size="1.12MB" >
  1458. </productMenu>
  1459. <productMenu id="userGuide"
  1460. type="1"
  1461. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1462. size="2.0MB" >
  1463. </productMenu>
  1464. <productMenu id="videoGuide"
  1465. type="0"
  1466. url=""
  1467. size="3.41MB" >
  1468. </productMenu>
  1469. <productMenu id="connectGuide"
  1470. type="1"
  1471. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_r35.json"
  1472. size="1.12MB" >
  1473. </productMenu>
  1474. <productMenu id="volume"
  1475. type="16" >
  1476. </productMenu>
  1477. <productMenu id="volume+"
  1478. type="2"
  1479. url="0x6004" >
  1480. </productMenu>
  1481. <productMenu id="soundMode"
  1482. type="0" >
  1483. </productMenu>
  1484. <productMenu id="appearance"
  1485. type="1"
  1486. url="1|white,silver,chrome,black" >
  1487. </productMenu>
  1488. <productMenu id="battery"
  1489. type="1" >
  1490. </productMenu>
  1491. <productID id="6A06"
  1492. />
  1493. <productGroupable type="0"
  1494. />
  1495. </product>
  1496. <product id="COM60X"
  1497. name="BMW MOTORRAD COM 60X"
  1498. series="60"
  1499. latestVersion="1.0"
  1500. latestVersionMesh="0.19"
  1501. latestVersionVoicePrompt="1.7"
  1502. show = "-1" >
  1503. <productMenu id="protocol"
  1504. type="2" >
  1505. </productMenu>
  1506. <productMenu id="ota"
  1507. type="0" >
  1508. <otaLanguages>
  1509. <otaLanguage
  1510. id="0"
  1511. name="English"
  1512. package="0"
  1513. />
  1514. <otaLanguage
  1515. id="0"
  1516. name="French"
  1517. package="1"
  1518. />
  1519. <otaLanguage
  1520. id="0"
  1521. name="Spanish"
  1522. package="2"
  1523. />
  1524. <otaLanguage
  1525. id="0"
  1526. name="Italian"
  1527. package="3"
  1528. />
  1529. <otaLanguage
  1530. id="0"
  1531. name="German"
  1532. package="4"
  1533. />
  1534. <otaLanguage
  1535. id="0"
  1536. name="Dutch"
  1537. package="5"
  1538. />
  1539. <otaLanguage
  1540. id="0"
  1541. name="Russian"
  1542. package="6"
  1543. />
  1544. <otaLanguage
  1545. id="0"
  1546. name="Chinese"
  1547. package="7"
  1548. />
  1549. <otaLanguage
  1550. id="0"
  1551. name="Korean"
  1552. package="8"
  1553. />
  1554. <otaLanguage
  1555. id="0"
  1556. name="Japanese"
  1557. package="9"
  1558. />
  1559. <otaLanguage
  1560. id="0"
  1561. name="Finnish"
  1562. package="10"
  1563. />
  1564. <otaLanguage
  1565. id="0"
  1566. name="Polish"
  1567. package="11"
  1568. />
  1569. </otaLanguages>
  1570. <otaPackages>
  1571. <package
  1572. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5.img"
  1573. size="5183988"
  1574. />
  1575. <package
  1576. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fr-FR.img"
  1577. size="5183988"
  1578. />
  1579. <package
  1580. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-es-ES.img"
  1581. size="5183988"
  1582. />
  1583. <package
  1584. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-it-IT.img"
  1585. size="5183988"
  1586. />
  1587. <package
  1588. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-de-DE.img"
  1589. size="5183988"
  1590. />
  1591. <package
  1592. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-nl-NL.img"
  1593. size="5183988"
  1594. />
  1595. <package
  1596. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ru-RU.img"
  1597. size="5183988"
  1598. />
  1599. <package
  1600. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-cmn-CN.img"
  1601. size="5183988"
  1602. />
  1603. <package
  1604. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ko-KR.img"
  1605. size="5183988"
  1606. />
  1607. <package
  1608. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ja-JP.img"
  1609. size="5183988"
  1610. />
  1611. <package
  1612. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fi-FI.img"
  1613. size="5183988"
  1614. />
  1615. <package
  1616. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-pl-PL.img"
  1617. size="5183988"
  1618. />
  1619. </otaPackages>
  1620. </productMenu>
  1621. <productMenu id="wa"
  1622. type="0" >
  1623. </productMenu>
  1624. <productMenu id="sip"
  1625. type="1" >
  1626. </productMenu>
  1627. <productMenu id="led"
  1628. type="1" >
  1629. </productMenu>
  1630. <productMenu id="illusion"
  1631. type="1" >
  1632. </productMenu>
  1633. <productMenu id="meshIntercom"
  1634. type="30" >
  1635. </productMenu>
  1636. <productMenu id="meshIntercom+"
  1637. type="3"
  1638. url="2" >
  1639. </productMenu>
  1640. <productMenu id="bluetoothIntercom"
  1641. type="1" >
  1642. </productMenu>
  1643. <productMenu id="fmradio"
  1644. type="1"
  1645. url="1" >
  1646. </productMenu>
  1647. <productMenu id="mic"
  1648. type="0" >
  1649. </productMenu>
  1650. <productMenu id="phone"
  1651. type="1" >
  1652. </productMenu>
  1653. <productMenu id="music"
  1654. type="1" >
  1655. </productMenu>
  1656. <productMenu id="musicSharing"
  1657. type="0" >
  1658. </productMenu>
  1659. <productMenu id="deviceSetting"
  1660. type="1"
  1661. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1662. </productMenu>
  1663. <productMenu id="quickGuide"
  1664. type="0"
  1665. url=""
  1666. size="1.12MB" >
  1667. </productMenu>
  1668. <productMenu id="userGuide"
  1669. type="1"
  1670. url=""
  1671. size="2.0MB" >
  1672. </productMenu>
  1673. <productMenu id="videoGuide"
  1674. type="0"
  1675. url=""
  1676. size="3.41MB" >
  1677. </productMenu>
  1678. <productMenu id="keySettings"
  1679. type="1"
  1680. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1681. </productMenu>
  1682. <productMenu id="volume"
  1683. type="13" >
  1684. </productMenu>
  1685. <productMenu id="volume+"
  1686. type="2"
  1687. url="0x6004" >
  1688. </productMenu>
  1689. <productMenu id="battery"
  1690. type="1" >
  1691. </productMenu>
  1692. <productID id="6A1B"
  1693. />
  1694. <productGroupable type="0"
  1695. />
  1696. </product>
  1697. <product id="COMP1"
  1698. name="BMW COM P1"
  1699. series="60"
  1700. latestVersion="1.2"
  1701. latestVersionMesh="0.19"
  1702. latestVersionVoicePrompt="1.0"
  1703. show = "-1" >
  1704. <productMenu id="protocol"
  1705. type="2" >
  1706. </productMenu>
  1707. <productMenu id="ota"
  1708. type="2" >
  1709. <otaLanguages>
  1710. <otaLanguage
  1711. id="0"
  1712. name="English"
  1713. package="0"
  1714. />
  1715. <otaLanguage
  1716. id="0"
  1717. name="French"
  1718. package="1"
  1719. />
  1720. <otaLanguage
  1721. id="0"
  1722. name="Spanish"
  1723. package="2"
  1724. />
  1725. <otaLanguage
  1726. id="0"
  1727. name="Italian"
  1728. package="3"
  1729. />
  1730. <otaLanguage
  1731. id="0"
  1732. name="German"
  1733. package="4"
  1734. />
  1735. <otaLanguage
  1736. id="0"
  1737. name="Dutch"
  1738. package="5"
  1739. />
  1740. <otaLanguage
  1741. id="0"
  1742. name="Russian"
  1743. package="6"
  1744. />
  1745. <otaLanguage
  1746. id="0"
  1747. name="Chinese"
  1748. package="7"
  1749. />
  1750. <otaLanguage
  1751. id="0"
  1752. name="Korean"
  1753. package="8"
  1754. />
  1755. <otaLanguage
  1756. id="0"
  1757. name="Japanese"
  1758. package="9"
  1759. />
  1760. <otaLanguage
  1761. id="0"
  1762. name="Finnish"
  1763. package="10"
  1764. />
  1765. </otaLanguages>
  1766. <otaPackages>
  1767. <package
  1768. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0.img"
  1769. size="5183988"
  1770. />
  1771. <package
  1772. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fr-FR.img"
  1773. size="5183988"
  1774. />
  1775. <package
  1776. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-es-ES.img"
  1777. size="5183988"
  1778. />
  1779. <package
  1780. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-it-IT.img"
  1781. size="5183988"
  1782. />
  1783. <package
  1784. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-de-DE.img"
  1785. size="5183988"
  1786. />
  1787. <package
  1788. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-nl-NL.img"
  1789. size="5183988"
  1790. />
  1791. <package
  1792. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ru-RU.img"
  1793. size="5183988"
  1794. />
  1795. <package
  1796. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-cmn-CN.img"
  1797. size="5183988"
  1798. />
  1799. <package
  1800. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ko-KR.img"
  1801. size="5183988"
  1802. />
  1803. <package
  1804. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ja-JP.img"
  1805. size="5183988"
  1806. />
  1807. <package
  1808. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fi-FI.img"
  1809. size="5183988"
  1810. />
  1811. </otaPackages>
  1812. </productMenu>
  1813. <productMenu id="wa"
  1814. type="0" >
  1815. </productMenu>
  1816. <productMenu id="sip"
  1817. type="1" >
  1818. </productMenu>
  1819. <productMenu id="led"
  1820. type="0" >
  1821. </productMenu>
  1822. <productMenu id="illusion"
  1823. type="0" >
  1824. </productMenu>
  1825. <productMenu id="meshIntercom"
  1826. type="30" >
  1827. </productMenu>
  1828. <productMenu id="bluetoothIntercom"
  1829. type="1" >
  1830. </productMenu>
  1831. <productMenu id="bluetoothIntercomGrouping"
  1832. type="0" >
  1833. </productMenu>
  1834. <productMenu id="fmradio"
  1835. type="0" >
  1836. </productMenu>
  1837. <productMenu id="phone"
  1838. type="1" >
  1839. </productMenu>
  1840. <productMenu id="music"
  1841. type="1" >
  1842. </productMenu>
  1843. <productMenu id="musicSharing"
  1844. type="0" >
  1845. </productMenu>
  1846. <productMenu id="deviceSetting"
  1847. type="1"
  1848. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1849. </productMenu>
  1850. <productMenu id="quickGuide"
  1851. type="0"
  1852. url=""
  1853. size="1.12MB" >
  1854. </productMenu>
  1855. <productMenu id="userGuide"
  1856. type="0"
  1857. url=""
  1858. size="2.0MB" >
  1859. </productMenu>
  1860. <productMenu id="videoGuide"
  1861. type="0"
  1862. url=""
  1863. size="3.41MB" >
  1864. </productMenu>
  1865. <productMenu id="volume"
  1866. type="16" >
  1867. </productMenu>
  1868. <productMenu id="battery"
  1869. type="1" >
  1870. </productMenu>
  1871. <productID id="6A80"
  1872. />
  1873. <productGroupable type="0"
  1874. />
  1875. </product>
  1876. <product id="50S"
  1877. name="50S"
  1878. series="50"
  1879. latestVersion="2.7.2"
  1880. show = "1" >
  1881. <productMenu id="protocol"
  1882. type="2" >
  1883. </productMenu>
  1884. <productMenu id="alexa"
  1885. type="0" >
  1886. </productMenu>
  1887. <productMenu id="ota"
  1888. type="0"
  1889. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1890. size="1150234" >
  1891. </productMenu>
  1892. <productMenu id="wa"
  1893. type="1" >
  1894. </productMenu>
  1895. <productMenu id="sip"
  1896. type="1" >
  1897. </productMenu>
  1898. <productMenu id="meshIntercom"
  1899. type="30" >
  1900. <productMenuType version="2.1.1"
  1901. type="20"
  1902. />
  1903. </productMenu>
  1904. <productMenu id="meshIntercom+"
  1905. type="3"
  1906. url="2" >
  1907. <productMenuType version="2.5.9"
  1908. type="2"
  1909. />
  1910. <productMenuURL version="2.1.1"
  1911. url="0"
  1912. />
  1913. </productMenu>
  1914. <productMenu id="waveIntercom"
  1915. type="1" >
  1916. <productMenuType version="2.6"
  1917. type="0"
  1918. />
  1919. </productMenu>
  1920. <productMenu id="bluetoothIntercom"
  1921. type="1" >
  1922. </productMenu>
  1923. <productMenu id="phone"
  1924. type="1" >
  1925. </productMenu>
  1926. <productMenu id="music"
  1927. type="1" >
  1928. </productMenu>
  1929. <productMenu id="fmradio"
  1930. type="1" >
  1931. </productMenu>
  1932. <productMenu id="deviceSetting"
  1933. type="1"
  1934. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1935. <productMenuURL version="2.5.9"
  1936. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1937. />
  1938. <productMenuURL version="2.1.1"
  1939. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1940. />
  1941. <productMenuURL version="2.0.3"
  1942. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1943. />
  1944. </productMenu>
  1945. <productMenu id="quickGuide"
  1946. type="0"
  1947. url=""
  1948. size="934KB" >
  1949. </productMenu>
  1950. <productMenu id="userGuide"
  1951. type="1"
  1952. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1953. size="1.14MB" >
  1954. </productMenu>
  1955. <productMenu id="videoGuide"
  1956. type="1"
  1957. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1958. size="3.41MB" >
  1959. </productMenu>
  1960. <productMenu id="connectGuide"
  1961. type="1"
  1962. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1963. size="1.12MB" >
  1964. </productMenu>
  1965. <productMenu id="volume"
  1966. type="11" >
  1967. </productMenu>
  1968. <productMenu id="battery"
  1969. type="1" >
  1970. </productMenu>
  1971. <productID id="3210"
  1972. />
  1973. <productGroupable type="0"
  1974. />
  1975. </product>
  1976. <product id="50S"
  1977. name="50S"
  1978. series="50"
  1979. latestVersion="1.5.1"
  1980. show = "-1" >
  1981. <productMenu id="protocol"
  1982. type="2" >
  1983. </productMenu>
  1984. <productMenu id="alexa"
  1985. type="0" >
  1986. </productMenu>
  1987. <productMenu id="wa"
  1988. type="1" >
  1989. </productMenu>
  1990. <productMenu id="sip"
  1991. type="1" >
  1992. </productMenu>
  1993. <productMenu id="meshIntercom"
  1994. type="30" >
  1995. <productMenuType version="1.2.2"
  1996. type="20"
  1997. />
  1998. </productMenu>
  1999. <productMenu id="meshIntercom+"
  2000. type="3"
  2001. url="2" >
  2002. <productMenuType version="1.4.9"
  2003. type="2"
  2004. />
  2005. <productMenuURL version="1.2.2"
  2006. url="0"
  2007. />
  2008. </productMenu>
  2009. <productMenu id="waveIntercom"
  2010. type="1" >
  2011. <productMenuType version="1.3.9"
  2012. type="0"
  2013. />
  2014. </productMenu>
  2015. <productMenu id="bluetoothIntercom"
  2016. type="1" >
  2017. </productMenu>
  2018. <productMenu id="phone"
  2019. type="1" >
  2020. </productMenu>
  2021. <productMenu id="music"
  2022. type="1" >
  2023. </productMenu>
  2024. <productMenu id="fmradio"
  2025. type="1" >
  2026. </productMenu>
  2027. <productMenu id="deviceSetting"
  2028. type="1"
  2029. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2030. <productMenuURL version="1.4.9"
  2031. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2032. />
  2033. <productMenuURL version="1.3.9"
  2034. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2035. />
  2036. <productMenuURL version="1.2.2"
  2037. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2038. />
  2039. <productMenuURL version="1.1.1"
  2040. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2041. />
  2042. </productMenu>
  2043. <productMenu id="quickGuide"
  2044. type="0"
  2045. url=""
  2046. size="934KB" >
  2047. </productMenu>
  2048. <productMenu id="userGuide"
  2049. type="1"
  2050. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  2051. size="1.14MB" >
  2052. </productMenu>
  2053. <productMenu id="videoGuide"
  2054. type="1"
  2055. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2056. size="3.41MB" >
  2057. </productMenu>
  2058. <productMenu id="volume"
  2059. type="11" >
  2060. </productMenu>
  2061. <productMenu id="battery"
  2062. type="1" >
  2063. </productMenu>
  2064. <productID id="3132"
  2065. />
  2066. <productGroupable type="0"
  2067. />
  2068. </product>
  2069. <product id="50R"
  2070. name="50R"
  2071. series="50"
  2072. latestVersion="2.7.1"
  2073. show = "1" >
  2074. <productMenu id="protocol"
  2075. type="2" >
  2076. </productMenu>
  2077. <productMenu id="alexa"
  2078. type="0" >
  2079. </productMenu>
  2080. <productMenu id="ota"
  2081. type="0"
  2082. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2083. size="1150234" >
  2084. </productMenu>
  2085. <productMenu id="wa"
  2086. type="1" >
  2087. </productMenu>
  2088. <productMenu id="sip"
  2089. type="1" >
  2090. </productMenu>
  2091. <productMenu id="meshIntercom"
  2092. type="30" >
  2093. <productMenuType version="2.1.1"
  2094. type="20"
  2095. />
  2096. </productMenu>
  2097. <productMenu id="meshIntercom+"
  2098. type="3"
  2099. url="2" >
  2100. <productMenuType version="2.5.9"
  2101. type="2"
  2102. />
  2103. <productMenuURL version="2.1.1"
  2104. url="0"
  2105. />
  2106. </productMenu>
  2107. <productMenu id="waveIntercom"
  2108. type="1" >
  2109. <productMenuType version="2.6"
  2110. type="0"
  2111. />
  2112. </productMenu>
  2113. <productMenu id="bluetoothIntercom"
  2114. type="1" >
  2115. </productMenu>
  2116. <productMenu id="phone"
  2117. type="1" >
  2118. </productMenu>
  2119. <productMenu id="music"
  2120. type="1" >
  2121. </productMenu>
  2122. <productMenu id="fmradio"
  2123. type="1" >
  2124. </productMenu>
  2125. <productMenu id="deviceSetting"
  2126. type="1"
  2127. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2128. <productMenuURL version="2.5.9"
  2129. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2130. />
  2131. <productMenuURL version="2.1.1"
  2132. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2133. />
  2134. <productMenuURL version="2.0"
  2135. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2136. />
  2137. </productMenu>
  2138. <productMenu id="quickGuide"
  2139. type="0"
  2140. url=""
  2141. size="344KB" >
  2142. </productMenu>
  2143. <productMenu id="userGuide"
  2144. type="1"
  2145. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  2146. size="3.41MB" >
  2147. </productMenu>
  2148. <productMenu id="videoGuide"
  2149. type="1"
  2150. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2151. size="3.41MB" >
  2152. </productMenu>
  2153. <productMenu id="connectGuide"
  2154. type="1"
  2155. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  2156. size="1.12MB" >
  2157. </productMenu>
  2158. <productMenu id="volume"
  2159. type="11" >
  2160. </productMenu>
  2161. <productMenu id="battery"
  2162. type="1" >
  2163. </productMenu>
  2164. <productID id="3218"
  2165. />
  2166. <productGroupable type="0"
  2167. />
  2168. </product>
  2169. <product id="50R"
  2170. name="50R"
  2171. series="50"
  2172. latestVersion="1.5.1"
  2173. show = "-1" >
  2174. <productMenu id="protocol"
  2175. type="2" >
  2176. </productMenu>
  2177. <productMenu id="alexa"
  2178. type="0" >
  2179. </productMenu>
  2180. <productMenu id="wa"
  2181. type="1" >
  2182. </productMenu>
  2183. <productMenu id="sip"
  2184. type="1" >
  2185. </productMenu>
  2186. <productMenu id="meshIntercom"
  2187. type="30" >
  2188. <productMenuType version="1.2.2"
  2189. type="20"
  2190. />
  2191. </productMenu>
  2192. <productMenu id="meshIntercom+"
  2193. type="3"
  2194. url="2" >
  2195. <productMenuType version="1.4.9"
  2196. type="2"
  2197. />
  2198. <productMenuURL version="1.2.2"
  2199. url="0"
  2200. />
  2201. </productMenu>
  2202. <productMenu id="waveIntercom"
  2203. type="1" >
  2204. <productMenuType version="1.3.9"
  2205. type="0"
  2206. />
  2207. </productMenu>
  2208. <productMenu id="bluetoothIntercom"
  2209. type="1" >
  2210. </productMenu>
  2211. <productMenu id="phone"
  2212. type="1" >
  2213. </productMenu>
  2214. <productMenu id="music"
  2215. type="1" >
  2216. </productMenu>
  2217. <productMenu id="fmradio"
  2218. type="1" >
  2219. </productMenu>
  2220. <productMenu id="deviceSetting"
  2221. type="1"
  2222. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2223. <productMenuURL version="1.4.9"
  2224. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2225. />
  2226. <productMenuURL version="1.3.9"
  2227. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2228. />
  2229. <productMenuURL version="1.2.2"
  2230. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2231. />
  2232. <productMenuURL version="1.1.1"
  2233. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2234. />
  2235. </productMenu>
  2236. <productMenu id="quickGuide"
  2237. type="0"
  2238. url=""
  2239. size="344KB" >
  2240. </productMenu>
  2241. <productMenu id="userGuide"
  2242. type="1"
  2243. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2244. size="3.41MB" >
  2245. </productMenu>
  2246. <productMenu id="videoGuide"
  2247. type="1"
  2248. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2249. size="3.41MB" >
  2250. </productMenu>
  2251. <productMenu id="volume"
  2252. type="11" >
  2253. </productMenu>
  2254. <productMenu id="battery"
  2255. type="1" >
  2256. </productMenu>
  2257. <productID id="3134"
  2258. />
  2259. <productGroupable type="0"
  2260. />
  2261. </product>
  2262. <product id="50C"
  2263. name="50C"
  2264. series="50"
  2265. latestVersion="1.4.3"
  2266. show = "1" >
  2267. <productMenu id="protocol"
  2268. type="2" >
  2269. </productMenu>
  2270. <productMenu id="ota"
  2271. type="0" >
  2272. </productMenu>
  2273. <productMenu id="wa"
  2274. type="1" >
  2275. </productMenu>
  2276. <productMenu id="sip"
  2277. type="1" >
  2278. </productMenu>
  2279. <productMenu id="meshIntercom"
  2280. type="30" >
  2281. <productMenuType version="1.1.1"
  2282. type="20"
  2283. />
  2284. </productMenu>
  2285. <productMenu id="meshIntercom+"
  2286. type="3"
  2287. url="2" >
  2288. <productMenuType version="1.3.9"
  2289. type="2"
  2290. />
  2291. <productMenuURL version="1.1.1"
  2292. url="0"
  2293. />
  2294. </productMenu>
  2295. <productMenu id="waveIntercom"
  2296. type="1" >
  2297. <productMenuType version="1.2.9"
  2298. type="0"
  2299. />
  2300. </productMenu>
  2301. <productMenu id="bluetoothIntercom"
  2302. type="1" >
  2303. </productMenu>
  2304. <productMenu id="phone"
  2305. type="1" >
  2306. </productMenu>
  2307. <productMenu id="music"
  2308. type="1" >
  2309. </productMenu>
  2310. <productMenu id="fmradio"
  2311. type="1" >
  2312. </productMenu>
  2313. <productMenu id="deviceSetting"
  2314. type="1"
  2315. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2316. <productMenuURL version="1.3.9"
  2317. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2318. />
  2319. <productMenuURL version="1.1.1"
  2320. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2321. />
  2322. <productMenuURL version="1.0.1"
  2323. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2324. />
  2325. </productMenu>
  2326. <productMenu id="quickGuide"
  2327. type="0"
  2328. url=""
  2329. size="344KB" >
  2330. </productMenu>
  2331. <productMenu id="userGuide"
  2332. type="1"
  2333. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2334. size="3.41MB" >
  2335. </productMenu>
  2336. <productMenu id="connectGuide"
  2337. type="1"
  2338. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2339. size="1.12MB" >
  2340. </productMenu>
  2341. <productMenu id="volume"
  2342. type="11" >
  2343. </productMenu>
  2344. <productMenu id="battery"
  2345. type="1" >
  2346. </productMenu>
  2347. <productID id="3232"
  2348. />
  2349. <productGroupable type="0"
  2350. />
  2351. </product>
  2352. <product id="PHANTOMXB"
  2353. name="PHANTOM XB"
  2354. series="Helmet"
  2355. latestVersion="1.2.9"
  2356. latestVersionVoicePrompt="1.6"
  2357. show = "-1" >
  2358. <productMenu id="protocol"
  2359. type="2" >
  2360. </productMenu>
  2361. <productMenu id="ota"
  2362. type="2" >
  2363. <otaLanguages>
  2364. <otaLanguage
  2365. id="0"
  2366. name="English"
  2367. package="0"
  2368. />
  2369. <otaLanguage
  2370. id="0"
  2371. name="French"
  2372. package="1"
  2373. />
  2374. <otaLanguage
  2375. id="0"
  2376. name="Spanish"
  2377. package="2"
  2378. />
  2379. <otaLanguage
  2380. id="0"
  2381. name="Italian"
  2382. package="3"
  2383. />
  2384. <otaLanguage
  2385. id="0"
  2386. name="German"
  2387. package="4"
  2388. />
  2389. <otaLanguage
  2390. id="0"
  2391. name="Dutch"
  2392. package="5"
  2393. />
  2394. <otaLanguage
  2395. id="0"
  2396. name="Russian"
  2397. package="6"
  2398. />
  2399. <otaLanguage
  2400. id="0"
  2401. name="Chinese"
  2402. package="7"
  2403. />
  2404. <otaLanguage
  2405. id="0"
  2406. name="Korean"
  2407. package="8"
  2408. />
  2409. <otaLanguage
  2410. id="0"
  2411. name="Japanese"
  2412. package="9"
  2413. />
  2414. <otaLanguage
  2415. id="0"
  2416. name="Finnish"
  2417. package="10"
  2418. />
  2419. <otaLanguage
  2420. id="0"
  2421. name="Polish"
  2422. package="11"
  2423. />
  2424. </otaLanguages>
  2425. <otaPackages>
  2426. <package
  2427. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0.img"
  2428. size="5183988"
  2429. />
  2430. <package
  2431. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fr-FR.img"
  2432. size="5183988"
  2433. />
  2434. <package
  2435. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-es-ES.img"
  2436. size="5183988"
  2437. />
  2438. <package
  2439. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-it-IT.img"
  2440. size="5183988"
  2441. />
  2442. <package
  2443. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-de-DE.img"
  2444. size="5183988"
  2445. />
  2446. <package
  2447. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-nl-NL.img"
  2448. size="5183988"
  2449. />
  2450. <package
  2451. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ru-RU.img"
  2452. size="5183988"
  2453. />
  2454. <package
  2455. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-cmn-CN.img"
  2456. size="5183988"
  2457. />
  2458. <package
  2459. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ko-KR.img"
  2460. size="5183988"
  2461. />
  2462. <package
  2463. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ja-JP.img"
  2464. size="5183988"
  2465. />
  2466. <package
  2467. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fi-FI.img"
  2468. size="5183988"
  2469. />
  2470. <package
  2471. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-pl-PL.img"
  2472. size="5183988"
  2473. />
  2474. </otaPackages>
  2475. </productMenu>
  2476. <productMenu id="wa"
  2477. type="0" >
  2478. </productMenu>
  2479. <productMenu id="led"
  2480. type="5" >
  2481. </productMenu>
  2482. <productMenu id="led+"
  2483. type="2"
  2484. url="1" >
  2485. </productMenu>
  2486. <productMenu id="meshIntercom"
  2487. type="30" >
  2488. </productMenu>
  2489. <productMenu id="meshIntercom+"
  2490. type="3"
  2491. url="2" >
  2492. </productMenu>
  2493. <productMenu id="waveIntercom"
  2494. type="1" >
  2495. </productMenu>
  2496. <productMenu id="fmradio"
  2497. type="0" >
  2498. </productMenu>
  2499. <productMenu id="phone"
  2500. type="1" >
  2501. </productMenu>
  2502. <productMenu id="music"
  2503. type="1" >
  2504. </productMenu>
  2505. <productMenu id="musicSharing"
  2506. type="0" >
  2507. </productMenu>
  2508. <productMenu id="deviceSetting"
  2509. type="1"
  2510. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2511. <productMenuURL version="1.2.4"
  2512. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2513. />
  2514. </productMenu>
  2515. <productMenu id="quickGuide"
  2516. type="0"
  2517. url=""
  2518. size="1.12MB" >
  2519. </productMenu>
  2520. <productMenu id="userGuide"
  2521. type="1"
  2522. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2523. size="2.0MB" >
  2524. </productMenu>
  2525. <productMenu id="videoGuide"
  2526. type="0"
  2527. url=""
  2528. size="3.41MB" >
  2529. </productMenu>
  2530. <productMenu id="volume"
  2531. type="16" >
  2532. </productMenu>
  2533. <productMenu id="volume+"
  2534. type="2"
  2535. url="0x6004" >
  2536. </productMenu>
  2537. <productMenu id="battery"
  2538. type="1" >
  2539. </productMenu>
  2540. <productID id="6A0F"
  2541. />
  2542. <productGroupable type="0"
  2543. />
  2544. </product>
  2545. <product id="PHANTOMXB"
  2546. name="PHANTOM XB"
  2547. series="Helmet"
  2548. latestVersion="1.2.9"
  2549. latestVersionVoicePrompt="1.6"
  2550. show = "-1" >
  2551. <productMenu id="protocol"
  2552. type="2" >
  2553. </productMenu>
  2554. <productMenu id="ota"
  2555. type="2" >
  2556. <otaLanguages>
  2557. <otaLanguage
  2558. id="0"
  2559. name="English"
  2560. package="0"
  2561. />
  2562. <otaLanguage
  2563. id="0"
  2564. name="French"
  2565. package="1"
  2566. />
  2567. <otaLanguage
  2568. id="0"
  2569. name="Spanish"
  2570. package="2"
  2571. />
  2572. <otaLanguage
  2573. id="0"
  2574. name="Italian"
  2575. package="3"
  2576. />
  2577. <otaLanguage
  2578. id="0"
  2579. name="German"
  2580. package="4"
  2581. />
  2582. <otaLanguage
  2583. id="0"
  2584. name="Dutch"
  2585. package="5"
  2586. />
  2587. <otaLanguage
  2588. id="0"
  2589. name="Russian"
  2590. package="6"
  2591. />
  2592. <otaLanguage
  2593. id="0"
  2594. name="Chinese"
  2595. package="7"
  2596. />
  2597. <otaLanguage
  2598. id="0"
  2599. name="Korean"
  2600. package="8"
  2601. />
  2602. <otaLanguage
  2603. id="0"
  2604. name="Japanese"
  2605. package="9"
  2606. />
  2607. <otaLanguage
  2608. id="0"
  2609. name="Finnish"
  2610. package="10"
  2611. />
  2612. <otaLanguage
  2613. id="0"
  2614. name="Polish"
  2615. package="11"
  2616. />
  2617. </otaLanguages>
  2618. <otaPackages>
  2619. <package
  2620. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0.img"
  2621. size="5183988"
  2622. />
  2623. <package
  2624. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fr-FR.img"
  2625. size="5183988"
  2626. />
  2627. <package
  2628. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-es-ES.img"
  2629. size="5183988"
  2630. />
  2631. <package
  2632. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-it-IT.img"
  2633. size="5183988"
  2634. />
  2635. <package
  2636. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-de-DE.img"
  2637. size="5183988"
  2638. />
  2639. <package
  2640. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-nl-NL.img"
  2641. size="5183988"
  2642. />
  2643. <package
  2644. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ru-RU.img"
  2645. size="5183988"
  2646. />
  2647. <package
  2648. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-cmn-CN.img"
  2649. size="5183988"
  2650. />
  2651. <package
  2652. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ko-KR.img"
  2653. size="5183988"
  2654. />
  2655. <package
  2656. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ja-JP.img"
  2657. size="5183988"
  2658. />
  2659. <package
  2660. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fi-FI.img"
  2661. size="5183988"
  2662. />
  2663. <package
  2664. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-pl-PL.img"
  2665. size="5183988"
  2666. />
  2667. </otaPackages>
  2668. </productMenu>
  2669. <productMenu id="wa"
  2670. type="0" >
  2671. </productMenu>
  2672. <productMenu id="led"
  2673. type="5" >
  2674. </productMenu>
  2675. <productMenu id="led+"
  2676. type="2"
  2677. url="1" >
  2678. </productMenu>
  2679. <productMenu id="meshIntercom"
  2680. type="30" >
  2681. </productMenu>
  2682. <productMenu id="meshIntercom+"
  2683. type="3"
  2684. url="2" >
  2685. </productMenu>
  2686. <productMenu id="waveIntercom"
  2687. type="1" >
  2688. </productMenu>
  2689. <productMenu id="fmradio"
  2690. type="0" >
  2691. </productMenu>
  2692. <productMenu id="phone"
  2693. type="1" >
  2694. </productMenu>
  2695. <productMenu id="music"
  2696. type="1" >
  2697. </productMenu>
  2698. <productMenu id="musicSharing"
  2699. type="0" >
  2700. </productMenu>
  2701. <productMenu id="deviceSetting"
  2702. type="1"
  2703. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2704. <productMenuURL version="1.2.4"
  2705. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2706. />
  2707. <productMenuURL version="1.2.1"
  2708. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2709. />
  2710. </productMenu>
  2711. <productMenu id="quickGuide"
  2712. type="0"
  2713. url=""
  2714. size="1.12MB" >
  2715. </productMenu>
  2716. <productMenu id="userGuide"
  2717. type="1"
  2718. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2719. size="2.0MB" >
  2720. </productMenu>
  2721. <productMenu id="videoGuide"
  2722. type="0"
  2723. url=""
  2724. size="3.41MB" >
  2725. </productMenu>
  2726. <productMenu id="volume"
  2727. type="16" >
  2728. </productMenu>
  2729. <productMenu id="volume+"
  2730. type="2"
  2731. url="0x6004" >
  2732. </productMenu>
  2733. <productMenu id="battery"
  2734. type="1" >
  2735. </productMenu>
  2736. <productID id="6A0C"
  2737. />
  2738. <productGroupable type="0"
  2739. />
  2740. </product>
  2741. <product id="PHANTOMKV"
  2742. name="PHANTOM KV"
  2743. series="Helmet"
  2744. latestVersion="1.2.10"
  2745. latestVersionVoicePrompt="1.7"
  2746. show = "1" >
  2747. <productMenu id="protocol"
  2748. type="2" >
  2749. </productMenu>
  2750. <productMenu id="ota"
  2751. type="2" >
  2752. <otaLanguages>
  2753. <otaLanguage
  2754. id="0"
  2755. name="English"
  2756. package="0"
  2757. />
  2758. <otaLanguage
  2759. id="0"
  2760. name="French"
  2761. package="1"
  2762. />
  2763. <otaLanguage
  2764. id="0"
  2765. name="Spanish"
  2766. package="2"
  2767. />
  2768. <otaLanguage
  2769. id="0"
  2770. name="Italian"
  2771. package="3"
  2772. />
  2773. <otaLanguage
  2774. id="0"
  2775. name="German"
  2776. package="4"
  2777. />
  2778. <otaLanguage
  2779. id="0"
  2780. name="Dutch"
  2781. package="5"
  2782. />
  2783. <otaLanguage
  2784. id="0"
  2785. name="Russian"
  2786. package="6"
  2787. />
  2788. <otaLanguage
  2789. id="0"
  2790. name="Chinese"
  2791. package="7"
  2792. />
  2793. <otaLanguage
  2794. id="0"
  2795. name="Korean"
  2796. package="8"
  2797. />
  2798. <otaLanguage
  2799. id="0"
  2800. name="Japanese"
  2801. package="9"
  2802. />
  2803. <otaLanguage
  2804. id="0"
  2805. name="Finnish"
  2806. package="10"
  2807. />
  2808. <otaLanguage
  2809. id="0"
  2810. name="Polish"
  2811. package="11"
  2812. />
  2813. </otaLanguages>
  2814. <otaPackages>
  2815. <package
  2816. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0.img"
  2817. size="5183988"
  2818. />
  2819. <package
  2820. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fr-FR.img"
  2821. size="5183988"
  2822. />
  2823. <package
  2824. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-es-ES.img"
  2825. size="5183988"
  2826. />
  2827. <package
  2828. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-it-IT.img"
  2829. size="5183988"
  2830. />
  2831. <package
  2832. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-de-DE.img"
  2833. size="5183988"
  2834. />
  2835. <package
  2836. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-nl-NL.img"
  2837. size="5183988"
  2838. />
  2839. <package
  2840. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ru-RU.img"
  2841. size="5183988"
  2842. />
  2843. <package
  2844. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-cmn-CN.img"
  2845. size="5183988"
  2846. />
  2847. <package
  2848. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ko-KR.img"
  2849. size="5183988"
  2850. />
  2851. <package
  2852. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ja-JP.img"
  2853. size="5183988"
  2854. />
  2855. <package
  2856. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fi-FI.img"
  2857. size="5183988"
  2858. />
  2859. <package
  2860. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-pl-PL.img"
  2861. size="5183988"
  2862. />
  2863. </otaPackages>
  2864. </productMenu>
  2865. <productMenu id="wa"
  2866. type="0" >
  2867. </productMenu>
  2868. <productMenu id="led"
  2869. type="5" >
  2870. </productMenu>
  2871. <productMenu id="led+"
  2872. type="2"
  2873. url="1" >
  2874. </productMenu>
  2875. <productMenu id="meshIntercom"
  2876. type="30" >
  2877. </productMenu>
  2878. <productMenu id="meshIntercom+"
  2879. type="3"
  2880. url="2" >
  2881. </productMenu>
  2882. <productMenu id="waveIntercom"
  2883. type="1" >
  2884. </productMenu>
  2885. <productMenu id="fmradio"
  2886. type="0" >
  2887. </productMenu>
  2888. <productMenu id="phone"
  2889. type="1" >
  2890. </productMenu>
  2891. <productMenu id="music"
  2892. type="1" >
  2893. </productMenu>
  2894. <productMenu id="musicSharing"
  2895. type="0" >
  2896. </productMenu>
  2897. <productMenu id="deviceSetting"
  2898. type="1"
  2899. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2900. <productMenuURL version="1.2.4"
  2901. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2902. />
  2903. </productMenu>
  2904. <productMenu id="quickGuide"
  2905. type="0"
  2906. url=""
  2907. size="1.12MB" >
  2908. </productMenu>
  2909. <productMenu id="userGuide"
  2910. type="1"
  2911. url=""
  2912. size="2.0MB" >
  2913. </productMenu>
  2914. <productMenu id="videoGuide"
  2915. type="0"
  2916. url=""
  2917. size="3.41MB" >
  2918. </productMenu>
  2919. <productMenu id="connectGuide"
  2920. type="1"
  2921. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  2922. size="1.1MB" >
  2923. </productMenu>
  2924. <productMenu id="volume"
  2925. type="16" >
  2926. </productMenu>
  2927. <productMenu id="volume+"
  2928. type="2"
  2929. url="0x6004" >
  2930. </productMenu>
  2931. <productMenu id="soundMode"
  2932. type="1" >
  2933. </productMenu>
  2934. <productMenu id="battery"
  2935. type="1" >
  2936. </productMenu>
  2937. <productID id="6A13"
  2938. />
  2939. <productGroupable type="0"
  2940. />
  2941. </product>
  2942. <product id="PHANTOMCamera"
  2943. name="PHANTOM Camera"
  2944. series="Helmet"
  2945. latestVersion="1.2.10"
  2946. latestVersionVoicePrompt="1.7"
  2947. show = "1" >
  2948. <productMenu id="protocol"
  2949. type="2" >
  2950. </productMenu>
  2951. <productMenu id="ota"
  2952. type="3" >
  2953. <otaLanguages>
  2954. <otaLanguage
  2955. id="0"
  2956. name="English"
  2957. package="0"
  2958. />
  2959. <otaLanguage
  2960. id="0"
  2961. name="French"
  2962. package="1"
  2963. />
  2964. <otaLanguage
  2965. id="0"
  2966. name="Spanish"
  2967. package="2"
  2968. />
  2969. <otaLanguage
  2970. id="0"
  2971. name="Italian"
  2972. package="3"
  2973. />
  2974. <otaLanguage
  2975. id="0"
  2976. name="German"
  2977. package="4"
  2978. />
  2979. <otaLanguage
  2980. id="0"
  2981. name="Dutch"
  2982. package="5"
  2983. />
  2984. <otaLanguage
  2985. id="0"
  2986. name="Russian"
  2987. package="6"
  2988. />
  2989. <otaLanguage
  2990. id="0"
  2991. name="Chinese"
  2992. package="7"
  2993. />
  2994. <otaLanguage
  2995. id="0"
  2996. name="Korean"
  2997. package="8"
  2998. />
  2999. <otaLanguage
  3000. id="0"
  3001. name="Japanese"
  3002. package="9"
  3003. />
  3004. <otaLanguage
  3005. id="0"
  3006. name="Finnish"
  3007. package="10"
  3008. />
  3009. <otaLanguage
  3010. id="0"
  3011. name="Polish"
  3012. package="11"
  3013. />
  3014. </otaLanguages>
  3015. <otaPackages>
  3016. <package
  3017. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0.img"
  3018. size="5183988"
  3019. />
  3020. <package
  3021. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fr-FR.img"
  3022. size="5183988"
  3023. />
  3024. <package
  3025. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-es-ES.img"
  3026. size="5183988"
  3027. />
  3028. <package
  3029. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-it-IT.img"
  3030. size="5183988"
  3031. />
  3032. <package
  3033. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-de-DE.img"
  3034. size="5183988"
  3035. />
  3036. <package
  3037. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-nl-NL.img"
  3038. size="5183988"
  3039. />
  3040. <package
  3041. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ru-RU.img"
  3042. size="5183988"
  3043. />
  3044. <package
  3045. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-cmn-CN.img"
  3046. size="5183988"
  3047. />
  3048. <package
  3049. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ko-KR.img"
  3050. size="5183988"
  3051. />
  3052. <package
  3053. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ja-JP.img"
  3054. size="5183988"
  3055. />
  3056. <package
  3057. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fi-FI.img"
  3058. size="5183988"
  3059. />
  3060. <package
  3061. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-pl-PL.img"
  3062. size="5183988"
  3063. />
  3064. </otaPackages>
  3065. </productMenu>
  3066. <productMenu id="wa"
  3067. type="0" >
  3068. </productMenu>
  3069. <productMenu id="led"
  3070. type="5" >
  3071. </productMenu>
  3072. <productMenu id="led+"
  3073. type="2"
  3074. url="1" >
  3075. </productMenu>
  3076. <productMenu id="meshIntercom"
  3077. type="30" >
  3078. </productMenu>
  3079. <productMenu id="meshIntercom+"
  3080. type="3"
  3081. url="2" >
  3082. </productMenu>
  3083. <productMenu id="waveIntercom"
  3084. type="1" >
  3085. </productMenu>
  3086. <productMenu id="fmradio"
  3087. type="0" >
  3088. </productMenu>
  3089. <productMenu id="phone"
  3090. type="1" >
  3091. </productMenu>
  3092. <productMenu id="music"
  3093. type="1" >
  3094. </productMenu>
  3095. <productMenu id="musicSharing"
  3096. type="0" >
  3097. </productMenu>
  3098. <productMenu id="deviceSetting"
  3099. type="1"
  3100. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3101. </productMenu>
  3102. <productMenu id="quickGuide"
  3103. type="0"
  3104. url=""
  3105. size="1.12MB" >
  3106. </productMenu>
  3107. <productMenu id="userGuide"
  3108. type="1"
  3109. url=""
  3110. size="2.0MB" >
  3111. </productMenu>
  3112. <productMenu id="videoGuide"
  3113. type="0"
  3114. url=""
  3115. size="3.41MB" >
  3116. </productMenu>
  3117. <productMenu id="volume"
  3118. type="16" >
  3119. </productMenu>
  3120. <productMenu id="battery"
  3121. type="1" >
  3122. </productMenu>
  3123. <productID id="6A10"
  3124. />
  3125. <productGroupable type="0"
  3126. />
  3127. </product>
  3128. <product id="PHANTOMCamera"
  3129. name="PHANTOM Camera"
  3130. series="Helmet"
  3131. latestVersion="1.2.10"
  3132. latestVersionVoicePrompt="1.7"
  3133. show = "-1" >
  3134. <productMenu id="protocol"
  3135. type="2" >
  3136. </productMenu>
  3137. <productMenu id="ota"
  3138. type="3" >
  3139. <otaLanguages>
  3140. <otaLanguage
  3141. id="0"
  3142. name="English"
  3143. package="0"
  3144. />
  3145. <otaLanguage
  3146. id="0"
  3147. name="French"
  3148. package="1"
  3149. />
  3150. <otaLanguage
  3151. id="0"
  3152. name="Spanish"
  3153. package="2"
  3154. />
  3155. <otaLanguage
  3156. id="0"
  3157. name="Italian"
  3158. package="3"
  3159. />
  3160. <otaLanguage
  3161. id="0"
  3162. name="German"
  3163. package="4"
  3164. />
  3165. <otaLanguage
  3166. id="0"
  3167. name="Dutch"
  3168. package="5"
  3169. />
  3170. <otaLanguage
  3171. id="0"
  3172. name="Russian"
  3173. package="6"
  3174. />
  3175. <otaLanguage
  3176. id="0"
  3177. name="Chinese"
  3178. package="7"
  3179. />
  3180. <otaLanguage
  3181. id="0"
  3182. name="Korean"
  3183. package="8"
  3184. />
  3185. <otaLanguage
  3186. id="0"
  3187. name="Japanese"
  3188. package="9"
  3189. />
  3190. <otaLanguage
  3191. id="0"
  3192. name="Finnish"
  3193. package="10"
  3194. />
  3195. <otaLanguage
  3196. id="0"
  3197. name="Polish"
  3198. package="11"
  3199. />
  3200. </otaLanguages>
  3201. <otaPackages>
  3202. <package
  3203. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0.img"
  3204. size="5183988"
  3205. />
  3206. <package
  3207. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fr-FR.img"
  3208. size="5183988"
  3209. />
  3210. <package
  3211. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-es-ES.img"
  3212. size="5183988"
  3213. />
  3214. <package
  3215. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-it-IT.img"
  3216. size="5183988"
  3217. />
  3218. <package
  3219. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-de-DE.img"
  3220. size="5183988"
  3221. />
  3222. <package
  3223. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-nl-NL.img"
  3224. size="5183988"
  3225. />
  3226. <package
  3227. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ru-RU.img"
  3228. size="5183988"
  3229. />
  3230. <package
  3231. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-cmn-CN.img"
  3232. size="5183988"
  3233. />
  3234. <package
  3235. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ko-KR.img"
  3236. size="5183988"
  3237. />
  3238. <package
  3239. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ja-JP.img"
  3240. size="5183988"
  3241. />
  3242. <package
  3243. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fi-FI.img"
  3244. size="5183988"
  3245. />
  3246. <package
  3247. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-pl-PL.img"
  3248. size="5183988"
  3249. />
  3250. </otaPackages>
  3251. </productMenu>
  3252. <productMenu id="wa"
  3253. type="0" >
  3254. </productMenu>
  3255. <productMenu id="led"
  3256. type="5" >
  3257. </productMenu>
  3258. <productMenu id="led+"
  3259. type="2"
  3260. url="1" >
  3261. </productMenu>
  3262. <productMenu id="meshIntercom"
  3263. type="30" >
  3264. </productMenu>
  3265. <productMenu id="meshIntercom+"
  3266. type="3"
  3267. url="2" >
  3268. </productMenu>
  3269. <productMenu id="waveIntercom"
  3270. type="1" >
  3271. </productMenu>
  3272. <productMenu id="fmradio"
  3273. type="0" >
  3274. </productMenu>
  3275. <productMenu id="phone"
  3276. type="1" >
  3277. </productMenu>
  3278. <productMenu id="music"
  3279. type="1" >
  3280. </productMenu>
  3281. <productMenu id="musicSharing"
  3282. type="0" >
  3283. </productMenu>
  3284. <productMenu id="deviceSetting"
  3285. type="1"
  3286. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3287. </productMenu>
  3288. <productMenu id="quickGuide"
  3289. type="0"
  3290. url=""
  3291. size="1.12MB" >
  3292. </productMenu>
  3293. <productMenu id="userGuide"
  3294. type="1"
  3295. url=""
  3296. size="2.0MB" >
  3297. </productMenu>
  3298. <productMenu id="videoGuide"
  3299. type="0"
  3300. url=""
  3301. size="3.41MB" >
  3302. </productMenu>
  3303. <productMenu id="volume"
  3304. type="16" >
  3305. </productMenu>
  3306. <productMenu id="battery"
  3307. type="1" >
  3308. </productMenu>
  3309. <productID id="6A09"
  3310. />
  3311. <productGroupable type="0"
  3312. />
  3313. </product>
  3314. <product id="PHANTOM"
  3315. name="PHANTOM ANC"
  3316. series="Helmet"
  3317. latestVersion="1.2.9"
  3318. latestVersionVoicePrompt="1.7"
  3319. show = "1" >
  3320. <productMenu id="protocol"
  3321. type="2" >
  3322. </productMenu>
  3323. <productMenu id="ota"
  3324. type="2" >
  3325. <productMenuType version="0.6.9"
  3326. type="0"
  3327. />
  3328. <otaLanguages>
  3329. <otaLanguage
  3330. id="0"
  3331. name="English"
  3332. package="0"
  3333. />
  3334. <otaLanguage
  3335. id="0"
  3336. name="French"
  3337. package="1"
  3338. />
  3339. <otaLanguage
  3340. id="0"
  3341. name="Spanish"
  3342. package="2"
  3343. />
  3344. <otaLanguage
  3345. id="0"
  3346. name="Italian"
  3347. package="3"
  3348. />
  3349. <otaLanguage
  3350. id="0"
  3351. name="German"
  3352. package="4"
  3353. />
  3354. <otaLanguage
  3355. id="0"
  3356. name="Dutch"
  3357. package="5"
  3358. />
  3359. <otaLanguage
  3360. id="0"
  3361. name="Russian"
  3362. package="6"
  3363. />
  3364. <otaLanguage
  3365. id="0"
  3366. name="Chinese"
  3367. package="7"
  3368. />
  3369. <otaLanguage
  3370. id="0"
  3371. name="Korean"
  3372. package="8"
  3373. />
  3374. <otaLanguage
  3375. id="0"
  3376. name="Japanese"
  3377. package="9"
  3378. />
  3379. <otaLanguage
  3380. id="0"
  3381. name="Finnish"
  3382. package="10"
  3383. />
  3384. <otaLanguage
  3385. id="0"
  3386. name="Polish"
  3387. package="11"
  3388. />
  3389. </otaLanguages>
  3390. <otaPackages>
  3391. <package
  3392. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0.img"
  3393. size="5183988"
  3394. />
  3395. <package
  3396. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fr-FR.img"
  3397. size="5183988"
  3398. />
  3399. <package
  3400. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-es-ES.img"
  3401. size="5183988"
  3402. />
  3403. <package
  3404. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-it-IT.img"
  3405. size="5183988"
  3406. />
  3407. <package
  3408. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-de-DE.img"
  3409. size="5183988"
  3410. />
  3411. <package
  3412. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-nl-NL.img"
  3413. size="5183988"
  3414. />
  3415. <package
  3416. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ru-RU.img"
  3417. size="5183988"
  3418. />
  3419. <package
  3420. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-cmn-CN.img"
  3421. size="5183988"
  3422. />
  3423. <package
  3424. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ko-KR.img"
  3425. size="5183988"
  3426. />
  3427. <package
  3428. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ja-JP.img"
  3429. size="5183988"
  3430. />
  3431. <package
  3432. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fi-FI.img"
  3433. size="5183988"
  3434. />
  3435. <package
  3436. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-pl-PL.img"
  3437. size="5183988"
  3438. />
  3439. </otaPackages>
  3440. </productMenu>
  3441. <productMenu id="wa"
  3442. type="0" >
  3443. </productMenu>
  3444. <productMenu id="led"
  3445. type="5" >
  3446. </productMenu>
  3447. <productMenu id="led+"
  3448. type="2"
  3449. url="1" >
  3450. </productMenu>
  3451. <productMenu id="meshIntercom"
  3452. type="30" >
  3453. </productMenu>
  3454. <productMenu id="meshIntercom+"
  3455. type="3"
  3456. url="2" >
  3457. <productMenuURL version="1.0.4"
  3458. url="10"
  3459. />
  3460. </productMenu>
  3461. <productMenu id="waveIntercom"
  3462. type="1" >
  3463. <productMenuType version="1.0.9"
  3464. type="0"
  3465. />
  3466. </productMenu>
  3467. <productMenu id="fmradio"
  3468. type="0" >
  3469. </productMenu>
  3470. <productMenu id="phone"
  3471. type="1" >
  3472. </productMenu>
  3473. <productMenu id="music"
  3474. type="1" >
  3475. </productMenu>
  3476. <productMenu id="musicSharing"
  3477. type="0" >
  3478. </productMenu>
  3479. <productMenu id="deviceSetting"
  3480. type="1"
  3481. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3482. <productMenuURL version="1.2.4"
  3483. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3484. />
  3485. <productMenuURL version="1.2.1"
  3486. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3487. />
  3488. <productMenuURL version="1.1.2"
  3489. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3490. />
  3491. <productMenuURL version="1.0.4"
  3492. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3493. />
  3494. </productMenu>
  3495. <productMenu id="quickGuide"
  3496. type="0"
  3497. url=""
  3498. size="1.12MB" >
  3499. </productMenu>
  3500. <productMenu id="userGuide"
  3501. type="1"
  3502. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3503. size="2.0MB" >
  3504. </productMenu>
  3505. <productMenu id="videoGuide"
  3506. type="0"
  3507. url=""
  3508. size="3.41MB" >
  3509. </productMenu>
  3510. <productMenu id="connectGuide"
  3511. type="1"
  3512. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3513. size="1.1MB" >
  3514. </productMenu>
  3515. <productMenu id="volume"
  3516. type="16" >
  3517. </productMenu>
  3518. <productMenu id="volume+"
  3519. type="2"
  3520. url="0x6004" >
  3521. </productMenu>
  3522. <productMenu id="soundMode"
  3523. type="1" >
  3524. <productMenuType version="0.9.11"
  3525. type="0"
  3526. />
  3527. </productMenu>
  3528. <productMenu id="battery"
  3529. type="1" >
  3530. </productMenu>
  3531. <productID id="6A01"
  3532. />
  3533. <productGroupable type="0"
  3534. />
  3535. </product>
  3536. <product id="PHANTOM"
  3537. name="PHANTOM ANC"
  3538. series="Helmet"
  3539. latestVersion="1.2.9"
  3540. latestVersionVoicePrompt="1.7"
  3541. show = "-1" >
  3542. <productMenu id="protocol"
  3543. type="2" >
  3544. </productMenu>
  3545. <productMenu id="ota"
  3546. type="2" >
  3547. <otaLanguages>
  3548. <otaLanguage
  3549. id="0"
  3550. name="English"
  3551. package="0"
  3552. />
  3553. <otaLanguage
  3554. id="0"
  3555. name="French"
  3556. package="1"
  3557. />
  3558. <otaLanguage
  3559. id="0"
  3560. name="Spanish"
  3561. package="2"
  3562. />
  3563. <otaLanguage
  3564. id="0"
  3565. name="Italian"
  3566. package="3"
  3567. />
  3568. <otaLanguage
  3569. id="0"
  3570. name="German"
  3571. package="4"
  3572. />
  3573. <otaLanguage
  3574. id="0"
  3575. name="Dutch"
  3576. package="5"
  3577. />
  3578. <otaLanguage
  3579. id="0"
  3580. name="Russian"
  3581. package="6"
  3582. />
  3583. <otaLanguage
  3584. id="0"
  3585. name="Chinese"
  3586. package="7"
  3587. />
  3588. <otaLanguage
  3589. id="0"
  3590. name="Korean"
  3591. package="8"
  3592. />
  3593. <otaLanguage
  3594. id="0"
  3595. name="Japanese"
  3596. package="9"
  3597. />
  3598. <otaLanguage
  3599. id="0"
  3600. name="Finnish"
  3601. package="10"
  3602. />
  3603. <otaLanguage
  3604. id="0"
  3605. name="Polish"
  3606. package="11"
  3607. />
  3608. </otaLanguages>
  3609. <otaPackages>
  3610. <package
  3611. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0.img"
  3612. size="5183988"
  3613. />
  3614. <package
  3615. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fr-FR.img"
  3616. size="5183988"
  3617. />
  3618. <package
  3619. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-es-ES.img"
  3620. size="5183988"
  3621. />
  3622. <package
  3623. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-it-IT.img"
  3624. size="5183988"
  3625. />
  3626. <package
  3627. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-de-DE.img"
  3628. size="5183988"
  3629. />
  3630. <package
  3631. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-nl-NL.img"
  3632. size="5183988"
  3633. />
  3634. <package
  3635. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ru-RU.img"
  3636. size="5183988"
  3637. />
  3638. <package
  3639. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-cmn-CN.img"
  3640. size="5183988"
  3641. />
  3642. <package
  3643. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ko-KR.img"
  3644. size="5183988"
  3645. />
  3646. <package
  3647. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ja-JP.img"
  3648. size="5183988"
  3649. />
  3650. <package
  3651. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fi-FI.img"
  3652. size="5183988"
  3653. />
  3654. <package
  3655. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-pl-PL.img"
  3656. size="5183988"
  3657. />
  3658. </otaPackages>
  3659. </productMenu>
  3660. <productMenu id="led"
  3661. type="5" >
  3662. </productMenu>
  3663. <productMenu id="led+"
  3664. type="2"
  3665. url="1" >
  3666. </productMenu>
  3667. <productMenu id="meshIntercom"
  3668. type="30" >
  3669. </productMenu>
  3670. <productMenu id="meshIntercom+"
  3671. type="3"
  3672. url="2" >
  3673. </productMenu>
  3674. <productMenu id="waveIntercom"
  3675. type="1" >
  3676. </productMenu>
  3677. <productMenu id="fmradio"
  3678. type="0" >
  3679. </productMenu>
  3680. <productMenu id="phone"
  3681. type="1" >
  3682. </productMenu>
  3683. <productMenu id="music"
  3684. type="1" >
  3685. </productMenu>
  3686. <productMenu id="musicSharing"
  3687. type="0" >
  3688. </productMenu>
  3689. <productMenu id="deviceSetting"
  3690. type="1"
  3691. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3692. <productMenuURL version="1.2.4"
  3693. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3694. />
  3695. </productMenu>
  3696. <productMenu id="quickGuide"
  3697. type="0"
  3698. url=""
  3699. size="1.12MB" >
  3700. </productMenu>
  3701. <productMenu id="userGuide"
  3702. type="1"
  3703. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3704. size="2.0MB" >
  3705. </productMenu>
  3706. <productMenu id="videoGuide"
  3707. type="0"
  3708. url=""
  3709. size="3.41MB" >
  3710. </productMenu>
  3711. <productMenu id="connectGuide"
  3712. type="1"
  3713. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3714. size="1.1MB" >
  3715. </productMenu>
  3716. <productMenu id="volume"
  3717. type="16" >
  3718. </productMenu>
  3719. <productMenu id="volume+"
  3720. type="2"
  3721. url="0x6004" >
  3722. </productMenu>
  3723. <productMenu id="soundMode"
  3724. type="1" >
  3725. </productMenu>
  3726. <productMenu id="battery"
  3727. type="1" >
  3728. </productMenu>
  3729. <productID id="6A19"
  3730. />
  3731. <productGroupable type="0"
  3732. />
  3733. </product>
  3734. <product id="PHANTOM"
  3735. name="PHANTOM"
  3736. series="Helmet"
  3737. latestVersion="1.2.9"
  3738. latestVersionVoicePrompt="1.7"
  3739. show = "-1" >
  3740. <productMenu id="protocol"
  3741. type="2" >
  3742. </productMenu>
  3743. <productMenu id="ota"
  3744. type="2" >
  3745. <otaLanguages>
  3746. <otaLanguage
  3747. id="0"
  3748. name="English"
  3749. package="0"
  3750. />
  3751. <otaLanguage
  3752. id="0"
  3753. name="French"
  3754. package="1"
  3755. />
  3756. <otaLanguage
  3757. id="0"
  3758. name="Spanish"
  3759. package="2"
  3760. />
  3761. <otaLanguage
  3762. id="0"
  3763. name="Italian"
  3764. package="3"
  3765. />
  3766. <otaLanguage
  3767. id="0"
  3768. name="German"
  3769. package="4"
  3770. />
  3771. <otaLanguage
  3772. id="0"
  3773. name="Dutch"
  3774. package="5"
  3775. />
  3776. <otaLanguage
  3777. id="0"
  3778. name="Russian"
  3779. package="6"
  3780. />
  3781. <otaLanguage
  3782. id="0"
  3783. name="Chinese"
  3784. package="7"
  3785. />
  3786. <otaLanguage
  3787. id="0"
  3788. name="Korean"
  3789. package="8"
  3790. />
  3791. <otaLanguage
  3792. id="0"
  3793. name="Japanese"
  3794. package="9"
  3795. />
  3796. <otaLanguage
  3797. id="0"
  3798. name="Finnish"
  3799. package="10"
  3800. />
  3801. <otaLanguage
  3802. id="0"
  3803. name="Polish"
  3804. package="11"
  3805. />
  3806. </otaLanguages>
  3807. <otaPackages>
  3808. <package
  3809. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0.img"
  3810. size="5183988"
  3811. />
  3812. <package
  3813. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fr-FR.img"
  3814. size="5183988"
  3815. />
  3816. <package
  3817. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-es-ES.img"
  3818. size="5183988"
  3819. />
  3820. <package
  3821. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-it-IT.img"
  3822. size="5183988"
  3823. />
  3824. <package
  3825. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-de-DE.img"
  3826. size="5183988"
  3827. />
  3828. <package
  3829. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-nl-NL.img"
  3830. size="5183988"
  3831. />
  3832. <package
  3833. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ru-RU.img"
  3834. size="5183988"
  3835. />
  3836. <package
  3837. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-cmn-CN.img"
  3838. size="5183988"
  3839. />
  3840. <package
  3841. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ko-KR.img"
  3842. size="5183988"
  3843. />
  3844. <package
  3845. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ja-JP.img"
  3846. size="5183988"
  3847. />
  3848. <package
  3849. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fi-FI.img"
  3850. size="5183988"
  3851. />
  3852. <package
  3853. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-pl-PL.img"
  3854. size="5183988"
  3855. />
  3856. </otaPackages>
  3857. </productMenu>
  3858. <productMenu id="wa"
  3859. type="0" >
  3860. </productMenu>
  3861. <productMenu id="led"
  3862. type="5" >
  3863. </productMenu>
  3864. <productMenu id="led+"
  3865. type="2"
  3866. url="1" >
  3867. </productMenu>
  3868. <productMenu id="meshIntercom"
  3869. type="30" >
  3870. </productMenu>
  3871. <productMenu id="meshIntercom+"
  3872. type="3"
  3873. url="2" >
  3874. </productMenu>
  3875. <productMenu id="waveIntercom"
  3876. type="1" >
  3877. </productMenu>
  3878. <productMenu id="fmradio"
  3879. type="0" >
  3880. </productMenu>
  3881. <productMenu id="phone"
  3882. type="1" >
  3883. </productMenu>
  3884. <productMenu id="music"
  3885. type="1" >
  3886. </productMenu>
  3887. <productMenu id="musicSharing"
  3888. type="0" >
  3889. </productMenu>
  3890. <productMenu id="deviceSetting"
  3891. type="1"
  3892. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3893. <productMenuURL version="1.2.4"
  3894. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3895. />
  3896. </productMenu>
  3897. <productMenu id="quickGuide"
  3898. type="0"
  3899. url=""
  3900. size="1.52MB" >
  3901. </productMenu>
  3902. <productMenu id="userGuide"
  3903. type="1"
  3904. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3905. size="2.01MB" >
  3906. </productMenu>
  3907. <productMenu id="videoGuide"
  3908. type="0"
  3909. url=""
  3910. size="3.46MB" >
  3911. </productMenu>
  3912. <productMenu id="connectGuide"
  3913. type="1"
  3914. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3915. size="1.1MB" >
  3916. </productMenu>
  3917. <productMenu id="volume"
  3918. type="16" >
  3919. </productMenu>
  3920. <productMenu id="volume+"
  3921. type="2"
  3922. url="0x6004" >
  3923. </productMenu>
  3924. <productMenu id="battery"
  3925. type="1" >
  3926. </productMenu>
  3927. <productID id="6A0E"
  3928. />
  3929. <productGroupable type="0"
  3930. />
  3931. </product>
  3932. <product id="PHANTOM"
  3933. name="PHANTOM"
  3934. series="Helmet"
  3935. latestVersion="1.2.9"
  3936. latestVersionVoicePrompt="1.7"
  3937. show = "1" >
  3938. <productMenu id="protocol"
  3939. type="2" >
  3940. </productMenu>
  3941. <productMenu id="ota"
  3942. type="2" >
  3943. <otaLanguages>
  3944. <otaLanguage
  3945. id="0"
  3946. name="English"
  3947. package="0"
  3948. />
  3949. <otaLanguage
  3950. id="0"
  3951. name="French"
  3952. package="1"
  3953. />
  3954. <otaLanguage
  3955. id="0"
  3956. name="Spanish"
  3957. package="2"
  3958. />
  3959. <otaLanguage
  3960. id="0"
  3961. name="Italian"
  3962. package="3"
  3963. />
  3964. <otaLanguage
  3965. id="0"
  3966. name="German"
  3967. package="4"
  3968. />
  3969. <otaLanguage
  3970. id="0"
  3971. name="Dutch"
  3972. package="5"
  3973. />
  3974. <otaLanguage
  3975. id="0"
  3976. name="Russian"
  3977. package="6"
  3978. />
  3979. <otaLanguage
  3980. id="0"
  3981. name="Chinese"
  3982. package="7"
  3983. />
  3984. <otaLanguage
  3985. id="0"
  3986. name="Korean"
  3987. package="8"
  3988. />
  3989. <otaLanguage
  3990. id="0"
  3991. name="Japanese"
  3992. package="9"
  3993. />
  3994. <otaLanguage
  3995. id="0"
  3996. name="Finnish"
  3997. package="10"
  3998. />
  3999. <otaLanguage
  4000. id="0"
  4001. name="Polish"
  4002. package="11"
  4003. />
  4004. </otaLanguages>
  4005. <otaPackages>
  4006. <package
  4007. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0.img"
  4008. size="5183988"
  4009. />
  4010. <package
  4011. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fr-FR.img"
  4012. size="5183988"
  4013. />
  4014. <package
  4015. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-es-ES.img"
  4016. size="5183988"
  4017. />
  4018. <package
  4019. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-it-IT.img"
  4020. size="5183988"
  4021. />
  4022. <package
  4023. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-de-DE.img"
  4024. size="5183988"
  4025. />
  4026. <package
  4027. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-nl-NL.img"
  4028. size="5183988"
  4029. />
  4030. <package
  4031. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ru-RU.img"
  4032. size="5183988"
  4033. />
  4034. <package
  4035. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-cmn-CN.img"
  4036. size="5183988"
  4037. />
  4038. <package
  4039. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ko-KR.img"
  4040. size="5183988"
  4041. />
  4042. <package
  4043. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ja-JP.img"
  4044. size="5183988"
  4045. />
  4046. <package
  4047. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fi-FI.img"
  4048. size="5183988"
  4049. />
  4050. <package
  4051. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-pl-PL.img"
  4052. size="5183988"
  4053. />
  4054. </otaPackages>
  4055. </productMenu>
  4056. <productMenu id="wa"
  4057. type="0" >
  4058. </productMenu>
  4059. <productMenu id="led"
  4060. type="5" >
  4061. <productMenuType version="1.0.1"
  4062. type="4"
  4063. />
  4064. </productMenu>
  4065. <productMenu id="led+"
  4066. type="2"
  4067. url="1" >
  4068. <productMenuType version="1.0.1"
  4069. type="-1"
  4070. />
  4071. </productMenu>
  4072. <productMenu id="meshIntercom"
  4073. type="30" >
  4074. </productMenu>
  4075. <productMenu id="meshIntercom+"
  4076. type="3"
  4077. url="2" >
  4078. <productMenuURL version="1.0.4"
  4079. url="10"
  4080. />
  4081. </productMenu>
  4082. <productMenu id="waveIntercom"
  4083. type="1" >
  4084. <productMenuType version="1.0.9"
  4085. type="0"
  4086. />
  4087. </productMenu>
  4088. <productMenu id="fmradio"
  4089. type="0" >
  4090. </productMenu>
  4091. <productMenu id="phone"
  4092. type="1" >
  4093. </productMenu>
  4094. <productMenu id="music"
  4095. type="1" >
  4096. </productMenu>
  4097. <productMenu id="musicSharing"
  4098. type="0" >
  4099. </productMenu>
  4100. <productMenu id="deviceSetting"
  4101. type="1"
  4102. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  4103. <productMenuURL version="1.2.4"
  4104. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4105. />
  4106. <productMenuURL version="1.2.1"
  4107. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4108. />
  4109. <productMenuURL version="1.0.4"
  4110. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4111. />
  4112. <productMenuURL version="1.0.1"
  4113. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4114. />
  4115. </productMenu>
  4116. <productMenu id="quickGuide"
  4117. type="0"
  4118. url=""
  4119. size="1.12MB" >
  4120. </productMenu>
  4121. <productMenu id="userGuide"
  4122. type="1"
  4123. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4124. size="2.0MB" >
  4125. </productMenu>
  4126. <productMenu id="videoGuide"
  4127. type="0"
  4128. url=""
  4129. size="3.41MB" >
  4130. </productMenu>
  4131. <productMenu id="connectGuide"
  4132. type="1"
  4133. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4134. size="1.12MB" >
  4135. </productMenu>
  4136. <productMenu id="volume"
  4137. type="16" >
  4138. <productMenuType version="1.0"
  4139. type="13"
  4140. />
  4141. </productMenu>
  4142. <productMenu id="volume+"
  4143. type="2"
  4144. url="0x6004" >
  4145. </productMenu>
  4146. <productMenu id="battery"
  4147. type="1" >
  4148. </productMenu>
  4149. <productID id="6A04"
  4150. />
  4151. <productGroupable type="0"
  4152. />
  4153. </product>
  4154. <product id="PHANTOMEasyLink"
  4155. name="PHANTOM EasyLink"
  4156. series="Helmet"
  4157. latestVersion="0.1"
  4158. latestVersionVoicePrompt="1.2"
  4159. show = "-1" >
  4160. <productMenu id="protocol"
  4161. type="2" >
  4162. </productMenu>
  4163. <productMenu id="ota"
  4164. type="0" >
  4165. <otaLanguages>
  4166. <otaLanguage
  4167. id="0"
  4168. name="English"
  4169. package="0"
  4170. />
  4171. <otaLanguage
  4172. id="0"
  4173. name="French"
  4174. package="1"
  4175. />
  4176. <otaLanguage
  4177. id="0"
  4178. name="Spanish"
  4179. package="2"
  4180. />
  4181. <otaLanguage
  4182. id="0"
  4183. name="Italian"
  4184. package="3"
  4185. />
  4186. <otaLanguage
  4187. id="0"
  4188. name="German"
  4189. package="4"
  4190. />
  4191. <otaLanguage
  4192. id="0"
  4193. name="Dutch"
  4194. package="5"
  4195. />
  4196. <otaLanguage
  4197. id="0"
  4198. name="Russian"
  4199. package="6"
  4200. />
  4201. <otaLanguage
  4202. id="0"
  4203. name="Chinese"
  4204. package="7"
  4205. />
  4206. <otaLanguage
  4207. id="0"
  4208. name="Korean"
  4209. package="8"
  4210. />
  4211. <otaLanguage
  4212. id="0"
  4213. name="Japanese"
  4214. package="9"
  4215. />
  4216. <otaLanguage
  4217. id="0"
  4218. name="Finnish"
  4219. package="10"
  4220. />
  4221. <otaLanguage
  4222. id="0"
  4223. name="Polish"
  4224. package="11"
  4225. />
  4226. </otaLanguages>
  4227. <otaPackages>
  4228. <package
  4229. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4230. size="5183988"
  4231. />
  4232. <package
  4233. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4234. size="5183988"
  4235. />
  4236. <package
  4237. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4238. size="5183988"
  4239. />
  4240. <package
  4241. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4242. size="5183988"
  4243. />
  4244. <package
  4245. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4246. size="5183988"
  4247. />
  4248. <package
  4249. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4250. size="5183988"
  4251. />
  4252. <package
  4253. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4254. size="5183988"
  4255. />
  4256. <package
  4257. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4258. size="5183988"
  4259. />
  4260. <package
  4261. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4262. size="5183988"
  4263. />
  4264. <package
  4265. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4266. size="5183988"
  4267. />
  4268. <package
  4269. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4270. size="5183988"
  4271. />
  4272. <package
  4273. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4274. size="5183988"
  4275. />
  4276. </otaPackages>
  4277. </productMenu>
  4278. <productMenu id="meshIntercom"
  4279. type="30" >
  4280. </productMenu>
  4281. <productMenu id="meshIntercom+"
  4282. type="3"
  4283. url="2" >
  4284. </productMenu>
  4285. <productMenu id="waveIntercom"
  4286. type="1" >
  4287. </productMenu>
  4288. <productMenu id="fmradio"
  4289. type="0" >
  4290. </productMenu>
  4291. <productMenu id="phone"
  4292. type="1" >
  4293. </productMenu>
  4294. <productMenu id="music"
  4295. type="1" >
  4296. </productMenu>
  4297. <productMenu id="musicSharing"
  4298. type="0" >
  4299. </productMenu>
  4300. <productMenu id="deviceSetting"
  4301. type="1"
  4302. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4303. </productMenu>
  4304. <productMenu id="quickGuide"
  4305. type="0"
  4306. url=""
  4307. size="1.12MB" >
  4308. </productMenu>
  4309. <productMenu id="userGuide"
  4310. type="1"
  4311. url=""
  4312. size="2.0MB" >
  4313. </productMenu>
  4314. <productMenu id="videoGuide"
  4315. type="0"
  4316. url=""
  4317. size="3.41MB" >
  4318. </productMenu>
  4319. <productMenu id="connectGuide"
  4320. type="0"
  4321. url=""
  4322. size="1.12MB" >
  4323. </productMenu>
  4324. <productMenu id="volume"
  4325. type="16" >
  4326. </productMenu>
  4327. <productMenu id="battery"
  4328. type="1" >
  4329. </productMenu>
  4330. <productID id="6A18"
  4331. />
  4332. <productGroupable type="0"
  4333. />
  4334. </product>
  4335. <product id="SPIDERXSlim"
  4336. name="SPIDER X Slim"
  4337. series="SPIDER"
  4338. latestVersion="1.0"
  4339. latestVersionVoicePrompt="1.7"
  4340. show = "1" >
  4341. <productMenu id="protocol"
  4342. type="2" >
  4343. </productMenu>
  4344. <productMenu id="warranty"
  4345. type="1" >
  4346. </productMenu>
  4347. <productMenu id="serialNumber"
  4348. type="1" >
  4349. </productMenu>
  4350. <productMenu id="ota"
  4351. type="2" >
  4352. <otaLanguages>
  4353. <otaLanguage
  4354. id="0"
  4355. name="English"
  4356. package="0"
  4357. />
  4358. <otaLanguage
  4359. id="0"
  4360. name="French"
  4361. package="1"
  4362. />
  4363. <otaLanguage
  4364. id="0"
  4365. name="Spanish"
  4366. package="2"
  4367. />
  4368. <otaLanguage
  4369. id="0"
  4370. name="Italian"
  4371. package="3"
  4372. />
  4373. <otaLanguage
  4374. id="0"
  4375. name="German"
  4376. package="4"
  4377. />
  4378. <otaLanguage
  4379. id="0"
  4380. name="Dutch"
  4381. package="5"
  4382. />
  4383. <otaLanguage
  4384. id="0"
  4385. name="Russian"
  4386. package="6"
  4387. />
  4388. <otaLanguage
  4389. id="0"
  4390. name="Chinese"
  4391. package="7"
  4392. />
  4393. <otaLanguage
  4394. id="0"
  4395. name="Korean"
  4396. package="8"
  4397. />
  4398. <otaLanguage
  4399. id="0"
  4400. name="Japanese"
  4401. package="9"
  4402. />
  4403. <otaLanguage
  4404. id="0"
  4405. name="Finnish"
  4406. package="10"
  4407. />
  4408. <otaLanguage
  4409. id="0"
  4410. name="Polish"
  4411. package="11"
  4412. />
  4413. </otaLanguages>
  4414. <otaPackages>
  4415. <package
  4416. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5.img"
  4417. size="5183988"
  4418. />
  4419. <package
  4420. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fr-FR.img"
  4421. size="5183988"
  4422. />
  4423. <package
  4424. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-es-ES.img"
  4425. size="5183988"
  4426. />
  4427. <package
  4428. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-it-IT.img"
  4429. size="5183988"
  4430. />
  4431. <package
  4432. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-de-DE.img"
  4433. size="5183988"
  4434. />
  4435. <package
  4436. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-nl-NL.img"
  4437. size="5183988"
  4438. />
  4439. <package
  4440. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ru-RU.img"
  4441. size="5183988"
  4442. />
  4443. <package
  4444. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-cmn-CN.img"
  4445. size="5183988"
  4446. />
  4447. <package
  4448. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ko-KR.img"
  4449. size="5183988"
  4450. />
  4451. <package
  4452. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ja-JP.img"
  4453. size="5183988"
  4454. />
  4455. <package
  4456. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fi-FI.img"
  4457. size="5183988"
  4458. />
  4459. <package
  4460. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-pl-PL.img"
  4461. size="5183988"
  4462. />
  4463. </otaPackages>
  4464. </productMenu>
  4465. <productMenu id="meshIntercom"
  4466. type="30" >
  4467. </productMenu>
  4468. <productMenu id="meshIntercom+"
  4469. type="3"
  4470. url="2" >
  4471. </productMenu>
  4472. <productMenu id="waveIntercom"
  4473. type="1" >
  4474. </productMenu>
  4475. <productMenu id="fmradio"
  4476. type="1"
  4477. url="1" >
  4478. </productMenu>
  4479. <productMenu id="phone"
  4480. type="1" >
  4481. </productMenu>
  4482. <productMenu id="music"
  4483. type="1" >
  4484. </productMenu>
  4485. <productMenu id="musicSharing"
  4486. type="0" >
  4487. </productMenu>
  4488. <productMenu id="deviceSetting"
  4489. type="1"
  4490. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_02.xml" >
  4491. <productMenuURL version="1.0"
  4492. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml"
  4493. />
  4494. </productMenu>
  4495. <productMenu id="quickGuide"
  4496. type="0"
  4497. url=""
  4498. size="1.12MB" >
  4499. </productMenu>
  4500. <productMenu id="userGuide"
  4501. type="1"
  4502. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_X_Slim_1.0.0_en_260629.pdf"
  4503. size="2.0MB" >
  4504. </productMenu>
  4505. <productMenu id="videoGuide"
  4506. type="0"
  4507. url=""
  4508. size="3.41MB" >
  4509. </productMenu>
  4510. <productMenu id="connectGuide"
  4511. type="1"
  4512. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_spiderxslim.json"
  4513. size="1.12MB" >
  4514. </productMenu>
  4515. <productMenu id="volume"
  4516. type="16" >
  4517. </productMenu>
  4518. <productMenu id="volume+"
  4519. type="2"
  4520. url="0x6004" >
  4521. </productMenu>
  4522. <productMenu id="appearance"
  4523. type="1"
  4524. url="2|white,silver,chrome,black" >
  4525. </productMenu>
  4526. <productMenu id="battery"
  4527. type="1" >
  4528. </productMenu>
  4529. <productID id="6A07"
  4530. />
  4531. <productGroupable type="0"
  4532. />
  4533. </product>
  4534. <product id="XFITM"
  4535. name="X-FIT M"
  4536. series="SPIDER"
  4537. latestVersion="0.1.11"
  4538. latestVersionVoicePrompt="1.1"
  4539. show = "-1" >
  4540. <productMenu id="protocol"
  4541. type="2" >
  4542. </productMenu>
  4543. <productMenu id="ota"
  4544. type="0" >
  4545. <otaLanguages>
  4546. <otaLanguage
  4547. id="0"
  4548. name="English"
  4549. package="0"
  4550. />
  4551. <otaLanguage
  4552. id="0"
  4553. name="French"
  4554. package="1"
  4555. />
  4556. <otaLanguage
  4557. id="0"
  4558. name="Spanish"
  4559. package="2"
  4560. />
  4561. <otaLanguage
  4562. id="0"
  4563. name="Italian"
  4564. package="3"
  4565. />
  4566. <otaLanguage
  4567. id="0"
  4568. name="German"
  4569. package="4"
  4570. />
  4571. <otaLanguage
  4572. id="0"
  4573. name="Dutch"
  4574. package="5"
  4575. />
  4576. <otaLanguage
  4577. id="0"
  4578. name="Russian"
  4579. package="6"
  4580. />
  4581. <otaLanguage
  4582. id="0"
  4583. name="Chinese"
  4584. package="7"
  4585. />
  4586. <otaLanguage
  4587. id="0"
  4588. name="Korean"
  4589. package="8"
  4590. />
  4591. <otaLanguage
  4592. id="0"
  4593. name="Japanese"
  4594. package="9"
  4595. />
  4596. <otaLanguage
  4597. id="0"
  4598. name="Finnish"
  4599. package="10"
  4600. />
  4601. <otaLanguage
  4602. id="0"
  4603. name="Polish"
  4604. package="11"
  4605. />
  4606. </otaLanguages>
  4607. <otaPackages>
  4608. <package
  4609. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4610. size="5183988"
  4611. />
  4612. <package
  4613. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4614. size="5183988"
  4615. />
  4616. <package
  4617. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4618. size="5183988"
  4619. />
  4620. <package
  4621. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4622. size="5183988"
  4623. />
  4624. <package
  4625. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4626. size="5183988"
  4627. />
  4628. <package
  4629. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4630. size="5183988"
  4631. />
  4632. <package
  4633. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4634. size="5183988"
  4635. />
  4636. <package
  4637. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4638. size="5183988"
  4639. />
  4640. <package
  4641. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4642. size="5183988"
  4643. />
  4644. <package
  4645. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4646. size="5183988"
  4647. />
  4648. <package
  4649. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4650. size="5183988"
  4651. />
  4652. <package
  4653. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4654. size="5183988"
  4655. />
  4656. </otaPackages>
  4657. </productMenu>
  4658. <productMenu id="meshIntercom"
  4659. type="30" >
  4660. </productMenu>
  4661. <productMenu id="meshIntercom+"
  4662. type="3"
  4663. url="2" >
  4664. </productMenu>
  4665. <productMenu id="waveIntercom"
  4666. type="1" >
  4667. </productMenu>
  4668. <productMenu id="fmradio"
  4669. type="1"
  4670. url="1" >
  4671. </productMenu>
  4672. <productMenu id="phone"
  4673. type="1" >
  4674. </productMenu>
  4675. <productMenu id="music"
  4676. type="1" >
  4677. </productMenu>
  4678. <productMenu id="musicSharing"
  4679. type="0" >
  4680. </productMenu>
  4681. <productMenu id="deviceSetting"
  4682. type="1"
  4683. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4684. </productMenu>
  4685. <productMenu id="quickGuide"
  4686. type="0"
  4687. url=""
  4688. size="1.12MB" >
  4689. </productMenu>
  4690. <productMenu id="userGuide"
  4691. type="1"
  4692. url=""
  4693. size="2.0MB" >
  4694. </productMenu>
  4695. <productMenu id="videoGuide"
  4696. type="0"
  4697. url=""
  4698. size="3.41MB" >
  4699. </productMenu>
  4700. <productMenu id="volume"
  4701. type="16" >
  4702. </productMenu>
  4703. <productMenu id="volume+"
  4704. type="2"
  4705. url="0x6004" >
  4706. </productMenu>
  4707. <productMenu id="battery"
  4708. type="1" >
  4709. </productMenu>
  4710. <productID id="6A17"
  4711. />
  4712. <productGroupable type="0"
  4713. />
  4714. </product>
  4715. <product id="VORTEXMESH"
  4716. name="VORTEX MESH"
  4717. series="Helmet"
  4718. latestVersion="0.1.11"
  4719. latestVersionVoicePrompt="1.1"
  4720. show = "-1" >
  4721. <productMenu id="protocol"
  4722. type="2" >
  4723. </productMenu>
  4724. <productMenu id="ota"
  4725. type="0" >
  4726. <otaLanguages>
  4727. <otaLanguage
  4728. id="0"
  4729. name="English"
  4730. package="0"
  4731. />
  4732. <otaLanguage
  4733. id="0"
  4734. name="French"
  4735. package="1"
  4736. />
  4737. <otaLanguage
  4738. id="0"
  4739. name="Spanish"
  4740. package="2"
  4741. />
  4742. <otaLanguage
  4743. id="0"
  4744. name="Italian"
  4745. package="3"
  4746. />
  4747. <otaLanguage
  4748. id="0"
  4749. name="German"
  4750. package="4"
  4751. />
  4752. <otaLanguage
  4753. id="0"
  4754. name="Dutch"
  4755. package="5"
  4756. />
  4757. <otaLanguage
  4758. id="0"
  4759. name="Russian"
  4760. package="6"
  4761. />
  4762. <otaLanguage
  4763. id="0"
  4764. name="Chinese"
  4765. package="7"
  4766. />
  4767. <otaLanguage
  4768. id="0"
  4769. name="Korean"
  4770. package="8"
  4771. />
  4772. <otaLanguage
  4773. id="0"
  4774. name="Japanese"
  4775. package="9"
  4776. />
  4777. <otaLanguage
  4778. id="0"
  4779. name="Finnish"
  4780. package="10"
  4781. />
  4782. <otaLanguage
  4783. id="0"
  4784. name="Polish"
  4785. package="11"
  4786. />
  4787. </otaLanguages>
  4788. <otaPackages>
  4789. <package
  4790. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4791. size="5183988"
  4792. />
  4793. <package
  4794. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4795. size="5183988"
  4796. />
  4797. <package
  4798. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4799. size="5183988"
  4800. />
  4801. <package
  4802. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4803. size="5183988"
  4804. />
  4805. <package
  4806. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4807. size="5183988"
  4808. />
  4809. <package
  4810. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4811. size="5183988"
  4812. />
  4813. <package
  4814. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4815. size="5183988"
  4816. />
  4817. <package
  4818. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4819. size="5183988"
  4820. />
  4821. <package
  4822. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4823. size="5183988"
  4824. />
  4825. <package
  4826. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4827. size="5183988"
  4828. />
  4829. <package
  4830. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4831. size="5183988"
  4832. />
  4833. <package
  4834. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4835. size="5183988"
  4836. />
  4837. </otaPackages>
  4838. </productMenu>
  4839. <productMenu id="wa"
  4840. type="0" >
  4841. </productMenu>
  4842. <productMenu id="led"
  4843. type="5" >
  4844. </productMenu>
  4845. <productMenu id="led+"
  4846. type="2"
  4847. url="1" >
  4848. </productMenu>
  4849. <productMenu id="meshIntercom"
  4850. type="30" >
  4851. </productMenu>
  4852. <productMenu id="meshIntercom+"
  4853. type="3"
  4854. url="2" >
  4855. </productMenu>
  4856. <productMenu id="waveIntercom"
  4857. type="1" >
  4858. </productMenu>
  4859. <productMenu id="fmradio"
  4860. type="0" >
  4861. </productMenu>
  4862. <productMenu id="phone"
  4863. type="1" >
  4864. </productMenu>
  4865. <productMenu id="music"
  4866. type="1" >
  4867. </productMenu>
  4868. <productMenu id="musicSharing"
  4869. type="0" >
  4870. </productMenu>
  4871. <productMenu id="deviceSetting"
  4872. type="1"
  4873. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4874. </productMenu>
  4875. <productMenu id="quickGuide"
  4876. type="0"
  4877. url=""
  4878. size="1.12MB" >
  4879. </productMenu>
  4880. <productMenu id="userGuide"
  4881. type="1"
  4882. url=""
  4883. size="2.0MB" >
  4884. </productMenu>
  4885. <productMenu id="videoGuide"
  4886. type="0"
  4887. url=""
  4888. size="3.41MB" >
  4889. </productMenu>
  4890. <productMenu id="volume"
  4891. type="16" >
  4892. </productMenu>
  4893. <productMenu id="battery"
  4894. type="1" >
  4895. </productMenu>
  4896. <productID id="6A12"
  4897. />
  4898. <productGroupable type="0"
  4899. />
  4900. </product>
  4901. <product id="MeshOn"
  4902. name="MeshON"
  4903. series="Other"
  4904. latestVersion="1.0.1"
  4905. latestVersionVoicePrompt="0.7"
  4906. show = "1" >
  4907. <productMenu id="protocol"
  4908. type="2" >
  4909. </productMenu>
  4910. <productMenu id="ota"
  4911. type="2" >
  4912. <otaPackages>
  4913. <package
  4914. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4915. size="2945812"
  4916. />
  4917. </otaPackages>
  4918. </productMenu>
  4919. <productMenu id="meshIntercom+"
  4920. type="3"
  4921. url="4" >
  4922. </productMenu>
  4923. <productMenu id="waveIntercom"
  4924. type="0" >
  4925. </productMenu>
  4926. <productMenu id="phone"
  4927. type="0" >
  4928. </productMenu>
  4929. <productMenu id="music"
  4930. type="0" >
  4931. </productMenu>
  4932. <productMenu id="musicSharing"
  4933. type="0" >
  4934. </productMenu>
  4935. <productMenu id="deviceSetting"
  4936. type="1"
  4937. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4938. </productMenu>
  4939. <productMenu id="userGuide"
  4940. type="1"
  4941. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_MeshON_1.0.0_en_260720.pdf"
  4942. size="2.0MB" >
  4943. </productMenu>
  4944. <productMenu id="bluetoothHeadset"
  4945. type="1"
  4946. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4947. </productMenu>
  4948. <productMenu id="volume"
  4949. type="0" >
  4950. </productMenu>
  4951. <productMenu id="battery"
  4952. type="1" >
  4953. </productMenu>
  4954. <productID id="684E"
  4955. />
  4956. <productGroupable type="0"
  4957. />
  4958. </product>
  4959. <product id="Impulse"
  4960. name="Impulse"
  4961. series="Helmet"
  4962. latestVersion="1.4.1"
  4963. show = "1" >
  4964. <productMenu id="protocol"
  4965. type="2" >
  4966. </productMenu>
  4967. <productMenu id="alexa"
  4968. type="0" >
  4969. </productMenu>
  4970. <productMenu id="ota"
  4971. type="0" >
  4972. </productMenu>
  4973. <productMenu id="wa"
  4974. type="24" >
  4975. </productMenu>
  4976. <productMenu id="manager"
  4977. type="0" >
  4978. </productMenu>
  4979. <productMenu id="sip"
  4980. type="1" >
  4981. </productMenu>
  4982. <productMenu id="led"
  4983. type="1" >
  4984. <productMenuType version="1.0.1"
  4985. type="2"
  4986. />
  4987. <productMenuType version="1.0"
  4988. type="1"
  4989. />
  4990. </productMenu>
  4991. <productMenu id="meshIntercom"
  4992. type="30" >
  4993. <productMenuType version="1.1.1"
  4994. type="20"
  4995. />
  4996. </productMenu>
  4997. <productMenu id="meshIntercom+"
  4998. type="3"
  4999. url="2" >
  5000. <productMenuType version="1.3.9"
  5001. type="2"
  5002. />
  5003. <productMenuURL version="1.1.1"
  5004. url="0"
  5005. />
  5006. </productMenu>
  5007. <productMenu id="waveIntercom"
  5008. type="1" >
  5009. <productMenuType version="1.3.9"
  5010. type="0"
  5011. />
  5012. </productMenu>
  5013. <productMenu id="bluetoothIntercom"
  5014. type="1" >
  5015. </productMenu>
  5016. <productMenu id="phone"
  5017. type="1" >
  5018. </productMenu>
  5019. <productMenu id="music"
  5020. type="1" >
  5021. </productMenu>
  5022. <productMenu id="fmradio"
  5023. type="1" >
  5024. </productMenu>
  5025. <productMenu id="deviceSetting"
  5026. type="1"
  5027. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5028. <productMenuURL version="1.3.9"
  5029. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5030. />
  5031. <productMenuURL version="1.1.1"
  5032. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5033. />
  5034. <productMenuURL version="1.0.4"
  5035. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5036. />
  5037. </productMenu>
  5038. <productMenu id="quickGuide"
  5039. type="0"
  5040. url=""
  5041. size="344KB" >
  5042. </productMenu>
  5043. <productMenu id="userGuide"
  5044. type="1"
  5045. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  5046. size="3.41MB" >
  5047. </productMenu>
  5048. <productMenu id="connectGuide"
  5049. type="1"
  5050. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5051. size="1.12MB" >
  5052. </productMenu>
  5053. <productMenu id="volume"
  5054. type="11" >
  5055. </productMenu>
  5056. <productMenu id="battery"
  5057. type="1" >
  5058. </productMenu>
  5059. <productID id="3148"
  5060. />
  5061. <productGroupable type="0"
  5062. />
  5063. </product>
  5064. <product id="Impulse"
  5065. name="Impulse"
  5066. series="Helmet"
  5067. latestVersion="2.0"
  5068. show = "-1" >
  5069. <productMenu id="protocol"
  5070. type="2" >
  5071. </productMenu>
  5072. <productMenu id="alexa"
  5073. type="0" >
  5074. </productMenu>
  5075. <productMenu id="ota"
  5076. type="0" >
  5077. </productMenu>
  5078. <productMenu id="wa"
  5079. type="8" >
  5080. </productMenu>
  5081. <productMenu id="manager"
  5082. type="0" >
  5083. </productMenu>
  5084. <productMenu id="sip"
  5085. type="1" >
  5086. </productMenu>
  5087. <productMenu id="led"
  5088. type="3" >
  5089. </productMenu>
  5090. <productMenu id="meshIntercom"
  5091. type="20" >
  5092. </productMenu>
  5093. <productMenu id="bluetoothIntercom"
  5094. type="1" >
  5095. </productMenu>
  5096. <productMenu id="phone"
  5097. type="1" >
  5098. </productMenu>
  5099. <productMenu id="music"
  5100. type="1" >
  5101. </productMenu>
  5102. <productMenu id="fmradio"
  5103. type="1" >
  5104. </productMenu>
  5105. <productMenu id="deviceSetting"
  5106. type="1"
  5107. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5108. </productMenu>
  5109. <productMenu id="quickGuide"
  5110. type="1"
  5111. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5112. size="344KB" >
  5113. </productMenu>
  5114. <productMenu id="userGuide"
  5115. type="1"
  5116. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5117. size="3.41MB" >
  5118. </productMenu>
  5119. <productMenu id="volume"
  5120. type="11" >
  5121. </productMenu>
  5122. <productMenu id="battery"
  5123. type="1" >
  5124. </productMenu>
  5125. <productID id="3221"
  5126. />
  5127. <productGroupable type="0"
  5128. />
  5129. </product>
  5130. <product id="Stryker"
  5131. name="Stryker"
  5132. series="Helmet"
  5133. latestVersion="1.4.1"
  5134. show = "1" >
  5135. <productMenu id="protocol"
  5136. type="2" >
  5137. </productMenu>
  5138. <productMenu id="alexa"
  5139. type="0" >
  5140. </productMenu>
  5141. <productMenu id="ota"
  5142. type="0" >
  5143. </productMenu>
  5144. <productMenu id="wa"
  5145. type="40" >
  5146. </productMenu>
  5147. <productMenu id="manager"
  5148. type="0" >
  5149. </productMenu>
  5150. <productMenu id="sip"
  5151. type="1" >
  5152. </productMenu>
  5153. <productMenu id="led"
  5154. type="1" >
  5155. <productMenuType version="1.0.1"
  5156. type="2"
  5157. />
  5158. <productMenuType version="1.0"
  5159. type="1"
  5160. />
  5161. </productMenu>
  5162. <productMenu id="meshIntercom"
  5163. type="30" >
  5164. <productMenuType version="1.1.1"
  5165. type="20"
  5166. />
  5167. </productMenu>
  5168. <productMenu id="meshIntercom+"
  5169. type="3"
  5170. url="2" >
  5171. <productMenuType version="1.3.9"
  5172. type="2"
  5173. />
  5174. <productMenuURL version="1.1.1"
  5175. url="0"
  5176. />
  5177. </productMenu>
  5178. <productMenu id="waveIntercom"
  5179. type="1" >
  5180. <productMenuType version="1.2.9"
  5181. type="0"
  5182. />
  5183. </productMenu>
  5184. <productMenu id="bluetoothIntercom"
  5185. type="1" >
  5186. </productMenu>
  5187. <productMenu id="phone"
  5188. type="1" >
  5189. </productMenu>
  5190. <productMenu id="music"
  5191. type="1" >
  5192. </productMenu>
  5193. <productMenu id="fmradio"
  5194. type="1" >
  5195. </productMenu>
  5196. <productMenu id="deviceSetting"
  5197. type="1"
  5198. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5199. <productMenuURL version="1.3.9"
  5200. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5201. />
  5202. <productMenuURL version="1.1.1"
  5203. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5204. />
  5205. <productMenuURL version="1.0.4"
  5206. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5207. />
  5208. </productMenu>
  5209. <productMenu id="quickGuide"
  5210. type="0"
  5211. url=""
  5212. size="344KB" >
  5213. </productMenu>
  5214. <productMenu id="userGuide"
  5215. type="1"
  5216. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5217. size="3.41MB" >
  5218. </productMenu>
  5219. <productMenu id="connectGuide"
  5220. type="1"
  5221. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5222. size="1.12MB" >
  5223. </productMenu>
  5224. <productMenu id="volume"
  5225. type="11" >
  5226. </productMenu>
  5227. <productMenu id="battery"
  5228. type="1" >
  5229. </productMenu>
  5230. <productID id="3154"
  5231. />
  5232. <productGroupable type="0"
  5233. />
  5234. </product>
  5235. <product id="SRL3Plus"
  5236. name="SRL3 Plus"
  5237. series="60"
  5238. latestVersion="0.9.14"
  5239. latestVersionMesh="0.19"
  5240. latestVersionVoicePrompt="1.8"
  5241. show = "-1" >
  5242. <productMenu id="protocol"
  5243. type="2" >
  5244. </productMenu>
  5245. <productMenu id="ota"
  5246. type="0" >
  5247. <otaLanguages>
  5248. <otaLanguage
  5249. id="0"
  5250. name="English"
  5251. package="0"
  5252. />
  5253. <otaLanguage
  5254. id="0"
  5255. name="French"
  5256. package="1"
  5257. />
  5258. <otaLanguage
  5259. id="0"
  5260. name="Spanish"
  5261. package="2"
  5262. />
  5263. <otaLanguage
  5264. id="0"
  5265. name="Italian"
  5266. package="3"
  5267. />
  5268. <otaLanguage
  5269. id="0"
  5270. name="German"
  5271. package="4"
  5272. />
  5273. <otaLanguage
  5274. id="0"
  5275. name="Dutch"
  5276. package="5"
  5277. />
  5278. <otaLanguage
  5279. id="0"
  5280. name="Russian"
  5281. package="6"
  5282. />
  5283. <otaLanguage
  5284. id="0"
  5285. name="Chinese"
  5286. package="7"
  5287. />
  5288. <otaLanguage
  5289. id="0"
  5290. name="Korean"
  5291. package="8"
  5292. />
  5293. <otaLanguage
  5294. id="0"
  5295. name="Japanese"
  5296. package="9"
  5297. />
  5298. <otaLanguage
  5299. id="0"
  5300. name="Finnish"
  5301. package="10"
  5302. />
  5303. <otaLanguage
  5304. id="0"
  5305. name="Polish"
  5306. package="11"
  5307. />
  5308. </otaLanguages>
  5309. <otaPackages>
  5310. <package
  5311. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0.img"
  5312. size="5183988"
  5313. />
  5314. <package
  5315. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fr-FR.img"
  5316. size="5183988"
  5317. />
  5318. <package
  5319. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-es-ES.img"
  5320. size="5183988"
  5321. />
  5322. <package
  5323. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-it-IT.img"
  5324. size="5183988"
  5325. />
  5326. <package
  5327. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-de-DE.img"
  5328. size="5183988"
  5329. />
  5330. <package
  5331. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-nl-NL.img"
  5332. size="5183988"
  5333. />
  5334. <package
  5335. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ru-RU.img"
  5336. size="5183988"
  5337. />
  5338. <package
  5339. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-cmn-CN.img"
  5340. size="5183988"
  5341. />
  5342. <package
  5343. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ko-KR.img"
  5344. size="5183988"
  5345. />
  5346. <package
  5347. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ja-JP.img"
  5348. size="5183988"
  5349. />
  5350. <package
  5351. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fi-FI.img"
  5352. size="5183988"
  5353. />
  5354. <package
  5355. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-pl-PL.img"
  5356. size="5183988"
  5357. />
  5358. </otaPackages>
  5359. </productMenu>
  5360. <productMenu id="sip"
  5361. type="1" >
  5362. </productMenu>
  5363. <productMenu id="meshIntercom+"
  5364. type="3"
  5365. url="2" >
  5366. </productMenu>
  5367. <productMenu id="waveIntercom"
  5368. type="1" >
  5369. </productMenu>
  5370. <productMenu id="bluetoothIntercom"
  5371. type="1"
  5372. url="2" >
  5373. </productMenu>
  5374. <productMenu id="bluetoothIntercomGrouping"
  5375. type="0" >
  5376. </productMenu>
  5377. <productMenu id="fmradio"
  5378. type="1"
  5379. url="1" >
  5380. </productMenu>
  5381. <productMenu id="phone"
  5382. type="1" >
  5383. </productMenu>
  5384. <productMenu id="music"
  5385. type="1" >
  5386. </productMenu>
  5387. <productMenu id="musicSharing"
  5388. type="0" >
  5389. </productMenu>
  5390. <productMenu id="deviceSetting"
  5391. type="1"
  5392. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/SRL3Plus.xml" >
  5393. </productMenu>
  5394. <productMenu id="quickGuide"
  5395. type="0"
  5396. url=""
  5397. size="1.12MB" >
  5398. </productMenu>
  5399. <productMenu id="userGuide"
  5400. type="0"
  5401. url=""
  5402. size="2.0MB" >
  5403. </productMenu>
  5404. <productMenu id="videoGuide"
  5405. type="0"
  5406. url=""
  5407. size="3.41MB" >
  5408. </productMenu>
  5409. <productMenu id="volume"
  5410. type="16" >
  5411. </productMenu>
  5412. <productMenu id="soundMode"
  5413. type="1" >
  5414. </productMenu>
  5415. <productMenu id="battery"
  5416. type="1" >
  5417. </productMenu>
  5418. <productID id="6A08"
  5419. />
  5420. <productGroupable type="0"
  5421. />
  5422. </product>
  5423. <product id="SRL3"
  5424. name="SRL3"
  5425. series="SRL"
  5426. latestVersion="1.5"
  5427. show = "1" >
  5428. <productMenu id="protocol"
  5429. type="2" >
  5430. </productMenu>
  5431. <productMenu id="alexa"
  5432. type="0" >
  5433. </productMenu>
  5434. <productMenu id="ota"
  5435. type="0" >
  5436. </productMenu>
  5437. <productMenu id="wa"
  5438. type="1" >
  5439. </productMenu>
  5440. <productMenu id="sip"
  5441. type="1" >
  5442. </productMenu>
  5443. <productMenu id="meshIntercom"
  5444. type="30" >
  5445. </productMenu>
  5446. <productMenu id="meshIntercom+"
  5447. type="3"
  5448. url="2" >
  5449. <productMenuType version="1.3.9"
  5450. type="2"
  5451. />
  5452. </productMenu>
  5453. <productMenu id="waveIntercom"
  5454. type="1" >
  5455. <productMenuType version="1.4.9"
  5456. type="0"
  5457. />
  5458. </productMenu>
  5459. <productMenu id="bluetoothIntercom"
  5460. type="1" >
  5461. </productMenu>
  5462. <productMenu id="phone"
  5463. type="1" >
  5464. </productMenu>
  5465. <productMenu id="music"
  5466. type="1" >
  5467. </productMenu>
  5468. <productMenu id="fmradio"
  5469. type="1" >
  5470. </productMenu>
  5471. <productMenu id="deviceSetting"
  5472. type="1"
  5473. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5474. <productMenuURL version="1.3"
  5475. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5476. />
  5477. </productMenu>
  5478. <productMenu id="quickGuide"
  5479. type="0"
  5480. url=""
  5481. size="344KB" >
  5482. </productMenu>
  5483. <productMenu id="userGuide"
  5484. type="1"
  5485. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5486. size="3.41MB" >
  5487. </productMenu>
  5488. <productMenu id="connectGuide"
  5489. type="1"
  5490. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5491. size="1.12MB" >
  5492. </productMenu>
  5493. <productMenu id="volume"
  5494. type="11" >
  5495. </productMenu>
  5496. <productMenu id="battery"
  5497. type="1" >
  5498. </productMenu>
  5499. <productID id="3219"
  5500. />
  5501. <productGroupable type="0"
  5502. />
  5503. </product>
  5504. <product id="SRL_Mesh"
  5505. name="SRL-Mesh"
  5506. series="SRL"
  5507. latestVersion="1.7.1"
  5508. show = "1" >
  5509. <productMenu id="protocol"
  5510. type="2" >
  5511. </productMenu>
  5512. <productMenu id="alexa"
  5513. type="0" >
  5514. </productMenu>
  5515. <productMenu id="ota"
  5516. type="0" >
  5517. </productMenu>
  5518. <productMenu id="wa"
  5519. type="1" >
  5520. </productMenu>
  5521. <productMenu id="sip"
  5522. type="1" >
  5523. </productMenu>
  5524. <productMenu id="meshIntercom"
  5525. type="30" >
  5526. <productMenuType version="1.1.1"
  5527. type="20"
  5528. />
  5529. </productMenu>
  5530. <productMenu id="meshIntercom+"
  5531. type="3"
  5532. url="2" >
  5533. <productMenuType version="1.5.9"
  5534. type="2"
  5535. />
  5536. <productMenuURL version="1.1.1"
  5537. url="0"
  5538. />
  5539. </productMenu>
  5540. <productMenu id="waveIntercom"
  5541. type="1" >
  5542. <productMenuType version="1.6.9"
  5543. type="0"
  5544. />
  5545. </productMenu>
  5546. <productMenu id="bluetoothIntercom"
  5547. type="1" >
  5548. </productMenu>
  5549. <productMenu id="phone"
  5550. type="1" >
  5551. </productMenu>
  5552. <productMenu id="music"
  5553. type="1" >
  5554. </productMenu>
  5555. <productMenu id="fmradio"
  5556. type="1" >
  5557. </productMenu>
  5558. <productMenu id="deviceSetting"
  5559. type="1"
  5560. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5561. <productMenuURL version="1.5"
  5562. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5563. />
  5564. <productMenuURL version="1.1.1"
  5565. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5566. />
  5567. <productMenuURL version="1.0.3"
  5568. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5569. />
  5570. </productMenu>
  5571. <productMenu id="quickGuide"
  5572. type="0"
  5573. url=""
  5574. size="344KB" >
  5575. </productMenu>
  5576. <productMenu id="userGuide"
  5577. type="1"
  5578. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5579. size="3.41MB" >
  5580. </productMenu>
  5581. <productMenu id="connectGuide"
  5582. type="1"
  5583. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5584. size="1.12MB" >
  5585. </productMenu>
  5586. <productMenu id="volume"
  5587. type="11" >
  5588. </productMenu>
  5589. <productMenu id="battery"
  5590. type="1" >
  5591. </productMenu>
  5592. <productID id="3216"
  5593. />
  5594. <productGroupable type="0"
  5595. />
  5596. </product>
  5597. <product id="SRL_EXT"
  5598. name="SRL-EXT"
  5599. series="SRL"
  5600. latestVersion="1.7.1"
  5601. show = "1" >
  5602. <productMenu id="protocol"
  5603. type="2" >
  5604. </productMenu>
  5605. <productMenu id="alexa"
  5606. type="0" >
  5607. </productMenu>
  5608. <productMenu id="ota"
  5609. type="0" >
  5610. </productMenu>
  5611. <productMenu id="wa"
  5612. type="0" >
  5613. </productMenu>
  5614. <productMenu id="sip"
  5615. type="1" >
  5616. </productMenu>
  5617. <productMenu id="meshIntercom"
  5618. type="30" >
  5619. <productMenuType version="1.1.1"
  5620. type="20"
  5621. />
  5622. </productMenu>
  5623. <productMenu id="meshIntercom+"
  5624. type="3"
  5625. url="2" >
  5626. <productMenuType version="1.5.9"
  5627. type="2"
  5628. />
  5629. <productMenuURL version="1.1.1"
  5630. url="0"
  5631. />
  5632. </productMenu>
  5633. <productMenu id="waveIntercom"
  5634. type="1" >
  5635. <productMenuType version="1.6.9"
  5636. type="0"
  5637. />
  5638. </productMenu>
  5639. <productMenu id="bluetoothIntercom"
  5640. type="1" >
  5641. </productMenu>
  5642. <productMenu id="phone"
  5643. type="1" >
  5644. </productMenu>
  5645. <productMenu id="music"
  5646. type="1" >
  5647. </productMenu>
  5648. <productMenu id="fmradio"
  5649. type="1" >
  5650. </productMenu>
  5651. <productMenu id="deviceSetting"
  5652. type="1"
  5653. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5654. <productMenuURL version="1.5"
  5655. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5656. />
  5657. <productMenuURL version="1.1.1"
  5658. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5659. />
  5660. <productMenuURL version="1.0.3"
  5661. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5662. />
  5663. </productMenu>
  5664. <productMenu id="quickGuide"
  5665. type="0"
  5666. url=""
  5667. size="344KB" >
  5668. </productMenu>
  5669. <productMenu id="userGuide"
  5670. type="1"
  5671. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5672. size="3.41MB" >
  5673. </productMenu>
  5674. <productMenu id="connectGuide"
  5675. type="1"
  5676. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5677. size="1.12MB" >
  5678. </productMenu>
  5679. <productMenu id="volume"
  5680. type="11" >
  5681. </productMenu>
  5682. <productMenu id="battery"
  5683. type="1" >
  5684. </productMenu>
  5685. <productID id="3212"
  5686. />
  5687. <productGroupable type="0"
  5688. />
  5689. </product>
  5690. <product id="SRL2"
  5691. name="SRL2"
  5692. series="SRL"
  5693. latestVersion="1.0.9"
  5694. show = "1" >
  5695. <productMenu id="protocol"
  5696. type="0">
  5697. </productMenu>
  5698. <productMenu id="sip"
  5699. type="1" >
  5700. </productMenu>
  5701. <productMenu id="bluetoothIntercom"
  5702. type="1" >
  5703. </productMenu>
  5704. <productMenu id="intercomSetting"
  5705. type="1" >
  5706. </productMenu>
  5707. <productMenu id="phone"
  5708. type="2" >
  5709. </productMenu>
  5710. <productMenu id="fmradio"
  5711. type="3" >
  5712. </productMenu>
  5713. <productMenu id="deviceSetting"
  5714. type="1"
  5715. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5716. </productMenu>
  5717. <productMenu id="quickGuide"
  5718. type="1"
  5719. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5720. size="846KB" >
  5721. </productMenu>
  5722. <productMenu id="userGuide"
  5723. type="1"
  5724. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5725. size="1.18MB" >
  5726. </productMenu>
  5727. <productMenu id="connectGuide"
  5728. type="1"
  5729. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5730. size="1.12MB" >
  5731. </productMenu>
  5732. <productID id="4530"
  5733. />
  5734. <productGroupable type="1"
  5735. />
  5736. </product>
  5737. <product id="Neotec2"
  5738. name="SRL Neotec2"
  5739. series="SRL"
  5740. latestVersion="1.1.5"
  5741. show = "1" >
  5742. <productMenu id="protocol"
  5743. type="0">
  5744. </productMenu>
  5745. <productMenu id="sip"
  5746. type="1" >
  5747. </productMenu>
  5748. <productMenu id="bluetoothIntercom"
  5749. type="1" >
  5750. </productMenu>
  5751. <productMenu id="intercomSetting"
  5752. type="1" >
  5753. </productMenu>
  5754. <productMenu id="phone"
  5755. type="2" >
  5756. </productMenu>
  5757. <productMenu id="fmradio"
  5758. type="3" >
  5759. </productMenu>
  5760. <productMenu id="deviceSetting"
  5761. type="1"
  5762. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5763. </productMenu>
  5764. <productMenu id="quickGuide"
  5765. type="0"
  5766. url=""
  5767. size="796KB" >
  5768. </productMenu>
  5769. <productMenu id="userGuide"
  5770. type="1"
  5771. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5772. size="1.90MB" >
  5773. </productMenu>
  5774. <productMenu id="connectGuide"
  5775. type="1"
  5776. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5777. size="1.12MB" >
  5778. </productMenu>
  5779. <productID id="4510"
  5780. />
  5781. <productGroupable type="1"
  5782. />
  5783. </product>
  5784. <product id="MultiComNeo"
  5785. name="MultiCom Neo"
  5786. series="MultiCom"
  5787. latestVersion="1.0"
  5788. latestVersionVoicePrompt="1.6"
  5789. show = "-1" >
  5790. <productMenu id="protocol"
  5791. type="2" >
  5792. </productMenu>
  5793. <productMenu id="ota"
  5794. type="0" >
  5795. <otaPackages>
  5796. <package
  5797. url="https://api.sena.com/support/OTA/Motorcycles/MultiComNeo/MultiComNeo-v1.0-build0.img"
  5798. size="2945812"
  5799. />
  5800. </otaPackages>
  5801. </productMenu>
  5802. <productMenu id="meshIntercom+"
  5803. type="3"
  5804. url="2" >
  5805. </productMenu>
  5806. <productMenu id="waveIntercom"
  5807. type="1" >
  5808. </productMenu>
  5809. <productMenu id="phone"
  5810. type="1" >
  5811. </productMenu>
  5812. <productMenu id="music"
  5813. type="1" >
  5814. </productMenu>
  5815. <productMenu id="musicSharing"
  5816. type="0" >
  5817. </productMenu>
  5818. <productMenu id="deviceSetting"
  5819. type="1"
  5820. url="https://api.sena.com/support/SenaNeoApp/MultiComNeo/NS_MultiComNeo.xml" >
  5821. </productMenu>
  5822. <productMenu id="quickGuide"
  5823. type="0"
  5824. url=""
  5825. size="1.12MB" >
  5826. </productMenu>
  5827. <productMenu id="userGuide"
  5828. type="1"
  5829. url=""
  5830. size="2.0MB" >
  5831. </productMenu>
  5832. <productMenu id="videoGuide"
  5833. type="0"
  5834. url=""
  5835. size="3.41MB" >
  5836. </productMenu>
  5837. <productMenu id="connectGuide"
  5838. type="0"
  5839. url=""
  5840. size="1.12MB" >
  5841. </productMenu>
  5842. <productMenu id="volume"
  5843. type="12" >
  5844. </productMenu>
  5845. <productMenu id="volume+"
  5846. type="2"
  5847. url="0x2000" >
  5848. </productMenu>
  5849. <productMenu id="battery"
  5850. type="1" >
  5851. </productMenu>
  5852. <productID id="685F"
  5853. />
  5854. <productGroupable type="0"
  5855. />
  5856. </product>
  5857. <product id="SPIDERST2ANC"
  5858. name="SPIDER ST2 ANC"
  5859. series="SPIDER"
  5860. latestVersion="0.5.1"
  5861. latestVersionVoicePrompt="0.2"
  5862. latestVersionMesh="0.8"
  5863. show = "-1" >
  5864. <productMenu id="protocol"
  5865. type="2" >
  5866. </productMenu>
  5867. <productMenu id="ota"
  5868. type="0" >
  5869. <otaPackages>
  5870. <package
  5871. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5872. size="2945812"
  5873. />
  5874. </otaPackages>
  5875. </productMenu>
  5876. <productMenu id="wa"
  5877. type="0" >
  5878. </productMenu>
  5879. <productMenu id="led"
  5880. type="1" >
  5881. </productMenu>
  5882. <productMenu id="meshIntercom"
  5883. type="30" >
  5884. </productMenu>
  5885. <productMenu id="fmradio"
  5886. type="1" >
  5887. </productMenu>
  5888. <productMenu id="phone"
  5889. type="1" >
  5890. </productMenu>
  5891. <productMenu id="music"
  5892. type="1" >
  5893. </productMenu>
  5894. <productMenu id="musicSharing"
  5895. type="0" >
  5896. </productMenu>
  5897. <productMenu id="deviceSetting"
  5898. type="1"
  5899. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  5900. </productMenu>
  5901. <productMenu id="quickGuide"
  5902. type="1"
  5903. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5904. size="1.12MB" >
  5905. </productMenu>
  5906. <productMenu id="userGuide"
  5907. type="1"
  5908. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5909. size="2.0MB" >
  5910. </productMenu>
  5911. <productMenu id="videoGuide"
  5912. type="1"
  5913. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5914. size="3.41MB" >
  5915. </productMenu>
  5916. <productMenu id="volume"
  5917. type="12" >
  5918. </productMenu>
  5919. <productMenu id="battery"
  5920. type="1" >
  5921. </productMenu>
  5922. <productID id="6A00"
  5923. />
  5924. <productGroupable type="0"
  5925. />
  5926. </product>
  5927. <product id="SPIDER_ST1"
  5928. name="SPIDER ST1"
  5929. series="SPIDER"
  5930. latestVersion="2.5.3"
  5931. latestVersionVoicePrompt="1.6"
  5932. show = "1" >
  5933. <productMenu id="protocol"
  5934. type="2" >
  5935. </productMenu>
  5936. <productMenu id="alexa"
  5937. type="0" >
  5938. </productMenu>
  5939. <productMenu id="ota"
  5940. type="2" >
  5941. <productMenuType version="2.1.9"
  5942. type="0"
  5943. />
  5944. <otaPackages>
  5945. <package
  5946. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  5947. size="2945812"
  5948. />
  5949. </otaPackages>
  5950. </productMenu>
  5951. <productMenu id="wa"
  5952. type="0" >
  5953. </productMenu>
  5954. <productMenu id="meshIntercom"
  5955. type="30" >
  5956. <productMenuType version="2.1.1"
  5957. type="20"
  5958. />
  5959. </productMenu>
  5960. <productMenu id="meshIntercom+"
  5961. type="3"
  5962. url="2" >
  5963. <productMenuType version="2.2.9"
  5964. type="2"
  5965. />
  5966. <productMenuURL version="2.1.1"
  5967. url="0"
  5968. />
  5969. </productMenu>
  5970. <productMenu id="waveIntercom"
  5971. type="1" >
  5972. <productMenuType version="2.3.9"
  5973. type="0"
  5974. />
  5975. </productMenu>
  5976. <productMenu id="phone"
  5977. type="1" >
  5978. </productMenu>
  5979. <productMenu id="music"
  5980. type="1" >
  5981. </productMenu>
  5982. <productMenu id="musicSharing"
  5983. type="0" >
  5984. </productMenu>
  5985. <productMenu id="deviceSetting"
  5986. type="1"
  5987. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5988. <productMenuURL version="2.4.9"
  5989. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5990. />
  5991. <productMenuURL version="2.2.2"
  5992. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5993. />
  5994. <productMenuURL version="2.1.1"
  5995. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5996. />
  5997. </productMenu>
  5998. <productMenu id="quickGuide"
  5999. type="0"
  6000. url=""
  6001. size="1.12MB" >
  6002. </productMenu>
  6003. <productMenu id="userGuide"
  6004. type="1"
  6005. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  6006. size="2.0MB" >
  6007. </productMenu>
  6008. <productMenu id="videoGuide"
  6009. type="1"
  6010. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6011. size="3.41MB" >
  6012. </productMenu>
  6013. <productMenu id="connectGuide"
  6014. type="1"
  6015. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6016. size="1.12MB" >
  6017. </productMenu>
  6018. <productMenu id="volume"
  6019. type="12" >
  6020. </productMenu>
  6021. <productMenu id="volume+"
  6022. type="2"
  6023. url="0x2000" >
  6024. </productMenu>
  6025. <productMenu id="battery"
  6026. type="1" >
  6027. </productMenu>
  6028. <productID id="6800"
  6029. />
  6030. <productGroupable type="0"
  6031. />
  6032. </product>
  6033. <product id="SPIDER_ST1"
  6034. name="SPIDER ST1"
  6035. series="SPIDER"
  6036. latestVersion="1.2.2"
  6037. show = "-1" >
  6038. <productMenu id="protocol"
  6039. type="2" >
  6040. </productMenu>
  6041. <productMenu id="alexa"
  6042. type="0" >
  6043. </productMenu>
  6044. <productMenu id="ota"
  6045. type="0" >
  6046. </productMenu>
  6047. <productMenu id="wa"
  6048. type="0" >
  6049. </productMenu>
  6050. <productMenu id="meshIntercom"
  6051. type="20" >
  6052. </productMenu>
  6053. <productMenu id="phone"
  6054. type="1" >
  6055. </productMenu>
  6056. <productMenu id="music"
  6057. type="1" >
  6058. </productMenu>
  6059. <productMenu id="deviceSetting"
  6060. type="1"
  6061. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6062. </productMenu>
  6063. <productMenu id="quickGuide"
  6064. type="0"
  6065. url=""
  6066. size="1.12MB" >
  6067. </productMenu>
  6068. <productMenu id="userGuide"
  6069. type="1"
  6070. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  6071. size="2.0MB" >
  6072. </productMenu>
  6073. <productMenu id="videoGuide"
  6074. type="1"
  6075. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6076. size="3.41MB" >
  6077. </productMenu>
  6078. <productMenu id="volume"
  6079. type="13" >
  6080. <productMenuType version="1.1.6"
  6081. type="14"/>
  6082. </productMenu>
  6083. <productMenu id="battery"
  6084. type="1" >
  6085. </productMenu>
  6086. <productID id="6510"
  6087. />
  6088. <productGroupable type="0"
  6089. />
  6090. </product>
  6091. <product id="SPIDER_RT1"
  6092. name="SPIDER RT1"
  6093. series="SPIDER"
  6094. latestVersion="2.5.3"
  6095. latestVersionVoicePrompt="1.6"
  6096. show = "1" >
  6097. <productMenu id="protocol"
  6098. type="2" >
  6099. </productMenu>
  6100. <productMenu id="alexa"
  6101. type="0" >
  6102. </productMenu>
  6103. <productMenu id="ota"
  6104. type="2" >
  6105. <productMenuType version="2.1.9"
  6106. type="0"
  6107. />
  6108. <otaPackages>
  6109. <package
  6110. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  6111. size="2945812"
  6112. />
  6113. </otaPackages>
  6114. </productMenu>
  6115. <productMenu id="wa"
  6116. type="0" >
  6117. </productMenu>
  6118. <productMenu id="meshIntercom"
  6119. type="30" >
  6120. <productMenuType version="2.1.1"
  6121. type="20"
  6122. />
  6123. </productMenu>
  6124. <productMenu id="meshIntercom+"
  6125. type="3"
  6126. url="2" >
  6127. <productMenuType version="2.2.9"
  6128. type="2"
  6129. />
  6130. <productMenuURL version="2.1.1"
  6131. url="0"
  6132. />
  6133. </productMenu>
  6134. <productMenu id="waveIntercom"
  6135. type="1" >
  6136. <productMenuType version="2.3.9"
  6137. type="0"
  6138. />
  6139. </productMenu>
  6140. <productMenu id="phone"
  6141. type="1" >
  6142. </productMenu>
  6143. <productMenu id="music"
  6144. type="1" >
  6145. </productMenu>
  6146. <productMenu id="musicSharing"
  6147. type="0" >
  6148. </productMenu>
  6149. <productMenu id="deviceSetting"
  6150. type="1"
  6151. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6152. <productMenuURL version="2.4.9"
  6153. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6154. />
  6155. <productMenuURL version="2.2.2"
  6156. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6157. />
  6158. <productMenuURL version="2.1.1"
  6159. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6160. />
  6161. </productMenu>
  6162. <productMenu id="quickGuide"
  6163. type="0"
  6164. url=""
  6165. size="1.12MB" >
  6166. </productMenu>
  6167. <productMenu id="userGuide"
  6168. type="1"
  6169. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6170. size="2.0MB" >
  6171. </productMenu>
  6172. <productMenu id="videoGuide"
  6173. type="1"
  6174. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6175. size="3.41MB" >
  6176. </productMenu>
  6177. <productMenu id="connectGuide"
  6178. type="1"
  6179. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6180. size="1.12MB" >
  6181. </productMenu>
  6182. <productMenu id="volume"
  6183. type="12" >
  6184. </productMenu>
  6185. <productMenu id="volume+"
  6186. type="2"
  6187. url="0x2000" >
  6188. </productMenu>
  6189. <productMenu id="battery"
  6190. type="1" >
  6191. </productMenu>
  6192. <productID id="6810"
  6193. />
  6194. <productGroupable type="0"
  6195. />
  6196. </product>
  6197. <product id="SPIDER_RT1"
  6198. name="SPIDER RT1"
  6199. series="SPIDER"
  6200. latestVersion="1.2.2"
  6201. show = "-1" >
  6202. <productMenu id="protocol"
  6203. type="2" >
  6204. </productMenu>
  6205. <productMenu id="alexa"
  6206. type="0" >
  6207. </productMenu>
  6208. <productMenu id="ota"
  6209. type="0" >
  6210. </productMenu>
  6211. <productMenu id="wa"
  6212. type="0" >
  6213. </productMenu>
  6214. <productMenu id="meshIntercom"
  6215. type="20" >
  6216. </productMenu>
  6217. <productMenu id="phone"
  6218. type="1" >
  6219. </productMenu>
  6220. <productMenu id="music"
  6221. type="1" >
  6222. </productMenu>
  6223. <productMenu id="deviceSetting"
  6224. type="1"
  6225. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6226. </productMenu>
  6227. <productMenu id="quickGuide"
  6228. type="0"
  6229. url=""
  6230. size="1.32MB" >
  6231. </productMenu>
  6232. <productMenu id="userGuide"
  6233. type="1"
  6234. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6235. size="1.79MB" >
  6236. </productMenu>
  6237. <productMenu id="videoGuide"
  6238. type="1"
  6239. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6240. size="3.41MB" >
  6241. </productMenu>
  6242. <productMenu id="volume"
  6243. type="13" >
  6244. <productMenuType version="1.1.6"
  6245. type="14"/>
  6246. </productMenu>
  6247. <productMenu id="battery"
  6248. type="1" >
  6249. </productMenu>
  6250. <productID id="6500"
  6251. />
  6252. <productGroupable type="0"
  6253. />
  6254. </product>
  6255. <product id="30K"
  6256. name="30K"
  6257. series="30"
  6258. latestVersion="4.5.1"
  6259. show = "1" >
  6260. <productMenu id="protocol"
  6261. type="2" >
  6262. </productMenu>
  6263. <productMenu id="alexa"
  6264. type="0" >
  6265. </productMenu>
  6266. <productMenu id="wa"
  6267. type="1" >
  6268. </productMenu>
  6269. <productMenu id="sip"
  6270. type="1" >
  6271. </productMenu>
  6272. <productMenu id="meshIntercom"
  6273. type="30" >
  6274. <productMenuType version="4.0.4"
  6275. type="20"
  6276. />
  6277. </productMenu>
  6278. <productMenu id="meshIntercom+"
  6279. type="3"
  6280. url="2" >
  6281. <productMenuType version="4.3.9"
  6282. type="2"
  6283. />
  6284. <productMenuURL version="4.0.4"
  6285. url="0"
  6286. />
  6287. </productMenu>
  6288. <productMenu id="waveIntercom"
  6289. type="1" >
  6290. <productMenuType version="4.4.9"
  6291. type="0"
  6292. />
  6293. </productMenu>
  6294. <productMenu id="bluetoothIntercom"
  6295. type="1" >
  6296. </productMenu>
  6297. <productMenu id="phone"
  6298. type="1" >
  6299. </productMenu>
  6300. <productMenu id="music"
  6301. type="1" >
  6302. </productMenu>
  6303. <productMenu id="fmradio"
  6304. type="1" >
  6305. </productMenu>
  6306. <productMenu id="deviceSetting"
  6307. type="1"
  6308. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6309. <productMenuURL version="4.3"
  6310. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6311. />
  6312. <productMenuURL version="4.2"
  6313. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6314. />
  6315. <productMenuURL version="4.0.4"
  6316. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6317. />
  6318. </productMenu>
  6319. <productMenu id="quickGuide"
  6320. type="0"
  6321. url=""
  6322. size="934KB" >
  6323. </productMenu>
  6324. <productMenu id="userGuide"
  6325. type="1"
  6326. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6327. size="1.14MB" >
  6328. </productMenu>
  6329. <productMenu id="connectGuide"
  6330. type="1"
  6331. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6332. size="1.12MB" >
  6333. </productMenu>
  6334. <productMenu id="volume"
  6335. type="11" >
  6336. </productMenu>
  6337. <productMenu id="battery"
  6338. type="1" >
  6339. </productMenu>
  6340. <productID id="3211"
  6341. />
  6342. <productGroupable type="0"
  6343. />
  6344. </product>
  6345. <product id="30K"
  6346. name="30K"
  6347. series="30"
  6348. latestVersion="3.5"
  6349. show = "-1" >
  6350. <productMenu id="protocol"
  6351. type="1"
  6352. url="0">
  6353. </productMenu>
  6354. <productMenu id="wa"
  6355. type="7" >
  6356. </productMenu>
  6357. <productMenu id="sip"
  6358. type="1" >
  6359. </productMenu>
  6360. <productMenu id="meshIntercom"
  6361. type="20" >
  6362. <productMenuType version="2.9.9"
  6363. type="10"
  6364. />
  6365. </productMenu>
  6366. <productMenu id="meshIntercom+"
  6367. type="3"
  6368. url="2" >
  6369. <productMenuType version="3.4.9"
  6370. type="2"
  6371. />
  6372. <productMenuType version="2.9.9"
  6373. type="1"
  6374. />
  6375. <productMenuURL version="3.3.1"
  6376. url="0"
  6377. />
  6378. </productMenu>
  6379. <productMenu id="bluetoothIntercom"
  6380. type="1" >
  6381. </productMenu>
  6382. <productMenu id="phone"
  6383. type="1" >
  6384. </productMenu>
  6385. <productMenu id="music"
  6386. type="1" >
  6387. </productMenu>
  6388. <productMenu id="fmradio"
  6389. type="1" >
  6390. </productMenu>
  6391. <productMenu id="deviceSetting"
  6392. type="1"
  6393. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6394. <productMenuURL version="3.4.9"
  6395. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6396. />
  6397. <productMenuURL version="3.3.1"
  6398. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6399. />
  6400. <productMenuURL version="3.0.1"
  6401. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6402. />
  6403. <productMenuURL version="2.3.1"
  6404. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6405. />
  6406. <productMenuURL version="2.0"
  6407. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6408. />
  6409. <productMenuURL version="1.0.3"
  6410. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6411. />
  6412. </productMenu>
  6413. <productMenu id="quickGuide"
  6414. type="0"
  6415. url=""
  6416. size="1.06MB" >
  6417. </productMenu>
  6418. <productMenu id="userGuide"
  6419. type="1"
  6420. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6421. size="3.15MB" >
  6422. </productMenu>
  6423. <productMenu id="volume"
  6424. type="1" >
  6425. </productMenu>
  6426. <productID id="3110"
  6427. />
  6428. <productGroupable type="0"
  6429. />
  6430. </product>
  6431. <product id="FURY"
  6432. name="FURY"
  6433. series="Helmet"
  6434. latestVersion="1.0"
  6435. show = "-1" >
  6436. <productMenu id="protocol"
  6437. type="2" >
  6438. </productMenu>
  6439. <productMenu id="alexa"
  6440. type="0" >
  6441. </productMenu>
  6442. <productMenu id="ota"
  6443. type="0" >
  6444. </productMenu>
  6445. <productMenu id="wa"
  6446. type="0" >
  6447. </productMenu>
  6448. <productMenu id="meshIntercom"
  6449. type="20" >
  6450. </productMenu>
  6451. <productMenu id="phone"
  6452. type="1" >
  6453. </productMenu>
  6454. <productMenu id="music"
  6455. type="1" >
  6456. </productMenu>
  6457. <productMenu id="fmradio"
  6458. type="1" >
  6459. </productMenu>
  6460. <productMenu id="deviceSetting"
  6461. type="1"
  6462. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6463. </productMenu>
  6464. <productMenu id="quickGuide"
  6465. type="1"
  6466. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6467. size="1.12MB" >
  6468. </productMenu>
  6469. <productMenu id="userGuide"
  6470. type="1"
  6471. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6472. size="2.0MB" >
  6473. </productMenu>
  6474. <productMenu id="volume"
  6475. type="13" >
  6476. </productMenu>
  6477. <productMenu id="battery"
  6478. type="1" >
  6479. </productMenu>
  6480. <productID id="5552"
  6481. />
  6482. <productGroupable type="0"
  6483. />
  6484. </product>
  6485. <product id="MomentumM"
  6486. name="Momentum EVO"
  6487. series="Helmet"
  6488. latestVersion="2.1.2"
  6489. show = "1" >
  6490. <productMenu id="protocol"
  6491. type="1"
  6492. url="0">
  6493. </productMenu>
  6494. <productMenu id="wa"
  6495. type="3" >
  6496. </productMenu>
  6497. <productMenu id="sip"
  6498. type="1" >
  6499. </productMenu>
  6500. <productMenu id="meshIntercom"
  6501. type="20" >
  6502. <productMenuType version="1.9.9"
  6503. type="10"
  6504. />
  6505. </productMenu>
  6506. <productMenu id="bluetoothIntercom"
  6507. type="1" >
  6508. </productMenu>
  6509. <productMenu id="phone"
  6510. type="1" >
  6511. </productMenu>
  6512. <productMenu id="music"
  6513. type="1" >
  6514. </productMenu>
  6515. <productMenu id="fmradio"
  6516. type="1" >
  6517. </productMenu>
  6518. <productMenu id="deviceSetting"
  6519. type="1"
  6520. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6521. <productMenuURL version="1.0.1"
  6522. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6523. />
  6524. </productMenu>
  6525. <productMenu id="quickGuide"
  6526. type="1"
  6527. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6528. size="1.06MB" >
  6529. </productMenu>
  6530. <productMenu id="userGuide"
  6531. type="1"
  6532. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6533. size="3.15MB" >
  6534. </productMenu>
  6535. <productMenu id="connectGuide"
  6536. type="1"
  6537. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6538. size="1.12MB" >
  6539. </productMenu>
  6540. <productMenu id="volume"
  6541. type="2" >
  6542. </productMenu>
  6543. <productID id="3116"
  6544. />
  6545. <productGroupable type="0"
  6546. />
  6547. </product>
  6548. <product id="Momentum"
  6549. name="Momentum"
  6550. series="Helmet"
  6551. latestVersion="1.0.9"
  6552. show = "1" >
  6553. <productMenu id="protocol"
  6554. type="0">
  6555. </productMenu>
  6556. <productMenu id="sip"
  6557. type="1" >
  6558. </productMenu>
  6559. <productMenu id="bluetoothIntercom"
  6560. type="1" >
  6561. </productMenu>
  6562. <productMenu id="intercomSetting"
  6563. type="1" >
  6564. </productMenu>
  6565. <productMenu id="phone"
  6566. type="2" >
  6567. </productMenu>
  6568. <productMenu id="fmradio"
  6569. type="3" >
  6570. </productMenu>
  6571. <productMenu id="deviceSetting"
  6572. type="1"
  6573. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6574. </productMenu>
  6575. <productMenu id="quickGuide"
  6576. type="1"
  6577. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6578. size="796KB" >
  6579. </productMenu>
  6580. <productMenu id="userGuide"
  6581. type="1"
  6582. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6583. size="1.90MB" >
  6584. </productMenu>
  6585. <productMenu id="connectGuide"
  6586. type="1"
  6587. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6588. size="1.12MB" >
  6589. </productMenu>
  6590. <productID id="4310"
  6591. />
  6592. <productGroupable type="1"
  6593. />
  6594. </product>
  6595. <product id="Momentum_Pro"
  6596. name="Momentum Pro"
  6597. series="Helmet"
  6598. latestVersion="1.0.6"
  6599. show = "1" >
  6600. <productMenu id="protocol"
  6601. type="0">
  6602. </productMenu>
  6603. <productMenu id="sip"
  6604. type="1" >
  6605. </productMenu>
  6606. <productMenu id="bluetoothIntercom"
  6607. type="1" >
  6608. </productMenu>
  6609. <productMenu id="intercomSetting"
  6610. type="1" >
  6611. </productMenu>
  6612. <productMenu id="phone"
  6613. type="2" >
  6614. </productMenu>
  6615. <productMenu id="fmradio"
  6616. type="3" >
  6617. </productMenu>
  6618. <productMenu id="deviceSetting"
  6619. type="1"
  6620. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6621. </productMenu>
  6622. <productMenu id="quickGuide"
  6623. type="1"
  6624. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6625. size="796KB" >
  6626. </productMenu>
  6627. <productMenu id="userGuide"
  6628. type="1"
  6629. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6630. size="1.90MB" >
  6631. </productMenu>
  6632. <productMenu id="connectGuide"
  6633. type="1"
  6634. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6635. size="1.12MB" >
  6636. </productMenu>
  6637. <productID id="4330"
  6638. />
  6639. <productGroupable type="1"
  6640. />
  6641. </product>
  6642. <product id="Momentum_INC"
  6643. name="Momentum INC"
  6644. series="Helmet"
  6645. latestVersion="1.0.7"
  6646. show = "1" >
  6647. <productMenu id="protocol"
  6648. type="0">
  6649. </productMenu>
  6650. <productMenu id="sip"
  6651. type="1" >
  6652. </productMenu>
  6653. <productMenu id="bluetoothIntercom"
  6654. type="1" >
  6655. </productMenu>
  6656. <productMenu id="intercomSetting"
  6657. type="1" >
  6658. </productMenu>
  6659. <productMenu id="phone"
  6660. type="2" >
  6661. </productMenu>
  6662. <productMenu id="fmradio"
  6663. type="3" >
  6664. </productMenu>
  6665. <productMenu id="deviceSetting"
  6666. type="1"
  6667. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6668. </productMenu>
  6669. <productMenu id="quickGuide"
  6670. type="1"
  6671. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6672. size="794KB" >
  6673. </productMenu>
  6674. <productMenu id="userGuide"
  6675. type="1"
  6676. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6677. size="1.53MB" >
  6678. </productMenu>
  6679. <productMenu id="connectGuide"
  6680. type="1"
  6681. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6682. size="1.12MB" >
  6683. </productMenu>
  6684. <productID id="4410"
  6685. />
  6686. <productGroupable type="1"
  6687. />
  6688. </product>
  6689. <product id="Momentum_INCP"
  6690. name="Momentum INC Pro"
  6691. series="Helmet"
  6692. latestVersion="1.0.4"
  6693. show = "1" >
  6694. <productMenu id="protocol"
  6695. type="0">
  6696. </productMenu>
  6697. <productMenu id="sip"
  6698. type="1" >
  6699. </productMenu>
  6700. <productMenu id="bluetoothIntercom"
  6701. type="1" >
  6702. </productMenu>
  6703. <productMenu id="intercomSetting"
  6704. type="1" >
  6705. </productMenu>
  6706. <productMenu id="phone"
  6707. type="2" >
  6708. </productMenu>
  6709. <productMenu id="fmradio"
  6710. type="3" >
  6711. </productMenu>
  6712. <productMenu id="deviceSetting"
  6713. type="1"
  6714. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6715. </productMenu>
  6716. <productMenu id="quickGuide"
  6717. type="1"
  6718. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6719. size="794KB" >
  6720. </productMenu>
  6721. <productMenu id="userGuide"
  6722. type="1"
  6723. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6724. size="1.53MB" >
  6725. </productMenu>
  6726. <productMenu id="connectGuide"
  6727. type="1"
  6728. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6729. size="1.12MB" >
  6730. </productMenu>
  6731. <productID id="4430"
  6732. />
  6733. <productGroupable type="1"
  6734. />
  6735. </product>
  6736. <product id="Momentum_Lite"
  6737. name="Momentum Lite"
  6738. series="Helmet"
  6739. latestVersion="2.0.3"
  6740. show = "1" >
  6741. <productMenu id="protocol"
  6742. type="0">
  6743. </productMenu>
  6744. <productMenu id="sip"
  6745. type="1" >
  6746. </productMenu>
  6747. <productMenu id="bluetoothIntercom"
  6748. type="1" >
  6749. </productMenu>
  6750. <productMenu id="phone"
  6751. type="2" >
  6752. </productMenu>
  6753. <productMenu id="fmradio"
  6754. type="3" >
  6755. </productMenu>
  6756. <productMenu id="deviceSetting"
  6757. type="1"
  6758. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6759. <productMenuURL version="1.1"
  6760. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6761. />
  6762. </productMenu>
  6763. <productMenu id="quickGuide"
  6764. type="1"
  6765. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6766. size="790KB" >
  6767. </productMenu>
  6768. <productMenu id="userGuide"
  6769. type="1"
  6770. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6771. size="1.42MB" >
  6772. </productMenu>
  6773. <productMenu id="connectGuide"
  6774. type="1"
  6775. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6776. size="1.12MB" >
  6777. </productMenu>
  6778. <productID id="5526"
  6779. />
  6780. <productGroupable type="0"
  6781. />
  6782. </product>
  6783. <product id="OUTRUSHM"
  6784. name="OUTRUSH M"
  6785. series="Helmet"
  6786. latestVersion="1.0"
  6787. show = "-1" >
  6788. <productMenu id="protocol"
  6789. type="2" >
  6790. </productMenu>
  6791. <productMenu id="alexa"
  6792. type="0" >
  6793. </productMenu>
  6794. <productMenu id="ota"
  6795. type="0" >
  6796. </productMenu>
  6797. <productMenu id="wa"
  6798. type="0" >
  6799. </productMenu>
  6800. <productMenu id="meshIntercom"
  6801. type="30" >
  6802. </productMenu>
  6803. <productMenu id="phone"
  6804. type="1" >
  6805. </productMenu>
  6806. <productMenu id="music"
  6807. type="1" >
  6808. </productMenu>
  6809. <productMenu id="fmradio"
  6810. type="1" >
  6811. </productMenu>
  6812. <productMenu id="deviceSetting"
  6813. type="1"
  6814. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6815. </productMenu>
  6816. <productMenu id="quickGuide"
  6817. type="1"
  6818. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6819. size="1.12MB" >
  6820. </productMenu>
  6821. <productMenu id="userGuide"
  6822. type="1"
  6823. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6824. size="2.0MB" >
  6825. </productMenu>
  6826. <productMenu id="volume"
  6827. type="13" >
  6828. </productMenu>
  6829. <productMenu id="battery"
  6830. type="1" >
  6831. </productMenu>
  6832. <productID id="5600"
  6833. />
  6834. <productGroupable type="0"
  6835. />
  6836. </product>
  6837. <product id="ProRideEVO"
  6838. name="ProRide EVO"
  6839. series="Helmet"
  6840. latestVersion="1.1.2"
  6841. show = "1" >
  6842. <productMenu id="protocol"
  6843. type="0">
  6844. </productMenu>
  6845. <productMenu id="sip"
  6846. type="1" >
  6847. </productMenu>
  6848. <productMenu id="bluetoothIntercom"
  6849. type="1" >
  6850. </productMenu>
  6851. <productMenu id="phone"
  6852. type="2" >
  6853. </productMenu>
  6854. <productMenu id="fmradio"
  6855. type="3" >
  6856. </productMenu>
  6857. <productMenu id="deviceSetting"
  6858. type="1"
  6859. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6860. </productMenu>
  6861. <productMenu id="userGuide"
  6862. type="1"
  6863. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6864. size="778KB" >
  6865. </productMenu>
  6866. <productMenu id="connectGuide"
  6867. type="1"
  6868. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6869. size="1.12MB" >
  6870. </productMenu>
  6871. <productID id="5426"
  6872. />
  6873. <productGroupable type="0"
  6874. />
  6875. </product>
  6876. <product id="OUTRUSHR"
  6877. name="OUTRUSH R"
  6878. series="Helmet"
  6879. latestVersion="2.1"
  6880. show = "1" >
  6881. <productMenu id="protocol"
  6882. type="3" >
  6883. </productMenu>
  6884. <productMenu id="sip"
  6885. type="1" >
  6886. </productMenu>
  6887. <productMenu id="bluetoothIntercom"
  6888. type="1" >
  6889. </productMenu>
  6890. <productMenu id="phone"
  6891. type="1" >
  6892. </productMenu>
  6893. <productMenu id="fmradio"
  6894. type="0" >
  6895. </productMenu>
  6896. <productMenu id="deviceSetting"
  6897. type="1"
  6898. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6899. </productMenu>
  6900. <productMenu id="userGuide"
  6901. type="1"
  6902. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6903. size="1.14MB" >
  6904. </productMenu>
  6905. <productMenu id="connectGuide"
  6906. type="1"
  6907. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6908. size="1.12MB" >
  6909. </productMenu>
  6910. <productID id="5440"
  6911. />
  6912. <productGroupable type="0"
  6913. />
  6914. </product>
  6915. <product id="OUTRUSHR"
  6916. name="OUTRUSH R"
  6917. series="Helmet"
  6918. latestVersion="1.1.4"
  6919. show = "-1" >
  6920. <productMenu id="protocol"
  6921. type="0">
  6922. </productMenu>
  6923. <productMenu id="sip"
  6924. type="1" >
  6925. </productMenu>
  6926. <productMenu id="bluetoothIntercom"
  6927. type="1" >
  6928. </productMenu>
  6929. <productMenu id="phone"
  6930. type="2" >
  6931. </productMenu>
  6932. <productMenu id="fmradio"
  6933. type="3" >
  6934. </productMenu>
  6935. <productMenu id="deviceSetting"
  6936. type="1"
  6937. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6938. </productMenu>
  6939. <productMenu id="userGuide"
  6940. type="1"
  6941. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6942. size="660KB" >
  6943. </productMenu>
  6944. <productMenu id="connectGuide"
  6945. type="1"
  6946. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6947. size="1.12MB" >
  6948. </productMenu>
  6949. <productID id="5424"
  6950. />
  6951. <productGroupable type="0"
  6952. />
  6953. </product>
  6954. <product id="OUTSTARS"
  6955. name="OUTSTAR S"
  6956. series="Helmet"
  6957. latestVersion="2.0.1"
  6958. show = "-1" >
  6959. <productMenu id="protocol"
  6960. type="3" >
  6961. </productMenu>
  6962. <productMenu id="sip"
  6963. type="1" >
  6964. </productMenu>
  6965. <productMenu id="bluetoothIntercom"
  6966. type="1" >
  6967. </productMenu>
  6968. <productMenu id="phone"
  6969. type="1" >
  6970. </productMenu>
  6971. <productMenu id="fmradio"
  6972. type="0" >
  6973. </productMenu>
  6974. <productMenu id="deviceSetting"
  6975. type="1"
  6976. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6977. </productMenu>
  6978. <productMenu id="userGuide"
  6979. type="0"
  6980. url=""
  6981. size="1.14MB" >
  6982. </productMenu>
  6983. <productID id="5443"
  6984. />
  6985. <productGroupable type="0"
  6986. />
  6987. </product>
  6988. <product id="OUTSTARS"
  6989. name="OUTSTAR S"
  6990. series="Helmet"
  6991. latestVersion="1.1.4"
  6992. show = "1" >
  6993. <productMenu id="protocol"
  6994. type="0">
  6995. </productMenu>
  6996. <productMenu id="sip"
  6997. type="1" >
  6998. </productMenu>
  6999. <productMenu id="bluetoothIntercom"
  7000. type="1" >
  7001. </productMenu>
  7002. <productMenu id="phone"
  7003. type="2" >
  7004. </productMenu>
  7005. <productMenu id="fmradio"
  7006. type="3" >
  7007. </productMenu>
  7008. <productMenu id="deviceSetting"
  7009. type="1"
  7010. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7011. </productMenu>
  7012. <productMenu id="quickGuide"
  7013. type="1"
  7014. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7015. size="643KB" >
  7016. </productMenu>
  7017. <productMenu id="userGuide"
  7018. type="1"
  7019. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7020. size="1.15MB" >
  7021. </productMenu>
  7022. <productMenu id="connectGuide"
  7023. type="1"
  7024. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7025. size="1.12MB" >
  7026. </productMenu>
  7027. <productID id="5428"
  7028. />
  7029. <productGroupable type="0"
  7030. />
  7031. </product>
  7032. <product id="OUTRIDE"
  7033. name="OUTRIDE"
  7034. series="Helmet"
  7035. latestVersion="1.0.1"
  7036. show = "1" >
  7037. <productMenu id="protocol"
  7038. type="0">
  7039. </productMenu>
  7040. <productMenu id="sip"
  7041. type="1" >
  7042. </productMenu>
  7043. <productMenu id="bluetoothIntercom"
  7044. type="1" >
  7045. </productMenu>
  7046. <productMenu id="phone"
  7047. type="2" >
  7048. </productMenu>
  7049. <productMenu id="fmradio"
  7050. type="3" >
  7051. </productMenu>
  7052. <productMenu id="deviceSetting"
  7053. type="1"
  7054. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7055. </productMenu>
  7056. <productMenu id="quickGuide"
  7057. type="1"
  7058. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7059. size="643KB" >
  7060. </productMenu>
  7061. <productMenu id="userGuide"
  7062. type="1"
  7063. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7064. size="660KB" >
  7065. </productMenu>
  7066. <productMenu id="connectGuide"
  7067. type="1"
  7068. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7069. size="1.12MB" >
  7070. </productMenu>
  7071. <productID id="5432"
  7072. />
  7073. <productGroupable type="0"
  7074. />
  7075. </product>
  7076. <product id="OUTFORCE"
  7077. name="OUTFORCE"
  7078. series="Helmet"
  7079. latestVersion="1.0.1"
  7080. show = "1" >
  7081. <productMenu id="protocol"
  7082. type="0">
  7083. </productMenu>
  7084. <productMenu id="sip"
  7085. type="1" >
  7086. </productMenu>
  7087. <productMenu id="bluetoothIntercom"
  7088. type="1" >
  7089. </productMenu>
  7090. <productMenu id="phone"
  7091. type="2" >
  7092. </productMenu>
  7093. <productMenu id="fmradio"
  7094. type="3" >
  7095. </productMenu>
  7096. <productMenu id="deviceSetting"
  7097. type="1"
  7098. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7099. </productMenu>
  7100. <productMenu id="quickGuide"
  7101. type="1"
  7102. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7103. size="643KB" >
  7104. </productMenu>
  7105. <productMenu id="userGuide"
  7106. type="1"
  7107. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7108. size="660KB" >
  7109. </productMenu>
  7110. <productMenu id="connectGuide"
  7111. type="1"
  7112. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7113. size="1.12MB" >
  7114. </productMenu>
  7115. <productID id="5430"
  7116. />
  7117. <productGroupable type="0"
  7118. />
  7119. </product>
  7120. <product id="Rumba"
  7121. name="Rumba"
  7122. series="30"
  7123. latestVersion="2.0"
  7124. show = "-1" >
  7125. <productMenu id="protocol"
  7126. type="3" >
  7127. </productMenu>
  7128. <productMenu id="sip"
  7129. type="1" >
  7130. </productMenu>
  7131. <productMenu id="bluetoothIntercom"
  7132. type="1" >
  7133. </productMenu>
  7134. <productMenu id="deviceSetting"
  7135. type="1"
  7136. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  7137. </productMenu>
  7138. <productMenu id="quickGuide"
  7139. type="1"
  7140. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  7141. size="344KB" >
  7142. </productMenu>
  7143. <productMenu id="userGuide"
  7144. type="1"
  7145. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  7146. size="1.14MB" >
  7147. </productMenu>
  7148. <productID id="6322"
  7149. />
  7150. <productGroupable type="0"
  7151. />
  7152. </product>
  7153. <product id="Savage"
  7154. name="Savage"
  7155. series="Helmet"
  7156. latestVersion="1.2.2"
  7157. show = "1" >
  7158. <productMenu id="protocol"
  7159. type="0">
  7160. </productMenu>
  7161. <productMenu id="sip"
  7162. type="1" >
  7163. </productMenu>
  7164. <productMenu id="bluetoothIntercom"
  7165. type="1" >
  7166. </productMenu>
  7167. <productMenu id="phone"
  7168. type="2" >
  7169. </productMenu>
  7170. <productMenu id="fmradio"
  7171. type="3" >
  7172. </productMenu>
  7173. <productMenu id="deviceSetting"
  7174. type="1"
  7175. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7176. <productMenuURL version="1.9"
  7177. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7178. />
  7179. <productMenuURL version="1.1"
  7180. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7181. />
  7182. </productMenu>
  7183. <productMenu id="quickGuide"
  7184. type="1"
  7185. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7186. size="796KB" >
  7187. </productMenu>
  7188. <productMenu id="userGuide"
  7189. type="1"
  7190. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7191. size="910KB" >
  7192. </productMenu>
  7193. <productMenu id="connectGuide"
  7194. type="1"
  7195. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7196. size="1.12MB" >
  7197. </productMenu>
  7198. <productID id="5550"
  7199. />
  7200. <productGroupable type="0"
  7201. />
  7202. </product>
  7203. <product id="RECON"
  7204. name="RECON"
  7205. series="Helmet"
  7206. latestVersion="1.0"
  7207. latestVersionVoicePrompt="1.8"
  7208. show = "-1" >
  7209. <productMenu id="protocol"
  7210. type="2" >
  7211. </productMenu>
  7212. <productMenu id="ota"
  7213. type="2" >
  7214. <otaLanguages>
  7215. <otaLanguage
  7216. id="0"
  7217. name="English"
  7218. package="0"
  7219. />
  7220. <otaLanguage
  7221. id="0"
  7222. name="French"
  7223. package="1"
  7224. />
  7225. <otaLanguage
  7226. id="0"
  7227. name="Spanish"
  7228. package="2"
  7229. />
  7230. <otaLanguage
  7231. id="0"
  7232. name="Italian"
  7233. package="3"
  7234. />
  7235. <otaLanguage
  7236. id="0"
  7237. name="German"
  7238. package="4"
  7239. />
  7240. <otaLanguage
  7241. id="0"
  7242. name="Dutch"
  7243. package="5"
  7244. />
  7245. <otaLanguage
  7246. id="0"
  7247. name="Russian"
  7248. package="6"
  7249. />
  7250. <otaLanguage
  7251. id="0"
  7252. name="Chinese"
  7253. package="7"
  7254. />
  7255. <otaLanguage
  7256. id="0"
  7257. name="Korean"
  7258. package="8"
  7259. />
  7260. <otaLanguage
  7261. id="0"
  7262. name="Japanese"
  7263. package="9"
  7264. />
  7265. <otaLanguage
  7266. id="0"
  7267. name="Finnish"
  7268. package="10"
  7269. />
  7270. <otaLanguage
  7271. id="0"
  7272. name="Polish"
  7273. package="11"
  7274. />
  7275. </otaLanguages>
  7276. <otaPackages>
  7277. <package
  7278. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4.img"
  7279. size="5183988"
  7280. />
  7281. <package
  7282. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fr-FR.img"
  7283. size="5183988"
  7284. />
  7285. <package
  7286. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-es-ES.img"
  7287. size="5183988"
  7288. />
  7289. <package
  7290. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-it-IT.img"
  7291. size="5183988"
  7292. />
  7293. <package
  7294. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-de-DE.img"
  7295. size="5183988"
  7296. />
  7297. <package
  7298. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-nl-NL.img"
  7299. size="5183988"
  7300. />
  7301. <package
  7302. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ru-RU.img"
  7303. size="5183988"
  7304. />
  7305. <package
  7306. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-cmn-CN.img"
  7307. size="5183988"
  7308. />
  7309. <package
  7310. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ko-KR.img"
  7311. size="5183988"
  7312. />
  7313. <package
  7314. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ja-JP.img"
  7315. size="5183988"
  7316. />
  7317. <package
  7318. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fi-FI.img"
  7319. size="5183988"
  7320. />
  7321. <package
  7322. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-pl-PL.img"
  7323. size="5183988"
  7324. />
  7325. </otaPackages>
  7326. </productMenu>
  7327. <productMenu id="wa"
  7328. type="0" >
  7329. </productMenu>
  7330. <productMenu id="led"
  7331. type="5" >
  7332. </productMenu>
  7333. <productMenu id="led+"
  7334. type="2"
  7335. url="1" >
  7336. </productMenu>
  7337. <productMenu id="meshIntercom+"
  7338. type="3"
  7339. url="2" >
  7340. </productMenu>
  7341. <productMenu id="waveIntercom"
  7342. type="1" >
  7343. </productMenu>
  7344. <productMenu id="fmradio"
  7345. type="0" >
  7346. </productMenu>
  7347. <productMenu id="phone"
  7348. type="1" >
  7349. </productMenu>
  7350. <productMenu id="music"
  7351. type="1" >
  7352. </productMenu>
  7353. <productMenu id="musicSharing"
  7354. type="0" >
  7355. </productMenu>
  7356. <productMenu id="deviceSetting"
  7357. type="1"
  7358. url="https://api.sena.com/support/SenaNeoApp/RECON/NS_RECON.xml" >
  7359. </productMenu>
  7360. <productMenu id="quickGuide"
  7361. type="0"
  7362. url=""
  7363. size="1.12MB" >
  7364. </productMenu>
  7365. <productMenu id="userGuide"
  7366. type="1"
  7367. url=""
  7368. size="2.28MB" >
  7369. </productMenu>
  7370. <productMenu id="videoGuide"
  7371. type="0"
  7372. url=""
  7373. size="3.41MB" >
  7374. </productMenu>
  7375. <productMenu id="volume"
  7376. type="16" >
  7377. </productMenu>
  7378. <productMenu id="volume+"
  7379. type="2"
  7380. url="0x6004" >
  7381. </productMenu>
  7382. <productMenu id="battery"
  7383. type="1" >
  7384. </productMenu>
  7385. <productID id="6A1D"
  7386. />
  7387. <productGroupable type="0"
  7388. />
  7389. </product>
  7390. <product id="SPECTER"
  7391. name="SPECTER"
  7392. series="Helmet"
  7393. latestVersion="1.0.9"
  7394. latestVersionVoicePrompt="1.7"
  7395. show = "1" >
  7396. <productMenu id="protocol"
  7397. type="2" >
  7398. </productMenu>
  7399. <productMenu id="ota"
  7400. type="2" >
  7401. <otaLanguages>
  7402. <otaLanguage
  7403. id="0"
  7404. name="English"
  7405. package="0"
  7406. />
  7407. <otaLanguage
  7408. id="0"
  7409. name="French"
  7410. package="1"
  7411. />
  7412. <otaLanguage
  7413. id="0"
  7414. name="Spanish"
  7415. package="2"
  7416. />
  7417. <otaLanguage
  7418. id="0"
  7419. name="Italian"
  7420. package="3"
  7421. />
  7422. <otaLanguage
  7423. id="0"
  7424. name="German"
  7425. package="4"
  7426. />
  7427. <otaLanguage
  7428. id="0"
  7429. name="Dutch"
  7430. package="5"
  7431. />
  7432. <otaLanguage
  7433. id="0"
  7434. name="Russian"
  7435. package="6"
  7436. />
  7437. <otaLanguage
  7438. id="0"
  7439. name="Chinese"
  7440. package="7"
  7441. />
  7442. <otaLanguage
  7443. id="0"
  7444. name="Korean"
  7445. package="8"
  7446. />
  7447. <otaLanguage
  7448. id="0"
  7449. name="Japanese"
  7450. package="9"
  7451. />
  7452. <otaLanguage
  7453. id="0"
  7454. name="Finnish"
  7455. package="10"
  7456. />
  7457. <otaLanguage
  7458. id="0"
  7459. name="Polish"
  7460. package="11"
  7461. />
  7462. </otaLanguages>
  7463. <otaPackages>
  7464. <package
  7465. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0.img"
  7466. size="5183988"
  7467. />
  7468. <package
  7469. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fr-FR.img"
  7470. size="5183988"
  7471. />
  7472. <package
  7473. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-es-ES.img"
  7474. size="5183988"
  7475. />
  7476. <package
  7477. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-it-IT.img"
  7478. size="5183988"
  7479. />
  7480. <package
  7481. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-de-DE.img"
  7482. size="5183988"
  7483. />
  7484. <package
  7485. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-nl-NL.img"
  7486. size="5183988"
  7487. />
  7488. <package
  7489. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ru-RU.img"
  7490. size="5183988"
  7491. />
  7492. <package
  7493. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-cmn-CN.img"
  7494. size="5183988"
  7495. />
  7496. <package
  7497. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ko-KR.img"
  7498. size="5183988"
  7499. />
  7500. <package
  7501. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ja-JP.img"
  7502. size="5183988"
  7503. />
  7504. <package
  7505. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fi-FI.img"
  7506. size="5183988"
  7507. />
  7508. <package
  7509. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-pl-PL.img"
  7510. size="5183988"
  7511. />
  7512. </otaPackages>
  7513. </productMenu>
  7514. <productMenu id="wa"
  7515. type="0" >
  7516. </productMenu>
  7517. <productMenu id="led"
  7518. type="5" >
  7519. </productMenu>
  7520. <productMenu id="led+"
  7521. type="2"
  7522. url="1" >
  7523. </productMenu>
  7524. <productMenu id="meshIntercom+"
  7525. type="3"
  7526. url="2" >
  7527. </productMenu>
  7528. <productMenu id="waveIntercom"
  7529. type="1" >
  7530. </productMenu>
  7531. <productMenu id="fmradio"
  7532. type="0" >
  7533. </productMenu>
  7534. <productMenu id="phone"
  7535. type="1" >
  7536. </productMenu>
  7537. <productMenu id="music"
  7538. type="1" >
  7539. </productMenu>
  7540. <productMenu id="musicSharing"
  7541. type="0" >
  7542. </productMenu>
  7543. <productMenu id="deviceSetting"
  7544. type="1"
  7545. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7546. <productMenuURL version="1.0.4"
  7547. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7548. />
  7549. </productMenu>
  7550. <productMenu id="quickGuide"
  7551. type="0"
  7552. url=""
  7553. size="1.12MB" >
  7554. </productMenu>
  7555. <productMenu id="userGuide"
  7556. type="1"
  7557. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7558. size="2.0MB" >
  7559. </productMenu>
  7560. <productMenu id="videoGuide"
  7561. type="0"
  7562. url=""
  7563. size="3.41MB" >
  7564. </productMenu>
  7565. <productMenu id="connectGuide"
  7566. type="1"
  7567. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_specter.json"
  7568. size="1.12MB" >
  7569. </productMenu>
  7570. <productMenu id="volume"
  7571. type="16" >
  7572. </productMenu>
  7573. <productMenu id="volume+"
  7574. type="2"
  7575. url="0x6004" >
  7576. </productMenu>
  7577. <productMenu id="battery"
  7578. type="1" >
  7579. </productMenu>
  7580. <productID id="6A11"
  7581. />
  7582. <productGroupable type="0"
  7583. />
  7584. </product>
  7585. <product id="SPECTER"
  7586. name="SPECTER"
  7587. series="Helmet"
  7588. latestVersion="1.0.9"
  7589. latestVersionVoicePrompt="1.7"
  7590. show = "-1" >
  7591. <productMenu id="protocol"
  7592. type="2" >
  7593. </productMenu>
  7594. <productMenu id="ota"
  7595. type="2" >
  7596. <otaLanguages>
  7597. <otaLanguage
  7598. id="0"
  7599. name="English"
  7600. package="0"
  7601. />
  7602. <otaLanguage
  7603. id="0"
  7604. name="French"
  7605. package="1"
  7606. />
  7607. <otaLanguage
  7608. id="0"
  7609. name="Spanish"
  7610. package="2"
  7611. />
  7612. <otaLanguage
  7613. id="0"
  7614. name="Italian"
  7615. package="3"
  7616. />
  7617. <otaLanguage
  7618. id="0"
  7619. name="German"
  7620. package="4"
  7621. />
  7622. <otaLanguage
  7623. id="0"
  7624. name="Dutch"
  7625. package="5"
  7626. />
  7627. <otaLanguage
  7628. id="0"
  7629. name="Russian"
  7630. package="6"
  7631. />
  7632. <otaLanguage
  7633. id="0"
  7634. name="Chinese"
  7635. package="7"
  7636. />
  7637. <otaLanguage
  7638. id="0"
  7639. name="Korean"
  7640. package="8"
  7641. />
  7642. <otaLanguage
  7643. id="0"
  7644. name="Japanese"
  7645. package="9"
  7646. />
  7647. <otaLanguage
  7648. id="0"
  7649. name="Finnish"
  7650. package="10"
  7651. />
  7652. <otaLanguage
  7653. id="0"
  7654. name="Polish"
  7655. package="11"
  7656. />
  7657. </otaLanguages>
  7658. <otaPackages>
  7659. <package
  7660. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0.img"
  7661. size="5183988"
  7662. />
  7663. <package
  7664. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fr-FR.img"
  7665. size="5183988"
  7666. />
  7667. <package
  7668. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-es-ES.img"
  7669. size="5183988"
  7670. />
  7671. <package
  7672. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-it-IT.img"
  7673. size="5183988"
  7674. />
  7675. <package
  7676. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-de-DE.img"
  7677. size="5183988"
  7678. />
  7679. <package
  7680. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-nl-NL.img"
  7681. size="5183988"
  7682. />
  7683. <package
  7684. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ru-RU.img"
  7685. size="5183988"
  7686. />
  7687. <package
  7688. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-cmn-CN.img"
  7689. size="5183988"
  7690. />
  7691. <package
  7692. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ko-KR.img"
  7693. size="5183988"
  7694. />
  7695. <package
  7696. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ja-JP.img"
  7697. size="5183988"
  7698. />
  7699. <package
  7700. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fi-FI.img"
  7701. size="5183988"
  7702. />
  7703. <package
  7704. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-pl-PL.img"
  7705. size="5183988"
  7706. />
  7707. </otaPackages>
  7708. </productMenu>
  7709. <productMenu id="wa"
  7710. type="0" >
  7711. </productMenu>
  7712. <productMenu id="led"
  7713. type="5" >
  7714. </productMenu>
  7715. <productMenu id="led+"
  7716. type="2"
  7717. url="1" >
  7718. </productMenu>
  7719. <productMenu id="meshIntercom+"
  7720. type="3"
  7721. url="2" >
  7722. </productMenu>
  7723. <productMenu id="waveIntercom"
  7724. type="1" >
  7725. </productMenu>
  7726. <productMenu id="fmradio"
  7727. type="0" >
  7728. </productMenu>
  7729. <productMenu id="phone"
  7730. type="1" >
  7731. </productMenu>
  7732. <productMenu id="music"
  7733. type="1" >
  7734. </productMenu>
  7735. <productMenu id="musicSharing"
  7736. type="0" >
  7737. </productMenu>
  7738. <productMenu id="deviceSetting"
  7739. type="1"
  7740. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7741. <productMenuURL version="1.0.4"
  7742. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7743. />
  7744. <productMenuURL version="1.0"
  7745. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7746. />
  7747. </productMenu>
  7748. <productMenu id="quickGuide"
  7749. type="0"
  7750. url=""
  7751. size="1.12MB" >
  7752. </productMenu>
  7753. <productMenu id="userGuide"
  7754. type="1"
  7755. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7756. size="2.0MB" >
  7757. </productMenu>
  7758. <productMenu id="videoGuide"
  7759. type="0"
  7760. url=""
  7761. size="3.41MB" >
  7762. </productMenu>
  7763. <productMenu id="connectGuide"
  7764. type="1"
  7765. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_specter.json"
  7766. size="1.12MB" >
  7767. </productMenu>
  7768. <productMenu id="volume"
  7769. type="16" >
  7770. </productMenu>
  7771. <productMenu id="volume+"
  7772. type="2"
  7773. url="0x6004" >
  7774. </productMenu>
  7775. <productMenu id="battery"
  7776. type="1" >
  7777. </productMenu>
  7778. <productID id="6A0A"
  7779. />
  7780. <productGroupable type="0"
  7781. />
  7782. </product>
  7783. <product id="OUTLANDER"
  7784. name="OUTLANDER"
  7785. series="Helmet"
  7786. latestVersion="1.0.9"
  7787. latestVersionVoicePrompt="1.7"
  7788. show = "1" >
  7789. <productMenu id="protocol"
  7790. type="2" >
  7791. </productMenu>
  7792. <productMenu id="ota"
  7793. type="2" >
  7794. <otaLanguages>
  7795. <otaLanguage
  7796. id="0"
  7797. name="English"
  7798. package="0"
  7799. />
  7800. <otaLanguage
  7801. id="0"
  7802. name="French"
  7803. package="1"
  7804. />
  7805. <otaLanguage
  7806. id="0"
  7807. name="Spanish"
  7808. package="2"
  7809. />
  7810. <otaLanguage
  7811. id="0"
  7812. name="Italian"
  7813. package="3"
  7814. />
  7815. <otaLanguage
  7816. id="0"
  7817. name="German"
  7818. package="4"
  7819. />
  7820. <otaLanguage
  7821. id="0"
  7822. name="Dutch"
  7823. package="5"
  7824. />
  7825. <otaLanguage
  7826. id="0"
  7827. name="Russian"
  7828. package="6"
  7829. />
  7830. <otaLanguage
  7831. id="0"
  7832. name="Chinese"
  7833. package="7"
  7834. />
  7835. <otaLanguage
  7836. id="0"
  7837. name="Korean"
  7838. package="8"
  7839. />
  7840. <otaLanguage
  7841. id="0"
  7842. name="Japanese"
  7843. package="9"
  7844. />
  7845. <otaLanguage
  7846. id="0"
  7847. name="Finnish"
  7848. package="10"
  7849. />
  7850. <otaLanguage
  7851. id="0"
  7852. name="Polish"
  7853. package="11"
  7854. />
  7855. </otaLanguages>
  7856. <otaPackages>
  7857. <package
  7858. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0.img"
  7859. size="5183988"
  7860. />
  7861. <package
  7862. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fr-FR.img"
  7863. size="5183988"
  7864. />
  7865. <package
  7866. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-es-ES.img"
  7867. size="5183988"
  7868. />
  7869. <package
  7870. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-it-IT.img"
  7871. size="5183988"
  7872. />
  7873. <package
  7874. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-de-DE.img"
  7875. size="5183988"
  7876. />
  7877. <package
  7878. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-nl-NL.img"
  7879. size="5183988"
  7880. />
  7881. <package
  7882. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ru-RU.img"
  7883. size="5183988"
  7884. />
  7885. <package
  7886. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-cmn-CN.img"
  7887. size="5183988"
  7888. />
  7889. <package
  7890. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ko-KR.img"
  7891. size="5183988"
  7892. />
  7893. <package
  7894. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ja-JP.img"
  7895. size="5183988"
  7896. />
  7897. <package
  7898. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fi-FI.img"
  7899. size="5183988"
  7900. />
  7901. <package
  7902. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-pl-PL.img"
  7903. size="5183988"
  7904. />
  7905. </otaPackages>
  7906. </productMenu>
  7907. <productMenu id="wa"
  7908. type="0" >
  7909. </productMenu>
  7910. <productMenu id="led"
  7911. type="5" >
  7912. </productMenu>
  7913. <productMenu id="led+"
  7914. type="2"
  7915. url="1" >
  7916. </productMenu>
  7917. <productMenu id="meshIntercom+"
  7918. type="3"
  7919. url="2" >
  7920. </productMenu>
  7921. <productMenu id="waveIntercom"
  7922. type="1" >
  7923. </productMenu>
  7924. <productMenu id="fmradio"
  7925. type="0" >
  7926. </productMenu>
  7927. <productMenu id="phone"
  7928. type="1" >
  7929. </productMenu>
  7930. <productMenu id="music"
  7931. type="1" >
  7932. </productMenu>
  7933. <productMenu id="musicSharing"
  7934. type="0" >
  7935. </productMenu>
  7936. <productMenu id="deviceSetting"
  7937. type="1"
  7938. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml" >
  7939. <productMenuURL version="1.0.4"
  7940. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7941. />
  7942. </productMenu>
  7943. <productMenu id="quickGuide"
  7944. type="0"
  7945. url=""
  7946. size="1.12MB" >
  7947. </productMenu>
  7948. <productMenu id="userGuide"
  7949. type="1"
  7950. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7951. size="2.0MB" >
  7952. </productMenu>
  7953. <productMenu id="videoGuide"
  7954. type="0"
  7955. url=""
  7956. size="3.41MB" >
  7957. </productMenu>
  7958. <productMenu id="volume"
  7959. type="16" >
  7960. </productMenu>
  7961. <productMenu id="volume+"
  7962. type="2"
  7963. url="0x6004" >
  7964. </productMenu>
  7965. <productMenu id="battery"
  7966. type="1" >
  7967. </productMenu>
  7968. <productID id="6A05"
  7969. />
  7970. <productGroupable type="0"
  7971. />
  7972. </product>
  7973. <product id="OUTRUSH2"
  7974. name="OUTRUSH 2"
  7975. series="Helmet"
  7976. latestVersion="1.0.3"
  7977. latestVersionVoicePrompt="1.6"
  7978. show = "1" >
  7979. <productMenu id="protocol"
  7980. type="2" >
  7981. </productMenu>
  7982. <productMenu id="alexa"
  7983. type="0" >
  7984. </productMenu>
  7985. <productMenu id="ota"
  7986. type="2" >
  7987. <otaPackages>
  7988. <package
  7989. url="https://api.sena.com/support/OTA/Motorcycles/OUTRUSH2/OUTRUSH_2-v1.0.3-build0.img"
  7990. size="2945812"
  7991. />
  7992. </otaPackages>
  7993. </productMenu>
  7994. <productMenu id="meshIntercom+"
  7995. type="3"
  7996. url="2" >
  7997. </productMenu>
  7998. <productMenu id="waveIntercom"
  7999. type="1" >
  8000. </productMenu>
  8001. <productMenu id="phone"
  8002. type="1" >
  8003. </productMenu>
  8004. <productMenu id="music"
  8005. type="1" >
  8006. </productMenu>
  8007. <productMenu id="musicSharing"
  8008. type="0" >
  8009. </productMenu>
  8010. <productMenu id="deviceSetting"
  8011. type="1"
  8012. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8013. <productMenuURL version="1.0"
  8014. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  8015. />
  8016. </productMenu>
  8017. <productMenu id="quickGuide"
  8018. type="0"
  8019. url=""
  8020. size="1.12MB" >
  8021. </productMenu>
  8022. <productMenu id="userGuide"
  8023. type="1"
  8024. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  8025. size="2.0MB" >
  8026. </productMenu>
  8027. <productMenu id="connectGuide"
  8028. type="1"
  8029. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outrush2.json"
  8030. size="1.12MB" >
  8031. </productMenu>
  8032. <productMenu id="volume"
  8033. type="12" >
  8034. </productMenu>
  8035. <productMenu id="battery"
  8036. type="1" >
  8037. </productMenu>
  8038. <productID id="684A"
  8039. />
  8040. <productGroupable type="0"
  8041. />
  8042. </product>
  8043. <product id="OUTSTAR2"
  8044. name="OUTSTAR 2"
  8045. series="Helmet"
  8046. latestVersion="1.0.2"
  8047. latestVersionVoicePrompt="1.6"
  8048. show = "1" >
  8049. <productMenu id="protocol"
  8050. type="2" >
  8051. </productMenu>
  8052. <productMenu id="alexa"
  8053. type="0" >
  8054. </productMenu>
  8055. <productMenu id="ota"
  8056. type="2" >
  8057. <otaPackages>
  8058. <package
  8059. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.2-build0.img"
  8060. size="2945812"
  8061. />
  8062. </otaPackages>
  8063. </productMenu>
  8064. <productMenu id="meshIntercom+"
  8065. type="3"
  8066. url="2" >
  8067. </productMenu>
  8068. <productMenu id="waveIntercom"
  8069. type="1" >
  8070. </productMenu>
  8071. <productMenu id="phone"
  8072. type="1" >
  8073. </productMenu>
  8074. <productMenu id="music"
  8075. type="1" >
  8076. </productMenu>
  8077. <productMenu id="musicSharing"
  8078. type="0" >
  8079. </productMenu>
  8080. <productMenu id="deviceSetting"
  8081. type="1"
  8082. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8083. </productMenu>
  8084. <productMenu id="quickGuide"
  8085. type="0"
  8086. url=""
  8087. size="1.12MB" >
  8088. </productMenu>
  8089. <productMenu id="userGuide"
  8090. type="1"
  8091. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  8092. size="2.0MB" >
  8093. </productMenu>
  8094. <productMenu id="connectGuide"
  8095. type="1"
  8096. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outstar2.json"
  8097. size="1.12MB" >
  8098. </productMenu>
  8099. <productMenu id="volume"
  8100. type="12" >
  8101. </productMenu>
  8102. <productMenu id="battery"
  8103. type="1" >
  8104. </productMenu>
  8105. <productID id="684B"
  8106. />
  8107. <productGroupable type="0"
  8108. />
  8109. </product>
  8110. <product id="SURGE"
  8111. name="SURGE"
  8112. series="Helmet"
  8113. latestVersion="1.2"
  8114. latestVersionVoicePrompt="1.3"
  8115. show = "1" >
  8116. <productMenu id="protocol"
  8117. type="2" >
  8118. </productMenu>
  8119. <productMenu id="alexa"
  8120. type="0" >
  8121. </productMenu>
  8122. <productMenu id="ota"
  8123. type="2" >
  8124. <otaPackages>
  8125. <package
  8126. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  8127. size="2945812"
  8128. />
  8129. </otaPackages>
  8130. </productMenu>
  8131. <productMenu id="meshIntercom"
  8132. type="30" >
  8133. </productMenu>
  8134. <productMenu id="meshIntercom+"
  8135. type="3"
  8136. url="2" >
  8137. <productMenuType version="1.0.1"
  8138. type="2"
  8139. />
  8140. </productMenu>
  8141. <productMenu id="waveIntercom"
  8142. type="1" >
  8143. <productMenuType version="1.0.9"
  8144. type="0"
  8145. />
  8146. </productMenu>
  8147. <productMenu id="phone"
  8148. type="1" >
  8149. </productMenu>
  8150. <productMenu id="music"
  8151. type="1" >
  8152. </productMenu>
  8153. <productMenu id="musicSharing"
  8154. type="0" >
  8155. </productMenu>
  8156. <productMenu id="deviceSetting"
  8157. type="1"
  8158. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  8159. <productMenuURL version="1.1.9"
  8160. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  8161. />
  8162. <productMenuURL version="1.0.1"
  8163. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  8164. />
  8165. </productMenu>
  8166. <productMenu id="quickGuide"
  8167. type="0"
  8168. url=""
  8169. size="1.12MB" >
  8170. </productMenu>
  8171. <productMenu id="userGuide"
  8172. type="1"
  8173. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  8174. size="2.0MB" >
  8175. </productMenu>
  8176. <productMenu id="volume"
  8177. type="12" >
  8178. </productMenu>
  8179. <productMenu id="battery"
  8180. type="1" >
  8181. </productMenu>
  8182. <productID id="6840"
  8183. />
  8184. <productGroupable type="0"
  8185. />
  8186. </product>
  8187. <product id="Cavalry2"
  8188. name="Cavalry 2"
  8189. series="Helmet"
  8190. latestVersion="1.2"
  8191. latestVersionVoicePrompt="1.3"
  8192. show = "1" >
  8193. <productMenu id="protocol"
  8194. type="2" >
  8195. </productMenu>
  8196. <productMenu id="alexa"
  8197. type="0" >
  8198. </productMenu>
  8199. <productMenu id="ota"
  8200. type="2" >
  8201. <otaPackages>
  8202. <package
  8203. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  8204. size="3144148"
  8205. />
  8206. </otaPackages>
  8207. </productMenu>
  8208. <productMenu id="wa"
  8209. type="0" >
  8210. </productMenu>
  8211. <productMenu id="meshIntercom"
  8212. type="30" >
  8213. </productMenu>
  8214. <productMenu id="meshIntercom+"
  8215. type="3"
  8216. url="2" >
  8217. <productMenuType version="1.0"
  8218. type="2"
  8219. />
  8220. </productMenu>
  8221. <productMenu id="waveIntercom"
  8222. type="1" >
  8223. <productMenuType version="1.0.9"
  8224. type="0"
  8225. />
  8226. </productMenu>
  8227. <productMenu id="phone"
  8228. type="1" >
  8229. </productMenu>
  8230. <productMenu id="music"
  8231. type="1" >
  8232. </productMenu>
  8233. <productMenu id="musicSharing"
  8234. type="0" >
  8235. </productMenu>
  8236. <productMenu id="deviceSetting"
  8237. type="1"
  8238. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  8239. <productMenuURL version="1.1.9"
  8240. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  8241. />
  8242. <productMenuURL version="1.0"
  8243. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  8244. />
  8245. </productMenu>
  8246. <productMenu id="quickGuide"
  8247. type="0"
  8248. url=""
  8249. size="1.12MB" >
  8250. </productMenu>
  8251. <productMenu id="userGuide"
  8252. type="1"
  8253. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  8254. size="2.0MB" >
  8255. </productMenu>
  8256. <productMenu id="connectGuide"
  8257. type="1"
  8258. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  8259. size="1.12MB" >
  8260. </productMenu>
  8261. <productMenu id="volume"
  8262. type="12" >
  8263. </productMenu>
  8264. <productMenu id="battery"
  8265. type="1" >
  8266. </productMenu>
  8267. <productID id="6839"
  8268. />
  8269. <productGroupable type="0"
  8270. />
  8271. </product>
  8272. <product id="Cavalry"
  8273. name="Cavalry"
  8274. series="Helmet"
  8275. latestVersion="1.2.2"
  8276. show = "1" >
  8277. <productMenu id="protocol"
  8278. type="0">
  8279. </productMenu>
  8280. <productMenu id="sip"
  8281. type="1" >
  8282. </productMenu>
  8283. <productMenu id="bluetoothIntercom"
  8284. type="1" >
  8285. </productMenu>
  8286. <productMenu id="phone"
  8287. type="2" >
  8288. </productMenu>
  8289. <productMenu id="fmradio"
  8290. type="3" >
  8291. </productMenu>
  8292. <productMenu id="deviceSetting"
  8293. type="1"
  8294. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  8295. <productMenuURL version="1.9"
  8296. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  8297. />
  8298. <productMenuURL version="1.0.1"
  8299. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  8300. />
  8301. </productMenu>
  8302. <productMenu id="quickGuide"
  8303. type="1"
  8304. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  8305. size="795KB" >
  8306. </productMenu>
  8307. <productMenu id="userGuide"
  8308. type="1"
  8309. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  8310. size="1.87MB" >
  8311. </productMenu>
  8312. <productMenu id="connectGuide"
  8313. type="1"
  8314. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8315. size="1.12MB" >
  8316. </productMenu>
  8317. <productID id="5524"
  8318. />
  8319. <productGroupable type="0"
  8320. />
  8321. </product>
  8322. <product id="Cavalry_Lite"
  8323. name="Cavalry Lite"
  8324. series="Helmet"
  8325. latestVersion="1.0.2"
  8326. show = "1" >
  8327. <productMenu id="protocol"
  8328. type="0">
  8329. </productMenu>
  8330. <productMenu id="sip"
  8331. type="1" >
  8332. </productMenu>
  8333. <productMenu id="bluetoothIntercom"
  8334. type="1" >
  8335. </productMenu>
  8336. <productMenu id="phone"
  8337. type="2" >
  8338. </productMenu>
  8339. <productMenu id="fmradio"
  8340. type="3" >
  8341. </productMenu>
  8342. <productMenu id="deviceSetting"
  8343. type="1"
  8344. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  8345. </productMenu>
  8346. <productMenu id="userGuide"
  8347. type="1"
  8348. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  8349. size="1.74MB" >
  8350. </productMenu>
  8351. <productMenu id="connectGuide"
  8352. type="1"
  8353. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8354. size="1.12MB" >
  8355. </productMenu>
  8356. <productID id="5536"
  8357. />
  8358. <productGroupable type="0"
  8359. />
  8360. </product>
  8361. <product id="VORTEX"
  8362. name="VORTEX"
  8363. series="VORTEX"
  8364. latestVersion="1.0.2"
  8365. latestVersionVoicePrompt="1.0"
  8366. show = "1" >
  8367. <productMenu id="protocol"
  8368. type="2" >
  8369. </productMenu>
  8370. <productMenu id="warranty"
  8371. type="1" >
  8372. </productMenu>
  8373. <productMenu id="serialNumber"
  8374. type="1" >
  8375. </productMenu>
  8376. <productMenu id="ota"
  8377. type="2" >
  8378. <otaLanguages>
  8379. <otaLanguage
  8380. id="0"
  8381. name="English"
  8382. package="0"
  8383. />
  8384. <otaLanguage
  8385. id="0"
  8386. name="French"
  8387. package="1"
  8388. />
  8389. <otaLanguage
  8390. id="0"
  8391. name="Spanish"
  8392. package="2"
  8393. />
  8394. <otaLanguage
  8395. id="0"
  8396. name="Italian"
  8397. package="3"
  8398. />
  8399. <otaLanguage
  8400. id="0"
  8401. name="German"
  8402. package="4"
  8403. />
  8404. <otaLanguage
  8405. id="0"
  8406. name="Dutch"
  8407. package="5"
  8408. />
  8409. <otaLanguage
  8410. id="0"
  8411. name="Russian"
  8412. package="6"
  8413. />
  8414. <otaLanguage
  8415. id="0"
  8416. name="Chinese"
  8417. package="7"
  8418. />
  8419. <otaLanguage
  8420. id="0"
  8421. name="Korean"
  8422. package="8"
  8423. />
  8424. <otaLanguage
  8425. id="0"
  8426. name="Japanese"
  8427. package="9"
  8428. />
  8429. <otaLanguage
  8430. id="0"
  8431. name="Finnish"
  8432. package="10"
  8433. />
  8434. <otaLanguage
  8435. id="0"
  8436. name="Polish"
  8437. package="11"
  8438. />
  8439. </otaLanguages>
  8440. <otaPackages>
  8441. <package
  8442. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1.img"
  8443. size="5183988"
  8444. />
  8445. <package
  8446. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fr-FR.img"
  8447. size="5183988"
  8448. />
  8449. <package
  8450. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-es-ES.img"
  8451. size="5183988"
  8452. />
  8453. <package
  8454. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-it-IT.img"
  8455. size="5183988"
  8456. />
  8457. <package
  8458. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-de-DE.img"
  8459. size="5183988"
  8460. />
  8461. <package
  8462. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-nl-NL.img"
  8463. size="5183988"
  8464. />
  8465. <package
  8466. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ru-RU.img"
  8467. size="5183988"
  8468. />
  8469. <package
  8470. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-cmn-CN.img"
  8471. size="5183988"
  8472. />
  8473. <package
  8474. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ko-KR.img"
  8475. size="5183988"
  8476. />
  8477. <package
  8478. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ja-JP.img"
  8479. size="5183988"
  8480. />
  8481. <package
  8482. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fi-FI.img"
  8483. size="5183988"
  8484. />
  8485. <package
  8486. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-pl-PL.img"
  8487. size="5183988"
  8488. />
  8489. </otaPackages>
  8490. </productMenu>
  8491. <productMenu id="sip"
  8492. type="1" >
  8493. </productMenu>
  8494. <productMenu id="bluetoothIntercom"
  8495. type="1" >
  8496. </productMenu>
  8497. <productMenu id="phone"
  8498. type="1" >
  8499. </productMenu>
  8500. <productMenu id="music"
  8501. type="1" >
  8502. </productMenu>
  8503. <productMenu id="fmradio"
  8504. type="1"
  8505. url="1" >
  8506. </productMenu>
  8507. <productMenu id="deviceSetting"
  8508. type="1"
  8509. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8510. </productMenu>
  8511. <productMenu id="quickGuide"
  8512. type="0"
  8513. url=""
  8514. size="934KB" >
  8515. </productMenu>
  8516. <productMenu id="userGuide"
  8517. type="1"
  8518. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_VORTEX_1.0.0_en_260805.pdf"
  8519. size="1.14MB" >
  8520. </productMenu>
  8521. <productMenu id="connectGuide"
  8522. type="0"
  8523. url=""
  8524. size="1.12MB" >
  8525. </productMenu>
  8526. <productMenu id="volume"
  8527. type="15" >
  8528. </productMenu>
  8529. <productMenu id="volume+"
  8530. type="2"
  8531. url="0x0018" >
  8532. </productMenu>
  8533. <productMenu id="appearance"
  8534. type="1"
  8535. url="1|white,silver,black" >
  8536. </productMenu>
  8537. <productID id="3451"
  8538. />
  8539. <productGroupable type="0"
  8540. />
  8541. </product>
  8542. <product id="SF4"
  8543. name="SF4"
  8544. series="SF"
  8545. latestVersion="1.1.5"
  8546. show = "-1" >
  8547. <productMenu id="protocol"
  8548. type="1"
  8549. url="3">
  8550. </productMenu>
  8551. <productMenu id="sip"
  8552. type="1" >
  8553. </productMenu>
  8554. <productMenu id="bluetoothIntercom"
  8555. type="1" >
  8556. </productMenu>
  8557. <productMenu id="phone"
  8558. type="1" >
  8559. </productMenu>
  8560. <productMenu id="music"
  8561. type="1" >
  8562. </productMenu>
  8563. <productMenu id="fmradio"
  8564. type="1" >
  8565. </productMenu>
  8566. <productMenu id="deviceSetting"
  8567. type="1"
  8568. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8569. <productMenuURL version="1.0.1"
  8570. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8571. />
  8572. </productMenu>
  8573. <productMenu id="quickGuide"
  8574. type="1"
  8575. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8576. size="607KB" >
  8577. </productMenu>
  8578. <productMenu id="userGuide"
  8579. type="1"
  8580. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8581. size="1.91MB" >
  8582. </productMenu>
  8583. <productMenu id="volume"
  8584. type="4" >
  8585. </productMenu>
  8586. <productID id="5414"
  8587. />
  8588. <productGroupable type="0"
  8589. />
  8590. </product>
  8591. <product id="SF4"
  8592. name="SF4"
  8593. series="SF"
  8594. latestVersion="3.4.4"
  8595. show = "1" >
  8596. <productMenu id="protocol"
  8597. type="2" >
  8598. </productMenu>
  8599. <productMenu id="sip"
  8600. type="1" >
  8601. </productMenu>
  8602. <productMenu id="bluetoothIntercom"
  8603. type="1" >
  8604. </productMenu>
  8605. <productMenu id="phone"
  8606. type="1" >
  8607. </productMenu>
  8608. <productMenu id="music"
  8609. type="1" >
  8610. </productMenu>
  8611. <productMenu id="fmradio"
  8612. type="1" >
  8613. </productMenu>
  8614. <productMenu id="deviceSetting"
  8615. type="1"
  8616. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8617. <productMenuURL version="3.0"
  8618. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8619. />
  8620. </productMenu>
  8621. <productMenu id="quickGuide"
  8622. type="0"
  8623. url=""
  8624. size="934KB" >
  8625. </productMenu>
  8626. <productMenu id="userGuide"
  8627. type="1"
  8628. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8629. size="1.14MB" >
  8630. </productMenu>
  8631. <productMenu id="connectGuide"
  8632. type="1"
  8633. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8634. size="1.12MB" >
  8635. </productMenu>
  8636. <productMenu id="volume"
  8637. type="15" >
  8638. </productMenu>
  8639. <productID id="3370"
  8640. />
  8641. <productGroupable type="0"
  8642. />
  8643. </product>
  8644. <product id="SF2"
  8645. name="SF2"
  8646. series="SF"
  8647. latestVersion="1.2.1"
  8648. show = "-1" >
  8649. <productMenu id="protocol"
  8650. type="1"
  8651. url="2">
  8652. </productMenu>
  8653. <productMenu id="sip"
  8654. type="1" >
  8655. </productMenu>
  8656. <productMenu id="bluetoothIntercom"
  8657. type="1" >
  8658. </productMenu>
  8659. <productMenu id="phone"
  8660. type="1" >
  8661. </productMenu>
  8662. <productMenu id="music"
  8663. type="1" >
  8664. </productMenu>
  8665. <productMenu id="fmradio"
  8666. type="1" >
  8667. </productMenu>
  8668. <productMenu id="deviceSetting"
  8669. type="1"
  8670. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8671. <productMenuURL version="1.0.1"
  8672. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8673. />
  8674. </productMenu>
  8675. <productMenu id="quickGuide"
  8676. type="1"
  8677. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8678. size="607KB" >
  8679. </productMenu>
  8680. <productMenu id="userGuide"
  8681. type="1"
  8682. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8683. size="1.91MB" >
  8684. </productMenu>
  8685. <productMenu id="volume"
  8686. type="4" >
  8687. </productMenu>
  8688. <productID id="5412"
  8689. />
  8690. <productGroupable type="0"
  8691. />
  8692. </product>
  8693. <product id="SF2"
  8694. name="SF2"
  8695. series="SF"
  8696. latestVersion="3.3.4"
  8697. show = "1" >
  8698. <productMenu id="protocol"
  8699. type="2" >
  8700. </productMenu>
  8701. <productMenu id="sip"
  8702. type="1" >
  8703. </productMenu>
  8704. <productMenu id="bluetoothIntercom"
  8705. type="1" >
  8706. </productMenu>
  8707. <productMenu id="phone"
  8708. type="1" >
  8709. </productMenu>
  8710. <productMenu id="music"
  8711. type="1" >
  8712. </productMenu>
  8713. <productMenu id="fmradio"
  8714. type="0" >
  8715. </productMenu>
  8716. <productMenu id="deviceSetting"
  8717. type="1"
  8718. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8719. <productMenuURL version="3.0"
  8720. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8721. />
  8722. </productMenu>
  8723. <productMenu id="quickGuide"
  8724. type="0"
  8725. url=""
  8726. size="934KB" >
  8727. </productMenu>
  8728. <productMenu id="userGuide"
  8729. type="1"
  8730. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8731. size="1.14MB" >
  8732. </productMenu>
  8733. <productMenu id="connectGuide"
  8734. type="1"
  8735. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8736. size="1.12MB" >
  8737. </productMenu>
  8738. <productMenu id="volume"
  8739. type="15" >
  8740. </productMenu>
  8741. <productID id="3360"
  8742. />
  8743. <productGroupable type="0"
  8744. />
  8745. </product>
  8746. <product id="SF1"
  8747. name="SF1"
  8748. series="SF"
  8749. latestVersion="2.0.5"
  8750. show = "-1" >
  8751. <productMenu id="protocol"
  8752. type="1"
  8753. url="1">
  8754. </productMenu>
  8755. <productMenu id="sip"
  8756. type="1" >
  8757. </productMenu>
  8758. <productMenu id="bluetoothIntercom"
  8759. type="1" >
  8760. <productMenuType version="1.1"
  8761. type="0"
  8762. />
  8763. </productMenu>
  8764. <productMenu id="phone"
  8765. type="1" >
  8766. </productMenu>
  8767. <productMenu id="music"
  8768. type="1" >
  8769. </productMenu>
  8770. <productMenu id="deviceSetting"
  8771. type="1"
  8772. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8773. <productMenuURL version="1.1"
  8774. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8775. />
  8776. <productMenuURL version="1.0"
  8777. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8778. />
  8779. </productMenu>
  8780. <productMenu id="quickGuide"
  8781. type="1"
  8782. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8783. size="401KB" >
  8784. </productMenu>
  8785. <productMenu id="userGuide"
  8786. type="1"
  8787. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8788. size="1.91MB" >
  8789. </productMenu>
  8790. <productMenu id="volume"
  8791. type="3" >
  8792. </productMenu>
  8793. <productID id="5410"
  8794. />
  8795. <productGroupable type="0"
  8796. />
  8797. </product>
  8798. <product id="SF1"
  8799. name="SF1"
  8800. series="SF"
  8801. latestVersion="3.3.4"
  8802. show = "1" >
  8803. <productMenu id="protocol"
  8804. type="2" >
  8805. </productMenu>
  8806. <productMenu id="sip"
  8807. type="1" >
  8808. </productMenu>
  8809. <productMenu id="bluetoothIntercom"
  8810. type="1" >
  8811. </productMenu>
  8812. <productMenu id="phone"
  8813. type="1" >
  8814. </productMenu>
  8815. <productMenu id="music"
  8816. type="1" >
  8817. </productMenu>
  8818. <productMenu id="fmradio"
  8819. type="0" >
  8820. </productMenu>
  8821. <productMenu id="deviceSetting"
  8822. type="1"
  8823. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8824. <productMenuURL version="3.0"
  8825. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8826. />
  8827. </productMenu>
  8828. <productMenu id="quickGuide"
  8829. type="0"
  8830. url=""
  8831. size="934KB" >
  8832. </productMenu>
  8833. <productMenu id="userGuide"
  8834. type="1"
  8835. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8836. size="1.14MB" >
  8837. </productMenu>
  8838. <productMenu id="connectGuide"
  8839. type="1"
  8840. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8841. size="1.12MB" >
  8842. </productMenu>
  8843. <productMenu id="volume"
  8844. type="15" >
  8845. </productMenu>
  8846. <productID id="3350"
  8847. />
  8848. <productGroupable type="0"
  8849. />
  8850. </product>
  8851. <product id="SFR"
  8852. name="SFR"
  8853. series="SF"
  8854. latestVersion="1.1.1"
  8855. show = "1" >
  8856. <productMenu id="protocol"
  8857. type="1"
  8858. url="3">
  8859. </productMenu>
  8860. <productMenu id="sip"
  8861. type="1" >
  8862. </productMenu>
  8863. <productMenu id="bluetoothIntercom"
  8864. type="1" >
  8865. </productMenu>
  8866. <productMenu id="phone"
  8867. type="1" >
  8868. </productMenu>
  8869. <productMenu id="music"
  8870. type="1" >
  8871. </productMenu>
  8872. <productMenu id="fmradio"
  8873. type="1" >
  8874. </productMenu>
  8875. <productMenu id="deviceSetting"
  8876. type="1"
  8877. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8878. </productMenu>
  8879. <productMenu id="quickGuide"
  8880. type="1"
  8881. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8882. size="607KB" >
  8883. </productMenu>
  8884. <productMenu id="userGuide"
  8885. type="1"
  8886. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8887. size="1.91MB" >
  8888. </productMenu>
  8889. <productMenu id="volume"
  8890. type="4" >
  8891. </productMenu>
  8892. <productID id="5418"
  8893. />
  8894. <productGroupable type="0"
  8895. />
  8896. </product>
  8897. <product id="20S"
  8898. name="20S"
  8899. series="20"
  8900. latestVersion="2.2.3"
  8901. show = "1" >
  8902. <productMenu id="protocol"
  8903. type="0">
  8904. </productMenu>
  8905. <productMenu id="wa"
  8906. type="5" >
  8907. </productMenu>
  8908. <productMenu id="sip"
  8909. type="1" >
  8910. <productMenuType version="1.0"
  8911. type="0"
  8912. />
  8913. </productMenu>
  8914. <productMenu id="bluetoothIntercom"
  8915. type="1" >
  8916. <productMenuType version="1.0"
  8917. type="0"
  8918. />
  8919. </productMenu>
  8920. <productMenu id="intercomSetting"
  8921. type="1" >
  8922. </productMenu>
  8923. <productMenu id="phone"
  8924. type="2" >
  8925. </productMenu>
  8926. <productMenu id="fmradio"
  8927. type="3" >
  8928. </productMenu>
  8929. <productMenu id="deviceSetting"
  8930. type="1"
  8931. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8932. <productMenuURL version="2.0.2"
  8933. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8934. />
  8935. <productMenuURL version="1.5"
  8936. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8937. />
  8938. <productMenuURL version="1.4.1"
  8939. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8940. />
  8941. <productMenuURL version="1.1"
  8942. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8943. />
  8944. <productMenuURL version="1.0"
  8945. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8946. />
  8947. </productMenu>
  8948. <productMenu id="quickGuide"
  8949. type="0"
  8950. url=""
  8951. size="264KB" >
  8952. </productMenu>
  8953. <productMenu id="userGuide"
  8954. type="1"
  8955. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8956. size="3.09MB" >
  8957. </productMenu>
  8958. <productMenu id="connectGuide"
  8959. type="1"
  8960. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8961. size="1.12MB" >
  8962. </productMenu>
  8963. <productID id="4210"
  8964. />
  8965. <productGroupable type="1"
  8966. />
  8967. </product>
  8968. <product id="20S_EVO"
  8969. name="20S EVO"
  8970. series="20"
  8971. latestVersion="2.2.3"
  8972. show = "1" >
  8973. <productMenu id="protocol"
  8974. type="0">
  8975. </productMenu>
  8976. <productMenu id="wa"
  8977. type="5" >
  8978. </productMenu>
  8979. <productMenu id="sip"
  8980. type="1" >
  8981. <productMenuType version="1.0"
  8982. type="0"
  8983. />
  8984. </productMenu>
  8985. <productMenu id="bluetoothIntercom"
  8986. type="1" >
  8987. <productMenuType version="1.0"
  8988. type="0"
  8989. />
  8990. </productMenu>
  8991. <productMenu id="intercomSetting"
  8992. type="1" >
  8993. </productMenu>
  8994. <productMenu id="phone"
  8995. type="2" >
  8996. </productMenu>
  8997. <productMenu id="fmradio"
  8998. type="3" >
  8999. </productMenu>
  9000. <productMenu id="deviceSetting"
  9001. type="1"
  9002. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  9003. <productMenuURL version="2.0.2"
  9004. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9005. />
  9006. <productMenuURL version="1.5"
  9007. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9008. />
  9009. <productMenuURL version="1.4.1"
  9010. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9011. />
  9012. <productMenuURL version="1.1"
  9013. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9014. />
  9015. <productMenuURL version="1.0"
  9016. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9017. />
  9018. </productMenu>
  9019. <productMenu id="quickGuide"
  9020. type="0"
  9021. url=""
  9022. size="264KB" >
  9023. </productMenu>
  9024. <productMenu id="userGuide"
  9025. type="1"
  9026. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  9027. size="3.09MB" >
  9028. </productMenu>
  9029. <productMenu id="connectGuide"
  9030. type="1"
  9031. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9032. size="1.12MB" >
  9033. </productMenu>
  9034. <productID id="4210"
  9035. />
  9036. <productProductKey key="16"
  9037. />
  9038. <productGroupable type="1"
  9039. />
  9040. </product>
  9041. <product id="10S"
  9042. name="10S"
  9043. series="10"
  9044. latestVersion="3.0.2"
  9045. show = "1" >
  9046. <productMenu id="protocol"
  9047. type="3" >
  9048. </productMenu>
  9049. <productMenu id="sip"
  9050. type="1" >
  9051. </productMenu>
  9052. <productMenu id="bluetoothIntercom"
  9053. type="1" >
  9054. </productMenu>
  9055. <productMenu id="phone"
  9056. type="1" >
  9057. </productMenu>
  9058. <productMenu id="deviceSetting"
  9059. type="1"
  9060. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  9061. </productMenu>
  9062. <productMenu id="quickGuide"
  9063. type="1"
  9064. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  9065. size="934KB" >
  9066. </productMenu>
  9067. <productMenu id="userGuide"
  9068. type="1"
  9069. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  9070. size="1.14MB" >
  9071. </productMenu>
  9072. <productMenu id="connectGuide"
  9073. type="1"
  9074. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  9075. size="1.12MB" >
  9076. </productMenu>
  9077. <productID id="3380"
  9078. />
  9079. <productGroupable type="0"
  9080. />
  9081. </product>
  9082. <product id="10S"
  9083. name="10S"
  9084. series="10"
  9085. latestVersion="2.1.1"
  9086. show = "-1" >
  9087. <productMenu id="protocol"
  9088. type="0">
  9089. </productMenu>
  9090. <productMenu id="sip"
  9091. type="1" >
  9092. </productMenu>
  9093. <productMenu id="bluetoothIntercom"
  9094. type="1" >
  9095. </productMenu>
  9096. <productMenu id="phone"
  9097. type="2" >
  9098. </productMenu>
  9099. <productMenu id="fmradio"
  9100. type="3" >
  9101. </productMenu>
  9102. <productMenu id="deviceSetting"
  9103. type="1"
  9104. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  9105. <productMenuURL version="1.5"
  9106. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  9107. />
  9108. <productMenuURL version="1.3.1"
  9109. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  9110. />
  9111. </productMenu>
  9112. <productMenu id="quickGuide"
  9113. type="1"
  9114. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  9115. size="310KB" >
  9116. </productMenu>
  9117. <productMenu id="userGuide"
  9118. type="1"
  9119. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  9120. size="1.57MB" >
  9121. </productMenu>
  9122. <productID id="5530"
  9123. />
  9124. <productGroupable type="0"
  9125. />
  9126. </product>
  9127. <product id="Apex"
  9128. name="Apex"
  9129. series="Apex"
  9130. latestVersion="1.0"
  9131. latestVersionVoicePrompt="0.2"
  9132. show = "-1" >
  9133. <productMenu id="protocol"
  9134. type="2" >
  9135. </productMenu>
  9136. <productMenu id="warranty"
  9137. type="1" >
  9138. </productMenu>
  9139. <productMenu id="serialNumber"
  9140. type="1" >
  9141. </productMenu>
  9142. <productMenu id="ota"
  9143. type="2" >
  9144. <otaLanguages>
  9145. <otaLanguage
  9146. id="0"
  9147. name="English"
  9148. package="0"
  9149. />
  9150. <otaLanguage
  9151. id="0"
  9152. name="French"
  9153. package="1"
  9154. />
  9155. <otaLanguage
  9156. id="0"
  9157. name="Spanish"
  9158. package="2"
  9159. />
  9160. <otaLanguage
  9161. id="0"
  9162. name="Italian"
  9163. package="3"
  9164. />
  9165. <otaLanguage
  9166. id="0"
  9167. name="German"
  9168. package="4"
  9169. />
  9170. <otaLanguage
  9171. id="0"
  9172. name="Dutch"
  9173. package="5"
  9174. />
  9175. <otaLanguage
  9176. id="0"
  9177. name="Russian"
  9178. package="6"
  9179. />
  9180. <otaLanguage
  9181. id="0"
  9182. name="Chinese"
  9183. package="7"
  9184. />
  9185. <otaLanguage
  9186. id="0"
  9187. name="Korean"
  9188. package="8"
  9189. />
  9190. <otaLanguage
  9191. id="0"
  9192. name="Japanese"
  9193. package="9"
  9194. />
  9195. <otaLanguage
  9196. id="0"
  9197. name="Finnish"
  9198. package="10"
  9199. />
  9200. <otaLanguage
  9201. id="0"
  9202. name="Polish"
  9203. package="11"
  9204. />
  9205. </otaLanguages>
  9206. <otaPackages>
  9207. <package
  9208. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6.img"
  9209. size="5183988"
  9210. />
  9211. <package
  9212. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-fr-FR.img"
  9213. size="5183988"
  9214. />
  9215. <package
  9216. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-es-ES.img"
  9217. size="5183988"
  9218. />
  9219. <package
  9220. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-it-IT.img"
  9221. size="5183988"
  9222. />
  9223. <package
  9224. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-de-DE.img"
  9225. size="5183988"
  9226. />
  9227. <package
  9228. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-nl-NL.img"
  9229. size="5183988"
  9230. />
  9231. <package
  9232. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ru-RU.img"
  9233. size="5183988"
  9234. />
  9235. <package
  9236. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-cmn-CN.img"
  9237. size="5183988"
  9238. />
  9239. <package
  9240. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ko-KR.img"
  9241. size="5183988"
  9242. />
  9243. <package
  9244. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ja-JP.img"
  9245. size="5183988"
  9246. />
  9247. <package
  9248. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-fi-FI.img"
  9249. size="5183988"
  9250. />
  9251. <package
  9252. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-pl-PL.img"
  9253. size="5183988"
  9254. />
  9255. </otaPackages>
  9256. </productMenu>
  9257. <productMenu id="sip"
  9258. type="1" >
  9259. </productMenu>
  9260. <productMenu id="bluetoothIntercom"
  9261. type="1" >
  9262. </productMenu>
  9263. <productMenu id="phone"
  9264. type="1" >
  9265. </productMenu>
  9266. <productMenu id="music"
  9267. type="1" >
  9268. </productMenu>
  9269. <productMenu id="fmradio"
  9270. type="1"
  9271. url="1" >
  9272. </productMenu>
  9273. <productMenu id="deviceSetting"
  9274. type="1"
  9275. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_01.xml" >
  9276. <productMenuURL version="1.0"
  9277. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9278. />
  9279. </productMenu>
  9280. <productMenu id="quickGuide"
  9281. type="0"
  9282. url=""
  9283. size="934KB" >
  9284. </productMenu>
  9285. <productMenu id="userGuide"
  9286. type="1"
  9287. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9288. size="1.14MB" >
  9289. </productMenu>
  9290. <productMenu id="volume+"
  9291. type="2"
  9292. url="0x0004" >
  9293. </productMenu>
  9294. <productMenu id="appearance"
  9295. type="1"
  9296. url="1|white,silver,black" >
  9297. </productMenu>
  9298. <productMenu id="battery"
  9299. type="1" >
  9300. </productMenu>
  9301. <productID id="3452"
  9302. />
  9303. <productGroupable type="0"
  9304. />
  9305. </product>
  9306. <product id="ApexPlus"
  9307. name="Apex Plus"
  9308. series="Apex"
  9309. latestVersion="1.0"
  9310. latestVersionVoicePrompt="0.2"
  9311. show = "-1" >
  9312. <productMenu id="protocol"
  9313. type="2" >
  9314. </productMenu>
  9315. <productMenu id="warranty"
  9316. type="1" >
  9317. </productMenu>
  9318. <productMenu id="serialNumber"
  9319. type="1" >
  9320. </productMenu>
  9321. <productMenu id="ota"
  9322. type="2" >
  9323. <otaLanguages>
  9324. <otaLanguage
  9325. id="0"
  9326. name="English"
  9327. package="0"
  9328. />
  9329. <otaLanguage
  9330. id="0"
  9331. name="French"
  9332. package="1"
  9333. />
  9334. <otaLanguage
  9335. id="0"
  9336. name="Spanish"
  9337. package="2"
  9338. />
  9339. <otaLanguage
  9340. id="0"
  9341. name="Italian"
  9342. package="3"
  9343. />
  9344. <otaLanguage
  9345. id="0"
  9346. name="German"
  9347. package="4"
  9348. />
  9349. <otaLanguage
  9350. id="0"
  9351. name="Dutch"
  9352. package="5"
  9353. />
  9354. <otaLanguage
  9355. id="0"
  9356. name="Russian"
  9357. package="6"
  9358. />
  9359. <otaLanguage
  9360. id="0"
  9361. name="Chinese"
  9362. package="7"
  9363. />
  9364. <otaLanguage
  9365. id="0"
  9366. name="Korean"
  9367. package="8"
  9368. />
  9369. <otaLanguage
  9370. id="0"
  9371. name="Japanese"
  9372. package="9"
  9373. />
  9374. <otaLanguage
  9375. id="0"
  9376. name="Finnish"
  9377. package="10"
  9378. />
  9379. <otaLanguage
  9380. id="0"
  9381. name="Polish"
  9382. package="11"
  9383. />
  9384. </otaLanguages>
  9385. <otaPackages>
  9386. <package
  9387. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6.img"
  9388. size="5183988"
  9389. />
  9390. <package
  9391. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-fr-FR.img"
  9392. size="5183988"
  9393. />
  9394. <package
  9395. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-es-ES.img"
  9396. size="5183988"
  9397. />
  9398. <package
  9399. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-it-IT.img"
  9400. size="5183988"
  9401. />
  9402. <package
  9403. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-de-DE.img"
  9404. size="5183988"
  9405. />
  9406. <package
  9407. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-nl-NL.img"
  9408. size="5183988"
  9409. />
  9410. <package
  9411. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ru-RU.img"
  9412. size="5183988"
  9413. />
  9414. <package
  9415. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-cmn-CN.img"
  9416. size="5183988"
  9417. />
  9418. <package
  9419. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ko-KR.img"
  9420. size="5183988"
  9421. />
  9422. <package
  9423. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ja-JP.img"
  9424. size="5183988"
  9425. />
  9426. <package
  9427. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-fi-FI.img"
  9428. size="5183988"
  9429. />
  9430. <package
  9431. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-pl-PL.img"
  9432. size="5183988"
  9433. />
  9434. </otaPackages>
  9435. </productMenu>
  9436. <productMenu id="sip"
  9437. type="1" >
  9438. </productMenu>
  9439. <productMenu id="bluetoothIntercom"
  9440. type="1" >
  9441. </productMenu>
  9442. <productMenu id="phone"
  9443. type="1" >
  9444. </productMenu>
  9445. <productMenu id="music"
  9446. type="1" >
  9447. </productMenu>
  9448. <productMenu id="fmradio"
  9449. type="1"
  9450. url="1" >
  9451. </productMenu>
  9452. <productMenu id="deviceSetting"
  9453. type="1"
  9454. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_01.xml" >
  9455. <productMenuURL version="1.0"
  9456. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9457. />
  9458. </productMenu>
  9459. <productMenu id="quickGuide"
  9460. type="0"
  9461. url=""
  9462. size="934KB" >
  9463. </productMenu>
  9464. <productMenu id="userGuide"
  9465. type="1"
  9466. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9467. size="1.14MB" >
  9468. </productMenu>
  9469. <productMenu id="volume+"
  9470. type="2"
  9471. url="0x0004" >
  9472. </productMenu>
  9473. <productMenu id="appearance"
  9474. type="1"
  9475. url="1|white,silver,black" >
  9476. </productMenu>
  9477. <productMenu id="battery"
  9478. type="1" >
  9479. </productMenu>
  9480. <productID id="3453"
  9481. />
  9482. <productGroupable type="0"
  9483. />
  9484. </product>
  9485. <product id="10R2"
  9486. name="10R 2"
  9487. series="10"
  9488. latestVersion="0.9"
  9489. latestVersionVoicePrompt="1.1"
  9490. show = "-1" >
  9491. <productMenu id="protocol"
  9492. type="2" >
  9493. </productMenu>
  9494. <productMenu id="ota"
  9495. type="2" >
  9496. <otaPackages>
  9497. <package
  9498. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9499. size="2945812"
  9500. />
  9501. </otaPackages>
  9502. </productMenu>
  9503. <productMenu id="sip"
  9504. type="1" >
  9505. </productMenu>
  9506. <productMenu id="bluetoothIntercom"
  9507. type="1" >
  9508. </productMenu>
  9509. <productMenu id="phone"
  9510. type="1" >
  9511. </productMenu>
  9512. <productMenu id="music"
  9513. type="1" >
  9514. </productMenu>
  9515. <productMenu id="fmradio"
  9516. type="1"
  9517. url="1" >
  9518. </productMenu>
  9519. <productMenu id="deviceSetting"
  9520. type="1"
  9521. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9522. </productMenu>
  9523. <productMenu id="quickGuide"
  9524. type="1"
  9525. url=""
  9526. size="934KB" >
  9527. </productMenu>
  9528. <productMenu id="userGuide"
  9529. type="0"
  9530. url=""
  9531. size="1.14MB" >
  9532. </productMenu>
  9533. <productMenu id="volume"
  9534. type="15" >
  9535. </productMenu>
  9536. <productID id="4000"
  9537. />
  9538. <productGroupable type="0"
  9539. />
  9540. </product>
  9541. <product id="10R"
  9542. name="10R"
  9543. series="10"
  9544. latestVersion="2.1.1"
  9545. show = "1" >
  9546. <productMenu id="protocol"
  9547. type="0">
  9548. </productMenu>
  9549. <productMenu id="sip"
  9550. type="1" >
  9551. <productMenuType version="1.0.2"
  9552. type="0"
  9553. />
  9554. </productMenu>
  9555. <productMenu id="bluetoothIntercom"
  9556. type="1" >
  9557. <productMenuType version="1.0.2"
  9558. type="0"
  9559. />
  9560. </productMenu>
  9561. <productMenu id="phone"
  9562. type="2" >
  9563. </productMenu>
  9564. <productMenu id="fmradio"
  9565. type="3" >
  9566. </productMenu>
  9567. <productMenu id="deviceSetting"
  9568. type="1"
  9569. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9570. <productMenuURL version="1.4"
  9571. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9572. />
  9573. <productMenuURL version="1.2.1"
  9574. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9575. />
  9576. <productMenuURL version="1.0.2"
  9577. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9578. />
  9579. <productMenuURL version="1.0"
  9580. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9581. />
  9582. </productMenu>
  9583. <productMenu id="quickGuide"
  9584. type="1"
  9585. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9586. size="400KB" >
  9587. </productMenu>
  9588. <productMenu id="userGuide"
  9589. type="1"
  9590. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9591. size="2.75MB" >
  9592. </productMenu>
  9593. <productMenu id="connectGuide"
  9594. type="1"
  9595. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9596. size="1.12MB" >
  9597. </productMenu>
  9598. <productID id="5520"
  9599. />
  9600. <productGroupable type="0"
  9601. />
  9602. </product>
  9603. <product id="10C_EVO"
  9604. name="10C EVO"
  9605. series="10"
  9606. latestVersion="1.7"
  9607. show = "1" >
  9608. <productMenu id="protocol"
  9609. type="0">
  9610. </productMenu>
  9611. <productMenu id="sip"
  9612. type="1" >
  9613. </productMenu>
  9614. <productMenu id="bluetoothIntercom"
  9615. type="1" >
  9616. </productMenu>
  9617. <productMenu id="phone"
  9618. type="2" >
  9619. </productMenu>
  9620. <productMenu id="fmradio"
  9621. type="3" >
  9622. </productMenu>
  9623. <productMenu id="deviceSetting"
  9624. type="1"
  9625. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9626. <productMenuURL version="1.3.1"
  9627. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9628. />
  9629. </productMenu>
  9630. <productMenu id="quickGuide"
  9631. type="1"
  9632. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9633. size="1.32MB" >
  9634. </productMenu>
  9635. <productMenu id="userGuide"
  9636. type="1"
  9637. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9638. size="1.68MB" >
  9639. </productMenu>
  9640. <productMenu id="connectGuide"
  9641. type="1"
  9642. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9643. size="1.12MB" >
  9644. </productMenu>
  9645. <productID id="5570"
  9646. />
  9647. <productGroupable type="0"
  9648. />
  9649. </product>
  9650. <product id="10C_Pro"
  9651. name="10C Pro"
  9652. series="10"
  9653. latestVersion="2.7.1"
  9654. show = "1" >
  9655. <productMenu id="protocol"
  9656. type="0">
  9657. </productMenu>
  9658. <productMenu id="sip"
  9659. type="1" >
  9660. </productMenu>
  9661. <productMenu id="bluetoothIntercom"
  9662. type="1" >
  9663. </productMenu>
  9664. <productMenu id="phone"
  9665. type="2" >
  9666. </productMenu>
  9667. <productMenu id="fmradio"
  9668. type="3" >
  9669. </productMenu>
  9670. <productMenu id="deviceSetting"
  9671. type="1"
  9672. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9673. <productMenuURL version="2.5.1"
  9674. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9675. />
  9676. <productMenuURL version="1.0"
  9677. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9678. />
  9679. </productMenu>
  9680. <productMenu id="quickGuide"
  9681. type="1"
  9682. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9683. size="651KB" >
  9684. </productMenu>
  9685. <productMenu id="userGuide"
  9686. type="1"
  9687. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9688. size="2.34MB" >
  9689. </productMenu>
  9690. <productMenu id="connectGuide"
  9691. type="1"
  9692. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9693. size="1.12MB" >
  9694. </productMenu>
  9695. <productID id="5580"
  9696. />
  9697. <productGroupable type="0"
  9698. />
  9699. </product>
  9700. <product id="10C"
  9701. name="10C"
  9702. series="10"
  9703. latestVersion="3.0.4"
  9704. show = "1" >
  9705. <productMenu id="protocol"
  9706. type="0">
  9707. </productMenu>
  9708. <productMenu id="sip"
  9709. type="1" >
  9710. <productMenuType version="1.0.4"
  9711. type="0"
  9712. />
  9713. </productMenu>
  9714. <productMenu id="bluetoothIntercom"
  9715. type="1" >
  9716. <productMenuType version="1.0.4"
  9717. type="0"
  9718. />
  9719. </productMenu>
  9720. <productMenu id="phone"
  9721. type="2" >
  9722. </productMenu>
  9723. <productMenu id="fmradio"
  9724. type="3" >
  9725. </productMenu>
  9726. <productMenu id="deviceSetting"
  9727. type="1"
  9728. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9729. <productMenuURL version="2.3"
  9730. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9731. />
  9732. <productMenuURL version="2.1.1"
  9733. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9734. />
  9735. <productMenuURL version="1.0.4"
  9736. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9737. />
  9738. <productMenuURL version="1.0.2"
  9739. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9740. />
  9741. </productMenu>
  9742. <productMenu id="quickGuide"
  9743. type="1"
  9744. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9745. size="935KB" >
  9746. </productMenu>
  9747. <productMenu id="userGuide"
  9748. type="1"
  9749. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9750. size="2.82MB" >
  9751. </productMenu>
  9752. <productMenu id="connectGuide"
  9753. type="1"
  9754. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9755. size="1.12MB" >
  9756. </productMenu>
  9757. <productID id="5510"
  9758. />
  9759. <productGroupable type="0"
  9760. />
  9761. </product>
  9762. <product id="10U_GT_AIR"
  9763. name="10U GT-Air"
  9764. series="10"
  9765. latestVersion="2.0.4"
  9766. show = "1" >
  9767. <productMenu id="protocol"
  9768. type="0">
  9769. </productMenu>
  9770. <productMenu id="sip"
  9771. type="1" >
  9772. <productMenuType version="1.0.2"
  9773. type="0"
  9774. />
  9775. </productMenu>
  9776. <productMenu id="bluetoothIntercom"
  9777. type="1" >
  9778. <productMenuType version="1.0.2"
  9779. type="0"
  9780. />
  9781. </productMenu>
  9782. <productMenu id="phone"
  9783. type="2" >
  9784. </productMenu>
  9785. <productMenu id="fmradio"
  9786. type="3" >
  9787. </productMenu>
  9788. <productMenu id="deviceSetting"
  9789. type="1"
  9790. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9791. <productMenuURL version="1.3.2"
  9792. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9793. />
  9794. <productMenuURL version="1.0.2"
  9795. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9796. />
  9797. </productMenu>
  9798. <productMenu id="quickGuide"
  9799. type="1"
  9800. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9801. size="685KB" >
  9802. </productMenu>
  9803. <productMenu id="userGuide"
  9804. type="1"
  9805. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9806. size="684KB" >
  9807. </productMenu>
  9808. <productMenu id="connectGuide"
  9809. type="1"
  9810. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9811. size="1.12MB" >
  9812. </productMenu>
  9813. <productID id="5610"
  9814. />
  9815. <productGroupable type="0"
  9816. />
  9817. </product>
  9818. <product id="10U_NEOTEC"
  9819. name="10U Neotec"
  9820. series="10"
  9821. latestVersion="2.0.4"
  9822. show = "1" >
  9823. <productMenu id="protocol"
  9824. type="0">
  9825. </productMenu>
  9826. <productMenu id="sip"
  9827. type="1" >
  9828. <productMenuType version="1.0.2"
  9829. type="0"
  9830. />
  9831. </productMenu>
  9832. <productMenu id="bluetoothIntercom"
  9833. type="1" >
  9834. <productMenuType version="1.0.2"
  9835. type="0"
  9836. />
  9837. </productMenu>
  9838. <productMenu id="phone"
  9839. type="2" >
  9840. </productMenu>
  9841. <productMenu id="fmradio"
  9842. type="3" >
  9843. </productMenu>
  9844. <productMenu id="deviceSetting"
  9845. type="1"
  9846. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9847. <productMenuURL version="1.3.2"
  9848. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9849. />
  9850. <productMenuURL version="1.0.2"
  9851. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9852. />
  9853. </productMenu>
  9854. <productMenu id="quickGuide"
  9855. type="1"
  9856. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9857. size="689KB" >
  9858. </productMenu>
  9859. <productMenu id="userGuide"
  9860. type="1"
  9861. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9862. size="684KB" >
  9863. </productMenu>
  9864. <productMenu id="connectGuide"
  9865. type="1"
  9866. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9867. size="1.12MB" >
  9868. </productMenu>
  9869. <productID id="5611"
  9870. />
  9871. <productGroupable type="0"
  9872. />
  9873. </product>
  9874. <product id="10U_J_CRUISE"
  9875. name="10U J-Cruise"
  9876. series="10"
  9877. latestVersion="2.0.4"
  9878. show = "1" >
  9879. <productMenu id="protocol"
  9880. type="0">
  9881. </productMenu>
  9882. <productMenu id="sip"
  9883. type="1" >
  9884. <productMenuType version="1.0.2"
  9885. type="0"
  9886. />
  9887. </productMenu>
  9888. <productMenu id="bluetoothIntercom"
  9889. type="1" >
  9890. <productMenuType version="1.0.2"
  9891. type="0"
  9892. />
  9893. </productMenu>
  9894. <productMenu id="phone"
  9895. type="2" >
  9896. </productMenu>
  9897. <productMenu id="fmradio"
  9898. type="3" >
  9899. </productMenu>
  9900. <productMenu id="deviceSetting"
  9901. type="1"
  9902. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9903. <productMenuURL version="1.3.2"
  9904. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9905. />
  9906. <productMenuURL version="1.0.2"
  9907. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9908. />
  9909. </productMenu>
  9910. <productMenu id="quickGuide"
  9911. type="1"
  9912. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9913. size="686KB" >
  9914. </productMenu>
  9915. <productMenu id="userGuide"
  9916. type="1"
  9917. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9918. size="684KB" >
  9919. </productMenu>
  9920. <productMenu id="connectGuide"
  9921. type="1"
  9922. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9923. size="1.12MB" >
  9924. </productMenu>
  9925. <productID id="5612"
  9926. />
  9927. <productGroupable type="0"
  9928. />
  9929. </product>
  9930. <product id="10U_C3"
  9931. name="10U C3/C3Pro"
  9932. series="10"
  9933. latestVersion="2.0.4"
  9934. show = "1" >
  9935. <productMenu id="protocol"
  9936. type="0">
  9937. </productMenu>
  9938. <productMenu id="sip"
  9939. type="1" >
  9940. <productMenuType version="1.0.2"
  9941. type="0"
  9942. />
  9943. </productMenu>
  9944. <productMenu id="bluetoothIntercom"
  9945. type="1" >
  9946. <productMenuType version="1.0.2"
  9947. type="0"
  9948. />
  9949. </productMenu>
  9950. <productMenu id="phone"
  9951. type="2" >
  9952. </productMenu>
  9953. <productMenu id="fmradio"
  9954. type="3" >
  9955. </productMenu>
  9956. <productMenu id="deviceSetting"
  9957. type="1"
  9958. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9959. <productMenuURL version="1.3.2"
  9960. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9961. />
  9962. <productMenuURL version="1.0.2"
  9963. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9964. />
  9965. </productMenu>
  9966. <productMenu id="quickGuide"
  9967. type="1"
  9968. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9969. size="199KB" >
  9970. </productMenu>
  9971. <productMenu id="userGuide"
  9972. type="1"
  9973. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9974. size="684KB" >
  9975. </productMenu>
  9976. <productMenu id="connectGuide"
  9977. type="1"
  9978. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9979. size="1.12MB" >
  9980. </productMenu>
  9981. <productID id="5620"
  9982. />
  9983. <productGroupable type="0"
  9984. />
  9985. </product>
  9986. <product id="10U_ARAI"
  9987. name="10U Arai"
  9988. series="10"
  9989. latestVersion="2.0.4"
  9990. show = "1" >
  9991. <productMenu id="protocol"
  9992. type="0">
  9993. </productMenu>
  9994. <productMenu id="sip"
  9995. type="1" >
  9996. <productMenuType version="1.0.2"
  9997. type="0"
  9998. />
  9999. </productMenu>
  10000. <productMenu id="bluetoothIntercom"
  10001. type="1" >
  10002. <productMenuType version="1.0.2"
  10003. type="0"
  10004. />
  10005. </productMenu>
  10006. <productMenu id="phone"
  10007. type="2" >
  10008. </productMenu>
  10009. <productMenu id="fmradio"
  10010. type="3" >
  10011. </productMenu>
  10012. <productMenu id="deviceSetting"
  10013. type="1"
  10014. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10015. <productMenuURL version="1.3.2"
  10016. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10017. />
  10018. <productMenuURL version="1.0.2"
  10019. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10020. />
  10021. </productMenu>
  10022. <productMenu id="quickGuide"
  10023. type="1"
  10024. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  10025. size="689KB" >
  10026. </productMenu>
  10027. <productMenu id="userGuide"
  10028. type="1"
  10029. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10030. size="684KB" >
  10031. </productMenu>
  10032. <productMenu id="connectGuide"
  10033. type="1"
  10034. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10035. size="1.12MB" >
  10036. </productMenu>
  10037. <productID id="5621"
  10038. />
  10039. <productGroupable type="0"
  10040. />
  10041. </product>
  10042. <product id="10Upad"
  10043. name="10Upad"
  10044. series="10"
  10045. latestVersion="2.0.3"
  10046. show = "1" >
  10047. <productMenu id="protocol"
  10048. type="0">
  10049. </productMenu>
  10050. <productMenu id="sip"
  10051. type="1" >
  10052. </productMenu>
  10053. <productMenu id="bluetoothIntercom"
  10054. type="1" >
  10055. </productMenu>
  10056. <productMenu id="phone"
  10057. type="2" >
  10058. </productMenu>
  10059. <productMenu id="fmradio"
  10060. type="3" >
  10061. </productMenu>
  10062. <productMenu id="deviceSetting"
  10063. type="1"
  10064. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  10065. <productMenuURL version="1.0.3"
  10066. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  10067. />
  10068. </productMenu>
  10069. <productMenu id="quickGuide"
  10070. type="1"
  10071. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  10072. size="615KB" >
  10073. </productMenu>
  10074. <productMenu id="userGuide"
  10075. type="1"
  10076. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  10077. size="0.99MB" >
  10078. </productMenu>
  10079. <productMenu id="connectGuide"
  10080. type="1"
  10081. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  10082. size="1.12MB" >
  10083. </productMenu>
  10084. <productID id="6210"
  10085. />
  10086. <productGroupable type="0"
  10087. />
  10088. </product>
  10089. <product id="5S"
  10090. name="5S"
  10091. series="5"
  10092. latestVersion="2.3.1"
  10093. show = "1" >
  10094. <productMenu id="protocol"
  10095. type="3" >
  10096. </productMenu>
  10097. <productMenu id="sip"
  10098. type="1" >
  10099. </productMenu>
  10100. <productMenu id="bluetoothIntercom"
  10101. type="1" >
  10102. </productMenu>
  10103. <productMenu id="phone"
  10104. type="1" >
  10105. </productMenu>
  10106. <productMenu id="fmradio"
  10107. type="0" >
  10108. </productMenu>
  10109. <productMenu id="deviceSetting"
  10110. type="1"
  10111. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10112. </productMenu>
  10113. <productMenu id="quickGuide"
  10114. type="0"
  10115. url=""
  10116. size="934KB" >
  10117. </productMenu>
  10118. <productMenu id="userGuide"
  10119. type="1"
  10120. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  10121. size="1.14MB" >
  10122. </productMenu>
  10123. <productMenu id="connectGuide"
  10124. type="1"
  10125. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  10126. size="1.12MB" >
  10127. </productMenu>
  10128. <productID id="5590"
  10129. />
  10130. <productGroupable type="0"
  10131. />
  10132. </product>
  10133. <product id="5S"
  10134. name="5S"
  10135. series="5"
  10136. latestVersion="1.2"
  10137. show = "-1" >
  10138. <productMenu id="protocol"
  10139. type="0">
  10140. </productMenu>
  10141. <productMenu id="sip"
  10142. type="1" >
  10143. </productMenu>
  10144. <productMenu id="bluetoothIntercom"
  10145. type="1" >
  10146. </productMenu>
  10147. <productMenu id="phone"
  10148. type="2" >
  10149. </productMenu>
  10150. <productMenu id="fmradio"
  10151. type="3" >
  10152. </productMenu>
  10153. <productMenu id="deviceSetting"
  10154. type="1"
  10155. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  10156. </productMenu>
  10157. <productMenu id="quickGuide"
  10158. type="0"
  10159. url=""
  10160. size="970KB" >
  10161. </productMenu>
  10162. <productMenu id="userGuide"
  10163. type="1"
  10164. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  10165. size="1.26MB" >
  10166. </productMenu>
  10167. <productID id="5534"
  10168. />
  10169. <productGroupable type="0"
  10170. />
  10171. </product>
  10172. <product id="5S"
  10173. name="5S"
  10174. series="5"
  10175. latestVersion="3.0.1"
  10176. show = "-1" >
  10177. <productMenu id="protocol"
  10178. type="0">
  10179. </productMenu>
  10180. <productMenu id="sip"
  10181. type="1" >
  10182. </productMenu>
  10183. <productMenu id="bluetoothIntercom"
  10184. type="1" >
  10185. </productMenu>
  10186. <productMenu id="phone"
  10187. type="2" >
  10188. </productMenu>
  10189. <productMenu id="fmradio"
  10190. type="0" >
  10191. </productMenu>
  10192. <productMenu id="deviceSetting"
  10193. type="1"
  10194. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  10195. </productMenu>
  10196. <productMenu id="quickGuide"
  10197. type="0"
  10198. url=""
  10199. size="970KB" >
  10200. </productMenu>
  10201. <productMenu id="userGuide"
  10202. type="1"
  10203. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  10204. size="1.26MB" >
  10205. </productMenu>
  10206. <productID id="5538"
  10207. />
  10208. <productGroupable type="0"
  10209. />
  10210. </product>
  10211. <product id="3SPLUS"
  10212. name="3S PLUS"
  10213. series="3"
  10214. latestVersion="2.2"
  10215. show = "1" >
  10216. <productMenu id="protocol"
  10217. type="3" >
  10218. </productMenu>
  10219. <productMenu id="sip"
  10220. type="1" >
  10221. </productMenu>
  10222. <productMenu id="bluetoothIntercom"
  10223. type="1" >
  10224. </productMenu>
  10225. <productMenu id="deviceSetting"
  10226. type="1"
  10227. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  10228. <productMenuURL version="2.2.1"
  10229. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  10230. />
  10231. </productMenu>
  10232. <productMenu id="quickGuide"
  10233. type="1"
  10234. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10235. size="344KB" >
  10236. </productMenu>
  10237. <productMenu id="userGuide"
  10238. type="1"
  10239. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  10240. size="1.14MB" >
  10241. </productMenu>
  10242. <productMenu id="connectGuide"
  10243. type="1"
  10244. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  10245. size="1.12MB" >
  10246. </productMenu>
  10247. <productID id="4023"
  10248. />
  10249. <productGroupable type="0"
  10250. />
  10251. </product>
  10252. <product id="3SPLUS"
  10253. name="3S PLUS"
  10254. series="3"
  10255. latestVersion="1.1"
  10256. show = "-1" >
  10257. <productMenu id="protocol"
  10258. type="0">
  10259. </productMenu>
  10260. <productMenu id="sip"
  10261. type="1" >
  10262. </productMenu>
  10263. <productMenu id="bluetoothIntercom"
  10264. type="1" >
  10265. </productMenu>
  10266. <productMenu id="deviceSetting"
  10267. type="1"
  10268. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  10269. </productMenu>
  10270. <productMenu id="quickGuide"
  10271. type="1"
  10272. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10273. size="842KB" >
  10274. </productMenu>
  10275. <productMenu id="userGuide"
  10276. type="1"
  10277. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  10278. size="1.02MB" >
  10279. </productMenu>
  10280. <productID id="6320"
  10281. />
  10282. <productGroupable type="0"
  10283. />
  10284. </product>
  10285. <product id="AConnect"
  10286. name="Alpinestars A-Connect"
  10287. series="60"
  10288. latestVersion="1.0.2"
  10289. latestVersionMesh="0.19"
  10290. latestVersionVoicePrompt="1.6"
  10291. show = "-1" >
  10292. <productMenu id="protocol"
  10293. type="2" >
  10294. </productMenu>
  10295. <productMenu id="ota"
  10296. type="2" >
  10297. <otaLanguages>
  10298. <otaLanguage
  10299. id="0"
  10300. name="English"
  10301. package="0"
  10302. />
  10303. <otaLanguage
  10304. id="0"
  10305. name="French"
  10306. package="1"
  10307. />
  10308. <otaLanguage
  10309. id="0"
  10310. name="Spanish"
  10311. package="2"
  10312. />
  10313. <otaLanguage
  10314. id="0"
  10315. name="Italian"
  10316. package="3"
  10317. />
  10318. <otaLanguage
  10319. id="0"
  10320. name="German"
  10321. package="4"
  10322. />
  10323. <otaLanguage
  10324. id="0"
  10325. name="Dutch"
  10326. package="5"
  10327. />
  10328. <otaLanguage
  10329. id="0"
  10330. name="Russian"
  10331. package="6"
  10332. />
  10333. <otaLanguage
  10334. id="0"
  10335. name="Chinese"
  10336. package="7"
  10337. />
  10338. <otaLanguage
  10339. id="0"
  10340. name="Korean"
  10341. package="8"
  10342. />
  10343. <otaLanguage
  10344. id="0"
  10345. name="Japanese"
  10346. package="9"
  10347. />
  10348. <otaLanguage
  10349. id="0"
  10350. name="Finnish"
  10351. package="10"
  10352. />
  10353. <otaLanguage
  10354. id="0"
  10355. name="Polish"
  10356. package="11"
  10357. />
  10358. </otaLanguages>
  10359. <otaPackages>
  10360. <package
  10361. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  10362. size="5183988"
  10363. />
  10364. <package
  10365. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  10366. size="5183988"
  10367. />
  10368. <package
  10369. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  10370. size="5183988"
  10371. />
  10372. <package
  10373. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  10374. size="5183988"
  10375. />
  10376. <package
  10377. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  10378. size="5183988"
  10379. />
  10380. <package
  10381. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  10382. size="5183988"
  10383. />
  10384. <package
  10385. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  10386. size="5183988"
  10387. />
  10388. <package
  10389. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  10390. size="5183988"
  10391. />
  10392. <package
  10393. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  10394. size="5183988"
  10395. />
  10396. <package
  10397. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10398. size="5183988"
  10399. />
  10400. <package
  10401. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10402. size="5183988"
  10403. />
  10404. <package
  10405. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10406. size="5183988"
  10407. />
  10408. </otaPackages>
  10409. </productMenu>
  10410. <productMenu id="sip"
  10411. type="1" >
  10412. </productMenu>
  10413. <productMenu id="illusion"
  10414. type="0" >
  10415. </productMenu>
  10416. <productMenu id="meshIntercom+"
  10417. type="3"
  10418. url="2" >
  10419. </productMenu>
  10420. <productMenu id="waveIntercom"
  10421. type="1" >
  10422. </productMenu>
  10423. <productMenu id="bluetoothIntercom"
  10424. type="1"
  10425. url="2" >
  10426. </productMenu>
  10427. <productMenu id="bluetoothIntercomGrouping"
  10428. type="0" >
  10429. </productMenu>
  10430. <productMenu id="fmradio"
  10431. type="1"
  10432. url="1" >
  10433. </productMenu>
  10434. <productMenu id="phone"
  10435. type="1" >
  10436. </productMenu>
  10437. <productMenu id="music"
  10438. type="1" >
  10439. </productMenu>
  10440. <productMenu id="musicSharing"
  10441. type="0" >
  10442. </productMenu>
  10443. <productMenu id="deviceSetting"
  10444. type="1"
  10445. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  10446. </productMenu>
  10447. <productMenu id="quickGuide"
  10448. type="0"
  10449. url=""
  10450. size="1.12MB" >
  10451. </productMenu>
  10452. <productMenu id="userGuide"
  10453. type="1"
  10454. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  10455. size="2.0MB" >
  10456. </productMenu>
  10457. <productMenu id="videoGuide"
  10458. type="0"
  10459. url=""
  10460. size="3.41MB" >
  10461. </productMenu>
  10462. <productMenu id="volume"
  10463. type="16" >
  10464. </productMenu>
  10465. <productMenu id="volume+"
  10466. type="2"
  10467. url="0x6004" >
  10468. </productMenu>
  10469. <productMenu id="soundMode"
  10470. type="0" >
  10471. </productMenu>
  10472. <productMenu id="battery"
  10473. type="1" >
  10474. </productMenu>
  10475. <productID id="6A82"
  10476. />
  10477. <productGroupable type="0"
  10478. />
  10479. </product>
  10480. <product id="iCon"
  10481. name="iCon"
  10482. series="50"
  10483. latestVersion="1.2"
  10484. show = "0" >
  10485. <productMenu id="protocol"
  10486. type="2" >
  10487. </productMenu>
  10488. <productMenu id="alexa"
  10489. type="0" >
  10490. </productMenu>
  10491. <productMenu id="wa"
  10492. type="0" >
  10493. </productMenu>
  10494. <productMenu id="sip"
  10495. type="1" >
  10496. </productMenu>
  10497. <productMenu id="led"
  10498. type="3" >
  10499. </productMenu>
  10500. <productMenu id="meshIntercom"
  10501. type="20" >
  10502. </productMenu>
  10503. <productMenu id="meshIntercom+"
  10504. type="3"
  10505. url="0" >
  10506. <productMenuType version="1.0.9"
  10507. type="2"
  10508. />
  10509. </productMenu>
  10510. <productMenu id="bluetoothIntercom"
  10511. type="1" >
  10512. </productMenu>
  10513. <productMenu id="phone"
  10514. type="1" >
  10515. </productMenu>
  10516. <productMenu id="music"
  10517. type="1" >
  10518. </productMenu>
  10519. <productMenu id="fmradio"
  10520. type="1" >
  10521. </productMenu>
  10522. <productMenu id="deviceSetting"
  10523. type="1"
  10524. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10525. <productMenuURL version="1.0.9"
  10526. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10527. />
  10528. </productMenu>
  10529. <productMenu id="quickGuide"
  10530. type="1"
  10531. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10532. size="344KB" >
  10533. </productMenu>
  10534. <productMenu id="userGuide"
  10535. type="1"
  10536. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10537. size="3.41MB" >
  10538. </productMenu>
  10539. <productMenu id="volume"
  10540. type="11" >
  10541. </productMenu>
  10542. <productMenu id="battery"
  10543. type="1" >
  10544. </productMenu>
  10545. <productID id="3900"
  10546. />
  10547. <productGroupable type="0"
  10548. />
  10549. </product>
  10550. <product id="ICONHelmLinkSL"
  10551. name="ICON HelmLink SL"
  10552. series="50"
  10553. latestVersion="1.0"
  10554. latestVersionVoicePrompt="1.6"
  10555. show = "-1" >
  10556. <productMenu id="protocol"
  10557. type="2" >
  10558. </productMenu>
  10559. <productMenu id="alexa"
  10560. type="0" >
  10561. </productMenu>
  10562. <productMenu id="ota"
  10563. type="2" >
  10564. <otaPackages>
  10565. <package
  10566. url="https://api.sena.com/support/OTA/Motorcycles/HELMLINKSL/ICON_HELMLINK_SL-v1.0-build1.img"
  10567. size="2945812"
  10568. />
  10569. </otaPackages>
  10570. </productMenu>
  10571. <productMenu id="wa"
  10572. type="0" >
  10573. </productMenu>
  10574. <productMenu id="meshIntercom"
  10575. type="30" >
  10576. </productMenu>
  10577. <productMenu id="meshIntercom+"
  10578. type="3"
  10579. url="2" >
  10580. </productMenu>
  10581. <productMenu id="waveIntercom"
  10582. type="1" >
  10583. </productMenu>
  10584. <productMenu id="phone"
  10585. type="1" >
  10586. </productMenu>
  10587. <productMenu id="music"
  10588. type="1" >
  10589. </productMenu>
  10590. <productMenu id="musicSharing"
  10591. type="0" >
  10592. </productMenu>
  10593. <productMenu id="deviceSetting"
  10594. type="1"
  10595. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10596. </productMenu>
  10597. <productMenu id="quickGuide"
  10598. type="0"
  10599. url=""
  10600. size="1.12MB" >
  10601. </productMenu>
  10602. <productMenu id="userGuide"
  10603. type="1"
  10604. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_HelmLink_SL_1.0.0_en_260604.pdf"
  10605. size="2.0MB" >
  10606. </productMenu>
  10607. <productMenu id="volume"
  10608. type="12" >
  10609. </productMenu>
  10610. <productMenu id="battery"
  10611. type="1" >
  10612. </productMenu>
  10613. <productID id="6842"
  10614. />
  10615. <productGroupable type="0"
  10616. />
  10617. </product>
  10618. <product id="HD50S"
  10619. name="H-D Audio 50S"
  10620. series="50"
  10621. latestVersion="1.0.1"
  10622. show = "-1" >
  10623. <productMenu id="protocol"
  10624. type="2" >
  10625. </productMenu>
  10626. <productMenu id="alexa"
  10627. type="0" >
  10628. </productMenu>
  10629. <productMenu id="ota"
  10630. type="0"
  10631. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10632. size="1150234" >
  10633. </productMenu>
  10634. <productMenu id="wa"
  10635. type="1" >
  10636. </productMenu>
  10637. <productMenu id="sip"
  10638. type="1" >
  10639. </productMenu>
  10640. <productMenu id="meshIntercom"
  10641. type="20" >
  10642. </productMenu>
  10643. <productMenu id="meshIntercom+"
  10644. type="3"
  10645. url="0" >
  10646. <productMenuType version="1.0.9"
  10647. type="2"
  10648. />
  10649. </productMenu>
  10650. <productMenu id="bluetoothIntercom"
  10651. type="1" >
  10652. </productMenu>
  10653. <productMenu id="phone"
  10654. type="1" >
  10655. </productMenu>
  10656. <productMenu id="music"
  10657. type="1" >
  10658. </productMenu>
  10659. <productMenu id="fmradio"
  10660. type="1" >
  10661. </productMenu>
  10662. <productMenu id="deviceSetting"
  10663. type="1"
  10664. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10665. <productMenuURL version="1.0.9"
  10666. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10667. />
  10668. </productMenu>
  10669. <productMenu id="quickGuide"
  10670. type="1"
  10671. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10672. size="934KB" >
  10673. </productMenu>
  10674. <productMenu id="userGuide"
  10675. type="1"
  10676. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10677. size="1.14MB" >
  10678. </productMenu>
  10679. <productMenu id="volume"
  10680. type="11" >
  10681. </productMenu>
  10682. <productMenu id="battery"
  10683. type="1" >
  10684. </productMenu>
  10685. <productID id="3156"
  10686. />
  10687. <productGroupable type="0"
  10688. />
  10689. </product>
  10690. <product id="HD50S"
  10691. name="H-D Audio 50S"
  10692. series="50"
  10693. latestVersion="2.0.2"
  10694. show = "0" >
  10695. <productMenu id="protocol"
  10696. type="2" >
  10697. </productMenu>
  10698. <productMenu id="alexa"
  10699. type="0" >
  10700. </productMenu>
  10701. <productMenu id="ota"
  10702. type="0"
  10703. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10704. size="1150234" >
  10705. </productMenu>
  10706. <productMenu id="wa"
  10707. type="1" >
  10708. </productMenu>
  10709. <productMenu id="sip"
  10710. type="1" >
  10711. </productMenu>
  10712. <productMenu id="meshIntercom"
  10713. type="20" >
  10714. </productMenu>
  10715. <productMenu id="meshIntercom+"
  10716. type="3"
  10717. url="0" >
  10718. <productMenuType version="2.0.9"
  10719. type="2"
  10720. />
  10721. </productMenu>
  10722. <productMenu id="bluetoothIntercom"
  10723. type="1" >
  10724. </productMenu>
  10725. <productMenu id="phone"
  10726. type="1" >
  10727. </productMenu>
  10728. <productMenu id="music"
  10729. type="1" >
  10730. </productMenu>
  10731. <productMenu id="fmradio"
  10732. type="1" >
  10733. </productMenu>
  10734. <productMenu id="deviceSetting"
  10735. type="1"
  10736. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10737. <productMenuURL version="2.0.9"
  10738. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10739. />
  10740. </productMenu>
  10741. <productMenu id="quickGuide"
  10742. type="1"
  10743. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10744. size="934KB" >
  10745. </productMenu>
  10746. <productMenu id="userGuide"
  10747. type="1"
  10748. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10749. size="1.14MB" >
  10750. </productMenu>
  10751. <productMenu id="volume"
  10752. type="11" >
  10753. </productMenu>
  10754. <productMenu id="battery"
  10755. type="1" >
  10756. </productMenu>
  10757. <productID id="3213"
  10758. />
  10759. <productGroupable type="0"
  10760. />
  10761. </product>
  10762. <product id="HD50C"
  10763. name="H-D Audio 50C"
  10764. series="50"
  10765. latestVersion="1.0.1"
  10766. show = "0" >
  10767. <productMenu id="protocol"
  10768. type="2" >
  10769. </productMenu>
  10770. <productMenu id="ota"
  10771. type="0" >
  10772. </productMenu>
  10773. <productMenu id="wa"
  10774. type="1" >
  10775. </productMenu>
  10776. <productMenu id="sip"
  10777. type="1" >
  10778. </productMenu>
  10779. <productMenu id="meshIntercom"
  10780. type="20" >
  10781. </productMenu>
  10782. <productMenu id="meshIntercom+"
  10783. type="3"
  10784. url="0" >
  10785. <productMenuType version="1.0.9"
  10786. type="2"
  10787. />
  10788. </productMenu>
  10789. <productMenu id="bluetoothIntercom"
  10790. type="1" >
  10791. </productMenu>
  10792. <productMenu id="phone"
  10793. type="1" >
  10794. </productMenu>
  10795. <productMenu id="music"
  10796. type="1" >
  10797. </productMenu>
  10798. <productMenu id="fmradio"
  10799. type="1" >
  10800. </productMenu>
  10801. <productMenu id="deviceSetting"
  10802. type="1"
  10803. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10804. <productMenuURL version="1.0.9"
  10805. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10806. />
  10807. </productMenu>
  10808. <productMenu id="quickGuide"
  10809. type="1"
  10810. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10811. size="344KB" >
  10812. </productMenu>
  10813. <productMenu id="userGuide"
  10814. type="1"
  10815. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10816. size="3.41MB" >
  10817. </productMenu>
  10818. <productMenu id="volume"
  10819. type="11" >
  10820. </productMenu>
  10821. <productMenu id="battery"
  10822. type="1" >
  10823. </productMenu>
  10824. <productID id="3240"
  10825. />
  10826. <productGroupable type="0"
  10827. />
  10828. </product>
  10829. <product id="HD50S"
  10830. name="FURY N04"
  10831. series="Helmet"
  10832. latestVersion="1.0"
  10833. show = "0" >
  10834. <productMenu id="protocol"
  10835. type="2" >
  10836. </productMenu>
  10837. <productMenu id="alexa"
  10838. type="0" >
  10839. </productMenu>
  10840. <productMenu id="ota"
  10841. type="0" >
  10842. </productMenu>
  10843. <productMenu id="wa"
  10844. type="0" >
  10845. </productMenu>
  10846. <productMenu id="meshIntercom"
  10847. type="20" >
  10848. </productMenu>
  10849. <productMenu id="meshIntercom+"
  10850. type="3"
  10851. url="0" >
  10852. <productMenuType version="1.0.9"
  10853. type="2"
  10854. />
  10855. </productMenu>
  10856. <productMenu id="phone"
  10857. type="1" >
  10858. </productMenu>
  10859. <productMenu id="music"
  10860. type="1" >
  10861. </productMenu>
  10862. <productMenu id="fmradio"
  10863. type="1" >
  10864. </productMenu>
  10865. <productMenu id="deviceSetting"
  10866. type="1"
  10867. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10868. <productMenuURL version="1.0.9"
  10869. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10870. />
  10871. </productMenu>
  10872. <productMenu id="quickGuide"
  10873. type="1"
  10874. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10875. size="1.12MB" >
  10876. </productMenu>
  10877. <productMenu id="userGuide"
  10878. type="1"
  10879. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10880. size="2.0MB" >
  10881. </productMenu>
  10882. <productMenu id="volume"
  10883. type="13" >
  10884. </productMenu>
  10885. <productMenu id="battery"
  10886. type="1" >
  10887. </productMenu>
  10888. <productID id="5553"
  10889. />
  10890. <productGroupable type="0"
  10891. />
  10892. </product>
  10893. <product id="XCOM3Pro"
  10894. name="X-COM3 Pro"
  10895. series="50"
  10896. latestVersion="1.1"
  10897. show = "0" >
  10898. <productMenu id="protocol"
  10899. type="2" >
  10900. </productMenu>
  10901. <productMenu id="alexa"
  10902. type="0" >
  10903. </productMenu>
  10904. <productMenu id="ota"
  10905. type="0" >
  10906. </productMenu>
  10907. <productMenu id="wa"
  10908. type="0" >
  10909. </productMenu>
  10910. <productMenu id="sip"
  10911. type="1" >
  10912. </productMenu>
  10913. <productMenu id="meshIntercom"
  10914. type="30" >
  10915. </productMenu>
  10916. <productMenu id="meshIntercom+"
  10917. type="3"
  10918. url="2" >
  10919. <productMenuType version="1.1"
  10920. type="2"
  10921. />
  10922. </productMenu>
  10923. <productMenu id="waveIntercom"
  10924. type="1" >
  10925. <productMenuType version="1.1"
  10926. type="0"
  10927. />
  10928. </productMenu>
  10929. <productMenu id="bluetoothIntercom"
  10930. type="1" >
  10931. </productMenu>
  10932. <productMenu id="phone"
  10933. type="1" >
  10934. </productMenu>
  10935. <productMenu id="music"
  10936. type="1" >
  10937. </productMenu>
  10938. <productMenu id="fmradio"
  10939. type="1" >
  10940. </productMenu>
  10941. <productMenu id="deviceSetting"
  10942. type="1"
  10943. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10944. <productMenuURL version="1.1"
  10945. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10946. />
  10947. </productMenu>
  10948. <productMenu id="quickGuide"
  10949. type="0"
  10950. url=""
  10951. size="344KB" >
  10952. </productMenu>
  10953. <productMenu id="userGuide"
  10954. type="1"
  10955. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10956. size="3.41MB" >
  10957. </productMenu>
  10958. <productMenu id="volume"
  10959. type="11" >
  10960. </productMenu>
  10961. <productMenu id="battery"
  10962. type="1" >
  10963. </productMenu>
  10964. <productID id="321A"
  10965. />
  10966. <productGroupable type="0"
  10967. />
  10968. </product>
  10969. <product id="XCOM3"
  10970. name="X-COM3"
  10971. series="20"
  10972. latestVersion="1.0"
  10973. show = "0" >
  10974. <productMenu id="protocol"
  10975. type="2" >
  10976. </productMenu>
  10977. <productMenu id="sip"
  10978. type="1" >
  10979. </productMenu>
  10980. <productMenu id="bluetoothIntercom"
  10981. type="1" >
  10982. </productMenu>
  10983. <productMenu id="phone"
  10984. type="1" >
  10985. </productMenu>
  10986. <productMenu id="music"
  10987. type="1" >
  10988. </productMenu>
  10989. <productMenu id="fmradio"
  10990. type="1" >
  10991. </productMenu>
  10992. <productMenu id="deviceSetting"
  10993. type="1"
  10994. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10995. </productMenu>
  10996. <productMenu id="quickGuide"
  10997. type="0"
  10998. url=""
  10999. size="934KB" >
  11000. </productMenu>
  11001. <productMenu id="userGuide"
  11002. type="1"
  11003. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  11004. size="1.14MB" >
  11005. </productMenu>
  11006. <productMenu id="volume"
  11007. type="15" >
  11008. </productMenu>
  11009. <productID id="3410"
  11010. />
  11011. <productGroupable type="0"
  11012. />
  11013. </product>
  11014. <product id="X-COM2"
  11015. name="X-COM2"
  11016. series="20"
  11017. latestVersion="1.0.5"
  11018. show = "0" >
  11019. <productMenu id="protocol"
  11020. type="0">
  11021. </productMenu>
  11022. <productMenu id="sip"
  11023. type="1" >
  11024. </productMenu>
  11025. <productMenu id="bluetoothIntercom"
  11026. type="1" >
  11027. </productMenu>
  11028. <productMenu id="intercomSetting"
  11029. type="1" >
  11030. </productMenu>
  11031. <productMenu id="phone"
  11032. type="2" >
  11033. </productMenu>
  11034. <productMenu id="fmradio"
  11035. type="3" >
  11036. </productMenu>
  11037. <productMenu id="deviceSetting"
  11038. type="1"
  11039. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  11040. </productMenu>
  11041. <productMenu id="quickGuide"
  11042. type="1"
  11043. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  11044. size="796KB" >
  11045. </productMenu>
  11046. <productMenu id="userGuide"
  11047. type="1"
  11048. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  11049. size="1.90MB" >
  11050. </productMenu>
  11051. <productID id="2030"
  11052. />
  11053. <productGroupable type="1"
  11054. />
  11055. </product>
  11056. <product id="AVAABC"
  11057. name="AVA ABC"
  11058. series="SPIDER"
  11059. latestVersion="1.1"
  11060. show = "0" >
  11061. <productMenu id="protocol"
  11062. type="2" >
  11063. </productMenu>
  11064. <productMenu id="alexa"
  11065. type="0" >
  11066. </productMenu>
  11067. <productMenu id="ota"
  11068. type="0" >
  11069. <productMenuType version="1.0"
  11070. type="0"
  11071. />
  11072. <otaPackages>
  11073. <package
  11074. url="https://api.sena.com/support/OTA/"
  11075. size="2945812"
  11076. />
  11077. </otaPackages>
  11078. </productMenu>
  11079. <productMenu id="wa"
  11080. type="0" >
  11081. </productMenu>
  11082. <productMenu id="meshIntercom"
  11083. type="30" >
  11084. <productMenuType version="1.0"
  11085. type="20"
  11086. />
  11087. </productMenu>
  11088. <productMenu id="meshIntercom+"
  11089. type="3"
  11090. url="2" >
  11091. <productMenuType version="1.0"
  11092. type="2"
  11093. />
  11094. <productMenuURL version="1.0"
  11095. url="0"
  11096. />
  11097. </productMenu>
  11098. <productMenu id="waveIntercom"
  11099. type="1" >
  11100. <productMenuType version="1.0"
  11101. type="0"
  11102. />
  11103. </productMenu>
  11104. <productMenu id="phone"
  11105. type="1" >
  11106. </productMenu>
  11107. <productMenu id="music"
  11108. type="1" >
  11109. </productMenu>
  11110. <productMenu id="musicSharing"
  11111. type="0" >
  11112. </productMenu>
  11113. <productMenu id="deviceSetting"
  11114. type="1"
  11115. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  11116. <productMenuURL version="1.0"
  11117. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  11118. />
  11119. </productMenu>
  11120. <productMenu id="quickGuide"
  11121. type="1"
  11122. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  11123. size="1.12MB" >
  11124. </productMenu>
  11125. <productMenu id="userGuide"
  11126. type="1"
  11127. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  11128. size="2.0MB" >
  11129. </productMenu>
  11130. <productMenu id="volume"
  11131. type="12" >
  11132. </productMenu>
  11133. <productMenu id="battery"
  11134. type="1" >
  11135. </productMenu>
  11136. <productID id="6808"
  11137. />
  11138. <productGroupable type="0"
  11139. />
  11140. </product>
  11141. <product id="ADVANCEProCOM2"
  11142. name="ADVANCE ProCOM 2"
  11143. series="Helmet"
  11144. latestVersion="0.5"
  11145. latestVersionVoicePrompt="0.3"
  11146. show = "-1" >
  11147. <productMenu id="protocol"
  11148. type="2" >
  11149. </productMenu>
  11150. <productMenu id="ota"
  11151. type="2" >
  11152. <otaLanguages>
  11153. <otaLanguage
  11154. id="0"
  11155. name="English"
  11156. package="0"
  11157. />
  11158. <otaLanguage
  11159. id="0"
  11160. name="French"
  11161. package="1"
  11162. />
  11163. <otaLanguage
  11164. id="0"
  11165. name="Spanish"
  11166. package="2"
  11167. />
  11168. <otaLanguage
  11169. id="0"
  11170. name="Italian"
  11171. package="3"
  11172. />
  11173. <otaLanguage
  11174. id="0"
  11175. name="German"
  11176. package="4"
  11177. />
  11178. <otaLanguage
  11179. id="0"
  11180. name="Dutch"
  11181. package="5"
  11182. />
  11183. <otaLanguage
  11184. id="0"
  11185. name="Russian"
  11186. package="6"
  11187. />
  11188. <otaLanguage
  11189. id="0"
  11190. name="Chinese"
  11191. package="7"
  11192. />
  11193. <otaLanguage
  11194. id="0"
  11195. name="Korean"
  11196. package="8"
  11197. />
  11198. <otaLanguage
  11199. id="0"
  11200. name="Japanese"
  11201. package="9"
  11202. />
  11203. <otaLanguage
  11204. id="0"
  11205. name="Finnish"
  11206. package="10"
  11207. />
  11208. <otaLanguage
  11209. id="0"
  11210. name="Polish"
  11211. package="11"
  11212. />
  11213. </otaLanguages>
  11214. <otaPackages>
  11215. <package
  11216. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  11217. size="5183988"
  11218. />
  11219. <package
  11220. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  11221. size="5183988"
  11222. />
  11223. <package
  11224. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  11225. size="5183988"
  11226. />
  11227. <package
  11228. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  11229. size="5183988"
  11230. />
  11231. <package
  11232. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  11233. size="5183988"
  11234. />
  11235. <package
  11236. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  11237. size="5183988"
  11238. />
  11239. <package
  11240. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  11241. size="5183988"
  11242. />
  11243. <package
  11244. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  11245. size="5183988"
  11246. />
  11247. <package
  11248. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  11249. size="5183988"
  11250. />
  11251. <package
  11252. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  11253. size="5183988"
  11254. />
  11255. <package
  11256. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  11257. size="5183988"
  11258. />
  11259. <package
  11260. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  11261. size="5183988"
  11262. />
  11263. </otaPackages>
  11264. </productMenu>
  11265. <productMenu id="wa"
  11266. type="0" >
  11267. </productMenu>
  11268. <productMenu id="meshIntercom"
  11269. type="30" >
  11270. </productMenu>
  11271. <productMenu id="meshIntercom+"
  11272. type="3"
  11273. url="2" >
  11274. </productMenu>
  11275. <productMenu id="waveIntercom"
  11276. type="1" >
  11277. </productMenu>
  11278. <productMenu id="fmradio"
  11279. type="1" >
  11280. </productMenu>
  11281. <productMenu id="phone"
  11282. type="0" >
  11283. </productMenu>
  11284. <productMenu id="music"
  11285. type="1" >
  11286. </productMenu>
  11287. <productMenu id="musicSharing"
  11288. type="0" >
  11289. </productMenu>
  11290. <productMenu id="deviceSetting"
  11291. type="1"
  11292. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  11293. </productMenu>
  11294. <productMenu id="quickGuide"
  11295. type="0"
  11296. url=""
  11297. size="1.12MB" >
  11298. </productMenu>
  11299. <productMenu id="userGuide"
  11300. type="1"
  11301. url=""
  11302. size="2.0MB" >
  11303. </productMenu>
  11304. <productMenu id="videoGuide"
  11305. type="0"
  11306. url=""
  11307. size="3.41MB" >
  11308. </productMenu>
  11309. <productMenu id="connectGuide"
  11310. type="1"
  11311. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  11312. size="1.12MB" >
  11313. </productMenu>
  11314. <productMenu id="volume"
  11315. type="16" >
  11316. </productMenu>
  11317. <productMenu id="battery"
  11318. type="1" >
  11319. </productMenu>
  11320. <productID id="6A85"
  11321. />
  11322. <productGroupable type="0"
  11323. />
  11324. </product>
  11325. <product id="TRIUMPH60X"
  11326. name="TRIUMPH 60X"
  11327. series="60"
  11328. latestVersion="1.0"
  11329. latestVersionMesh="0.19"
  11330. latestVersionVoicePrompt="1.7"
  11331. show = "-1" >
  11332. <productMenu id="protocol"
  11333. type="2" >
  11334. </productMenu>
  11335. <productMenu id="ota"
  11336. type="0" >
  11337. <otaLanguages>
  11338. <otaLanguage
  11339. id="0"
  11340. name="English"
  11341. package="0"
  11342. />
  11343. <otaLanguage
  11344. id="0"
  11345. name="French"
  11346. package="1"
  11347. />
  11348. <otaLanguage
  11349. id="0"
  11350. name="Spanish"
  11351. package="2"
  11352. />
  11353. <otaLanguage
  11354. id="0"
  11355. name="Italian"
  11356. package="3"
  11357. />
  11358. <otaLanguage
  11359. id="0"
  11360. name="German"
  11361. package="4"
  11362. />
  11363. <otaLanguage
  11364. id="0"
  11365. name="Dutch"
  11366. package="5"
  11367. />
  11368. <otaLanguage
  11369. id="0"
  11370. name="Russian"
  11371. package="6"
  11372. />
  11373. <otaLanguage
  11374. id="0"
  11375. name="Chinese"
  11376. package="7"
  11377. />
  11378. <otaLanguage
  11379. id="0"
  11380. name="Korean"
  11381. package="8"
  11382. />
  11383. <otaLanguage
  11384. id="0"
  11385. name="Japanese"
  11386. package="9"
  11387. />
  11388. <otaLanguage
  11389. id="0"
  11390. name="Finnish"
  11391. package="10"
  11392. />
  11393. <otaLanguage
  11394. id="0"
  11395. name="Polish"
  11396. package="11"
  11397. />
  11398. </otaLanguages>
  11399. <otaPackages>
  11400. <package
  11401. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5.img"
  11402. size="5183988"
  11403. />
  11404. <package
  11405. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fr-FR.img"
  11406. size="5183988"
  11407. />
  11408. <package
  11409. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-es-ES.img"
  11410. size="5183988"
  11411. />
  11412. <package
  11413. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-it-IT.img"
  11414. size="5183988"
  11415. />
  11416. <package
  11417. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-de-DE.img"
  11418. size="5183988"
  11419. />
  11420. <package
  11421. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-nl-NL.img"
  11422. size="5183988"
  11423. />
  11424. <package
  11425. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ru-RU.img"
  11426. size="5183988"
  11427. />
  11428. <package
  11429. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-cmn-CN.img"
  11430. size="5183988"
  11431. />
  11432. <package
  11433. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ko-KR.img"
  11434. size="5183988"
  11435. />
  11436. <package
  11437. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ja-JP.img"
  11438. size="5183988"
  11439. />
  11440. <package
  11441. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fi-FI.img"
  11442. size="5183988"
  11443. />
  11444. <package
  11445. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-pl-PL.img"
  11446. size="5183988"
  11447. />
  11448. </otaPackages>
  11449. </productMenu>
  11450. <productMenu id="wa"
  11451. type="0" >
  11452. </productMenu>
  11453. <productMenu id="sip"
  11454. type="1" >
  11455. </productMenu>
  11456. <productMenu id="led"
  11457. type="1" >
  11458. </productMenu>
  11459. <productMenu id="illusion"
  11460. type="1" >
  11461. </productMenu>
  11462. <productMenu id="meshIntercom"
  11463. type="30" >
  11464. </productMenu>
  11465. <productMenu id="meshIntercom+"
  11466. type="3"
  11467. url="2" >
  11468. </productMenu>
  11469. <productMenu id="bluetoothIntercom"
  11470. type="1" >
  11471. </productMenu>
  11472. <productMenu id="fmradio"
  11473. type="1"
  11474. url="1" >
  11475. </productMenu>
  11476. <productMenu id="mic"
  11477. type="0" >
  11478. </productMenu>
  11479. <productMenu id="phone"
  11480. type="1" >
  11481. </productMenu>
  11482. <productMenu id="music"
  11483. type="1" >
  11484. </productMenu>
  11485. <productMenu id="musicSharing"
  11486. type="0" >
  11487. </productMenu>
  11488. <productMenu id="deviceSetting"
  11489. type="1"
  11490. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  11491. </productMenu>
  11492. <productMenu id="quickGuide"
  11493. type="0"
  11494. url=""
  11495. size="1.12MB" >
  11496. </productMenu>
  11497. <productMenu id="userGuide"
  11498. type="1"
  11499. url=""
  11500. size="2.0MB" >
  11501. </productMenu>
  11502. <productMenu id="videoGuide"
  11503. type="0"
  11504. url=""
  11505. size="3.41MB" >
  11506. </productMenu>
  11507. <productMenu id="keySettings"
  11508. type="1"
  11509. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  11510. </productMenu>
  11511. <productMenu id="volume"
  11512. type="13" >
  11513. </productMenu>
  11514. <productMenu id="volume+"
  11515. type="2"
  11516. url="0x6004" >
  11517. </productMenu>
  11518. <productMenu id="battery"
  11519. type="1" >
  11520. </productMenu>
  11521. <productID id="6A1C"
  11522. />
  11523. <productGroupable type="0"
  11524. />
  11525. </product>
  11526. <product id="Triumph_50S"
  11527. name="Triumph 50S"
  11528. series="50"
  11529. latestVersion="1.5"
  11530. show = "0" >
  11531. <productMenu id="protocol"
  11532. type="2" >
  11533. </productMenu>
  11534. <productMenu id="alexa"
  11535. type="0" >
  11536. </productMenu>
  11537. <productMenu id="ota"
  11538. type="0"
  11539. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11540. size="1150234" >
  11541. </productMenu>
  11542. <productMenu id="wa"
  11543. type="1" >
  11544. </productMenu>
  11545. <productMenu id="sip"
  11546. type="1" >
  11547. </productMenu>
  11548. <productMenu id="meshIntercom"
  11549. type="20" >
  11550. </productMenu>
  11551. <productMenu id="bluetoothIntercom"
  11552. type="1" >
  11553. </productMenu>
  11554. <productMenu id="meshIntercom+"
  11555. type="3"
  11556. url="2" >
  11557. <productMenuType version="1.2.9"
  11558. type="2"
  11559. />
  11560. <productMenuURL version="1.2.9"
  11561. url="0"
  11562. />
  11563. </productMenu>
  11564. <productMenu id="waveIntercom"
  11565. type="1" >
  11566. <productMenuType version="1.2.9"
  11567. type="0"
  11568. />
  11569. </productMenu>
  11570. <productMenu id="phone"
  11571. type="1" >
  11572. </productMenu>
  11573. <productMenu id="music"
  11574. type="1" >
  11575. </productMenu>
  11576. <productMenu id="fmradio"
  11577. type="1" >
  11578. </productMenu>
  11579. <productMenu id="deviceSetting"
  11580. type="1"
  11581. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11582. <productMenuURL version="1.2.9"
  11583. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  11584. />
  11585. <productMenuURL version="1.0"
  11586. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11587. />
  11588. </productMenu>
  11589. <productMenu id="quickGuide"
  11590. type="1"
  11591. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  11592. size="934KB" >
  11593. </productMenu>
  11594. <productMenu id="userGuide"
  11595. type="1"
  11596. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  11597. size="1.14MB" >
  11598. </productMenu>
  11599. <productMenu id="volume"
  11600. type="11" >
  11601. </productMenu>
  11602. <productMenu id="battery"
  11603. type="1" >
  11604. </productMenu>
  11605. <productID id="3264"
  11606. />
  11607. <productGroupable type="0"
  11608. />
  11609. </product>
  11610. <product id="RE50S"
  11611. name="RE 50S"
  11612. series="50"
  11613. latestVersion="2.7"
  11614. show = "0" >
  11615. <productMenu id="protocol"
  11616. type="2" >
  11617. </productMenu>
  11618. <productMenu id="alexa"
  11619. type="0" >
  11620. </productMenu>
  11621. <productMenu id="ota"
  11622. type="0"
  11623. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11624. size="1150234" >
  11625. </productMenu>
  11626. <productMenu id="wa"
  11627. type="1" >
  11628. </productMenu>
  11629. <productMenu id="sip"
  11630. type="1" >
  11631. </productMenu>
  11632. <productMenu id="meshIntercom"
  11633. type="30" >
  11634. </productMenu>
  11635. <productMenu id="meshIntercom+"
  11636. type="3"
  11637. url="2" >
  11638. <productMenuType version="2.5"
  11639. type="2"
  11640. />
  11641. </productMenu>
  11642. <productMenu id="waveIntercom"
  11643. type="1" >
  11644. <productMenuType version="2.5"
  11645. type="0"
  11646. />
  11647. </productMenu>
  11648. <productMenu id="bluetoothIntercom"
  11649. type="1" >
  11650. </productMenu>
  11651. <productMenu id="phone"
  11652. type="1" >
  11653. </productMenu>
  11654. <productMenu id="music"
  11655. type="1" >
  11656. </productMenu>
  11657. <productMenu id="fmradio"
  11658. type="1" >
  11659. </productMenu>
  11660. <productMenu id="deviceSetting"
  11661. type="1"
  11662. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11663. <productMenuURL version="2.5.9"
  11664. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11665. />
  11666. </productMenu>
  11667. <productMenu id="quickGuide"
  11668. type="1"
  11669. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11670. size="934KB" >
  11671. </productMenu>
  11672. <productMenu id="userGuide"
  11673. type="1"
  11674. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11675. size="1.14MB" >
  11676. </productMenu>
  11677. <productMenu id="videoGuide"
  11678. type="0"
  11679. url=""
  11680. size="3.41MB" >
  11681. </productMenu>
  11682. <productMenu id="volume"
  11683. type="11" >
  11684. </productMenu>
  11685. <productMenu id="battery"
  11686. type="1" >
  11687. </productMenu>
  11688. <productID id="321C"
  11689. />
  11690. <productGroupable type="0"
  11691. />
  11692. </product>
  11693. <product id="BMW_HELMET_II_U1"
  11694. name="BMW HELMET II U1"
  11695. series="50"
  11696. latestVersion="1.0"
  11697. show = "0" >
  11698. <productMenu id="protocol"
  11699. type="2" >
  11700. </productMenu>
  11701. <productMenu id="alexa"
  11702. type="0" >
  11703. </productMenu>
  11704. <productMenu id="sip"
  11705. type="1" >
  11706. </productMenu>
  11707. <productMenu id="meshIntercom"
  11708. type="20" >
  11709. </productMenu>
  11710. <productMenu id="bluetoothIntercom"
  11711. type="1" >
  11712. </productMenu>
  11713. <productMenu id="bluetoothIntercom2"
  11714. type="1" >
  11715. </productMenu>
  11716. <productMenu id="phone"
  11717. type="1" >
  11718. </productMenu>
  11719. <productMenu id="music"
  11720. type="1" >
  11721. </productMenu>
  11722. <productMenu id="fmradio"
  11723. type="1" >
  11724. </productMenu>
  11725. <productMenu id="deviceSetting"
  11726. type="1"
  11727. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11728. </productMenu>
  11729. <productMenu id="quickGuide"
  11730. type="1"
  11731. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11732. size="934KB" >
  11733. </productMenu>
  11734. <productMenu id="userGuide"
  11735. type="1"
  11736. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11737. size="1.14MB" >
  11738. </productMenu>
  11739. <productMenu id="volume"
  11740. type="11" >
  11741. </productMenu>
  11742. <productMenu id="battery"
  11743. type="1" >
  11744. </productMenu>
  11745. <productID id="3260"
  11746. />
  11747. <productGroupable type="0"
  11748. />
  11749. </product>
  11750. <product id="OUTRUSHR"
  11751. name="CX935"
  11752. series="Helmet"
  11753. latestVersion="2.1"
  11754. show = "-1" >
  11755. <productMenu id="protocol"
  11756. type="3">
  11757. </productMenu>
  11758. <productMenu id="sip"
  11759. type="1" >
  11760. </productMenu>
  11761. <productMenu id="bluetoothIntercom"
  11762. type="1" >
  11763. </productMenu>
  11764. <productMenu id="phone"
  11765. type="1" >
  11766. </productMenu>
  11767. <productMenu id="fmradio"
  11768. type="0" >
  11769. </productMenu>
  11770. <productMenu id="deviceSetting"
  11771. type="1"
  11772. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11773. </productMenu>
  11774. <productMenu id="userGuide"
  11775. type="1"
  11776. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11777. size="660KB" >
  11778. </productMenu>
  11779. <productID id="5446"
  11780. />
  11781. <productGroupable type="0"
  11782. />
  11783. </product>
  11784. <product id="LSE_01"
  11785. name="LSE-01"
  11786. series="SF"
  11787. latestVersion="1.2.3"
  11788. show = "0" >
  11789. <productMenu id="protocol"
  11790. type="1"
  11791. url="3">
  11792. </productMenu>
  11793. <productMenu id="sip"
  11794. type="1" >
  11795. </productMenu>
  11796. <productMenu id="bluetoothIntercom"
  11797. type="1" >
  11798. </productMenu>
  11799. <productMenu id="phone"
  11800. type="1" >
  11801. </productMenu>
  11802. <productMenu id="music"
  11803. type="1" >
  11804. </productMenu>
  11805. <productMenu id="fmradio"
  11806. type="1" >
  11807. </productMenu>
  11808. <productMenu id="deviceSetting"
  11809. type="1"
  11810. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11811. <productMenuURL version="1.1"
  11812. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11813. />
  11814. <productMenuURL version="1.0"
  11815. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11816. />
  11817. </productMenu>
  11818. <productMenu id="quickGuide"
  11819. type="1"
  11820. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11821. size="607KB" >
  11822. </productMenu>
  11823. <productMenu id="userGuide"
  11824. type="1"
  11825. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11826. size="1.91MB" >
  11827. </productMenu>
  11828. <productMenu id="volume"
  11829. type="4" >
  11830. </productMenu>
  11831. <productID id="5416"
  11832. />
  11833. <productGroupable type="0"
  11834. />
  11835. </product>
  11836. <product id="AGV_ARK"
  11837. name="AGV ARK"
  11838. series="SF"
  11839. latestVersion="1.0.3"
  11840. show = "0" >
  11841. <productMenu id="protocol"
  11842. type="1"
  11843. url="3">
  11844. </productMenu>
  11845. <productMenu id="sip"
  11846. type="1" >
  11847. </productMenu>
  11848. <productMenu id="bluetoothIntercom"
  11849. type="1" >
  11850. </productMenu>
  11851. <productMenu id="phone"
  11852. type="1" >
  11853. </productMenu>
  11854. <productMenu id="music"
  11855. type="1" >
  11856. </productMenu>
  11857. <productMenu id="fmradio"
  11858. type="1" >
  11859. </productMenu>
  11860. <productMenu id="deviceSetting"
  11861. type="1"
  11862. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11863. </productMenu>
  11864. <productMenu id="quickGuide"
  11865. type="1"
  11866. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11867. size="607KB" >
  11868. </productMenu>
  11869. <productMenu id="userGuide"
  11870. type="1"
  11871. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11872. size="1.91MB" >
  11873. </productMenu>
  11874. <productMenu id="volume"
  11875. type="4" >
  11876. </productMenu>
  11877. <productID id="5420"
  11878. />
  11879. <productGroupable type="0"
  11880. />
  11881. </product>
  11882. <product id="KLIM_KRIOS"
  11883. name="KLIM Krios"
  11884. series="10"
  11885. latestVersion="1.1.2"
  11886. show = "0" >
  11887. <productMenu id="protocol"
  11888. type="0">
  11889. </productMenu>
  11890. <productMenu id="sip"
  11891. type="1" >
  11892. </productMenu>
  11893. <productMenu id="bluetoothIntercom"
  11894. type="1" >
  11895. </productMenu>
  11896. <productMenu id="phone"
  11897. type="2" >
  11898. </productMenu>
  11899. <productMenu id="fmradio"
  11900. type="3" >
  11901. </productMenu>
  11902. <productMenu id="deviceSetting"
  11903. type="1"
  11904. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11905. <productMenuURL version="1.0"
  11906. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11907. />
  11908. </productMenu>
  11909. <productMenu id="quickGuide"
  11910. type="1"
  11911. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11912. size="649KB" >
  11913. </productMenu>
  11914. <productMenu id="userGuide"
  11915. type="1"
  11916. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11917. size="1.43MB" >
  11918. </productMenu>
  11919. <productID id="5910"
  11920. />
  11921. <productGroupable type="0"
  11922. />
  11923. </product>
  11924. <product id="POLARIS_SLINGSHOT"
  11925. name="Polaris Slingshot"
  11926. series="10"
  11927. latestVersion="1.1.2"
  11928. show = "0" >
  11929. <productMenu id="protocol"
  11930. type="0">
  11931. </productMenu>
  11932. <productMenu id="sip"
  11933. type="1" >
  11934. </productMenu>
  11935. <productMenu id="bluetoothIntercom"
  11936. type="1" >
  11937. </productMenu>
  11938. <productMenu id="phone"
  11939. type="2" >
  11940. </productMenu>
  11941. <productMenu id="fmradio"
  11942. type="3" >
  11943. </productMenu>
  11944. <productMenu id="deviceSetting"
  11945. type="1"
  11946. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11947. <productMenuURL version="1.0"
  11948. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11949. />
  11950. </productMenu>
  11951. <productMenu id="quickGuide"
  11952. type="1"
  11953. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11954. size="689KB" >
  11955. </productMenu>
  11956. <productMenu id="userGuide"
  11957. type="1"
  11958. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11959. size="1.43MB" >
  11960. </productMenu>
  11961. <productID id="5920"
  11962. />
  11963. <productGroupable type="0"
  11964. />
  11965. </product>
  11966. <product id="DWO6"
  11967. name="SEDICI DWO6-PRO"
  11968. series="10"
  11969. latestVersion="1.0.2"
  11970. show = "0" >
  11971. <productMenu id="protocol"
  11972. type="0">
  11973. </productMenu>
  11974. <productMenu id="sip"
  11975. type="1" >
  11976. </productMenu>
  11977. <productMenu id="bluetoothIntercom"
  11978. type="1" >
  11979. </productMenu>
  11980. <productMenu id="phone"
  11981. type="2" >
  11982. </productMenu>
  11983. <productMenu id="fmradio"
  11984. type="3" >
  11985. </productMenu>
  11986. <productMenu id="deviceSetting"
  11987. type="1"
  11988. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  11989. </productMenu>
  11990. <productMenu id="quickGuide"
  11991. type="1"
  11992. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11993. size="529KB" >
  11994. </productMenu>
  11995. <productMenu id="userGuide"
  11996. type="1"
  11997. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11998. size="4.09MB" >
  11999. </productMenu>
  12000. <productID id="6112"
  12001. />
  12002. <productGroupable type="0"
  12003. />
  12004. </product>
  12005. <product id="DWO6A"
  12006. name="SEDICI DWO-6"
  12007. series="10"
  12008. latestVersion="1.0.2"
  12009. show = "0" >
  12010. <productMenu id="protocol"
  12011. type="0">
  12012. </productMenu>
  12013. <productMenu id="sip"
  12014. type="1" >
  12015. </productMenu>
  12016. <productMenu id="bluetoothIntercom"
  12017. type="1" >
  12018. </productMenu>
  12019. <productMenu id="phone"
  12020. type="2" >
  12021. </productMenu>
  12022. <productMenu id="fmradio"
  12023. type="3" >
  12024. </productMenu>
  12025. <productMenu id="deviceSetting"
  12026. type="1"
  12027. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  12028. </productMenu>
  12029. <productMenu id="quickGuide"
  12030. type="1"
  12031. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  12032. size="522KB" >
  12033. </productMenu>
  12034. <productMenu id="userGuide"
  12035. type="1"
  12036. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  12037. size="2.71MB" >
  12038. </productMenu>
  12039. <productID id="6114"
  12040. />
  12041. <productGroupable type="0"
  12042. />
  12043. </product>
  12044. <product id="3SPLUS"
  12045. name="ZILL"
  12046. series="3"
  12047. latestVersion="1.0.4"
  12048. show = "0" >
  12049. <productMenu id="protocol"
  12050. type="0">
  12051. </productMenu>
  12052. <productMenu id="sip"
  12053. type="1" >
  12054. </productMenu>
  12055. <productMenu id="bluetoothIntercom"
  12056. type="1" >
  12057. </productMenu>
  12058. <productMenu id="deviceSetting"
  12059. type="1"
  12060. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  12061. </productMenu>
  12062. <productMenu id="quickGuide"
  12063. type="1"
  12064. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  12065. size="842KB" >
  12066. </productMenu>
  12067. <productMenu id="userGuide"
  12068. type="1"
  12069. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  12070. size="1.02MB" >
  12071. </productMenu>
  12072. <productID id="6335"
  12073. />
  12074. <productGroupable type="0"
  12075. />
  12076. </product>
  12077. <product id="HD50S"
  12078. name="Boom! Audio 30K"
  12079. series="30"
  12080. latestVersion="3.4"
  12081. show = "0" >
  12082. <productMenu id="protocol"
  12083. type="1"
  12084. url="0">
  12085. </productMenu>
  12086. <productMenu id="wa"
  12087. type="0" >
  12088. </productMenu>
  12089. <productMenu id="sip"
  12090. type="1" >
  12091. </productMenu>
  12092. <productMenu id="meshIntercom"
  12093. type="20" >
  12094. <productMenuType version="2.9.9"
  12095. type="10"
  12096. />
  12097. </productMenu>
  12098. <productMenu id="bluetoothIntercom"
  12099. type="1" >
  12100. </productMenu>
  12101. <productMenu id="phone"
  12102. type="1" >
  12103. </productMenu>
  12104. <productMenu id="music"
  12105. type="1" >
  12106. </productMenu>
  12107. <productMenu id="fmradio"
  12108. type="1" >
  12109. </productMenu>
  12110. <productMenu id="deviceSetting"
  12111. type="1"
  12112. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  12113. <productMenuURL version="3.2"
  12114. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  12115. />
  12116. <productMenuURL version="3.0"
  12117. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  12118. />
  12119. <productMenuURL version="2.2"
  12120. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12121. />
  12122. </productMenu>
  12123. <productMenu id="quickGuide"
  12124. type="1"
  12125. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12126. size="1.06MB" >
  12127. </productMenu>
  12128. <productMenu id="userGuide"
  12129. type="1"
  12130. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12131. size="3.15MB" >
  12132. </productMenu>
  12133. <productMenu id="volume"
  12134. type="1" >
  12135. </productMenu>
  12136. <productID id="3112"
  12137. />
  12138. <productGroupable type="0"
  12139. />
  12140. </product>
  12141. <product id="HD50S"
  12142. name="Boom! Audio N02"
  12143. series="30"
  12144. latestVersion="3.1"
  12145. show = "0" >
  12146. <productMenu id="protocol"
  12147. type="1"
  12148. url="0">
  12149. </productMenu>
  12150. <productMenu id="wa"
  12151. type="2" >
  12152. </productMenu>
  12153. <productMenu id="sip"
  12154. type="1" >
  12155. </productMenu>
  12156. <productMenu id="meshIntercom"
  12157. type="20" >
  12158. <productMenuType version="2.9.9"
  12159. type="10"
  12160. />
  12161. </productMenu>
  12162. <productMenu id="bluetoothIntercom"
  12163. type="1" >
  12164. </productMenu>
  12165. <productMenu id="phone"
  12166. type="1" >
  12167. </productMenu>
  12168. <productMenu id="music"
  12169. type="1" >
  12170. </productMenu>
  12171. <productMenu id="fmradio"
  12172. type="1" >
  12173. </productMenu>
  12174. <productMenu id="deviceSetting"
  12175. type="1"
  12176. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  12177. <productMenuURL version="2.2"
  12178. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12179. />
  12180. </productMenu>
  12181. <productMenu id="quickGuide"
  12182. type="1"
  12183. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  12184. size="1.06MB" >
  12185. </productMenu>
  12186. <productMenu id="userGuide"
  12187. type="1"
  12188. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  12189. size="3.15MB" >
  12190. </productMenu>
  12191. <productMenu id="volume"
  12192. type="2" >
  12193. </productMenu>
  12194. <productID id="3114"
  12195. />
  12196. <productGroupable type="0"
  12197. />
  12198. </product>
  12199. <product id="HD50S"
  12200. name="Boom Audio 20S"
  12201. series="50"
  12202. latestVersion="2.5.2"
  12203. show = "0" >
  12204. <productMenu id="protocol"
  12205. type="0">
  12206. </productMenu>
  12207. <productMenu id="sip"
  12208. type="1" >
  12209. <productMenuType version="1.0"
  12210. type="0"
  12211. />
  12212. </productMenu>
  12213. <productMenu id="bluetoothIntercom"
  12214. type="1" >
  12215. <productMenuType version="1.0"
  12216. type="0"
  12217. />
  12218. </productMenu>
  12219. <productMenu id="intercomSetting"
  12220. type="1" >
  12221. </productMenu>
  12222. <productMenu id="phone"
  12223. type="2" >
  12224. </productMenu>
  12225. <productMenu id="fmradio"
  12226. type="3" >
  12227. </productMenu>
  12228. <productMenu id="deviceSetting"
  12229. type="1"
  12230. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12231. <productMenuURL version="2.4"
  12232. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12233. />
  12234. <productMenuURL version="1.5"
  12235. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12236. />
  12237. <productMenuURL version="1.4.1"
  12238. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12239. />
  12240. <productMenuURL version="1.1"
  12241. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12242. />
  12243. <productMenuURL version="1.0"
  12244. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12245. />
  12246. </productMenu>
  12247. <productMenu id="quickGuide"
  12248. type="1"
  12249. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12250. size="264KB" >
  12251. </productMenu>
  12252. <productMenu id="userGuide"
  12253. type="1"
  12254. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12255. size="3.09MB" >
  12256. </productMenu>
  12257. <productMenu id="connectGuide"
  12258. type="1"
  12259. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  12260. size="1.12MB" >
  12261. </productMenu>
  12262. <productID id="4210"
  12263. />
  12264. <productProductKey key="11"
  12265. />
  12266. <productID id="4230"
  12267. />
  12268. <productProductKey key="11"
  12269. />
  12270. <productGroupable type="1"
  12271. />
  12272. </product>
  12273. <product id="HD50S"
  12274. name="Boom Audio 20S EVO"
  12275. series="50"
  12276. latestVersion="2.5.2"
  12277. show = "0" >
  12278. <productMenu id="protocol"
  12279. type="0">
  12280. </productMenu>
  12281. <productMenu id="sip"
  12282. type="1" >
  12283. <productMenuType version="1.0"
  12284. type="0"
  12285. />
  12286. </productMenu>
  12287. <productMenu id="bluetoothIntercom"
  12288. type="1" >
  12289. <productMenuType version="1.0"
  12290. type="0"
  12291. />
  12292. </productMenu>
  12293. <productMenu id="intercomSetting"
  12294. type="1" >
  12295. </productMenu>
  12296. <productMenu id="phone"
  12297. type="2" >
  12298. </productMenu>
  12299. <productMenu id="fmradio"
  12300. type="3" >
  12301. </productMenu>
  12302. <productMenu id="deviceSetting"
  12303. type="1"
  12304. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12305. <productMenuURL version="2.4"
  12306. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12307. />
  12308. <productMenuURL version="1.5"
  12309. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12310. />
  12311. <productMenuURL version="1.4.1"
  12312. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12313. />
  12314. <productMenuURL version="1.1"
  12315. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12316. />
  12317. <productMenuURL version="1.0"
  12318. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12319. />
  12320. </productMenu>
  12321. <productMenu id="quickGuide"
  12322. type="1"
  12323. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12324. size="321KB" >
  12325. </productMenu>
  12326. <productMenu id="userGuide"
  12327. type="1"
  12328. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12329. size="2.46MB" >
  12330. </productMenu>
  12331. <productID id="4230"
  12332. />
  12333. <productProductKey key="27"
  12334. />
  12335. <productGroupable type="1"
  12336. />
  12337. </product>
  12338. <product id="HD50S"
  12339. name="Boom! Audio 10S"
  12340. series="50"
  12341. latestVersion="1.1.3"
  12342. show = "0" >
  12343. <productMenu id="protocol"
  12344. type="0">
  12345. </productMenu>
  12346. <productMenu id="sip"
  12347. type="1" >
  12348. </productMenu>
  12349. <productMenu id="bluetoothIntercom"
  12350. type="1" >
  12351. </productMenu>
  12352. <productMenu id="phone"
  12353. type="2" >
  12354. </productMenu>
  12355. <productMenu id="fmradio"
  12356. type="3" >
  12357. </productMenu>
  12358. <productMenu id="deviceSetting"
  12359. type="1"
  12360. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  12361. </productMenu>
  12362. <productMenu id="quickGuide"
  12363. type="1"
  12364. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12365. size="538KB" >
  12366. </productMenu>
  12367. <productMenu id="userGuide"
  12368. type="1"
  12369. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12370. size="1.55MB" >
  12371. </productMenu>
  12372. <productID id="5532"
  12373. />
  12374. <productGroupable type="0"
  12375. />
  12376. </product>
  12377. <product id="HD50S"
  12378. name="Boom! Audio N01 10R"
  12379. series="50"
  12380. latestVersion="1.1.3"
  12381. show = "0" >
  12382. <productMenu id="protocol"
  12383. type="0">
  12384. </productMenu>
  12385. <productMenu id="sip"
  12386. type="1" >
  12387. </productMenu>
  12388. <productMenu id="bluetoothIntercom"
  12389. type="1" >
  12390. </productMenu>
  12391. <productMenu id="phone"
  12392. type="2" >
  12393. </productMenu>
  12394. <productMenu id="fmradio"
  12395. type="3" >
  12396. </productMenu>
  12397. <productMenu id="deviceSetting"
  12398. type="1"
  12399. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  12400. </productMenu>
  12401. <productMenu id="quickGuide"
  12402. type="1"
  12403. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12404. size="766KB" >
  12405. </productMenu>
  12406. <productMenu id="userGuide"
  12407. type="1"
  12408. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12409. size="1.45MB" >
  12410. </productMenu>
  12411. <productID id="5522"
  12412. />
  12413. <productGroupable type="0"
  12414. />
  12415. </product>
  12416. <product id="HD50S"
  12417. name="OUTRUSH-R N03"
  12418. series="50"
  12419. latestVersion="1.2.1"
  12420. show = "-1" >
  12421. <productMenu id="protocol"
  12422. type="0">
  12423. </productMenu>
  12424. <productMenu id="sip"
  12425. type="1" >
  12426. </productMenu>
  12427. <productMenu id="bluetoothIntercom"
  12428. type="1" >
  12429. </productMenu>
  12430. <productMenu id="phone"
  12431. type="2" >
  12432. </productMenu>
  12433. <productMenu id="fmradio"
  12434. type="3" >
  12435. </productMenu>
  12436. <productMenu id="deviceSetting"
  12437. type="1"
  12438. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  12439. </productMenu>
  12440. <productMenu id="userGuide"
  12441. type="1"
  12442. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  12443. size="660KB" >
  12444. </productMenu>
  12445. <productID id="5434"
  12446. />
  12447. <productGroupable type="0"
  12448. />
  12449. </product>
  12450. <product id="HD50S"
  12451. name="OUTRUSH-R N03"
  12452. series="50"
  12453. latestVersion="2.0"
  12454. show = "0" >
  12455. <productMenu id="protocol"
  12456. type="3" >
  12457. </productMenu>
  12458. <productMenu id="sip"
  12459. type="1" >
  12460. </productMenu>
  12461. <productMenu id="bluetoothIntercom"
  12462. type="1" >
  12463. </productMenu>
  12464. <productMenu id="phone"
  12465. type="1" >
  12466. </productMenu>
  12467. <productMenu id="fmradio"
  12468. type="1" >
  12469. </productMenu>
  12470. <productMenu id="deviceSetting"
  12471. type="1"
  12472. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  12473. </productMenu>
  12474. <productMenu id="userGuide"
  12475. type="1"
  12476. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  12477. size="1.14MB" >
  12478. </productMenu>
  12479. <productID id="5441"
  12480. />
  12481. <productGroupable type="0"
  12482. />
  12483. </product>
  12484. <product id="5R"
  12485. name="5R"
  12486. series="5"
  12487. latestVersion="1.0.1"
  12488. show = "1" >
  12489. <productMenu id="protocol"
  12490. type="3" >
  12491. </productMenu>
  12492. <productMenu id="sip"
  12493. type="1" >
  12494. </productMenu>
  12495. <productMenu id="bluetoothIntercom"
  12496. type="1" >
  12497. </productMenu>
  12498. <productMenu id="phone"
  12499. type="1" >
  12500. </productMenu>
  12501. <productMenu id="fmradio"
  12502. type="1" >
  12503. </productMenu>
  12504. <productMenu id="deviceSetting"
  12505. type="1"
  12506. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12507. </productMenu>
  12508. <productMenu id="quickGuide"
  12509. type="0"
  12510. url=""
  12511. size="934KB" >
  12512. </productMenu>
  12513. <productMenu id="userGuide"
  12514. type="1"
  12515. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  12516. size="1.14MB" >
  12517. </productMenu>
  12518. <productMenu id="connectGuide"
  12519. type="1"
  12520. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12521. size="1.12MB" >
  12522. </productMenu>
  12523. <productID id="5591"
  12524. />
  12525. <productGroupable type="0"
  12526. />
  12527. </product>
  12528. <product id="5R"
  12529. name="5R LITE"
  12530. series="5"
  12531. latestVersion="1.0.1"
  12532. show = "1" >
  12533. <productMenu id="protocol"
  12534. type="3" >
  12535. </productMenu>
  12536. <productMenu id="sip"
  12537. type="1" >
  12538. </productMenu>
  12539. <productMenu id="bluetoothIntercom"
  12540. type="1" >
  12541. </productMenu>
  12542. <productMenu id="phone"
  12543. type="1" >
  12544. </productMenu>
  12545. <productMenu id="fmradio"
  12546. type="1" >
  12547. </productMenu>
  12548. <productMenu id="deviceSetting"
  12549. type="1"
  12550. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12551. </productMenu>
  12552. <productMenu id="quickGuide"
  12553. type="0"
  12554. url=""
  12555. size="934KB" >
  12556. </productMenu>
  12557. <productMenu id="userGuide"
  12558. type="1"
  12559. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12560. size="1.14MB" >
  12561. </productMenu>
  12562. <productMenu id="connectGuide"
  12563. type="1"
  12564. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12565. size="1.12MB" >
  12566. </productMenu>
  12567. <productID id="5592"
  12568. />
  12569. <productGroupable type="0"
  12570. />
  12571. </product>
  12572. <product id="50RLE"
  12573. name="50R LE"
  12574. series="50"
  12575. latestVersion="1.1"
  12576. show = "0" >
  12577. <productMenu id="protocol"
  12578. type="2" >
  12579. </productMenu>
  12580. <productMenu id="alexa"
  12581. type="0" >
  12582. </productMenu>
  12583. <productMenu id="sip"
  12584. type="1" >
  12585. </productMenu>
  12586. <productMenu id="meshIntercom"
  12587. type="30" >
  12588. </productMenu>
  12589. <productMenu id="meshIntercom+"
  12590. type="3"
  12591. url="2" >
  12592. <productMenuType version="1.0.9"
  12593. type="2"
  12594. />
  12595. </productMenu>
  12596. <productMenu id="waveIntercom"
  12597. type="1" >
  12598. <productMenuType version="1.0.9"
  12599. type="0"
  12600. />
  12601. </productMenu>
  12602. <productMenu id="bluetoothIntercom"
  12603. type="1" >
  12604. </productMenu>
  12605. <productMenu id="phone"
  12606. type="1" >
  12607. </productMenu>
  12608. <productMenu id="music"
  12609. type="1" >
  12610. </productMenu>
  12611. <productMenu id="fmradio"
  12612. type="0" >
  12613. </productMenu>
  12614. <productMenu id="deviceSetting"
  12615. type="1"
  12616. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  12617. <productMenuURL version="1.0.9"
  12618. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  12619. />
  12620. </productMenu>
  12621. <productMenu id="quickGuide"
  12622. type="0"
  12623. url=""
  12624. size="344KB" >
  12625. </productMenu>
  12626. <productMenu id="userGuide"
  12627. type="0"
  12628. url=""
  12629. size="3.41MB" >
  12630. </productMenu>
  12631. <productMenu id="volume"
  12632. type="11" >
  12633. </productMenu>
  12634. <productMenu id="battery"
  12635. type="1" >
  12636. </productMenu>
  12637. <productID id="3223"
  12638. />
  12639. <productGroupable type="0"
  12640. />
  12641. </product>
  12642. <product id="5RLOUIS"
  12643. name="5R LOUIS EDITION"
  12644. series="5"
  12645. latestVersion="1.0"
  12646. show = "-1" >
  12647. <productMenu id="protocol"
  12648. type="3" >
  12649. </productMenu>
  12650. <productMenu id="sip"
  12651. type="1" >
  12652. </productMenu>
  12653. <productMenu id="bluetoothIntercom"
  12654. type="1" >
  12655. </productMenu>
  12656. <productMenu id="phone"
  12657. type="1" >
  12658. </productMenu>
  12659. <productMenu id="fmradio"
  12660. type="1" >
  12661. </productMenu>
  12662. <productMenu id="deviceSetting"
  12663. type="1"
  12664. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12665. </productMenu>
  12666. <productMenu id="quickGuide"
  12667. type="0"
  12668. url=""
  12669. size="934KB" >
  12670. </productMenu>
  12671. <productMenu id="userGuide"
  12672. type="0"
  12673. url=""
  12674. size="1.14MB" >
  12675. </productMenu>
  12676. <productID id="5597"
  12677. />
  12678. <productGroupable type="0"
  12679. />
  12680. </product>
  12681. <product id="5S"
  12682. name="Ridekont 5S"
  12683. series="5"
  12684. latestVersion="2.3"
  12685. show = "-1" >
  12686. <productMenu id="protocol"
  12687. type="3" >
  12688. </productMenu>
  12689. <productMenu id="sip"
  12690. type="1" >
  12691. </productMenu>
  12692. <productMenu id="bluetoothIntercom"
  12693. type="1" >
  12694. </productMenu>
  12695. <productMenu id="phone"
  12696. type="1" >
  12697. </productMenu>
  12698. <productMenu id="fmradio"
  12699. type="0" >
  12700. </productMenu>
  12701. <productMenu id="deviceSetting"
  12702. type="1"
  12703. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12704. </productMenu>
  12705. <productMenu id="quickGuide"
  12706. type="0"
  12707. url=""
  12708. size="934KB" >
  12709. </productMenu>
  12710. <productMenu id="userGuide"
  12711. type="1"
  12712. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12713. size="1.14MB" >
  12714. </productMenu>
  12715. <productID id="5589"
  12716. />
  12717. <productGroupable type="0"
  12718. />
  12719. </product>
  12720. <product id="5R"
  12721. name="Ridekont 5R"
  12722. series="5"
  12723. latestVersion="1.0"
  12724. show = "0" >
  12725. <productMenu id="protocol"
  12726. type="3" >
  12727. </productMenu>
  12728. <productMenu id="sip"
  12729. type="1" >
  12730. </productMenu>
  12731. <productMenu id="bluetoothIntercom"
  12732. type="1" >
  12733. </productMenu>
  12734. <productMenu id="phone"
  12735. type="1" >
  12736. </productMenu>
  12737. <productMenu id="fmradio"
  12738. type="1" >
  12739. </productMenu>
  12740. <productMenu id="deviceSetting"
  12741. type="1"
  12742. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12743. </productMenu>
  12744. <productMenu id="quickGuide"
  12745. type="1"
  12746. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12747. size="934KB" >
  12748. </productMenu>
  12749. <productMenu id="userGuide"
  12750. type="1"
  12751. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12752. size="1.14MB" >
  12753. </productMenu>
  12754. <productID id="5593"
  12755. />
  12756. <productGroupable type="0"
  12757. />
  12758. </product>
  12759. <product id="5R"
  12760. name="Ridekont 5R LITE"
  12761. series="5"
  12762. latestVersion="1.0"
  12763. show = "0" >
  12764. <productMenu id="protocol"
  12765. type="3" >
  12766. </productMenu>
  12767. <productMenu id="sip"
  12768. type="1" >
  12769. </productMenu>
  12770. <productMenu id="bluetoothIntercom"
  12771. type="1" >
  12772. </productMenu>
  12773. <productMenu id="phone"
  12774. type="1" >
  12775. </productMenu>
  12776. <productMenu id="fmradio"
  12777. type="1" >
  12778. </productMenu>
  12779. <productMenu id="deviceSetting"
  12780. type="1"
  12781. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12782. </productMenu>
  12783. <productMenu id="quickGuide"
  12784. type="0"
  12785. url=""
  12786. size="934KB" >
  12787. </productMenu>
  12788. <productMenu id="userGuide"
  12789. type="1"
  12790. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12791. size="1.14MB" >
  12792. </productMenu>
  12793. <productID id="5594"
  12794. />
  12795. <productGroupable type="0"
  12796. />
  12797. </product>
  12798. <product id="SA30"
  12799. name="SA30"
  12800. series="SA"
  12801. latestVersion="1.0.3"
  12802. latestVersionVoicePrompt="0.15"
  12803. show = "-1" >
  12804. <productMenu id="protocol"
  12805. type="2" >
  12806. </productMenu>
  12807. <productMenu id="ota"
  12808. type="2" >
  12809. <otaPackages>
  12810. <package
  12811. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.3-build0.img"
  12812. size="3144148"
  12813. />
  12814. </otaPackages>
  12815. </productMenu>
  12816. <productMenu id="meshIntercom"
  12817. type="30" >
  12818. </productMenu>
  12819. <productMenu id="meshIntercom+"
  12820. type="3"
  12821. url="2" >
  12822. </productMenu>
  12823. <productMenu id="phone"
  12824. type="1" >
  12825. </productMenu>
  12826. <productMenu id="music"
  12827. type="1" >
  12828. </productMenu>
  12829. <productMenu id="musicSharing"
  12830. type="0" >
  12831. </productMenu>
  12832. <productMenu id="deviceSetting"
  12833. type="1"
  12834. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12835. </productMenu>
  12836. <productMenu id="quickGuide"
  12837. type="0"
  12838. url=""
  12839. size="1.12MB" >
  12840. </productMenu>
  12841. <productMenu id="userGuide"
  12842. type="1"
  12843. url=""
  12844. size="2.0MB" >
  12845. </productMenu>
  12846. <productMenu id="videoGuide"
  12847. type="0"
  12848. url=""
  12849. size="3.41MB" >
  12850. </productMenu>
  12851. <productMenu id="volume"
  12852. type="12" >
  12853. </productMenu>
  12854. <productMenu id="battery"
  12855. type="1" >
  12856. </productMenu>
  12857. <productID id="6852"
  12858. />
  12859. <productGroupable type="0"
  12860. />
  12861. </product>
  12862. <product id="I30"
  12863. name="I30"
  12864. series="I"
  12865. latestVersion="1.0.3"
  12866. latestVersionVoicePrompt="0.2"
  12867. show = "-1" >
  12868. <productMenu id="protocol"
  12869. type="2" >
  12870. </productMenu>
  12871. <productMenu id="ota"
  12872. type="2" >
  12873. <otaPackages>
  12874. <package
  12875. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.3-build0.img"
  12876. size="3144148"
  12877. />
  12878. </otaPackages>
  12879. </productMenu>
  12880. <productMenu id="meshIntercom"
  12881. type="30" >
  12882. </productMenu>
  12883. <productMenu id="meshIntercom+"
  12884. type="3"
  12885. url="2" >
  12886. </productMenu>
  12887. <productMenu id="phone"
  12888. type="1" >
  12889. </productMenu>
  12890. <productMenu id="music"
  12891. type="1" >
  12892. </productMenu>
  12893. <productMenu id="musicSharing"
  12894. type="0" >
  12895. </productMenu>
  12896. <productMenu id="deviceSetting"
  12897. type="1"
  12898. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12899. </productMenu>
  12900. <productMenu id="quickGuide"
  12901. type="0"
  12902. url=""
  12903. size="1.12MB" >
  12904. </productMenu>
  12905. <productMenu id="userGuide"
  12906. type="1"
  12907. url=""
  12908. size="2.10MB" >
  12909. </productMenu>
  12910. <productMenu id="videoGuide"
  12911. type="0"
  12912. url=""
  12913. size="3.11MB" >
  12914. </productMenu>
  12915. <productMenu id="volume"
  12916. type="12" >
  12917. </productMenu>
  12918. <productMenu id="battery"
  12919. type="1" >
  12920. </productMenu>
  12921. <productID id="6853"
  12922. />
  12923. <productGroupable type="0"
  12924. />
  12925. </product>
  12926. <product id="LS2C30"
  12927. name="LS2-C30"
  12928. series="C"
  12929. latestVersion="1.0"
  12930. latestVersionVoicePrompt="0.13"
  12931. show = "-1" >
  12932. <productMenu id="protocol"
  12933. type="2" >
  12934. </productMenu>
  12935. <productMenu id="ota"
  12936. type="0" >
  12937. <otaPackages>
  12938. <package
  12939. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_LS2C30-v1.2.2-build0.img"
  12940. size="3144148"
  12941. />
  12942. </otaPackages>
  12943. </productMenu>
  12944. <productMenu id="meshIntercom+"
  12945. type="3"
  12946. url="2" >
  12947. </productMenu>
  12948. <productMenu id="waveIntercom"
  12949. type="1" >
  12950. </productMenu>
  12951. <productMenu id="phone"
  12952. type="1" >
  12953. </productMenu>
  12954. <productMenu id="music"
  12955. type="1" >
  12956. </productMenu>
  12957. <productMenu id="musicSharing"
  12958. type="0" >
  12959. </productMenu>
  12960. <productMenu id="deviceSetting"
  12961. type="1"
  12962. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  12963. </productMenu>
  12964. <productMenu id="quickGuide"
  12965. type="0"
  12966. url=""
  12967. size="1.17MB" >
  12968. </productMenu>
  12969. <productMenu id="userGuide"
  12970. type="1"
  12971. url=""
  12972. size="2.0MB" >
  12973. </productMenu>
  12974. <productMenu id="videoGuide"
  12975. type="0"
  12976. url=""
  12977. size="3.41MB" >
  12978. </productMenu>
  12979. <productMenu id="volume"
  12980. type="12" >
  12981. </productMenu>
  12982. <productMenu id="battery"
  12983. type="1" >
  12984. </productMenu>
  12985. <productID id="685E"
  12986. />
  12987. <productGroupable type="0"
  12988. />
  12989. </product>
  12990. <product id="C30EVO"
  12991. name="C30 EVO"
  12992. series="C"
  12993. latestVersion="1.0"
  12994. latestVersionVoicePrompt="0.13"
  12995. show = "-1" >
  12996. <productMenu id="protocol"
  12997. type="2" >
  12998. </productMenu>
  12999. <productMenu id="ota"
  13000. type="0" >
  13001. <otaPackages>
  13002. <package
  13003. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  13004. size="3144148"
  13005. />
  13006. </otaPackages>
  13007. </productMenu>
  13008. <productMenu id="meshIntercom+"
  13009. type="3"
  13010. url="2" >
  13011. </productMenu>
  13012. <productMenu id="waveIntercom"
  13013. type="1" >
  13014. </productMenu>
  13015. <productMenu id="phone"
  13016. type="1" >
  13017. </productMenu>
  13018. <productMenu id="music"
  13019. type="1" >
  13020. </productMenu>
  13021. <productMenu id="musicSharing"
  13022. type="0" >
  13023. </productMenu>
  13024. <productMenu id="deviceSetting"
  13025. type="1"
  13026. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  13027. </productMenu>
  13028. <productMenu id="quickGuide"
  13029. type="0"
  13030. url=""
  13031. size="1.17MB" >
  13032. </productMenu>
  13033. <productMenu id="userGuide"
  13034. type="1"
  13035. url=""
  13036. size="2.0MB" >
  13037. </productMenu>
  13038. <productMenu id="videoGuide"
  13039. type="0"
  13040. url=""
  13041. size="3.41MB" >
  13042. </productMenu>
  13043. <productMenu id="volume"
  13044. type="12" >
  13045. </productMenu>
  13046. <productMenu id="battery"
  13047. type="1" >
  13048. </productMenu>
  13049. <productID id="685B"
  13050. />
  13051. <productGroupable type="0"
  13052. />
  13053. </product>
  13054. <product id="C30"
  13055. name="SENA C30"
  13056. series="C"
  13057. latestVersion="1.2.4"
  13058. latestVersionVoicePrompt="0.13"
  13059. show = "1" >
  13060. <productMenu id="protocol"
  13061. type="2" >
  13062. </productMenu>
  13063. <productMenu id="alexa"
  13064. type="0" >
  13065. </productMenu>
  13066. <productMenu id="ota"
  13067. type="2" >
  13068. <otaPackages>
  13069. <package
  13070. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.4-build0.img"
  13071. size="3144148"
  13072. />
  13073. </otaPackages>
  13074. </productMenu>
  13075. <productMenu id="wa"
  13076. type="0" >
  13077. </productMenu>
  13078. <productMenu id="meshIntercom"
  13079. type="30" >
  13080. </productMenu>
  13081. <productMenu id="meshIntercom+"
  13082. type="3"
  13083. url="2" >
  13084. <productMenuType version="1.0.9"
  13085. type="2"
  13086. />
  13087. </productMenu>
  13088. <productMenu id="waveIntercom"
  13089. type="1" >
  13090. <productMenuType version="1.1.9"
  13091. type="0"
  13092. />
  13093. </productMenu>
  13094. <productMenu id="phone"
  13095. type="1" >
  13096. </productMenu>
  13097. <productMenu id="music"
  13098. type="1" >
  13099. </productMenu>
  13100. <productMenu id="musicSharing"
  13101. type="0" >
  13102. </productMenu>
  13103. <productMenu id="deviceSetting"
  13104. type="1"
  13105. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  13106. <productMenuURL version="1.1.3"
  13107. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  13108. />
  13109. <productMenuURL version="1.0.9"
  13110. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  13111. />
  13112. </productMenu>
  13113. <productMenu id="quickGuide"
  13114. type="1"
  13115. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13116. size="1.12MB" >
  13117. </productMenu>
  13118. <productMenu id="userGuide"
  13119. type="0"
  13120. url=""
  13121. size="2.0MB" >
  13122. </productMenu>
  13123. <productMenu id="videoGuide"
  13124. type="0"
  13125. url=""
  13126. size="3.41MB" >
  13127. </productMenu>
  13128. <productMenu id="volume"
  13129. type="12" >
  13130. </productMenu>
  13131. <productMenu id="battery"
  13132. type="1" >
  13133. </productMenu>
  13134. <productID id="683A"
  13135. />
  13136. <productGroupable type="0"
  13137. />
  13138. </product>
  13139. <product id="C20"
  13140. name="C20"
  13141. series="C"
  13142. latestVersion="1.0"
  13143. show = "1" >
  13144. <productMenu id="protocol"
  13145. type="3" >
  13146. </productMenu>
  13147. <productMenu id="sip"
  13148. type="1" >
  13149. </productMenu>
  13150. <productMenu id="bluetoothIntercom"
  13151. type="1" >
  13152. </productMenu>
  13153. <productMenu id="phone"
  13154. type="1" >
  13155. </productMenu>
  13156. <productMenu id="deviceSetting"
  13157. type="1"
  13158. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  13159. </productMenu>
  13160. <productMenu id="quickGuide"
  13161. type="1"
  13162. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  13163. size="934KB" >
  13164. </productMenu>
  13165. <productMenu id="userGuide"
  13166. type="1"
  13167. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  13168. size="1.14MB" >
  13169. </productMenu>
  13170. <productID id="3701"
  13171. />
  13172. <productGroupable type="0"
  13173. />
  13174. </product>
  13175. <product id="C10"
  13176. name="C10"
  13177. series="C"
  13178. latestVersion="1.4.4"
  13179. show = "1" >
  13180. <productMenu id="protocol"
  13181. type="3" >
  13182. </productMenu>
  13183. <productMenu id="sip"
  13184. type="1" >
  13185. </productMenu>
  13186. <productMenu id="bluetoothIntercom"
  13187. type="1" >
  13188. </productMenu>
  13189. <productMenu id="phone"
  13190. type="1" >
  13191. </productMenu>
  13192. <productMenu id="fmradio"
  13193. type="0" >
  13194. </productMenu>
  13195. <productMenu id="deviceSetting"
  13196. type="1"
  13197. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13198. </productMenu>
  13199. <productMenu id="userGuide"
  13200. type="1"
  13201. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  13202. size="1.14MB" >
  13203. </productMenu>
  13204. <productID id="5595"
  13205. />
  13206. <productGroupable type="0"
  13207. />
  13208. </product>
  13209. <product id="CA1"
  13210. name="CA1"
  13211. series="C"
  13212. latestVersion="0.2"
  13213. show = "-1" >
  13214. <productMenu id="protocol"
  13215. type="2" >
  13216. </productMenu>
  13217. <productMenu id="ota"
  13218. type="2" >
  13219. <otaPackages>
  13220. <package
  13221. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/CA1/SENA_CA1-v0.2-build1.img"
  13222. size="3144148"
  13223. />
  13224. </otaPackages>
  13225. </productMenu>
  13226. <productMenu id="phone"
  13227. type="1" >
  13228. </productMenu>
  13229. <productMenu id="music"
  13230. type="1" >
  13231. </productMenu>
  13232. <productMenu id="musicSharing"
  13233. type="0" >
  13234. </productMenu>
  13235. <productMenu id="deviceSetting"
  13236. type="1"
  13237. url="https://api.sena.com/support/SenaNeoApp/CA1/NS_CA1_AIROHA_01_zh_rCN.xml" >
  13238. </productMenu>
  13239. <productMenu id="quickGuide"
  13240. type="1"
  13241. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13242. size="1.12MB" >
  13243. </productMenu>
  13244. <productMenu id="userGuide"
  13245. type="0"
  13246. url=""
  13247. size="2.0MB" >
  13248. </productMenu>
  13249. <productMenu id="videoGuide"
  13250. type="1"
  13251. url=""
  13252. size="3.41MB" >
  13253. </productMenu>
  13254. <productMenu id="volume"
  13255. type="12" >
  13256. </productMenu>
  13257. <productMenu id="battery"
  13258. type="1" >
  13259. </productMenu>
  13260. <productID id="5F01"
  13261. />
  13262. <productGroupable type="0"
  13263. />
  13264. </product>
  13265. <product id="J30"
  13266. name="J30"
  13267. series="J"
  13268. latestVersion="1.2.4"
  13269. latestVersionVoicePrompt="0.14"
  13270. show = "0" >
  13271. <productMenu id="protocol"
  13272. type="2" >
  13273. </productMenu>
  13274. <productMenu id="alexa"
  13275. type="0" >
  13276. </productMenu>
  13277. <productMenu id="ota"
  13278. type="2" >
  13279. <otaPackages>
  13280. <package
  13281. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.4-build0.img"
  13282. size="3144148"
  13283. />
  13284. </otaPackages>
  13285. </productMenu>
  13286. <productMenu id="wa"
  13287. type="0" >
  13288. </productMenu>
  13289. <productMenu id="meshIntercom"
  13290. type="30" >
  13291. </productMenu>
  13292. <productMenu id="meshIntercom+"
  13293. type="3"
  13294. url="2" >
  13295. <productMenuType version="1.0.9"
  13296. type="2"
  13297. />
  13298. </productMenu>
  13299. <productMenu id="waveIntercom"
  13300. type="1" >
  13301. <productMenuType version="1.1.9"
  13302. type="0"
  13303. />
  13304. </productMenu>
  13305. <productMenu id="phone"
  13306. type="1" >
  13307. </productMenu>
  13308. <productMenu id="music"
  13309. type="1" >
  13310. </productMenu>
  13311. <productMenu id="musicSharing"
  13312. type="0" >
  13313. </productMenu>
  13314. <productMenu id="deviceSetting"
  13315. type="1"
  13316. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  13317. <productMenuURL version="1.0.9"
  13318. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  13319. />
  13320. </productMenu>
  13321. <productMenu id="quickGuide"
  13322. type="0"
  13323. url=""
  13324. size="1.12MB" >
  13325. </productMenu>
  13326. <productMenu id="userGuide"
  13327. type="1"
  13328. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  13329. size="2.0MB" >
  13330. </productMenu>
  13331. <productMenu id="videoGuide"
  13332. type="0"
  13333. url=""
  13334. size="3.41MB" >
  13335. </productMenu>
  13336. <productMenu id="volume"
  13337. type="12" >
  13338. </productMenu>
  13339. <productMenu id="battery"
  13340. type="1" >
  13341. </productMenu>
  13342. <productID id="6848"
  13343. />
  13344. <productGroupable type="0"
  13345. />
  13346. </product>
  13347. <product id="J10"
  13348. name="J10"
  13349. series="5"
  13350. latestVersion="1.1.4"
  13351. show = "0" >
  13352. <productMenu id="protocol"
  13353. type="3" >
  13354. </productMenu>
  13355. <productMenu id="sip"
  13356. type="1" >
  13357. </productMenu>
  13358. <productMenu id="bluetoothIntercom"
  13359. type="1" >
  13360. </productMenu>
  13361. <productMenu id="phone"
  13362. type="1" >
  13363. </productMenu>
  13364. <productMenu id="fmradio"
  13365. type="0" >
  13366. </productMenu>
  13367. <productMenu id="deviceSetting"
  13368. type="1"
  13369. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13370. </productMenu>
  13371. <productMenu id="userGuide"
  13372. type="1"
  13373. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  13374. size="1.14MB" >
  13375. </productMenu>
  13376. <productID id="5598"
  13377. />
  13378. <productGroupable type="0"
  13379. />
  13380. </product>
  13381. <product id="B20"
  13382. name="B20"
  13383. series="B"
  13384. latestVersion="1.1.4"
  13385. latestVersionVoicePrompt="0.14"
  13386. show = "0" >
  13387. <productMenu id="protocol"
  13388. type="2" >
  13389. </productMenu>
  13390. <productMenu id="alexa"
  13391. type="0" >
  13392. </productMenu>
  13393. <productMenu id="ota"
  13394. type="2" >
  13395. <otaPackages>
  13396. <package
  13397. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.4-build0.img"
  13398. size="3144148"
  13399. />
  13400. </otaPackages>
  13401. </productMenu>
  13402. <productMenu id="wa"
  13403. type="0" >
  13404. </productMenu>
  13405. <productMenu id="meshIntercom"
  13406. type="30" >
  13407. </productMenu>
  13408. <productMenu id="phone"
  13409. type="1" >
  13410. </productMenu>
  13411. <productMenu id="music"
  13412. type="1" >
  13413. </productMenu>
  13414. <productMenu id="musicSharing"
  13415. type="0" >
  13416. </productMenu>
  13417. <productMenu id="deviceSetting"
  13418. type="1"
  13419. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  13420. <productMenuURL version="1.0.9"
  13421. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  13422. />
  13423. </productMenu>
  13424. <productMenu id="quickGuide"
  13425. type="0"
  13426. url=""
  13427. size="1.12MB" >
  13428. </productMenu>
  13429. <productMenu id="userGuide"
  13430. type="1"
  13431. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  13432. size="2.0MB" >
  13433. </productMenu>
  13434. <productMenu id="videoGuide"
  13435. type="0"
  13436. url=""
  13437. size="3.41MB" >
  13438. </productMenu>
  13439. <productMenu id="volume"
  13440. type="12" >
  13441. </productMenu>
  13442. <productMenu id="battery"
  13443. type="1" >
  13444. </productMenu>
  13445. <productID id="6847"
  13446. />
  13447. <productGroupable type="0"
  13448. />
  13449. </product>
  13450. <product id="B10"
  13451. name="B10"
  13452. series="5"
  13453. latestVersion="1.2.4"
  13454. show = "0" >
  13455. <productMenu id="protocol"
  13456. type="3" >
  13457. </productMenu>
  13458. <productMenu id="sip"
  13459. type="1" >
  13460. </productMenu>
  13461. <productMenu id="bluetoothIntercom"
  13462. type="1" >
  13463. </productMenu>
  13464. <productMenu id="phone"
  13465. type="1" >
  13466. </productMenu>
  13467. <productMenu id="fmradio"
  13468. type="0" >
  13469. </productMenu>
  13470. <productMenu id="deviceSetting"
  13471. type="1"
  13472. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  13473. </productMenu>
  13474. <productMenu id="userGuide"
  13475. type="1"
  13476. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  13477. size="1.14MB" >
  13478. </productMenu>
  13479. <productID id="5596"
  13480. />
  13481. <productGroupable type="0"
  13482. />
  13483. </product>
  13484. <product id="E30"
  13485. name="E30"
  13486. series="E"
  13487. latestVersion="1.1.4"
  13488. latestVersionVoicePrompt="0.14"
  13489. show = "0" >
  13490. <productMenu id="protocol"
  13491. type="2" >
  13492. </productMenu>
  13493. <productMenu id="alexa"
  13494. type="0" >
  13495. </productMenu>
  13496. <productMenu id="ota"
  13497. type="2" >
  13498. <otaPackages>
  13499. <package
  13500. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.4-build0.img"
  13501. size="3144148"
  13502. />
  13503. </otaPackages>
  13504. </productMenu>
  13505. <productMenu id="wa"
  13506. type="0" >
  13507. </productMenu>
  13508. <productMenu id="meshIntercom"
  13509. type="30" >
  13510. </productMenu>
  13511. <productMenu id="meshIntercom+"
  13512. type="3"
  13513. url="2" >
  13514. </productMenu>
  13515. <productMenu id="waveIntercom"
  13516. type="1" >
  13517. <productMenuType version="1.0.9"
  13518. type="0"
  13519. />
  13520. </productMenu>
  13521. <productMenu id="phone"
  13522. type="1" >
  13523. </productMenu>
  13524. <productMenu id="music"
  13525. type="1" >
  13526. </productMenu>
  13527. <productMenu id="musicSharing"
  13528. type="0" >
  13529. </productMenu>
  13530. <productMenu id="deviceSetting"
  13531. type="1"
  13532. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  13533. </productMenu>
  13534. <productMenu id="quickGuide"
  13535. type="0"
  13536. url=""
  13537. size="1.12MB" >
  13538. </productMenu>
  13539. <productMenu id="userGuide"
  13540. type="1"
  13541. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  13542. size="2.0MB" >
  13543. </productMenu>
  13544. <productMenu id="videoGuide"
  13545. type="0"
  13546. url=""
  13547. size="3.41MB" >
  13548. </productMenu>
  13549. <productMenu id="volume"
  13550. type="12" >
  13551. </productMenu>
  13552. <productMenu id="battery"
  13553. type="1" >
  13554. </productMenu>
  13555. <productID id="6846"
  13556. />
  13557. <productGroupable type="0"
  13558. />
  13559. </product>
  13560. <product id="ACSRAM"
  13561. name="ACS-RAM"
  13562. series="ACS"
  13563. latestVersion="1.0.5"
  13564. show = "1" >
  13565. <productMenu id="protocol"
  13566. type="3" >
  13567. </productMenu>
  13568. <productMenu id="sip"
  13569. type="1" >
  13570. </productMenu>
  13571. <productMenu id="bluetoothIntercom"
  13572. type="1" >
  13573. </productMenu>
  13574. <productMenu id="deviceSetting"
  13575. type="1"
  13576. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM_01.xml" >
  13577. <productMenuURL version="1.0.9"
  13578. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml"
  13579. />
  13580. </productMenu>
  13581. <productMenu id="quickGuide"
  13582. type="1"
  13583. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  13584. size="344KB" >
  13585. </productMenu>
  13586. <productMenu id="userGuide"
  13587. type="1"
  13588. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  13589. size="1.14MB" >
  13590. </productMenu>
  13591. <productMenu id="connectGuide"
  13592. type="1"
  13593. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  13594. size="1.12MB" >
  13595. </productMenu>
  13596. <productID id="3400"
  13597. />
  13598. <productGroupable type="0"
  13599. />
  13600. </product>
  13601. <product id="ACS10"
  13602. name="ACS10"
  13603. series="ACS"
  13604. latestVersion="1.0.2"
  13605. show = "1" >
  13606. <productMenu id="protocol"
  13607. type="0">
  13608. </productMenu>
  13609. <productMenu id="sip"
  13610. type="1" >
  13611. </productMenu>
  13612. <productMenu id="bluetoothIntercom"
  13613. type="1" >
  13614. </productMenu>
  13615. <productMenu id="phone"
  13616. type="2" >
  13617. </productMenu>
  13618. <productMenu id="deviceSetting"
  13619. type="1"
  13620. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  13621. </productMenu>
  13622. <productMenu id="quickGuide"
  13623. type="1"
  13624. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  13625. size="970KB" >
  13626. </productMenu>
  13627. <productMenu id="userGuide"
  13628. type="1"
  13629. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  13630. size="1.26MB" >
  13631. </productMenu>
  13632. <productMenu id="connectGuide"
  13633. type="1"
  13634. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  13635. size="1.12MB" >
  13636. </productMenu>
  13637. <productID id="3300"
  13638. />
  13639. <productGroupable type="0"
  13640. />
  13641. </product>
  13642. <product id="DWO7ProMesh"
  13643. name="DWO 7 Pro Mesh"
  13644. series="50"
  13645. latestVersion="1.1"
  13646. latestVersionVoicePrompt="0.9"
  13647. show = "0" >
  13648. <productMenu id="protocol"
  13649. type="2" >
  13650. </productMenu>
  13651. <productMenu id="alexa"
  13652. type="0" >
  13653. </productMenu>
  13654. <productMenu id="ota"
  13655. type="2" >
  13656. <otaPackages>
  13657. <package
  13658. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  13659. size="2945812"
  13660. />
  13661. </otaPackages>
  13662. </productMenu>
  13663. <productMenu id="wa"
  13664. type="0" >
  13665. </productMenu>
  13666. <productMenu id="meshIntercom"
  13667. type="20" >
  13668. </productMenu>
  13669. <productMenu id="meshIntercom+"
  13670. type="3"
  13671. url="2" >
  13672. <productMenuType version="1.0.9"
  13673. type="2"
  13674. />
  13675. <productMenuURL version="2.1.1"
  13676. url="0"
  13677. />
  13678. </productMenu>
  13679. <productMenu id="waveIntercom"
  13680. type="1" >
  13681. <productMenuType version="1.0.9"
  13682. type="0"
  13683. />
  13684. </productMenu>
  13685. <productMenu id="phone"
  13686. type="1" >
  13687. </productMenu>
  13688. <productMenu id="music"
  13689. type="1" >
  13690. </productMenu>
  13691. <productMenu id="fmradio"
  13692. type="1" >
  13693. </productMenu>
  13694. <productMenu id="musicSharing"
  13695. type="0" >
  13696. </productMenu>
  13697. <productMenu id="deviceSetting"
  13698. type="1"
  13699. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  13700. <productMenuURL version="1.0.9"
  13701. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  13702. />
  13703. </productMenu>
  13704. <productMenu id="quickGuide"
  13705. type="1"
  13706. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13707. size="1.12MB" >
  13708. </productMenu>
  13709. <productMenu id="userGuide"
  13710. type="1"
  13711. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13712. size="2.0MB" >
  13713. </productMenu>
  13714. <productMenu id="volume"
  13715. type="12" >
  13716. </productMenu>
  13717. <productMenu id="battery"
  13718. type="1" >
  13719. </productMenu>
  13720. <productID id="6806"
  13721. />
  13722. <productGroupable type="0"
  13723. />
  13724. </product>
  13725. <product id="ERA1X"
  13726. name="ERA 1 X"
  13727. series="UCOM"
  13728. latestVersion="0.2.1"
  13729. latestVersionMesh="0.19"
  13730. latestVersionVoicePrompt="1.2"
  13731. show = "-1" >
  13732. <productMenu id="protocol"
  13733. type="2" >
  13734. </productMenu>
  13735. <productMenu id="ota"
  13736. type="2" >
  13737. <otaLanguages>
  13738. <otaLanguage
  13739. id="0"
  13740. name="English"
  13741. package="0"
  13742. />
  13743. <otaLanguage
  13744. id="0"
  13745. name="French"
  13746. package="1"
  13747. />
  13748. <otaLanguage
  13749. id="0"
  13750. name="Spanish"
  13751. package="2"
  13752. />
  13753. <otaLanguage
  13754. id="0"
  13755. name="Italian"
  13756. package="3"
  13757. />
  13758. <otaLanguage
  13759. id="0"
  13760. name="German"
  13761. package="4"
  13762. />
  13763. <otaLanguage
  13764. id="0"
  13765. name="Dutch"
  13766. package="5"
  13767. />
  13768. <otaLanguage
  13769. id="0"
  13770. name="Russian"
  13771. package="6"
  13772. />
  13773. <otaLanguage
  13774. id="0"
  13775. name="Chinese"
  13776. package="7"
  13777. />
  13778. <otaLanguage
  13779. id="0"
  13780. name="Korean"
  13781. package="8"
  13782. />
  13783. <otaLanguage
  13784. id="0"
  13785. name="Japanese"
  13786. package="9"
  13787. />
  13788. <otaLanguage
  13789. id="0"
  13790. name="Finnish"
  13791. package="10"
  13792. />
  13793. <otaLanguage
  13794. id="0"
  13795. name="Polish"
  13796. package="11"
  13797. />
  13798. <otaLanguage
  13799. id="0"
  13800. name="Czech"
  13801. package="12"
  13802. />
  13803. <otaLanguage
  13804. id="0"
  13805. name="Danish"
  13806. package="13"
  13807. />
  13808. <otaLanguage
  13809. id="0"
  13810. name="Norwegian"
  13811. package="14"
  13812. />
  13813. <otaLanguage
  13814. id="0"
  13815. name="Swedish"
  13816. package="15"
  13817. />
  13818. <otaLanguage
  13819. id="0"
  13820. name="Turkish"
  13821. package="16"
  13822. />
  13823. <otaLanguage
  13824. id="0"
  13825. name="Hungarian"
  13826. package="17"
  13827. />
  13828. <otaLanguage
  13829. id="0"
  13830. name="Portuguese"
  13831. package="18"
  13832. />
  13833. <otaLanguage
  13834. id="0"
  13835. name="Hebrew"
  13836. package="19"
  13837. />
  13838. <otaLanguage
  13839. id="0"
  13840. name="Greek"
  13841. package="20"
  13842. />
  13843. </otaLanguages>
  13844. <otaPackages>
  13845. <package
  13846. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13847. size="5183988"
  13848. />
  13849. <package
  13850. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13851. size="5183988"
  13852. />
  13853. <package
  13854. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13855. size="5183988"
  13856. />
  13857. <package
  13858. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13859. size="5183988"
  13860. />
  13861. <package
  13862. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13863. size="5183988"
  13864. />
  13865. <package
  13866. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13867. size="5183988"
  13868. />
  13869. <package
  13870. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13871. size="5183988"
  13872. />
  13873. <package
  13874. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13875. size="5183988"
  13876. />
  13877. <package
  13878. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13879. size="5183988"
  13880. />
  13881. <package
  13882. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13883. size="5183988"
  13884. />
  13885. <package
  13886. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13887. size="5183988"
  13888. />
  13889. <package
  13890. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13891. size="5183988"
  13892. />
  13893. <package
  13894. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13895. size="5183988"
  13896. />
  13897. <package
  13898. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13899. size="5183988"
  13900. />
  13901. <package
  13902. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13903. size="5183988"
  13904. />
  13905. <package
  13906. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13907. size="5183988"
  13908. />
  13909. <package
  13910. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13911. size="5183988"
  13912. />
  13913. <package
  13914. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13915. size="5183988"
  13916. />
  13917. <package
  13918. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13919. size="5183988"
  13920. />
  13921. <package
  13922. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13923. size="5183988"
  13924. />
  13925. <package
  13926. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13927. size="5183988"
  13928. />
  13929. </otaPackages>
  13930. </productMenu>
  13931. <productMenu id="wa"
  13932. type="0" >
  13933. </productMenu>
  13934. <productMenu id="sip"
  13935. type="1" >
  13936. </productMenu>
  13937. <productMenu id="led"
  13938. type="0" >
  13939. </productMenu>
  13940. <productMenu id="illusion"
  13941. type="1" >
  13942. </productMenu>
  13943. <productMenu id="meshIntercom"
  13944. type="30" >
  13945. </productMenu>
  13946. <productMenu id="meshIntercom+"
  13947. type="3"
  13948. url="2" >
  13949. </productMenu>
  13950. <productMenu id="waveIntercom"
  13951. type="0" >
  13952. </productMenu>
  13953. <productMenu id="bluetoothIntercom"
  13954. type="1" >
  13955. </productMenu>
  13956. <productMenu id="bluetoothIntercomGrouping"
  13957. type="0" >
  13958. </productMenu>
  13959. <productMenu id="fmradio"
  13960. type="1"
  13961. url="1" >
  13962. </productMenu>
  13963. <productMenu id="phone"
  13964. type="1" >
  13965. </productMenu>
  13966. <productMenu id="music"
  13967. type="1" >
  13968. </productMenu>
  13969. <productMenu id="musicSharing"
  13970. type="0" >
  13971. </productMenu>
  13972. <productMenu id="deviceSetting"
  13973. type="1"
  13974. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  13975. </productMenu>
  13976. <productMenu id="quickGuide"
  13977. type="0"
  13978. url=""
  13979. size="1.12MB" >
  13980. </productMenu>
  13981. <productMenu id="userGuide"
  13982. type="1"
  13983. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  13984. size="2.0MB" >
  13985. </productMenu>
  13986. <productMenu id="videoGuide"
  13987. type="0"
  13988. url=""
  13989. size="3.41MB" >
  13990. </productMenu>
  13991. <productMenu id="volume"
  13992. type="16" >
  13993. </productMenu>
  13994. <productMenu id="soundMode"
  13995. type="1" >
  13996. </productMenu>
  13997. <productMenu id="battery"
  13998. type="1" >
  13999. </productMenu>
  14000. <productID id="6A83"
  14001. />
  14002. <productGroupable type="0"
  14003. />
  14004. </product>
  14005. <product id="MeshStation"
  14006. name="Mesh Station"
  14007. series="50"
  14008. latestVersion="0.9"
  14009. show = "-1" >
  14010. <productMenu id="protocol"
  14011. type="2" >
  14012. </productMenu>
  14013. <productMenu id="meshIntercom"
  14014. type="20"
  14015. url="99" >
  14016. </productMenu>
  14017. <productID id="3161"
  14018. />
  14019. <productGroupable type="0"
  14020. />
  14021. </product>
  14022. </products>
  14023. </sna>