snm.xml 509 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260171" 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_01.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_06.xml" >
  7939. <productMenuURL version="1.0.10"
  7940. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml"
  7941. />
  7942. <productMenuURL version="1.0.4"
  7943. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7944. />
  7945. </productMenu>
  7946. <productMenu id="quickGuide"
  7947. type="0"
  7948. url=""
  7949. size="1.12MB" >
  7950. </productMenu>
  7951. <productMenu id="userGuide"
  7952. type="1"
  7953. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7954. size="2.0MB" >
  7955. </productMenu>
  7956. <productMenu id="videoGuide"
  7957. type="0"
  7958. url=""
  7959. size="3.41MB" >
  7960. </productMenu>
  7961. <productMenu id="volume"
  7962. type="16" >
  7963. </productMenu>
  7964. <productMenu id="volume+"
  7965. type="2"
  7966. url="0x6004" >
  7967. </productMenu>
  7968. <productMenu id="battery"
  7969. type="1" >
  7970. </productMenu>
  7971. <productID id="6A05"
  7972. />
  7973. <productGroupable type="0"
  7974. />
  7975. </product>
  7976. <product id="OUTRUSH2"
  7977. name="OUTRUSH 2"
  7978. series="Helmet"
  7979. latestVersion="1.0.3"
  7980. latestVersionVoicePrompt="1.6"
  7981. show = "1" >
  7982. <productMenu id="protocol"
  7983. type="2" >
  7984. </productMenu>
  7985. <productMenu id="alexa"
  7986. type="0" >
  7987. </productMenu>
  7988. <productMenu id="ota"
  7989. type="2" >
  7990. <otaPackages>
  7991. <package
  7992. url="https://api.sena.com/support/OTA/Motorcycles/OUTRUSH2/OUTRUSH_2-v1.0.3-build0.img"
  7993. size="2945812"
  7994. />
  7995. </otaPackages>
  7996. </productMenu>
  7997. <productMenu id="meshIntercom+"
  7998. type="3"
  7999. url="2" >
  8000. </productMenu>
  8001. <productMenu id="waveIntercom"
  8002. type="1" >
  8003. </productMenu>
  8004. <productMenu id="phone"
  8005. type="1" >
  8006. </productMenu>
  8007. <productMenu id="music"
  8008. type="1" >
  8009. </productMenu>
  8010. <productMenu id="musicSharing"
  8011. type="0" >
  8012. </productMenu>
  8013. <productMenu id="deviceSetting"
  8014. type="1"
  8015. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8016. <productMenuURL version="1.0"
  8017. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  8018. />
  8019. </productMenu>
  8020. <productMenu id="quickGuide"
  8021. type="0"
  8022. url=""
  8023. size="1.12MB" >
  8024. </productMenu>
  8025. <productMenu id="userGuide"
  8026. type="1"
  8027. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  8028. size="2.0MB" >
  8029. </productMenu>
  8030. <productMenu id="connectGuide"
  8031. type="1"
  8032. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outrush2.json"
  8033. size="1.12MB" >
  8034. </productMenu>
  8035. <productMenu id="volume"
  8036. type="12" >
  8037. </productMenu>
  8038. <productMenu id="battery"
  8039. type="1" >
  8040. </productMenu>
  8041. <productID id="684A"
  8042. />
  8043. <productGroupable type="0"
  8044. />
  8045. </product>
  8046. <product id="OUTSTAR2"
  8047. name="OUTSTAR 2"
  8048. series="Helmet"
  8049. latestVersion="1.0.2"
  8050. latestVersionVoicePrompt="1.6"
  8051. show = "1" >
  8052. <productMenu id="protocol"
  8053. type="2" >
  8054. </productMenu>
  8055. <productMenu id="alexa"
  8056. type="0" >
  8057. </productMenu>
  8058. <productMenu id="ota"
  8059. type="2" >
  8060. <otaPackages>
  8061. <package
  8062. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.2-build0.img"
  8063. size="2945812"
  8064. />
  8065. </otaPackages>
  8066. </productMenu>
  8067. <productMenu id="meshIntercom+"
  8068. type="3"
  8069. url="2" >
  8070. </productMenu>
  8071. <productMenu id="waveIntercom"
  8072. type="1" >
  8073. </productMenu>
  8074. <productMenu id="phone"
  8075. type="1" >
  8076. </productMenu>
  8077. <productMenu id="music"
  8078. type="1" >
  8079. </productMenu>
  8080. <productMenu id="musicSharing"
  8081. type="0" >
  8082. </productMenu>
  8083. <productMenu id="deviceSetting"
  8084. type="1"
  8085. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8086. </productMenu>
  8087. <productMenu id="quickGuide"
  8088. type="0"
  8089. url=""
  8090. size="1.12MB" >
  8091. </productMenu>
  8092. <productMenu id="userGuide"
  8093. type="1"
  8094. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  8095. size="2.0MB" >
  8096. </productMenu>
  8097. <productMenu id="connectGuide"
  8098. type="1"
  8099. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outstar2.json"
  8100. size="1.12MB" >
  8101. </productMenu>
  8102. <productMenu id="volume"
  8103. type="12" >
  8104. </productMenu>
  8105. <productMenu id="battery"
  8106. type="1" >
  8107. </productMenu>
  8108. <productID id="684B"
  8109. />
  8110. <productGroupable type="0"
  8111. />
  8112. </product>
  8113. <product id="SURGE"
  8114. name="SURGE"
  8115. series="Helmet"
  8116. latestVersion="1.2"
  8117. latestVersionVoicePrompt="1.3"
  8118. show = "1" >
  8119. <productMenu id="protocol"
  8120. type="2" >
  8121. </productMenu>
  8122. <productMenu id="alexa"
  8123. type="0" >
  8124. </productMenu>
  8125. <productMenu id="ota"
  8126. type="2" >
  8127. <otaPackages>
  8128. <package
  8129. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  8130. size="2945812"
  8131. />
  8132. </otaPackages>
  8133. </productMenu>
  8134. <productMenu id="meshIntercom"
  8135. type="30" >
  8136. </productMenu>
  8137. <productMenu id="meshIntercom+"
  8138. type="3"
  8139. url="2" >
  8140. <productMenuType version="1.0.1"
  8141. type="2"
  8142. />
  8143. </productMenu>
  8144. <productMenu id="waveIntercom"
  8145. type="1" >
  8146. <productMenuType version="1.0.9"
  8147. type="0"
  8148. />
  8149. </productMenu>
  8150. <productMenu id="phone"
  8151. type="1" >
  8152. </productMenu>
  8153. <productMenu id="music"
  8154. type="1" >
  8155. </productMenu>
  8156. <productMenu id="musicSharing"
  8157. type="0" >
  8158. </productMenu>
  8159. <productMenu id="deviceSetting"
  8160. type="1"
  8161. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  8162. <productMenuURL version="1.1.9"
  8163. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  8164. />
  8165. <productMenuURL version="1.0.1"
  8166. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  8167. />
  8168. </productMenu>
  8169. <productMenu id="quickGuide"
  8170. type="0"
  8171. url=""
  8172. size="1.12MB" >
  8173. </productMenu>
  8174. <productMenu id="userGuide"
  8175. type="1"
  8176. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  8177. size="2.0MB" >
  8178. </productMenu>
  8179. <productMenu id="volume"
  8180. type="12" >
  8181. </productMenu>
  8182. <productMenu id="battery"
  8183. type="1" >
  8184. </productMenu>
  8185. <productID id="6840"
  8186. />
  8187. <productGroupable type="0"
  8188. />
  8189. </product>
  8190. <product id="Cavalry2"
  8191. name="Cavalry 2"
  8192. series="Helmet"
  8193. latestVersion="1.2"
  8194. latestVersionVoicePrompt="1.3"
  8195. show = "1" >
  8196. <productMenu id="protocol"
  8197. type="2" >
  8198. </productMenu>
  8199. <productMenu id="alexa"
  8200. type="0" >
  8201. </productMenu>
  8202. <productMenu id="ota"
  8203. type="2" >
  8204. <otaPackages>
  8205. <package
  8206. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  8207. size="3144148"
  8208. />
  8209. </otaPackages>
  8210. </productMenu>
  8211. <productMenu id="wa"
  8212. type="0" >
  8213. </productMenu>
  8214. <productMenu id="meshIntercom"
  8215. type="30" >
  8216. </productMenu>
  8217. <productMenu id="meshIntercom+"
  8218. type="3"
  8219. url="2" >
  8220. <productMenuType version="1.0"
  8221. type="2"
  8222. />
  8223. </productMenu>
  8224. <productMenu id="waveIntercom"
  8225. type="1" >
  8226. <productMenuType version="1.0.9"
  8227. type="0"
  8228. />
  8229. </productMenu>
  8230. <productMenu id="phone"
  8231. type="1" >
  8232. </productMenu>
  8233. <productMenu id="music"
  8234. type="1" >
  8235. </productMenu>
  8236. <productMenu id="musicSharing"
  8237. type="0" >
  8238. </productMenu>
  8239. <productMenu id="deviceSetting"
  8240. type="1"
  8241. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  8242. <productMenuURL version="1.1.9"
  8243. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  8244. />
  8245. <productMenuURL version="1.0"
  8246. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  8247. />
  8248. </productMenu>
  8249. <productMenu id="quickGuide"
  8250. type="0"
  8251. url=""
  8252. size="1.12MB" >
  8253. </productMenu>
  8254. <productMenu id="userGuide"
  8255. type="1"
  8256. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  8257. size="2.0MB" >
  8258. </productMenu>
  8259. <productMenu id="connectGuide"
  8260. type="1"
  8261. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  8262. size="1.12MB" >
  8263. </productMenu>
  8264. <productMenu id="volume"
  8265. type="12" >
  8266. </productMenu>
  8267. <productMenu id="battery"
  8268. type="1" >
  8269. </productMenu>
  8270. <productID id="6839"
  8271. />
  8272. <productGroupable type="0"
  8273. />
  8274. </product>
  8275. <product id="Cavalry"
  8276. name="Cavalry"
  8277. series="Helmet"
  8278. latestVersion="1.2.2"
  8279. show = "1" >
  8280. <productMenu id="protocol"
  8281. type="0">
  8282. </productMenu>
  8283. <productMenu id="sip"
  8284. type="1" >
  8285. </productMenu>
  8286. <productMenu id="bluetoothIntercom"
  8287. type="1" >
  8288. </productMenu>
  8289. <productMenu id="phone"
  8290. type="2" >
  8291. </productMenu>
  8292. <productMenu id="fmradio"
  8293. type="3" >
  8294. </productMenu>
  8295. <productMenu id="deviceSetting"
  8296. type="1"
  8297. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  8298. <productMenuURL version="1.9"
  8299. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  8300. />
  8301. <productMenuURL version="1.0.1"
  8302. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  8303. />
  8304. </productMenu>
  8305. <productMenu id="quickGuide"
  8306. type="1"
  8307. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  8308. size="795KB" >
  8309. </productMenu>
  8310. <productMenu id="userGuide"
  8311. type="1"
  8312. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  8313. size="1.87MB" >
  8314. </productMenu>
  8315. <productMenu id="connectGuide"
  8316. type="1"
  8317. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8318. size="1.12MB" >
  8319. </productMenu>
  8320. <productID id="5524"
  8321. />
  8322. <productGroupable type="0"
  8323. />
  8324. </product>
  8325. <product id="Cavalry_Lite"
  8326. name="Cavalry Lite"
  8327. series="Helmet"
  8328. latestVersion="1.0.2"
  8329. show = "1" >
  8330. <productMenu id="protocol"
  8331. type="0">
  8332. </productMenu>
  8333. <productMenu id="sip"
  8334. type="1" >
  8335. </productMenu>
  8336. <productMenu id="bluetoothIntercom"
  8337. type="1" >
  8338. </productMenu>
  8339. <productMenu id="phone"
  8340. type="2" >
  8341. </productMenu>
  8342. <productMenu id="fmradio"
  8343. type="3" >
  8344. </productMenu>
  8345. <productMenu id="deviceSetting"
  8346. type="1"
  8347. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  8348. </productMenu>
  8349. <productMenu id="userGuide"
  8350. type="1"
  8351. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  8352. size="1.74MB" >
  8353. </productMenu>
  8354. <productMenu id="connectGuide"
  8355. type="1"
  8356. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8357. size="1.12MB" >
  8358. </productMenu>
  8359. <productID id="5536"
  8360. />
  8361. <productGroupable type="0"
  8362. />
  8363. </product>
  8364. <product id="VORTEX"
  8365. name="VORTEX"
  8366. series="VORTEX"
  8367. latestVersion="1.0.2"
  8368. latestVersionVoicePrompt="1.0"
  8369. show = "1" >
  8370. <productMenu id="protocol"
  8371. type="2" >
  8372. </productMenu>
  8373. <productMenu id="warranty"
  8374. type="1" >
  8375. </productMenu>
  8376. <productMenu id="serialNumber"
  8377. type="1" >
  8378. </productMenu>
  8379. <productMenu id="ota"
  8380. type="2" >
  8381. <otaLanguages>
  8382. <otaLanguage
  8383. id="0"
  8384. name="English"
  8385. package="0"
  8386. />
  8387. <otaLanguage
  8388. id="0"
  8389. name="French"
  8390. package="1"
  8391. />
  8392. <otaLanguage
  8393. id="0"
  8394. name="Spanish"
  8395. package="2"
  8396. />
  8397. <otaLanguage
  8398. id="0"
  8399. name="Italian"
  8400. package="3"
  8401. />
  8402. <otaLanguage
  8403. id="0"
  8404. name="German"
  8405. package="4"
  8406. />
  8407. <otaLanguage
  8408. id="0"
  8409. name="Dutch"
  8410. package="5"
  8411. />
  8412. <otaLanguage
  8413. id="0"
  8414. name="Russian"
  8415. package="6"
  8416. />
  8417. <otaLanguage
  8418. id="0"
  8419. name="Chinese"
  8420. package="7"
  8421. />
  8422. <otaLanguage
  8423. id="0"
  8424. name="Korean"
  8425. package="8"
  8426. />
  8427. <otaLanguage
  8428. id="0"
  8429. name="Japanese"
  8430. package="9"
  8431. />
  8432. <otaLanguage
  8433. id="0"
  8434. name="Finnish"
  8435. package="10"
  8436. />
  8437. <otaLanguage
  8438. id="0"
  8439. name="Polish"
  8440. package="11"
  8441. />
  8442. </otaLanguages>
  8443. <otaPackages>
  8444. <package
  8445. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1.img"
  8446. size="5183988"
  8447. />
  8448. <package
  8449. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fr-FR.img"
  8450. size="5183988"
  8451. />
  8452. <package
  8453. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-es-ES.img"
  8454. size="5183988"
  8455. />
  8456. <package
  8457. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-it-IT.img"
  8458. size="5183988"
  8459. />
  8460. <package
  8461. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-de-DE.img"
  8462. size="5183988"
  8463. />
  8464. <package
  8465. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-nl-NL.img"
  8466. size="5183988"
  8467. />
  8468. <package
  8469. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ru-RU.img"
  8470. size="5183988"
  8471. />
  8472. <package
  8473. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-cmn-CN.img"
  8474. size="5183988"
  8475. />
  8476. <package
  8477. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ko-KR.img"
  8478. size="5183988"
  8479. />
  8480. <package
  8481. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ja-JP.img"
  8482. size="5183988"
  8483. />
  8484. <package
  8485. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fi-FI.img"
  8486. size="5183988"
  8487. />
  8488. <package
  8489. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-pl-PL.img"
  8490. size="5183988"
  8491. />
  8492. </otaPackages>
  8493. </productMenu>
  8494. <productMenu id="sip"
  8495. type="1" >
  8496. </productMenu>
  8497. <productMenu id="bluetoothIntercom"
  8498. type="1" >
  8499. </productMenu>
  8500. <productMenu id="phone"
  8501. type="1" >
  8502. </productMenu>
  8503. <productMenu id="music"
  8504. type="1" >
  8505. </productMenu>
  8506. <productMenu id="fmradio"
  8507. type="1"
  8508. url="1" >
  8509. </productMenu>
  8510. <productMenu id="deviceSetting"
  8511. type="1"
  8512. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8513. </productMenu>
  8514. <productMenu id="quickGuide"
  8515. type="0"
  8516. url=""
  8517. size="934KB" >
  8518. </productMenu>
  8519. <productMenu id="userGuide"
  8520. type="1"
  8521. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_VORTEX_1.0.0_en_260805.pdf"
  8522. size="1.14MB" >
  8523. </productMenu>
  8524. <productMenu id="connectGuide"
  8525. type="0"
  8526. url=""
  8527. size="1.12MB" >
  8528. </productMenu>
  8529. <productMenu id="volume"
  8530. type="15" >
  8531. </productMenu>
  8532. <productMenu id="volume+"
  8533. type="2"
  8534. url="0x0018" >
  8535. </productMenu>
  8536. <productMenu id="appearance"
  8537. type="1"
  8538. url="1|white,silver,black" >
  8539. </productMenu>
  8540. <productID id="3451"
  8541. />
  8542. <productGroupable type="0"
  8543. />
  8544. </product>
  8545. <product id="SF4"
  8546. name="SF4"
  8547. series="SF"
  8548. latestVersion="1.1.5"
  8549. show = "-1" >
  8550. <productMenu id="protocol"
  8551. type="1"
  8552. url="3">
  8553. </productMenu>
  8554. <productMenu id="sip"
  8555. type="1" >
  8556. </productMenu>
  8557. <productMenu id="bluetoothIntercom"
  8558. type="1" >
  8559. </productMenu>
  8560. <productMenu id="phone"
  8561. type="1" >
  8562. </productMenu>
  8563. <productMenu id="music"
  8564. type="1" >
  8565. </productMenu>
  8566. <productMenu id="fmradio"
  8567. type="1" >
  8568. </productMenu>
  8569. <productMenu id="deviceSetting"
  8570. type="1"
  8571. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8572. <productMenuURL version="1.0.1"
  8573. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8574. />
  8575. </productMenu>
  8576. <productMenu id="quickGuide"
  8577. type="1"
  8578. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8579. size="607KB" >
  8580. </productMenu>
  8581. <productMenu id="userGuide"
  8582. type="1"
  8583. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8584. size="1.91MB" >
  8585. </productMenu>
  8586. <productMenu id="volume"
  8587. type="4" >
  8588. </productMenu>
  8589. <productID id="5414"
  8590. />
  8591. <productGroupable type="0"
  8592. />
  8593. </product>
  8594. <product id="SF4"
  8595. name="SF4"
  8596. series="SF"
  8597. latestVersion="3.4.4"
  8598. show = "1" >
  8599. <productMenu id="protocol"
  8600. type="2" >
  8601. </productMenu>
  8602. <productMenu id="sip"
  8603. type="1" >
  8604. </productMenu>
  8605. <productMenu id="bluetoothIntercom"
  8606. type="1" >
  8607. </productMenu>
  8608. <productMenu id="phone"
  8609. type="1" >
  8610. </productMenu>
  8611. <productMenu id="music"
  8612. type="1" >
  8613. </productMenu>
  8614. <productMenu id="fmradio"
  8615. type="1" >
  8616. </productMenu>
  8617. <productMenu id="deviceSetting"
  8618. type="1"
  8619. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8620. <productMenuURL version="3.0"
  8621. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8622. />
  8623. </productMenu>
  8624. <productMenu id="quickGuide"
  8625. type="0"
  8626. url=""
  8627. size="934KB" >
  8628. </productMenu>
  8629. <productMenu id="userGuide"
  8630. type="1"
  8631. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8632. size="1.14MB" >
  8633. </productMenu>
  8634. <productMenu id="connectGuide"
  8635. type="1"
  8636. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8637. size="1.12MB" >
  8638. </productMenu>
  8639. <productMenu id="volume"
  8640. type="15" >
  8641. </productMenu>
  8642. <productID id="3370"
  8643. />
  8644. <productGroupable type="0"
  8645. />
  8646. </product>
  8647. <product id="SF2"
  8648. name="SF2"
  8649. series="SF"
  8650. latestVersion="1.2.1"
  8651. show = "-1" >
  8652. <productMenu id="protocol"
  8653. type="1"
  8654. url="2">
  8655. </productMenu>
  8656. <productMenu id="sip"
  8657. type="1" >
  8658. </productMenu>
  8659. <productMenu id="bluetoothIntercom"
  8660. type="1" >
  8661. </productMenu>
  8662. <productMenu id="phone"
  8663. type="1" >
  8664. </productMenu>
  8665. <productMenu id="music"
  8666. type="1" >
  8667. </productMenu>
  8668. <productMenu id="fmradio"
  8669. type="1" >
  8670. </productMenu>
  8671. <productMenu id="deviceSetting"
  8672. type="1"
  8673. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8674. <productMenuURL version="1.0.1"
  8675. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8676. />
  8677. </productMenu>
  8678. <productMenu id="quickGuide"
  8679. type="1"
  8680. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8681. size="607KB" >
  8682. </productMenu>
  8683. <productMenu id="userGuide"
  8684. type="1"
  8685. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8686. size="1.91MB" >
  8687. </productMenu>
  8688. <productMenu id="volume"
  8689. type="4" >
  8690. </productMenu>
  8691. <productID id="5412"
  8692. />
  8693. <productGroupable type="0"
  8694. />
  8695. </product>
  8696. <product id="SF2"
  8697. name="SF2"
  8698. series="SF"
  8699. latestVersion="3.3.4"
  8700. show = "1" >
  8701. <productMenu id="protocol"
  8702. type="2" >
  8703. </productMenu>
  8704. <productMenu id="sip"
  8705. type="1" >
  8706. </productMenu>
  8707. <productMenu id="bluetoothIntercom"
  8708. type="1" >
  8709. </productMenu>
  8710. <productMenu id="phone"
  8711. type="1" >
  8712. </productMenu>
  8713. <productMenu id="music"
  8714. type="1" >
  8715. </productMenu>
  8716. <productMenu id="fmradio"
  8717. type="0" >
  8718. </productMenu>
  8719. <productMenu id="deviceSetting"
  8720. type="1"
  8721. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8722. <productMenuURL version="3.0"
  8723. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8724. />
  8725. </productMenu>
  8726. <productMenu id="quickGuide"
  8727. type="0"
  8728. url=""
  8729. size="934KB" >
  8730. </productMenu>
  8731. <productMenu id="userGuide"
  8732. type="1"
  8733. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8734. size="1.14MB" >
  8735. </productMenu>
  8736. <productMenu id="connectGuide"
  8737. type="1"
  8738. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8739. size="1.12MB" >
  8740. </productMenu>
  8741. <productMenu id="volume"
  8742. type="15" >
  8743. </productMenu>
  8744. <productID id="3360"
  8745. />
  8746. <productGroupable type="0"
  8747. />
  8748. </product>
  8749. <product id="SF1"
  8750. name="SF1"
  8751. series="SF"
  8752. latestVersion="2.0.5"
  8753. show = "-1" >
  8754. <productMenu id="protocol"
  8755. type="1"
  8756. url="1">
  8757. </productMenu>
  8758. <productMenu id="sip"
  8759. type="1" >
  8760. </productMenu>
  8761. <productMenu id="bluetoothIntercom"
  8762. type="1" >
  8763. <productMenuType version="1.1"
  8764. type="0"
  8765. />
  8766. </productMenu>
  8767. <productMenu id="phone"
  8768. type="1" >
  8769. </productMenu>
  8770. <productMenu id="music"
  8771. type="1" >
  8772. </productMenu>
  8773. <productMenu id="deviceSetting"
  8774. type="1"
  8775. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8776. <productMenuURL version="1.1"
  8777. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8778. />
  8779. <productMenuURL version="1.0"
  8780. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8781. />
  8782. </productMenu>
  8783. <productMenu id="quickGuide"
  8784. type="1"
  8785. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8786. size="401KB" >
  8787. </productMenu>
  8788. <productMenu id="userGuide"
  8789. type="1"
  8790. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8791. size="1.91MB" >
  8792. </productMenu>
  8793. <productMenu id="volume"
  8794. type="3" >
  8795. </productMenu>
  8796. <productID id="5410"
  8797. />
  8798. <productGroupable type="0"
  8799. />
  8800. </product>
  8801. <product id="SF1"
  8802. name="SF1"
  8803. series="SF"
  8804. latestVersion="3.3.4"
  8805. show = "1" >
  8806. <productMenu id="protocol"
  8807. type="2" >
  8808. </productMenu>
  8809. <productMenu id="sip"
  8810. type="1" >
  8811. </productMenu>
  8812. <productMenu id="bluetoothIntercom"
  8813. type="1" >
  8814. </productMenu>
  8815. <productMenu id="phone"
  8816. type="1" >
  8817. </productMenu>
  8818. <productMenu id="music"
  8819. type="1" >
  8820. </productMenu>
  8821. <productMenu id="fmradio"
  8822. type="0" >
  8823. </productMenu>
  8824. <productMenu id="deviceSetting"
  8825. type="1"
  8826. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8827. <productMenuURL version="3.0"
  8828. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8829. />
  8830. </productMenu>
  8831. <productMenu id="quickGuide"
  8832. type="0"
  8833. url=""
  8834. size="934KB" >
  8835. </productMenu>
  8836. <productMenu id="userGuide"
  8837. type="1"
  8838. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8839. size="1.14MB" >
  8840. </productMenu>
  8841. <productMenu id="connectGuide"
  8842. type="1"
  8843. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8844. size="1.12MB" >
  8845. </productMenu>
  8846. <productMenu id="volume"
  8847. type="15" >
  8848. </productMenu>
  8849. <productID id="3350"
  8850. />
  8851. <productGroupable type="0"
  8852. />
  8853. </product>
  8854. <product id="SFR"
  8855. name="SFR"
  8856. series="SF"
  8857. latestVersion="1.1.1"
  8858. show = "1" >
  8859. <productMenu id="protocol"
  8860. type="1"
  8861. url="3">
  8862. </productMenu>
  8863. <productMenu id="sip"
  8864. type="1" >
  8865. </productMenu>
  8866. <productMenu id="bluetoothIntercom"
  8867. type="1" >
  8868. </productMenu>
  8869. <productMenu id="phone"
  8870. type="1" >
  8871. </productMenu>
  8872. <productMenu id="music"
  8873. type="1" >
  8874. </productMenu>
  8875. <productMenu id="fmradio"
  8876. type="1" >
  8877. </productMenu>
  8878. <productMenu id="deviceSetting"
  8879. type="1"
  8880. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8881. </productMenu>
  8882. <productMenu id="quickGuide"
  8883. type="1"
  8884. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8885. size="607KB" >
  8886. </productMenu>
  8887. <productMenu id="userGuide"
  8888. type="1"
  8889. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8890. size="1.91MB" >
  8891. </productMenu>
  8892. <productMenu id="volume"
  8893. type="4" >
  8894. </productMenu>
  8895. <productID id="5418"
  8896. />
  8897. <productGroupable type="0"
  8898. />
  8899. </product>
  8900. <product id="20S"
  8901. name="20S"
  8902. series="20"
  8903. latestVersion="2.2.3"
  8904. show = "1" >
  8905. <productMenu id="protocol"
  8906. type="0">
  8907. </productMenu>
  8908. <productMenu id="wa"
  8909. type="5" >
  8910. </productMenu>
  8911. <productMenu id="sip"
  8912. type="1" >
  8913. <productMenuType version="1.0"
  8914. type="0"
  8915. />
  8916. </productMenu>
  8917. <productMenu id="bluetoothIntercom"
  8918. type="1" >
  8919. <productMenuType version="1.0"
  8920. type="0"
  8921. />
  8922. </productMenu>
  8923. <productMenu id="intercomSetting"
  8924. type="1" >
  8925. </productMenu>
  8926. <productMenu id="phone"
  8927. type="2" >
  8928. </productMenu>
  8929. <productMenu id="fmradio"
  8930. type="3" >
  8931. </productMenu>
  8932. <productMenu id="deviceSetting"
  8933. type="1"
  8934. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8935. <productMenuURL version="2.0.2"
  8936. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8937. />
  8938. <productMenuURL version="1.5"
  8939. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8940. />
  8941. <productMenuURL version="1.4.1"
  8942. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8943. />
  8944. <productMenuURL version="1.1"
  8945. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8946. />
  8947. <productMenuURL version="1.0"
  8948. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8949. />
  8950. </productMenu>
  8951. <productMenu id="quickGuide"
  8952. type="0"
  8953. url=""
  8954. size="264KB" >
  8955. </productMenu>
  8956. <productMenu id="userGuide"
  8957. type="1"
  8958. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8959. size="3.09MB" >
  8960. </productMenu>
  8961. <productMenu id="connectGuide"
  8962. type="1"
  8963. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8964. size="1.12MB" >
  8965. </productMenu>
  8966. <productID id="4210"
  8967. />
  8968. <productGroupable type="1"
  8969. />
  8970. </product>
  8971. <product id="20S_EVO"
  8972. name="20S EVO"
  8973. series="20"
  8974. latestVersion="2.2.3"
  8975. show = "1" >
  8976. <productMenu id="protocol"
  8977. type="0">
  8978. </productMenu>
  8979. <productMenu id="wa"
  8980. type="5" >
  8981. </productMenu>
  8982. <productMenu id="sip"
  8983. type="1" >
  8984. <productMenuType version="1.0"
  8985. type="0"
  8986. />
  8987. </productMenu>
  8988. <productMenu id="bluetoothIntercom"
  8989. type="1" >
  8990. <productMenuType version="1.0"
  8991. type="0"
  8992. />
  8993. </productMenu>
  8994. <productMenu id="intercomSetting"
  8995. type="1" >
  8996. </productMenu>
  8997. <productMenu id="phone"
  8998. type="2" >
  8999. </productMenu>
  9000. <productMenu id="fmradio"
  9001. type="3" >
  9002. </productMenu>
  9003. <productMenu id="deviceSetting"
  9004. type="1"
  9005. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  9006. <productMenuURL version="2.0.2"
  9007. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9008. />
  9009. <productMenuURL version="1.5"
  9010. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9011. />
  9012. <productMenuURL version="1.4.1"
  9013. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9014. />
  9015. <productMenuURL version="1.1"
  9016. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9017. />
  9018. <productMenuURL version="1.0"
  9019. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9020. />
  9021. </productMenu>
  9022. <productMenu id="quickGuide"
  9023. type="0"
  9024. url=""
  9025. size="264KB" >
  9026. </productMenu>
  9027. <productMenu id="userGuide"
  9028. type="1"
  9029. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  9030. size="3.09MB" >
  9031. </productMenu>
  9032. <productMenu id="connectGuide"
  9033. type="1"
  9034. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9035. size="1.12MB" >
  9036. </productMenu>
  9037. <productID id="4210"
  9038. />
  9039. <productProductKey key="16"
  9040. />
  9041. <productGroupable type="1"
  9042. />
  9043. </product>
  9044. <product id="10S"
  9045. name="10S"
  9046. series="10"
  9047. latestVersion="3.0.2"
  9048. show = "1" >
  9049. <productMenu id="protocol"
  9050. type="3" >
  9051. </productMenu>
  9052. <productMenu id="sip"
  9053. type="1" >
  9054. </productMenu>
  9055. <productMenu id="bluetoothIntercom"
  9056. type="1" >
  9057. </productMenu>
  9058. <productMenu id="phone"
  9059. type="1" >
  9060. </productMenu>
  9061. <productMenu id="deviceSetting"
  9062. type="1"
  9063. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  9064. </productMenu>
  9065. <productMenu id="quickGuide"
  9066. type="1"
  9067. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  9068. size="934KB" >
  9069. </productMenu>
  9070. <productMenu id="userGuide"
  9071. type="1"
  9072. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  9073. size="1.14MB" >
  9074. </productMenu>
  9075. <productMenu id="connectGuide"
  9076. type="1"
  9077. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  9078. size="1.12MB" >
  9079. </productMenu>
  9080. <productID id="3380"
  9081. />
  9082. <productGroupable type="0"
  9083. />
  9084. </product>
  9085. <product id="10S"
  9086. name="10S"
  9087. series="10"
  9088. latestVersion="2.1.1"
  9089. show = "-1" >
  9090. <productMenu id="protocol"
  9091. type="0">
  9092. </productMenu>
  9093. <productMenu id="sip"
  9094. type="1" >
  9095. </productMenu>
  9096. <productMenu id="bluetoothIntercom"
  9097. type="1" >
  9098. </productMenu>
  9099. <productMenu id="phone"
  9100. type="2" >
  9101. </productMenu>
  9102. <productMenu id="fmradio"
  9103. type="3" >
  9104. </productMenu>
  9105. <productMenu id="deviceSetting"
  9106. type="1"
  9107. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  9108. <productMenuURL version="1.5"
  9109. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  9110. />
  9111. <productMenuURL version="1.3.1"
  9112. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  9113. />
  9114. </productMenu>
  9115. <productMenu id="quickGuide"
  9116. type="1"
  9117. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  9118. size="310KB" >
  9119. </productMenu>
  9120. <productMenu id="userGuide"
  9121. type="1"
  9122. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  9123. size="1.57MB" >
  9124. </productMenu>
  9125. <productID id="5530"
  9126. />
  9127. <productGroupable type="0"
  9128. />
  9129. </product>
  9130. <product id="Apex"
  9131. name="Apex"
  9132. series="Apex"
  9133. latestVersion="1.0"
  9134. latestVersionVoicePrompt="0.2"
  9135. show = "-1" >
  9136. <productMenu id="protocol"
  9137. type="2" >
  9138. </productMenu>
  9139. <productMenu id="warranty"
  9140. type="1" >
  9141. </productMenu>
  9142. <productMenu id="serialNumber"
  9143. type="1" >
  9144. </productMenu>
  9145. <productMenu id="ota"
  9146. type="2" >
  9147. <otaLanguages>
  9148. <otaLanguage
  9149. id="0"
  9150. name="English"
  9151. package="0"
  9152. />
  9153. <otaLanguage
  9154. id="0"
  9155. name="French"
  9156. package="1"
  9157. />
  9158. <otaLanguage
  9159. id="0"
  9160. name="Spanish"
  9161. package="2"
  9162. />
  9163. <otaLanguage
  9164. id="0"
  9165. name="Italian"
  9166. package="3"
  9167. />
  9168. <otaLanguage
  9169. id="0"
  9170. name="German"
  9171. package="4"
  9172. />
  9173. <otaLanguage
  9174. id="0"
  9175. name="Dutch"
  9176. package="5"
  9177. />
  9178. <otaLanguage
  9179. id="0"
  9180. name="Russian"
  9181. package="6"
  9182. />
  9183. <otaLanguage
  9184. id="0"
  9185. name="Chinese"
  9186. package="7"
  9187. />
  9188. <otaLanguage
  9189. id="0"
  9190. name="Korean"
  9191. package="8"
  9192. />
  9193. <otaLanguage
  9194. id="0"
  9195. name="Japanese"
  9196. package="9"
  9197. />
  9198. <otaLanguage
  9199. id="0"
  9200. name="Finnish"
  9201. package="10"
  9202. />
  9203. <otaLanguage
  9204. id="0"
  9205. name="Polish"
  9206. package="11"
  9207. />
  9208. </otaLanguages>
  9209. <otaPackages>
  9210. <package
  9211. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6.img"
  9212. size="5183988"
  9213. />
  9214. <package
  9215. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-fr-FR.img"
  9216. size="5183988"
  9217. />
  9218. <package
  9219. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-es-ES.img"
  9220. size="5183988"
  9221. />
  9222. <package
  9223. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-it-IT.img"
  9224. size="5183988"
  9225. />
  9226. <package
  9227. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-de-DE.img"
  9228. size="5183988"
  9229. />
  9230. <package
  9231. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-nl-NL.img"
  9232. size="5183988"
  9233. />
  9234. <package
  9235. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ru-RU.img"
  9236. size="5183988"
  9237. />
  9238. <package
  9239. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-cmn-CN.img"
  9240. size="5183988"
  9241. />
  9242. <package
  9243. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ko-KR.img"
  9244. size="5183988"
  9245. />
  9246. <package
  9247. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ja-JP.img"
  9248. size="5183988"
  9249. />
  9250. <package
  9251. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-fi-FI.img"
  9252. size="5183988"
  9253. />
  9254. <package
  9255. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-pl-PL.img"
  9256. size="5183988"
  9257. />
  9258. </otaPackages>
  9259. </productMenu>
  9260. <productMenu id="sip"
  9261. type="1" >
  9262. </productMenu>
  9263. <productMenu id="bluetoothIntercom"
  9264. type="1" >
  9265. </productMenu>
  9266. <productMenu id="phone"
  9267. type="1" >
  9268. </productMenu>
  9269. <productMenu id="music"
  9270. type="1" >
  9271. </productMenu>
  9272. <productMenu id="fmradio"
  9273. type="1"
  9274. url="1" >
  9275. </productMenu>
  9276. <productMenu id="deviceSetting"
  9277. type="1"
  9278. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_01.xml" >
  9279. <productMenuURL version="1.0"
  9280. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9281. />
  9282. </productMenu>
  9283. <productMenu id="quickGuide"
  9284. type="0"
  9285. url=""
  9286. size="934KB" >
  9287. </productMenu>
  9288. <productMenu id="userGuide"
  9289. type="1"
  9290. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9291. size="1.14MB" >
  9292. </productMenu>
  9293. <productMenu id="volume+"
  9294. type="2"
  9295. url="0x0004" >
  9296. </productMenu>
  9297. <productMenu id="appearance"
  9298. type="1"
  9299. url="1|white,silver,black" >
  9300. </productMenu>
  9301. <productMenu id="battery"
  9302. type="1" >
  9303. </productMenu>
  9304. <productID id="3452"
  9305. />
  9306. <productGroupable type="0"
  9307. />
  9308. </product>
  9309. <product id="ApexPlus"
  9310. name="Apex Plus"
  9311. series="Apex"
  9312. latestVersion="1.0"
  9313. latestVersionVoicePrompt="0.2"
  9314. show = "-1" >
  9315. <productMenu id="protocol"
  9316. type="2" >
  9317. </productMenu>
  9318. <productMenu id="warranty"
  9319. type="1" >
  9320. </productMenu>
  9321. <productMenu id="serialNumber"
  9322. type="1" >
  9323. </productMenu>
  9324. <productMenu id="ota"
  9325. type="2" >
  9326. <otaLanguages>
  9327. <otaLanguage
  9328. id="0"
  9329. name="English"
  9330. package="0"
  9331. />
  9332. <otaLanguage
  9333. id="0"
  9334. name="French"
  9335. package="1"
  9336. />
  9337. <otaLanguage
  9338. id="0"
  9339. name="Spanish"
  9340. package="2"
  9341. />
  9342. <otaLanguage
  9343. id="0"
  9344. name="Italian"
  9345. package="3"
  9346. />
  9347. <otaLanguage
  9348. id="0"
  9349. name="German"
  9350. package="4"
  9351. />
  9352. <otaLanguage
  9353. id="0"
  9354. name="Dutch"
  9355. package="5"
  9356. />
  9357. <otaLanguage
  9358. id="0"
  9359. name="Russian"
  9360. package="6"
  9361. />
  9362. <otaLanguage
  9363. id="0"
  9364. name="Chinese"
  9365. package="7"
  9366. />
  9367. <otaLanguage
  9368. id="0"
  9369. name="Korean"
  9370. package="8"
  9371. />
  9372. <otaLanguage
  9373. id="0"
  9374. name="Japanese"
  9375. package="9"
  9376. />
  9377. <otaLanguage
  9378. id="0"
  9379. name="Finnish"
  9380. package="10"
  9381. />
  9382. <otaLanguage
  9383. id="0"
  9384. name="Polish"
  9385. package="11"
  9386. />
  9387. </otaLanguages>
  9388. <otaPackages>
  9389. <package
  9390. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6.img"
  9391. size="5183988"
  9392. />
  9393. <package
  9394. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-fr-FR.img"
  9395. size="5183988"
  9396. />
  9397. <package
  9398. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-es-ES.img"
  9399. size="5183988"
  9400. />
  9401. <package
  9402. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-it-IT.img"
  9403. size="5183988"
  9404. />
  9405. <package
  9406. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-de-DE.img"
  9407. size="5183988"
  9408. />
  9409. <package
  9410. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-nl-NL.img"
  9411. size="5183988"
  9412. />
  9413. <package
  9414. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ru-RU.img"
  9415. size="5183988"
  9416. />
  9417. <package
  9418. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-cmn-CN.img"
  9419. size="5183988"
  9420. />
  9421. <package
  9422. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ko-KR.img"
  9423. size="5183988"
  9424. />
  9425. <package
  9426. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ja-JP.img"
  9427. size="5183988"
  9428. />
  9429. <package
  9430. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-fi-FI.img"
  9431. size="5183988"
  9432. />
  9433. <package
  9434. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-pl-PL.img"
  9435. size="5183988"
  9436. />
  9437. </otaPackages>
  9438. </productMenu>
  9439. <productMenu id="sip"
  9440. type="1" >
  9441. </productMenu>
  9442. <productMenu id="bluetoothIntercom"
  9443. type="1" >
  9444. </productMenu>
  9445. <productMenu id="phone"
  9446. type="1" >
  9447. </productMenu>
  9448. <productMenu id="music"
  9449. type="1" >
  9450. </productMenu>
  9451. <productMenu id="fmradio"
  9452. type="1"
  9453. url="1" >
  9454. </productMenu>
  9455. <productMenu id="deviceSetting"
  9456. type="1"
  9457. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_01.xml" >
  9458. <productMenuURL version="1.0"
  9459. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9460. />
  9461. </productMenu>
  9462. <productMenu id="quickGuide"
  9463. type="0"
  9464. url=""
  9465. size="934KB" >
  9466. </productMenu>
  9467. <productMenu id="userGuide"
  9468. type="1"
  9469. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9470. size="1.14MB" >
  9471. </productMenu>
  9472. <productMenu id="volume+"
  9473. type="2"
  9474. url="0x0004" >
  9475. </productMenu>
  9476. <productMenu id="appearance"
  9477. type="1"
  9478. url="1|white,silver,black" >
  9479. </productMenu>
  9480. <productMenu id="battery"
  9481. type="1" >
  9482. </productMenu>
  9483. <productID id="3453"
  9484. />
  9485. <productGroupable type="0"
  9486. />
  9487. </product>
  9488. <product id="10R2"
  9489. name="10R 2"
  9490. series="10"
  9491. latestVersion="0.9"
  9492. latestVersionVoicePrompt="1.1"
  9493. show = "-1" >
  9494. <productMenu id="protocol"
  9495. type="2" >
  9496. </productMenu>
  9497. <productMenu id="ota"
  9498. type="2" >
  9499. <otaPackages>
  9500. <package
  9501. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9502. size="2945812"
  9503. />
  9504. </otaPackages>
  9505. </productMenu>
  9506. <productMenu id="sip"
  9507. type="1" >
  9508. </productMenu>
  9509. <productMenu id="bluetoothIntercom"
  9510. type="1" >
  9511. </productMenu>
  9512. <productMenu id="phone"
  9513. type="1" >
  9514. </productMenu>
  9515. <productMenu id="music"
  9516. type="1" >
  9517. </productMenu>
  9518. <productMenu id="fmradio"
  9519. type="1"
  9520. url="1" >
  9521. </productMenu>
  9522. <productMenu id="deviceSetting"
  9523. type="1"
  9524. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9525. </productMenu>
  9526. <productMenu id="quickGuide"
  9527. type="1"
  9528. url=""
  9529. size="934KB" >
  9530. </productMenu>
  9531. <productMenu id="userGuide"
  9532. type="0"
  9533. url=""
  9534. size="1.14MB" >
  9535. </productMenu>
  9536. <productMenu id="volume"
  9537. type="15" >
  9538. </productMenu>
  9539. <productID id="4000"
  9540. />
  9541. <productGroupable type="0"
  9542. />
  9543. </product>
  9544. <product id="10R"
  9545. name="10R"
  9546. series="10"
  9547. latestVersion="2.1.1"
  9548. show = "1" >
  9549. <productMenu id="protocol"
  9550. type="0">
  9551. </productMenu>
  9552. <productMenu id="sip"
  9553. type="1" >
  9554. <productMenuType version="1.0.2"
  9555. type="0"
  9556. />
  9557. </productMenu>
  9558. <productMenu id="bluetoothIntercom"
  9559. type="1" >
  9560. <productMenuType version="1.0.2"
  9561. type="0"
  9562. />
  9563. </productMenu>
  9564. <productMenu id="phone"
  9565. type="2" >
  9566. </productMenu>
  9567. <productMenu id="fmradio"
  9568. type="3" >
  9569. </productMenu>
  9570. <productMenu id="deviceSetting"
  9571. type="1"
  9572. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9573. <productMenuURL version="1.4"
  9574. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9575. />
  9576. <productMenuURL version="1.2.1"
  9577. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9578. />
  9579. <productMenuURL version="1.0.2"
  9580. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9581. />
  9582. <productMenuURL version="1.0"
  9583. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9584. />
  9585. </productMenu>
  9586. <productMenu id="quickGuide"
  9587. type="1"
  9588. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9589. size="400KB" >
  9590. </productMenu>
  9591. <productMenu id="userGuide"
  9592. type="1"
  9593. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9594. size="2.75MB" >
  9595. </productMenu>
  9596. <productMenu id="connectGuide"
  9597. type="1"
  9598. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9599. size="1.12MB" >
  9600. </productMenu>
  9601. <productID id="5520"
  9602. />
  9603. <productGroupable type="0"
  9604. />
  9605. </product>
  9606. <product id="10C_EVO"
  9607. name="10C EVO"
  9608. series="10"
  9609. latestVersion="1.7"
  9610. show = "1" >
  9611. <productMenu id="protocol"
  9612. type="0">
  9613. </productMenu>
  9614. <productMenu id="sip"
  9615. type="1" >
  9616. </productMenu>
  9617. <productMenu id="bluetoothIntercom"
  9618. type="1" >
  9619. </productMenu>
  9620. <productMenu id="phone"
  9621. type="2" >
  9622. </productMenu>
  9623. <productMenu id="fmradio"
  9624. type="3" >
  9625. </productMenu>
  9626. <productMenu id="deviceSetting"
  9627. type="1"
  9628. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9629. <productMenuURL version="1.3.1"
  9630. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9631. />
  9632. </productMenu>
  9633. <productMenu id="quickGuide"
  9634. type="1"
  9635. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9636. size="1.32MB" >
  9637. </productMenu>
  9638. <productMenu id="userGuide"
  9639. type="1"
  9640. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9641. size="1.68MB" >
  9642. </productMenu>
  9643. <productMenu id="connectGuide"
  9644. type="1"
  9645. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9646. size="1.12MB" >
  9647. </productMenu>
  9648. <productID id="5570"
  9649. />
  9650. <productGroupable type="0"
  9651. />
  9652. </product>
  9653. <product id="10C_Pro"
  9654. name="10C Pro"
  9655. series="10"
  9656. latestVersion="2.7.1"
  9657. show = "1" >
  9658. <productMenu id="protocol"
  9659. type="0">
  9660. </productMenu>
  9661. <productMenu id="sip"
  9662. type="1" >
  9663. </productMenu>
  9664. <productMenu id="bluetoothIntercom"
  9665. type="1" >
  9666. </productMenu>
  9667. <productMenu id="phone"
  9668. type="2" >
  9669. </productMenu>
  9670. <productMenu id="fmradio"
  9671. type="3" >
  9672. </productMenu>
  9673. <productMenu id="deviceSetting"
  9674. type="1"
  9675. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9676. <productMenuURL version="2.5.1"
  9677. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9678. />
  9679. <productMenuURL version="1.0"
  9680. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9681. />
  9682. </productMenu>
  9683. <productMenu id="quickGuide"
  9684. type="1"
  9685. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9686. size="651KB" >
  9687. </productMenu>
  9688. <productMenu id="userGuide"
  9689. type="1"
  9690. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9691. size="2.34MB" >
  9692. </productMenu>
  9693. <productMenu id="connectGuide"
  9694. type="1"
  9695. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9696. size="1.12MB" >
  9697. </productMenu>
  9698. <productID id="5580"
  9699. />
  9700. <productGroupable type="0"
  9701. />
  9702. </product>
  9703. <product id="10C"
  9704. name="10C"
  9705. series="10"
  9706. latestVersion="3.0.4"
  9707. show = "1" >
  9708. <productMenu id="protocol"
  9709. type="0">
  9710. </productMenu>
  9711. <productMenu id="sip"
  9712. type="1" >
  9713. <productMenuType version="1.0.4"
  9714. type="0"
  9715. />
  9716. </productMenu>
  9717. <productMenu id="bluetoothIntercom"
  9718. type="1" >
  9719. <productMenuType version="1.0.4"
  9720. type="0"
  9721. />
  9722. </productMenu>
  9723. <productMenu id="phone"
  9724. type="2" >
  9725. </productMenu>
  9726. <productMenu id="fmradio"
  9727. type="3" >
  9728. </productMenu>
  9729. <productMenu id="deviceSetting"
  9730. type="1"
  9731. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9732. <productMenuURL version="2.3"
  9733. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9734. />
  9735. <productMenuURL version="2.1.1"
  9736. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9737. />
  9738. <productMenuURL version="1.0.4"
  9739. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9740. />
  9741. <productMenuURL version="1.0.2"
  9742. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9743. />
  9744. </productMenu>
  9745. <productMenu id="quickGuide"
  9746. type="1"
  9747. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9748. size="935KB" >
  9749. </productMenu>
  9750. <productMenu id="userGuide"
  9751. type="1"
  9752. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9753. size="2.82MB" >
  9754. </productMenu>
  9755. <productMenu id="connectGuide"
  9756. type="1"
  9757. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9758. size="1.12MB" >
  9759. </productMenu>
  9760. <productID id="5510"
  9761. />
  9762. <productGroupable type="0"
  9763. />
  9764. </product>
  9765. <product id="10U_GT_AIR"
  9766. name="10U GT-Air"
  9767. series="10"
  9768. latestVersion="2.0.4"
  9769. show = "1" >
  9770. <productMenu id="protocol"
  9771. type="0">
  9772. </productMenu>
  9773. <productMenu id="sip"
  9774. type="1" >
  9775. <productMenuType version="1.0.2"
  9776. type="0"
  9777. />
  9778. </productMenu>
  9779. <productMenu id="bluetoothIntercom"
  9780. type="1" >
  9781. <productMenuType version="1.0.2"
  9782. type="0"
  9783. />
  9784. </productMenu>
  9785. <productMenu id="phone"
  9786. type="2" >
  9787. </productMenu>
  9788. <productMenu id="fmradio"
  9789. type="3" >
  9790. </productMenu>
  9791. <productMenu id="deviceSetting"
  9792. type="1"
  9793. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9794. <productMenuURL version="1.3.2"
  9795. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9796. />
  9797. <productMenuURL version="1.0.2"
  9798. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9799. />
  9800. </productMenu>
  9801. <productMenu id="quickGuide"
  9802. type="1"
  9803. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9804. size="685KB" >
  9805. </productMenu>
  9806. <productMenu id="userGuide"
  9807. type="1"
  9808. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9809. size="684KB" >
  9810. </productMenu>
  9811. <productMenu id="connectGuide"
  9812. type="1"
  9813. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9814. size="1.12MB" >
  9815. </productMenu>
  9816. <productID id="5610"
  9817. />
  9818. <productGroupable type="0"
  9819. />
  9820. </product>
  9821. <product id="10U_NEOTEC"
  9822. name="10U Neotec"
  9823. series="10"
  9824. latestVersion="2.0.4"
  9825. show = "1" >
  9826. <productMenu id="protocol"
  9827. type="0">
  9828. </productMenu>
  9829. <productMenu id="sip"
  9830. type="1" >
  9831. <productMenuType version="1.0.2"
  9832. type="0"
  9833. />
  9834. </productMenu>
  9835. <productMenu id="bluetoothIntercom"
  9836. type="1" >
  9837. <productMenuType version="1.0.2"
  9838. type="0"
  9839. />
  9840. </productMenu>
  9841. <productMenu id="phone"
  9842. type="2" >
  9843. </productMenu>
  9844. <productMenu id="fmradio"
  9845. type="3" >
  9846. </productMenu>
  9847. <productMenu id="deviceSetting"
  9848. type="1"
  9849. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9850. <productMenuURL version="1.3.2"
  9851. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9852. />
  9853. <productMenuURL version="1.0.2"
  9854. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9855. />
  9856. </productMenu>
  9857. <productMenu id="quickGuide"
  9858. type="1"
  9859. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9860. size="689KB" >
  9861. </productMenu>
  9862. <productMenu id="userGuide"
  9863. type="1"
  9864. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9865. size="684KB" >
  9866. </productMenu>
  9867. <productMenu id="connectGuide"
  9868. type="1"
  9869. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9870. size="1.12MB" >
  9871. </productMenu>
  9872. <productID id="5611"
  9873. />
  9874. <productGroupable type="0"
  9875. />
  9876. </product>
  9877. <product id="10U_J_CRUISE"
  9878. name="10U J-Cruise"
  9879. series="10"
  9880. latestVersion="2.0.4"
  9881. show = "1" >
  9882. <productMenu id="protocol"
  9883. type="0">
  9884. </productMenu>
  9885. <productMenu id="sip"
  9886. type="1" >
  9887. <productMenuType version="1.0.2"
  9888. type="0"
  9889. />
  9890. </productMenu>
  9891. <productMenu id="bluetoothIntercom"
  9892. type="1" >
  9893. <productMenuType version="1.0.2"
  9894. type="0"
  9895. />
  9896. </productMenu>
  9897. <productMenu id="phone"
  9898. type="2" >
  9899. </productMenu>
  9900. <productMenu id="fmradio"
  9901. type="3" >
  9902. </productMenu>
  9903. <productMenu id="deviceSetting"
  9904. type="1"
  9905. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9906. <productMenuURL version="1.3.2"
  9907. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9908. />
  9909. <productMenuURL version="1.0.2"
  9910. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9911. />
  9912. </productMenu>
  9913. <productMenu id="quickGuide"
  9914. type="1"
  9915. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9916. size="686KB" >
  9917. </productMenu>
  9918. <productMenu id="userGuide"
  9919. type="1"
  9920. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9921. size="684KB" >
  9922. </productMenu>
  9923. <productMenu id="connectGuide"
  9924. type="1"
  9925. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9926. size="1.12MB" >
  9927. </productMenu>
  9928. <productID id="5612"
  9929. />
  9930. <productGroupable type="0"
  9931. />
  9932. </product>
  9933. <product id="10U_C3"
  9934. name="10U C3/C3Pro"
  9935. series="10"
  9936. latestVersion="2.0.4"
  9937. show = "1" >
  9938. <productMenu id="protocol"
  9939. type="0">
  9940. </productMenu>
  9941. <productMenu id="sip"
  9942. type="1" >
  9943. <productMenuType version="1.0.2"
  9944. type="0"
  9945. />
  9946. </productMenu>
  9947. <productMenu id="bluetoothIntercom"
  9948. type="1" >
  9949. <productMenuType version="1.0.2"
  9950. type="0"
  9951. />
  9952. </productMenu>
  9953. <productMenu id="phone"
  9954. type="2" >
  9955. </productMenu>
  9956. <productMenu id="fmradio"
  9957. type="3" >
  9958. </productMenu>
  9959. <productMenu id="deviceSetting"
  9960. type="1"
  9961. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9962. <productMenuURL version="1.3.2"
  9963. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9964. />
  9965. <productMenuURL version="1.0.2"
  9966. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9967. />
  9968. </productMenu>
  9969. <productMenu id="quickGuide"
  9970. type="1"
  9971. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9972. size="199KB" >
  9973. </productMenu>
  9974. <productMenu id="userGuide"
  9975. type="1"
  9976. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9977. size="684KB" >
  9978. </productMenu>
  9979. <productMenu id="connectGuide"
  9980. type="1"
  9981. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9982. size="1.12MB" >
  9983. </productMenu>
  9984. <productID id="5620"
  9985. />
  9986. <productGroupable type="0"
  9987. />
  9988. </product>
  9989. <product id="10U_ARAI"
  9990. name="10U Arai"
  9991. series="10"
  9992. latestVersion="2.0.4"
  9993. show = "1" >
  9994. <productMenu id="protocol"
  9995. type="0">
  9996. </productMenu>
  9997. <productMenu id="sip"
  9998. type="1" >
  9999. <productMenuType version="1.0.2"
  10000. type="0"
  10001. />
  10002. </productMenu>
  10003. <productMenu id="bluetoothIntercom"
  10004. type="1" >
  10005. <productMenuType version="1.0.2"
  10006. type="0"
  10007. />
  10008. </productMenu>
  10009. <productMenu id="phone"
  10010. type="2" >
  10011. </productMenu>
  10012. <productMenu id="fmradio"
  10013. type="3" >
  10014. </productMenu>
  10015. <productMenu id="deviceSetting"
  10016. type="1"
  10017. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10018. <productMenuURL version="1.3.2"
  10019. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10020. />
  10021. <productMenuURL version="1.0.2"
  10022. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10023. />
  10024. </productMenu>
  10025. <productMenu id="quickGuide"
  10026. type="1"
  10027. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  10028. size="689KB" >
  10029. </productMenu>
  10030. <productMenu id="userGuide"
  10031. type="1"
  10032. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10033. size="684KB" >
  10034. </productMenu>
  10035. <productMenu id="connectGuide"
  10036. type="1"
  10037. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10038. size="1.12MB" >
  10039. </productMenu>
  10040. <productID id="5621"
  10041. />
  10042. <productGroupable type="0"
  10043. />
  10044. </product>
  10045. <product id="10Upad"
  10046. name="10Upad"
  10047. series="10"
  10048. latestVersion="2.0.3"
  10049. show = "1" >
  10050. <productMenu id="protocol"
  10051. type="0">
  10052. </productMenu>
  10053. <productMenu id="sip"
  10054. type="1" >
  10055. </productMenu>
  10056. <productMenu id="bluetoothIntercom"
  10057. type="1" >
  10058. </productMenu>
  10059. <productMenu id="phone"
  10060. type="2" >
  10061. </productMenu>
  10062. <productMenu id="fmradio"
  10063. type="3" >
  10064. </productMenu>
  10065. <productMenu id="deviceSetting"
  10066. type="1"
  10067. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  10068. <productMenuURL version="1.0.3"
  10069. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  10070. />
  10071. </productMenu>
  10072. <productMenu id="quickGuide"
  10073. type="1"
  10074. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  10075. size="615KB" >
  10076. </productMenu>
  10077. <productMenu id="userGuide"
  10078. type="1"
  10079. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  10080. size="0.99MB" >
  10081. </productMenu>
  10082. <productMenu id="connectGuide"
  10083. type="1"
  10084. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  10085. size="1.12MB" >
  10086. </productMenu>
  10087. <productID id="6210"
  10088. />
  10089. <productGroupable type="0"
  10090. />
  10091. </product>
  10092. <product id="5S"
  10093. name="5S"
  10094. series="5"
  10095. latestVersion="2.3.1"
  10096. show = "1" >
  10097. <productMenu id="protocol"
  10098. type="3" >
  10099. </productMenu>
  10100. <productMenu id="sip"
  10101. type="1" >
  10102. </productMenu>
  10103. <productMenu id="bluetoothIntercom"
  10104. type="1" >
  10105. </productMenu>
  10106. <productMenu id="phone"
  10107. type="1" >
  10108. </productMenu>
  10109. <productMenu id="fmradio"
  10110. type="0" >
  10111. </productMenu>
  10112. <productMenu id="deviceSetting"
  10113. type="1"
  10114. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10115. </productMenu>
  10116. <productMenu id="quickGuide"
  10117. type="0"
  10118. url=""
  10119. size="934KB" >
  10120. </productMenu>
  10121. <productMenu id="userGuide"
  10122. type="1"
  10123. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  10124. size="1.14MB" >
  10125. </productMenu>
  10126. <productMenu id="connectGuide"
  10127. type="1"
  10128. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  10129. size="1.12MB" >
  10130. </productMenu>
  10131. <productID id="5590"
  10132. />
  10133. <productGroupable type="0"
  10134. />
  10135. </product>
  10136. <product id="5S"
  10137. name="5S"
  10138. series="5"
  10139. latestVersion="1.2"
  10140. show = "-1" >
  10141. <productMenu id="protocol"
  10142. type="0">
  10143. </productMenu>
  10144. <productMenu id="sip"
  10145. type="1" >
  10146. </productMenu>
  10147. <productMenu id="bluetoothIntercom"
  10148. type="1" >
  10149. </productMenu>
  10150. <productMenu id="phone"
  10151. type="2" >
  10152. </productMenu>
  10153. <productMenu id="fmradio"
  10154. type="3" >
  10155. </productMenu>
  10156. <productMenu id="deviceSetting"
  10157. type="1"
  10158. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  10159. </productMenu>
  10160. <productMenu id="quickGuide"
  10161. type="0"
  10162. url=""
  10163. size="970KB" >
  10164. </productMenu>
  10165. <productMenu id="userGuide"
  10166. type="1"
  10167. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  10168. size="1.26MB" >
  10169. </productMenu>
  10170. <productID id="5534"
  10171. />
  10172. <productGroupable type="0"
  10173. />
  10174. </product>
  10175. <product id="5S"
  10176. name="5S"
  10177. series="5"
  10178. latestVersion="3.0.1"
  10179. show = "-1" >
  10180. <productMenu id="protocol"
  10181. type="0">
  10182. </productMenu>
  10183. <productMenu id="sip"
  10184. type="1" >
  10185. </productMenu>
  10186. <productMenu id="bluetoothIntercom"
  10187. type="1" >
  10188. </productMenu>
  10189. <productMenu id="phone"
  10190. type="2" >
  10191. </productMenu>
  10192. <productMenu id="fmradio"
  10193. type="0" >
  10194. </productMenu>
  10195. <productMenu id="deviceSetting"
  10196. type="1"
  10197. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  10198. </productMenu>
  10199. <productMenu id="quickGuide"
  10200. type="0"
  10201. url=""
  10202. size="970KB" >
  10203. </productMenu>
  10204. <productMenu id="userGuide"
  10205. type="1"
  10206. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  10207. size="1.26MB" >
  10208. </productMenu>
  10209. <productID id="5538"
  10210. />
  10211. <productGroupable type="0"
  10212. />
  10213. </product>
  10214. <product id="3SPLUS"
  10215. name="3S PLUS"
  10216. series="3"
  10217. latestVersion="2.2"
  10218. show = "1" >
  10219. <productMenu id="protocol"
  10220. type="3" >
  10221. </productMenu>
  10222. <productMenu id="sip"
  10223. type="1" >
  10224. </productMenu>
  10225. <productMenu id="bluetoothIntercom"
  10226. type="1" >
  10227. </productMenu>
  10228. <productMenu id="deviceSetting"
  10229. type="1"
  10230. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  10231. <productMenuURL version="2.2.1"
  10232. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  10233. />
  10234. </productMenu>
  10235. <productMenu id="quickGuide"
  10236. type="1"
  10237. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10238. size="344KB" >
  10239. </productMenu>
  10240. <productMenu id="userGuide"
  10241. type="1"
  10242. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  10243. size="1.14MB" >
  10244. </productMenu>
  10245. <productMenu id="connectGuide"
  10246. type="1"
  10247. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  10248. size="1.12MB" >
  10249. </productMenu>
  10250. <productID id="4023"
  10251. />
  10252. <productGroupable type="0"
  10253. />
  10254. </product>
  10255. <product id="3SPLUS"
  10256. name="3S PLUS"
  10257. series="3"
  10258. latestVersion="1.1"
  10259. show = "-1" >
  10260. <productMenu id="protocol"
  10261. type="0">
  10262. </productMenu>
  10263. <productMenu id="sip"
  10264. type="1" >
  10265. </productMenu>
  10266. <productMenu id="bluetoothIntercom"
  10267. type="1" >
  10268. </productMenu>
  10269. <productMenu id="deviceSetting"
  10270. type="1"
  10271. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  10272. </productMenu>
  10273. <productMenu id="quickGuide"
  10274. type="1"
  10275. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10276. size="842KB" >
  10277. </productMenu>
  10278. <productMenu id="userGuide"
  10279. type="1"
  10280. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  10281. size="1.02MB" >
  10282. </productMenu>
  10283. <productID id="6320"
  10284. />
  10285. <productGroupable type="0"
  10286. />
  10287. </product>
  10288. <product id="AConnect"
  10289. name="Alpinestars A-Connect"
  10290. series="60"
  10291. latestVersion="1.0.2"
  10292. latestVersionMesh="0.19"
  10293. latestVersionVoicePrompt="1.6"
  10294. show = "-1" >
  10295. <productMenu id="protocol"
  10296. type="2" >
  10297. </productMenu>
  10298. <productMenu id="ota"
  10299. type="2" >
  10300. <otaLanguages>
  10301. <otaLanguage
  10302. id="0"
  10303. name="English"
  10304. package="0"
  10305. />
  10306. <otaLanguage
  10307. id="0"
  10308. name="French"
  10309. package="1"
  10310. />
  10311. <otaLanguage
  10312. id="0"
  10313. name="Spanish"
  10314. package="2"
  10315. />
  10316. <otaLanguage
  10317. id="0"
  10318. name="Italian"
  10319. package="3"
  10320. />
  10321. <otaLanguage
  10322. id="0"
  10323. name="German"
  10324. package="4"
  10325. />
  10326. <otaLanguage
  10327. id="0"
  10328. name="Dutch"
  10329. package="5"
  10330. />
  10331. <otaLanguage
  10332. id="0"
  10333. name="Russian"
  10334. package="6"
  10335. />
  10336. <otaLanguage
  10337. id="0"
  10338. name="Chinese"
  10339. package="7"
  10340. />
  10341. <otaLanguage
  10342. id="0"
  10343. name="Korean"
  10344. package="8"
  10345. />
  10346. <otaLanguage
  10347. id="0"
  10348. name="Japanese"
  10349. package="9"
  10350. />
  10351. <otaLanguage
  10352. id="0"
  10353. name="Finnish"
  10354. package="10"
  10355. />
  10356. <otaLanguage
  10357. id="0"
  10358. name="Polish"
  10359. package="11"
  10360. />
  10361. </otaLanguages>
  10362. <otaPackages>
  10363. <package
  10364. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  10365. size="5183988"
  10366. />
  10367. <package
  10368. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  10369. size="5183988"
  10370. />
  10371. <package
  10372. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  10373. size="5183988"
  10374. />
  10375. <package
  10376. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  10377. size="5183988"
  10378. />
  10379. <package
  10380. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  10381. size="5183988"
  10382. />
  10383. <package
  10384. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  10385. size="5183988"
  10386. />
  10387. <package
  10388. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  10389. size="5183988"
  10390. />
  10391. <package
  10392. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  10393. size="5183988"
  10394. />
  10395. <package
  10396. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  10397. size="5183988"
  10398. />
  10399. <package
  10400. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10401. size="5183988"
  10402. />
  10403. <package
  10404. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10405. size="5183988"
  10406. />
  10407. <package
  10408. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10409. size="5183988"
  10410. />
  10411. </otaPackages>
  10412. </productMenu>
  10413. <productMenu id="sip"
  10414. type="1" >
  10415. </productMenu>
  10416. <productMenu id="illusion"
  10417. type="0" >
  10418. </productMenu>
  10419. <productMenu id="meshIntercom+"
  10420. type="3"
  10421. url="2" >
  10422. </productMenu>
  10423. <productMenu id="waveIntercom"
  10424. type="1" >
  10425. </productMenu>
  10426. <productMenu id="bluetoothIntercom"
  10427. type="1"
  10428. url="2" >
  10429. </productMenu>
  10430. <productMenu id="bluetoothIntercomGrouping"
  10431. type="0" >
  10432. </productMenu>
  10433. <productMenu id="fmradio"
  10434. type="1"
  10435. url="1" >
  10436. </productMenu>
  10437. <productMenu id="phone"
  10438. type="1" >
  10439. </productMenu>
  10440. <productMenu id="music"
  10441. type="1" >
  10442. </productMenu>
  10443. <productMenu id="musicSharing"
  10444. type="0" >
  10445. </productMenu>
  10446. <productMenu id="deviceSetting"
  10447. type="1"
  10448. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  10449. </productMenu>
  10450. <productMenu id="quickGuide"
  10451. type="0"
  10452. url=""
  10453. size="1.12MB" >
  10454. </productMenu>
  10455. <productMenu id="userGuide"
  10456. type="1"
  10457. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  10458. size="2.0MB" >
  10459. </productMenu>
  10460. <productMenu id="videoGuide"
  10461. type="0"
  10462. url=""
  10463. size="3.41MB" >
  10464. </productMenu>
  10465. <productMenu id="volume"
  10466. type="16" >
  10467. </productMenu>
  10468. <productMenu id="volume+"
  10469. type="2"
  10470. url="0x6004" >
  10471. </productMenu>
  10472. <productMenu id="soundMode"
  10473. type="0" >
  10474. </productMenu>
  10475. <productMenu id="battery"
  10476. type="1" >
  10477. </productMenu>
  10478. <productID id="6A82"
  10479. />
  10480. <productGroupable type="0"
  10481. />
  10482. </product>
  10483. <product id="iCon"
  10484. name="iCon"
  10485. series="50"
  10486. latestVersion="1.2"
  10487. show = "0" >
  10488. <productMenu id="protocol"
  10489. type="2" >
  10490. </productMenu>
  10491. <productMenu id="alexa"
  10492. type="0" >
  10493. </productMenu>
  10494. <productMenu id="wa"
  10495. type="0" >
  10496. </productMenu>
  10497. <productMenu id="sip"
  10498. type="1" >
  10499. </productMenu>
  10500. <productMenu id="led"
  10501. type="3" >
  10502. </productMenu>
  10503. <productMenu id="meshIntercom"
  10504. type="20" >
  10505. </productMenu>
  10506. <productMenu id="meshIntercom+"
  10507. type="3"
  10508. url="0" >
  10509. <productMenuType version="1.0.9"
  10510. type="2"
  10511. />
  10512. </productMenu>
  10513. <productMenu id="bluetoothIntercom"
  10514. type="1" >
  10515. </productMenu>
  10516. <productMenu id="phone"
  10517. type="1" >
  10518. </productMenu>
  10519. <productMenu id="music"
  10520. type="1" >
  10521. </productMenu>
  10522. <productMenu id="fmradio"
  10523. type="1" >
  10524. </productMenu>
  10525. <productMenu id="deviceSetting"
  10526. type="1"
  10527. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10528. <productMenuURL version="1.0.9"
  10529. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10530. />
  10531. </productMenu>
  10532. <productMenu id="quickGuide"
  10533. type="1"
  10534. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10535. size="344KB" >
  10536. </productMenu>
  10537. <productMenu id="userGuide"
  10538. type="1"
  10539. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10540. size="3.41MB" >
  10541. </productMenu>
  10542. <productMenu id="volume"
  10543. type="11" >
  10544. </productMenu>
  10545. <productMenu id="battery"
  10546. type="1" >
  10547. </productMenu>
  10548. <productID id="3900"
  10549. />
  10550. <productGroupable type="0"
  10551. />
  10552. </product>
  10553. <product id="ICONHelmLinkSL"
  10554. name="ICON HelmLink SL"
  10555. series="50"
  10556. latestVersion="1.0"
  10557. latestVersionVoicePrompt="1.6"
  10558. show = "-1" >
  10559. <productMenu id="protocol"
  10560. type="2" >
  10561. </productMenu>
  10562. <productMenu id="alexa"
  10563. type="0" >
  10564. </productMenu>
  10565. <productMenu id="ota"
  10566. type="2" >
  10567. <otaPackages>
  10568. <package
  10569. url="https://api.sena.com/support/OTA/Motorcycles/HELMLINKSL/ICON_HELMLINK_SL-v1.0-build1.img"
  10570. size="2945812"
  10571. />
  10572. </otaPackages>
  10573. </productMenu>
  10574. <productMenu id="wa"
  10575. type="0" >
  10576. </productMenu>
  10577. <productMenu id="meshIntercom"
  10578. type="30" >
  10579. </productMenu>
  10580. <productMenu id="meshIntercom+"
  10581. type="3"
  10582. url="2" >
  10583. </productMenu>
  10584. <productMenu id="waveIntercom"
  10585. type="1" >
  10586. </productMenu>
  10587. <productMenu id="phone"
  10588. type="1" >
  10589. </productMenu>
  10590. <productMenu id="music"
  10591. type="1" >
  10592. </productMenu>
  10593. <productMenu id="musicSharing"
  10594. type="0" >
  10595. </productMenu>
  10596. <productMenu id="deviceSetting"
  10597. type="1"
  10598. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10599. </productMenu>
  10600. <productMenu id="quickGuide"
  10601. type="0"
  10602. url=""
  10603. size="1.12MB" >
  10604. </productMenu>
  10605. <productMenu id="userGuide"
  10606. type="1"
  10607. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_HelmLink_SL_1.0.0_en_260604.pdf"
  10608. size="2.0MB" >
  10609. </productMenu>
  10610. <productMenu id="volume"
  10611. type="12" >
  10612. </productMenu>
  10613. <productMenu id="battery"
  10614. type="1" >
  10615. </productMenu>
  10616. <productID id="6842"
  10617. />
  10618. <productGroupable type="0"
  10619. />
  10620. </product>
  10621. <product id="HD50S"
  10622. name="H-D Audio 50S"
  10623. series="50"
  10624. latestVersion="1.0.1"
  10625. show = "-1" >
  10626. <productMenu id="protocol"
  10627. type="2" >
  10628. </productMenu>
  10629. <productMenu id="alexa"
  10630. type="0" >
  10631. </productMenu>
  10632. <productMenu id="ota"
  10633. type="0"
  10634. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10635. size="1150234" >
  10636. </productMenu>
  10637. <productMenu id="wa"
  10638. type="1" >
  10639. </productMenu>
  10640. <productMenu id="sip"
  10641. type="1" >
  10642. </productMenu>
  10643. <productMenu id="meshIntercom"
  10644. type="20" >
  10645. </productMenu>
  10646. <productMenu id="meshIntercom+"
  10647. type="3"
  10648. url="0" >
  10649. <productMenuType version="1.0.9"
  10650. type="2"
  10651. />
  10652. </productMenu>
  10653. <productMenu id="bluetoothIntercom"
  10654. type="1" >
  10655. </productMenu>
  10656. <productMenu id="phone"
  10657. type="1" >
  10658. </productMenu>
  10659. <productMenu id="music"
  10660. type="1" >
  10661. </productMenu>
  10662. <productMenu id="fmradio"
  10663. type="1" >
  10664. </productMenu>
  10665. <productMenu id="deviceSetting"
  10666. type="1"
  10667. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10668. <productMenuURL version="1.0.9"
  10669. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10670. />
  10671. </productMenu>
  10672. <productMenu id="quickGuide"
  10673. type="1"
  10674. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10675. size="934KB" >
  10676. </productMenu>
  10677. <productMenu id="userGuide"
  10678. type="1"
  10679. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10680. size="1.14MB" >
  10681. </productMenu>
  10682. <productMenu id="volume"
  10683. type="11" >
  10684. </productMenu>
  10685. <productMenu id="battery"
  10686. type="1" >
  10687. </productMenu>
  10688. <productID id="3156"
  10689. />
  10690. <productGroupable type="0"
  10691. />
  10692. </product>
  10693. <product id="HD50S"
  10694. name="H-D Audio 50S"
  10695. series="50"
  10696. latestVersion="2.0.2"
  10697. show = "0" >
  10698. <productMenu id="protocol"
  10699. type="2" >
  10700. </productMenu>
  10701. <productMenu id="alexa"
  10702. type="0" >
  10703. </productMenu>
  10704. <productMenu id="ota"
  10705. type="0"
  10706. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10707. size="1150234" >
  10708. </productMenu>
  10709. <productMenu id="wa"
  10710. type="1" >
  10711. </productMenu>
  10712. <productMenu id="sip"
  10713. type="1" >
  10714. </productMenu>
  10715. <productMenu id="meshIntercom"
  10716. type="20" >
  10717. </productMenu>
  10718. <productMenu id="meshIntercom+"
  10719. type="3"
  10720. url="0" >
  10721. <productMenuType version="2.0.9"
  10722. type="2"
  10723. />
  10724. </productMenu>
  10725. <productMenu id="bluetoothIntercom"
  10726. type="1" >
  10727. </productMenu>
  10728. <productMenu id="phone"
  10729. type="1" >
  10730. </productMenu>
  10731. <productMenu id="music"
  10732. type="1" >
  10733. </productMenu>
  10734. <productMenu id="fmradio"
  10735. type="1" >
  10736. </productMenu>
  10737. <productMenu id="deviceSetting"
  10738. type="1"
  10739. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10740. <productMenuURL version="2.0.9"
  10741. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10742. />
  10743. </productMenu>
  10744. <productMenu id="quickGuide"
  10745. type="1"
  10746. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10747. size="934KB" >
  10748. </productMenu>
  10749. <productMenu id="userGuide"
  10750. type="1"
  10751. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10752. size="1.14MB" >
  10753. </productMenu>
  10754. <productMenu id="volume"
  10755. type="11" >
  10756. </productMenu>
  10757. <productMenu id="battery"
  10758. type="1" >
  10759. </productMenu>
  10760. <productID id="3213"
  10761. />
  10762. <productGroupable type="0"
  10763. />
  10764. </product>
  10765. <product id="HD50C"
  10766. name="H-D Audio 50C"
  10767. series="50"
  10768. latestVersion="1.0.1"
  10769. show = "0" >
  10770. <productMenu id="protocol"
  10771. type="2" >
  10772. </productMenu>
  10773. <productMenu id="ota"
  10774. type="0" >
  10775. </productMenu>
  10776. <productMenu id="wa"
  10777. type="1" >
  10778. </productMenu>
  10779. <productMenu id="sip"
  10780. type="1" >
  10781. </productMenu>
  10782. <productMenu id="meshIntercom"
  10783. type="20" >
  10784. </productMenu>
  10785. <productMenu id="meshIntercom+"
  10786. type="3"
  10787. url="0" >
  10788. <productMenuType version="1.0.9"
  10789. type="2"
  10790. />
  10791. </productMenu>
  10792. <productMenu id="bluetoothIntercom"
  10793. type="1" >
  10794. </productMenu>
  10795. <productMenu id="phone"
  10796. type="1" >
  10797. </productMenu>
  10798. <productMenu id="music"
  10799. type="1" >
  10800. </productMenu>
  10801. <productMenu id="fmradio"
  10802. type="1" >
  10803. </productMenu>
  10804. <productMenu id="deviceSetting"
  10805. type="1"
  10806. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10807. <productMenuURL version="1.0.9"
  10808. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10809. />
  10810. </productMenu>
  10811. <productMenu id="quickGuide"
  10812. type="1"
  10813. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10814. size="344KB" >
  10815. </productMenu>
  10816. <productMenu id="userGuide"
  10817. type="1"
  10818. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10819. size="3.41MB" >
  10820. </productMenu>
  10821. <productMenu id="volume"
  10822. type="11" >
  10823. </productMenu>
  10824. <productMenu id="battery"
  10825. type="1" >
  10826. </productMenu>
  10827. <productID id="3240"
  10828. />
  10829. <productGroupable type="0"
  10830. />
  10831. </product>
  10832. <product id="HD50S"
  10833. name="FURY N04"
  10834. series="Helmet"
  10835. latestVersion="1.0"
  10836. show = "0" >
  10837. <productMenu id="protocol"
  10838. type="2" >
  10839. </productMenu>
  10840. <productMenu id="alexa"
  10841. type="0" >
  10842. </productMenu>
  10843. <productMenu id="ota"
  10844. type="0" >
  10845. </productMenu>
  10846. <productMenu id="wa"
  10847. type="0" >
  10848. </productMenu>
  10849. <productMenu id="meshIntercom"
  10850. type="20" >
  10851. </productMenu>
  10852. <productMenu id="meshIntercom+"
  10853. type="3"
  10854. url="0" >
  10855. <productMenuType version="1.0.9"
  10856. type="2"
  10857. />
  10858. </productMenu>
  10859. <productMenu id="phone"
  10860. type="1" >
  10861. </productMenu>
  10862. <productMenu id="music"
  10863. type="1" >
  10864. </productMenu>
  10865. <productMenu id="fmradio"
  10866. type="1" >
  10867. </productMenu>
  10868. <productMenu id="deviceSetting"
  10869. type="1"
  10870. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10871. <productMenuURL version="1.0.9"
  10872. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10873. />
  10874. </productMenu>
  10875. <productMenu id="quickGuide"
  10876. type="1"
  10877. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10878. size="1.12MB" >
  10879. </productMenu>
  10880. <productMenu id="userGuide"
  10881. type="1"
  10882. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10883. size="2.0MB" >
  10884. </productMenu>
  10885. <productMenu id="volume"
  10886. type="13" >
  10887. </productMenu>
  10888. <productMenu id="battery"
  10889. type="1" >
  10890. </productMenu>
  10891. <productID id="5553"
  10892. />
  10893. <productGroupable type="0"
  10894. />
  10895. </product>
  10896. <product id="XCOM3Pro"
  10897. name="X-COM3 Pro"
  10898. series="50"
  10899. latestVersion="1.1"
  10900. show = "0" >
  10901. <productMenu id="protocol"
  10902. type="2" >
  10903. </productMenu>
  10904. <productMenu id="alexa"
  10905. type="0" >
  10906. </productMenu>
  10907. <productMenu id="ota"
  10908. type="0" >
  10909. </productMenu>
  10910. <productMenu id="wa"
  10911. type="0" >
  10912. </productMenu>
  10913. <productMenu id="sip"
  10914. type="1" >
  10915. </productMenu>
  10916. <productMenu id="meshIntercom"
  10917. type="30" >
  10918. </productMenu>
  10919. <productMenu id="meshIntercom+"
  10920. type="3"
  10921. url="2" >
  10922. <productMenuType version="1.1"
  10923. type="2"
  10924. />
  10925. </productMenu>
  10926. <productMenu id="waveIntercom"
  10927. type="1" >
  10928. <productMenuType version="1.1"
  10929. type="0"
  10930. />
  10931. </productMenu>
  10932. <productMenu id="bluetoothIntercom"
  10933. type="1" >
  10934. </productMenu>
  10935. <productMenu id="phone"
  10936. type="1" >
  10937. </productMenu>
  10938. <productMenu id="music"
  10939. type="1" >
  10940. </productMenu>
  10941. <productMenu id="fmradio"
  10942. type="1" >
  10943. </productMenu>
  10944. <productMenu id="deviceSetting"
  10945. type="1"
  10946. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10947. <productMenuURL version="1.1"
  10948. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10949. />
  10950. </productMenu>
  10951. <productMenu id="quickGuide"
  10952. type="0"
  10953. url=""
  10954. size="344KB" >
  10955. </productMenu>
  10956. <productMenu id="userGuide"
  10957. type="1"
  10958. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10959. size="3.41MB" >
  10960. </productMenu>
  10961. <productMenu id="volume"
  10962. type="11" >
  10963. </productMenu>
  10964. <productMenu id="battery"
  10965. type="1" >
  10966. </productMenu>
  10967. <productID id="321A"
  10968. />
  10969. <productGroupable type="0"
  10970. />
  10971. </product>
  10972. <product id="XCOM3"
  10973. name="X-COM3"
  10974. series="20"
  10975. latestVersion="1.0"
  10976. show = "0" >
  10977. <productMenu id="protocol"
  10978. type="2" >
  10979. </productMenu>
  10980. <productMenu id="sip"
  10981. type="1" >
  10982. </productMenu>
  10983. <productMenu id="bluetoothIntercom"
  10984. type="1" >
  10985. </productMenu>
  10986. <productMenu id="phone"
  10987. type="1" >
  10988. </productMenu>
  10989. <productMenu id="music"
  10990. type="1" >
  10991. </productMenu>
  10992. <productMenu id="fmradio"
  10993. type="1" >
  10994. </productMenu>
  10995. <productMenu id="deviceSetting"
  10996. type="1"
  10997. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10998. </productMenu>
  10999. <productMenu id="quickGuide"
  11000. type="0"
  11001. url=""
  11002. size="934KB" >
  11003. </productMenu>
  11004. <productMenu id="userGuide"
  11005. type="1"
  11006. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  11007. size="1.14MB" >
  11008. </productMenu>
  11009. <productMenu id="volume"
  11010. type="15" >
  11011. </productMenu>
  11012. <productID id="3410"
  11013. />
  11014. <productGroupable type="0"
  11015. />
  11016. </product>
  11017. <product id="X-COM2"
  11018. name="X-COM2"
  11019. series="20"
  11020. latestVersion="1.0.5"
  11021. show = "0" >
  11022. <productMenu id="protocol"
  11023. type="0">
  11024. </productMenu>
  11025. <productMenu id="sip"
  11026. type="1" >
  11027. </productMenu>
  11028. <productMenu id="bluetoothIntercom"
  11029. type="1" >
  11030. </productMenu>
  11031. <productMenu id="intercomSetting"
  11032. type="1" >
  11033. </productMenu>
  11034. <productMenu id="phone"
  11035. type="2" >
  11036. </productMenu>
  11037. <productMenu id="fmradio"
  11038. type="3" >
  11039. </productMenu>
  11040. <productMenu id="deviceSetting"
  11041. type="1"
  11042. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  11043. </productMenu>
  11044. <productMenu id="quickGuide"
  11045. type="1"
  11046. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  11047. size="796KB" >
  11048. </productMenu>
  11049. <productMenu id="userGuide"
  11050. type="1"
  11051. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  11052. size="1.90MB" >
  11053. </productMenu>
  11054. <productID id="2030"
  11055. />
  11056. <productGroupable type="1"
  11057. />
  11058. </product>
  11059. <product id="AVAABC"
  11060. name="AVA ABC"
  11061. series="SPIDER"
  11062. latestVersion="1.1"
  11063. show = "0" >
  11064. <productMenu id="protocol"
  11065. type="2" >
  11066. </productMenu>
  11067. <productMenu id="alexa"
  11068. type="0" >
  11069. </productMenu>
  11070. <productMenu id="ota"
  11071. type="0" >
  11072. <productMenuType version="1.0"
  11073. type="0"
  11074. />
  11075. <otaPackages>
  11076. <package
  11077. url="https://api.sena.com/support/OTA/"
  11078. size="2945812"
  11079. />
  11080. </otaPackages>
  11081. </productMenu>
  11082. <productMenu id="wa"
  11083. type="0" >
  11084. </productMenu>
  11085. <productMenu id="meshIntercom"
  11086. type="30" >
  11087. <productMenuType version="1.0"
  11088. type="20"
  11089. />
  11090. </productMenu>
  11091. <productMenu id="meshIntercom+"
  11092. type="3"
  11093. url="2" >
  11094. <productMenuType version="1.0"
  11095. type="2"
  11096. />
  11097. <productMenuURL version="1.0"
  11098. url="0"
  11099. />
  11100. </productMenu>
  11101. <productMenu id="waveIntercom"
  11102. type="1" >
  11103. <productMenuType version="1.0"
  11104. type="0"
  11105. />
  11106. </productMenu>
  11107. <productMenu id="phone"
  11108. type="1" >
  11109. </productMenu>
  11110. <productMenu id="music"
  11111. type="1" >
  11112. </productMenu>
  11113. <productMenu id="musicSharing"
  11114. type="0" >
  11115. </productMenu>
  11116. <productMenu id="deviceSetting"
  11117. type="1"
  11118. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  11119. <productMenuURL version="1.0"
  11120. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  11121. />
  11122. </productMenu>
  11123. <productMenu id="quickGuide"
  11124. type="1"
  11125. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  11126. size="1.12MB" >
  11127. </productMenu>
  11128. <productMenu id="userGuide"
  11129. type="1"
  11130. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  11131. size="2.0MB" >
  11132. </productMenu>
  11133. <productMenu id="volume"
  11134. type="12" >
  11135. </productMenu>
  11136. <productMenu id="battery"
  11137. type="1" >
  11138. </productMenu>
  11139. <productID id="6808"
  11140. />
  11141. <productGroupable type="0"
  11142. />
  11143. </product>
  11144. <product id="ADVANCEProCOM2"
  11145. name="ADVANCE ProCOM 2"
  11146. series="Helmet"
  11147. latestVersion="0.5"
  11148. latestVersionVoicePrompt="0.3"
  11149. show = "-1" >
  11150. <productMenu id="protocol"
  11151. type="2" >
  11152. </productMenu>
  11153. <productMenu id="ota"
  11154. type="2" >
  11155. <otaLanguages>
  11156. <otaLanguage
  11157. id="0"
  11158. name="English"
  11159. package="0"
  11160. />
  11161. <otaLanguage
  11162. id="0"
  11163. name="French"
  11164. package="1"
  11165. />
  11166. <otaLanguage
  11167. id="0"
  11168. name="Spanish"
  11169. package="2"
  11170. />
  11171. <otaLanguage
  11172. id="0"
  11173. name="Italian"
  11174. package="3"
  11175. />
  11176. <otaLanguage
  11177. id="0"
  11178. name="German"
  11179. package="4"
  11180. />
  11181. <otaLanguage
  11182. id="0"
  11183. name="Dutch"
  11184. package="5"
  11185. />
  11186. <otaLanguage
  11187. id="0"
  11188. name="Russian"
  11189. package="6"
  11190. />
  11191. <otaLanguage
  11192. id="0"
  11193. name="Chinese"
  11194. package="7"
  11195. />
  11196. <otaLanguage
  11197. id="0"
  11198. name="Korean"
  11199. package="8"
  11200. />
  11201. <otaLanguage
  11202. id="0"
  11203. name="Japanese"
  11204. package="9"
  11205. />
  11206. <otaLanguage
  11207. id="0"
  11208. name="Finnish"
  11209. package="10"
  11210. />
  11211. <otaLanguage
  11212. id="0"
  11213. name="Polish"
  11214. package="11"
  11215. />
  11216. </otaLanguages>
  11217. <otaPackages>
  11218. <package
  11219. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  11220. size="5183988"
  11221. />
  11222. <package
  11223. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  11224. size="5183988"
  11225. />
  11226. <package
  11227. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  11228. size="5183988"
  11229. />
  11230. <package
  11231. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  11232. size="5183988"
  11233. />
  11234. <package
  11235. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  11236. size="5183988"
  11237. />
  11238. <package
  11239. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  11240. size="5183988"
  11241. />
  11242. <package
  11243. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  11244. size="5183988"
  11245. />
  11246. <package
  11247. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  11248. size="5183988"
  11249. />
  11250. <package
  11251. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  11252. size="5183988"
  11253. />
  11254. <package
  11255. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  11256. size="5183988"
  11257. />
  11258. <package
  11259. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  11260. size="5183988"
  11261. />
  11262. <package
  11263. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  11264. size="5183988"
  11265. />
  11266. </otaPackages>
  11267. </productMenu>
  11268. <productMenu id="wa"
  11269. type="0" >
  11270. </productMenu>
  11271. <productMenu id="meshIntercom"
  11272. type="30" >
  11273. </productMenu>
  11274. <productMenu id="meshIntercom+"
  11275. type="3"
  11276. url="2" >
  11277. </productMenu>
  11278. <productMenu id="waveIntercom"
  11279. type="1" >
  11280. </productMenu>
  11281. <productMenu id="fmradio"
  11282. type="1" >
  11283. </productMenu>
  11284. <productMenu id="phone"
  11285. type="0" >
  11286. </productMenu>
  11287. <productMenu id="music"
  11288. type="1" >
  11289. </productMenu>
  11290. <productMenu id="musicSharing"
  11291. type="0" >
  11292. </productMenu>
  11293. <productMenu id="deviceSetting"
  11294. type="1"
  11295. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  11296. </productMenu>
  11297. <productMenu id="quickGuide"
  11298. type="0"
  11299. url=""
  11300. size="1.12MB" >
  11301. </productMenu>
  11302. <productMenu id="userGuide"
  11303. type="1"
  11304. url=""
  11305. size="2.0MB" >
  11306. </productMenu>
  11307. <productMenu id="videoGuide"
  11308. type="0"
  11309. url=""
  11310. size="3.41MB" >
  11311. </productMenu>
  11312. <productMenu id="connectGuide"
  11313. type="1"
  11314. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  11315. size="1.12MB" >
  11316. </productMenu>
  11317. <productMenu id="volume"
  11318. type="16" >
  11319. </productMenu>
  11320. <productMenu id="battery"
  11321. type="1" >
  11322. </productMenu>
  11323. <productID id="6A85"
  11324. />
  11325. <productGroupable type="0"
  11326. />
  11327. </product>
  11328. <product id="TRIUMPH60X"
  11329. name="TRIUMPH 60X"
  11330. series="60"
  11331. latestVersion="1.0"
  11332. latestVersionMesh="0.19"
  11333. latestVersionVoicePrompt="1.7"
  11334. show = "-1" >
  11335. <productMenu id="protocol"
  11336. type="2" >
  11337. </productMenu>
  11338. <productMenu id="ota"
  11339. type="0" >
  11340. <otaLanguages>
  11341. <otaLanguage
  11342. id="0"
  11343. name="English"
  11344. package="0"
  11345. />
  11346. <otaLanguage
  11347. id="0"
  11348. name="French"
  11349. package="1"
  11350. />
  11351. <otaLanguage
  11352. id="0"
  11353. name="Spanish"
  11354. package="2"
  11355. />
  11356. <otaLanguage
  11357. id="0"
  11358. name="Italian"
  11359. package="3"
  11360. />
  11361. <otaLanguage
  11362. id="0"
  11363. name="German"
  11364. package="4"
  11365. />
  11366. <otaLanguage
  11367. id="0"
  11368. name="Dutch"
  11369. package="5"
  11370. />
  11371. <otaLanguage
  11372. id="0"
  11373. name="Russian"
  11374. package="6"
  11375. />
  11376. <otaLanguage
  11377. id="0"
  11378. name="Chinese"
  11379. package="7"
  11380. />
  11381. <otaLanguage
  11382. id="0"
  11383. name="Korean"
  11384. package="8"
  11385. />
  11386. <otaLanguage
  11387. id="0"
  11388. name="Japanese"
  11389. package="9"
  11390. />
  11391. <otaLanguage
  11392. id="0"
  11393. name="Finnish"
  11394. package="10"
  11395. />
  11396. <otaLanguage
  11397. id="0"
  11398. name="Polish"
  11399. package="11"
  11400. />
  11401. </otaLanguages>
  11402. <otaPackages>
  11403. <package
  11404. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5.img"
  11405. size="5183988"
  11406. />
  11407. <package
  11408. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fr-FR.img"
  11409. size="5183988"
  11410. />
  11411. <package
  11412. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-es-ES.img"
  11413. size="5183988"
  11414. />
  11415. <package
  11416. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-it-IT.img"
  11417. size="5183988"
  11418. />
  11419. <package
  11420. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-de-DE.img"
  11421. size="5183988"
  11422. />
  11423. <package
  11424. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-nl-NL.img"
  11425. size="5183988"
  11426. />
  11427. <package
  11428. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ru-RU.img"
  11429. size="5183988"
  11430. />
  11431. <package
  11432. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-cmn-CN.img"
  11433. size="5183988"
  11434. />
  11435. <package
  11436. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ko-KR.img"
  11437. size="5183988"
  11438. />
  11439. <package
  11440. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ja-JP.img"
  11441. size="5183988"
  11442. />
  11443. <package
  11444. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fi-FI.img"
  11445. size="5183988"
  11446. />
  11447. <package
  11448. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-pl-PL.img"
  11449. size="5183988"
  11450. />
  11451. </otaPackages>
  11452. </productMenu>
  11453. <productMenu id="wa"
  11454. type="0" >
  11455. </productMenu>
  11456. <productMenu id="sip"
  11457. type="1" >
  11458. </productMenu>
  11459. <productMenu id="led"
  11460. type="1" >
  11461. </productMenu>
  11462. <productMenu id="illusion"
  11463. type="1" >
  11464. </productMenu>
  11465. <productMenu id="meshIntercom"
  11466. type="30" >
  11467. </productMenu>
  11468. <productMenu id="meshIntercom+"
  11469. type="3"
  11470. url="2" >
  11471. </productMenu>
  11472. <productMenu id="bluetoothIntercom"
  11473. type="1" >
  11474. </productMenu>
  11475. <productMenu id="fmradio"
  11476. type="1"
  11477. url="1" >
  11478. </productMenu>
  11479. <productMenu id="mic"
  11480. type="0" >
  11481. </productMenu>
  11482. <productMenu id="phone"
  11483. type="1" >
  11484. </productMenu>
  11485. <productMenu id="music"
  11486. type="1" >
  11487. </productMenu>
  11488. <productMenu id="musicSharing"
  11489. type="0" >
  11490. </productMenu>
  11491. <productMenu id="deviceSetting"
  11492. type="1"
  11493. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  11494. </productMenu>
  11495. <productMenu id="quickGuide"
  11496. type="0"
  11497. url=""
  11498. size="1.12MB" >
  11499. </productMenu>
  11500. <productMenu id="userGuide"
  11501. type="1"
  11502. url=""
  11503. size="2.0MB" >
  11504. </productMenu>
  11505. <productMenu id="videoGuide"
  11506. type="0"
  11507. url=""
  11508. size="3.41MB" >
  11509. </productMenu>
  11510. <productMenu id="keySettings"
  11511. type="1"
  11512. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  11513. </productMenu>
  11514. <productMenu id="volume"
  11515. type="13" >
  11516. </productMenu>
  11517. <productMenu id="volume+"
  11518. type="2"
  11519. url="0x6004" >
  11520. </productMenu>
  11521. <productMenu id="battery"
  11522. type="1" >
  11523. </productMenu>
  11524. <productID id="6A1C"
  11525. />
  11526. <productGroupable type="0"
  11527. />
  11528. </product>
  11529. <product id="Triumph_50S"
  11530. name="Triumph 50S"
  11531. series="50"
  11532. latestVersion="1.5"
  11533. show = "0" >
  11534. <productMenu id="protocol"
  11535. type="2" >
  11536. </productMenu>
  11537. <productMenu id="alexa"
  11538. type="0" >
  11539. </productMenu>
  11540. <productMenu id="ota"
  11541. type="0"
  11542. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11543. size="1150234" >
  11544. </productMenu>
  11545. <productMenu id="wa"
  11546. type="1" >
  11547. </productMenu>
  11548. <productMenu id="sip"
  11549. type="1" >
  11550. </productMenu>
  11551. <productMenu id="meshIntercom"
  11552. type="20" >
  11553. </productMenu>
  11554. <productMenu id="bluetoothIntercom"
  11555. type="1" >
  11556. </productMenu>
  11557. <productMenu id="meshIntercom+"
  11558. type="3"
  11559. url="2" >
  11560. <productMenuType version="1.2.9"
  11561. type="2"
  11562. />
  11563. <productMenuURL version="1.2.9"
  11564. url="0"
  11565. />
  11566. </productMenu>
  11567. <productMenu id="waveIntercom"
  11568. type="1" >
  11569. <productMenuType version="1.2.9"
  11570. type="0"
  11571. />
  11572. </productMenu>
  11573. <productMenu id="phone"
  11574. type="1" >
  11575. </productMenu>
  11576. <productMenu id="music"
  11577. type="1" >
  11578. </productMenu>
  11579. <productMenu id="fmradio"
  11580. type="1" >
  11581. </productMenu>
  11582. <productMenu id="deviceSetting"
  11583. type="1"
  11584. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11585. <productMenuURL version="1.2.9"
  11586. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  11587. />
  11588. <productMenuURL version="1.0"
  11589. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11590. />
  11591. </productMenu>
  11592. <productMenu id="quickGuide"
  11593. type="1"
  11594. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  11595. size="934KB" >
  11596. </productMenu>
  11597. <productMenu id="userGuide"
  11598. type="1"
  11599. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  11600. size="1.14MB" >
  11601. </productMenu>
  11602. <productMenu id="volume"
  11603. type="11" >
  11604. </productMenu>
  11605. <productMenu id="battery"
  11606. type="1" >
  11607. </productMenu>
  11608. <productID id="3264"
  11609. />
  11610. <productGroupable type="0"
  11611. />
  11612. </product>
  11613. <product id="RE50S"
  11614. name="RE 50S"
  11615. series="50"
  11616. latestVersion="2.7"
  11617. show = "0" >
  11618. <productMenu id="protocol"
  11619. type="2" >
  11620. </productMenu>
  11621. <productMenu id="alexa"
  11622. type="0" >
  11623. </productMenu>
  11624. <productMenu id="ota"
  11625. type="0"
  11626. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11627. size="1150234" >
  11628. </productMenu>
  11629. <productMenu id="wa"
  11630. type="1" >
  11631. </productMenu>
  11632. <productMenu id="sip"
  11633. type="1" >
  11634. </productMenu>
  11635. <productMenu id="meshIntercom"
  11636. type="30" >
  11637. </productMenu>
  11638. <productMenu id="meshIntercom+"
  11639. type="3"
  11640. url="2" >
  11641. <productMenuType version="2.5"
  11642. type="2"
  11643. />
  11644. </productMenu>
  11645. <productMenu id="waveIntercom"
  11646. type="1" >
  11647. <productMenuType version="2.5"
  11648. type="0"
  11649. />
  11650. </productMenu>
  11651. <productMenu id="bluetoothIntercom"
  11652. type="1" >
  11653. </productMenu>
  11654. <productMenu id="phone"
  11655. type="1" >
  11656. </productMenu>
  11657. <productMenu id="music"
  11658. type="1" >
  11659. </productMenu>
  11660. <productMenu id="fmradio"
  11661. type="1" >
  11662. </productMenu>
  11663. <productMenu id="deviceSetting"
  11664. type="1"
  11665. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11666. <productMenuURL version="2.5.9"
  11667. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11668. />
  11669. </productMenu>
  11670. <productMenu id="quickGuide"
  11671. type="1"
  11672. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11673. size="934KB" >
  11674. </productMenu>
  11675. <productMenu id="userGuide"
  11676. type="1"
  11677. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11678. size="1.14MB" >
  11679. </productMenu>
  11680. <productMenu id="videoGuide"
  11681. type="0"
  11682. url=""
  11683. size="3.41MB" >
  11684. </productMenu>
  11685. <productMenu id="volume"
  11686. type="11" >
  11687. </productMenu>
  11688. <productMenu id="battery"
  11689. type="1" >
  11690. </productMenu>
  11691. <productID id="321C"
  11692. />
  11693. <productGroupable type="0"
  11694. />
  11695. </product>
  11696. <product id="BMW_HELMET_II_U1"
  11697. name="BMW HELMET II U1"
  11698. series="50"
  11699. latestVersion="1.0"
  11700. show = "0" >
  11701. <productMenu id="protocol"
  11702. type="2" >
  11703. </productMenu>
  11704. <productMenu id="alexa"
  11705. type="0" >
  11706. </productMenu>
  11707. <productMenu id="sip"
  11708. type="1" >
  11709. </productMenu>
  11710. <productMenu id="meshIntercom"
  11711. type="20" >
  11712. </productMenu>
  11713. <productMenu id="bluetoothIntercom"
  11714. type="1" >
  11715. </productMenu>
  11716. <productMenu id="bluetoothIntercom2"
  11717. type="1" >
  11718. </productMenu>
  11719. <productMenu id="phone"
  11720. type="1" >
  11721. </productMenu>
  11722. <productMenu id="music"
  11723. type="1" >
  11724. </productMenu>
  11725. <productMenu id="fmradio"
  11726. type="1" >
  11727. </productMenu>
  11728. <productMenu id="deviceSetting"
  11729. type="1"
  11730. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11731. </productMenu>
  11732. <productMenu id="quickGuide"
  11733. type="1"
  11734. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11735. size="934KB" >
  11736. </productMenu>
  11737. <productMenu id="userGuide"
  11738. type="1"
  11739. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11740. size="1.14MB" >
  11741. </productMenu>
  11742. <productMenu id="volume"
  11743. type="11" >
  11744. </productMenu>
  11745. <productMenu id="battery"
  11746. type="1" >
  11747. </productMenu>
  11748. <productID id="3260"
  11749. />
  11750. <productGroupable type="0"
  11751. />
  11752. </product>
  11753. <product id="OUTRUSHR"
  11754. name="CX935"
  11755. series="Helmet"
  11756. latestVersion="2.1"
  11757. show = "-1" >
  11758. <productMenu id="protocol"
  11759. type="3">
  11760. </productMenu>
  11761. <productMenu id="sip"
  11762. type="1" >
  11763. </productMenu>
  11764. <productMenu id="bluetoothIntercom"
  11765. type="1" >
  11766. </productMenu>
  11767. <productMenu id="phone"
  11768. type="1" >
  11769. </productMenu>
  11770. <productMenu id="fmradio"
  11771. type="0" >
  11772. </productMenu>
  11773. <productMenu id="deviceSetting"
  11774. type="1"
  11775. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11776. </productMenu>
  11777. <productMenu id="userGuide"
  11778. type="1"
  11779. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11780. size="660KB" >
  11781. </productMenu>
  11782. <productID id="5446"
  11783. />
  11784. <productGroupable type="0"
  11785. />
  11786. </product>
  11787. <product id="LSE_01"
  11788. name="LSE-01"
  11789. series="SF"
  11790. latestVersion="1.2.3"
  11791. show = "0" >
  11792. <productMenu id="protocol"
  11793. type="1"
  11794. url="3">
  11795. </productMenu>
  11796. <productMenu id="sip"
  11797. type="1" >
  11798. </productMenu>
  11799. <productMenu id="bluetoothIntercom"
  11800. type="1" >
  11801. </productMenu>
  11802. <productMenu id="phone"
  11803. type="1" >
  11804. </productMenu>
  11805. <productMenu id="music"
  11806. type="1" >
  11807. </productMenu>
  11808. <productMenu id="fmradio"
  11809. type="1" >
  11810. </productMenu>
  11811. <productMenu id="deviceSetting"
  11812. type="1"
  11813. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11814. <productMenuURL version="1.1"
  11815. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11816. />
  11817. <productMenuURL version="1.0"
  11818. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11819. />
  11820. </productMenu>
  11821. <productMenu id="quickGuide"
  11822. type="1"
  11823. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11824. size="607KB" >
  11825. </productMenu>
  11826. <productMenu id="userGuide"
  11827. type="1"
  11828. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11829. size="1.91MB" >
  11830. </productMenu>
  11831. <productMenu id="volume"
  11832. type="4" >
  11833. </productMenu>
  11834. <productID id="5416"
  11835. />
  11836. <productGroupable type="0"
  11837. />
  11838. </product>
  11839. <product id="AGV_ARK"
  11840. name="AGV ARK"
  11841. series="SF"
  11842. latestVersion="1.0.3"
  11843. show = "0" >
  11844. <productMenu id="protocol"
  11845. type="1"
  11846. url="3">
  11847. </productMenu>
  11848. <productMenu id="sip"
  11849. type="1" >
  11850. </productMenu>
  11851. <productMenu id="bluetoothIntercom"
  11852. type="1" >
  11853. </productMenu>
  11854. <productMenu id="phone"
  11855. type="1" >
  11856. </productMenu>
  11857. <productMenu id="music"
  11858. type="1" >
  11859. </productMenu>
  11860. <productMenu id="fmradio"
  11861. type="1" >
  11862. </productMenu>
  11863. <productMenu id="deviceSetting"
  11864. type="1"
  11865. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11866. </productMenu>
  11867. <productMenu id="quickGuide"
  11868. type="1"
  11869. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11870. size="607KB" >
  11871. </productMenu>
  11872. <productMenu id="userGuide"
  11873. type="1"
  11874. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11875. size="1.91MB" >
  11876. </productMenu>
  11877. <productMenu id="volume"
  11878. type="4" >
  11879. </productMenu>
  11880. <productID id="5420"
  11881. />
  11882. <productGroupable type="0"
  11883. />
  11884. </product>
  11885. <product id="KLIM_KRIOS"
  11886. name="KLIM Krios"
  11887. series="10"
  11888. latestVersion="1.1.2"
  11889. show = "0" >
  11890. <productMenu id="protocol"
  11891. type="0">
  11892. </productMenu>
  11893. <productMenu id="sip"
  11894. type="1" >
  11895. </productMenu>
  11896. <productMenu id="bluetoothIntercom"
  11897. type="1" >
  11898. </productMenu>
  11899. <productMenu id="phone"
  11900. type="2" >
  11901. </productMenu>
  11902. <productMenu id="fmradio"
  11903. type="3" >
  11904. </productMenu>
  11905. <productMenu id="deviceSetting"
  11906. type="1"
  11907. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11908. <productMenuURL version="1.0"
  11909. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11910. />
  11911. </productMenu>
  11912. <productMenu id="quickGuide"
  11913. type="1"
  11914. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11915. size="649KB" >
  11916. </productMenu>
  11917. <productMenu id="userGuide"
  11918. type="1"
  11919. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11920. size="1.43MB" >
  11921. </productMenu>
  11922. <productID id="5910"
  11923. />
  11924. <productGroupable type="0"
  11925. />
  11926. </product>
  11927. <product id="POLARIS_SLINGSHOT"
  11928. name="Polaris Slingshot"
  11929. series="10"
  11930. latestVersion="1.1.2"
  11931. show = "0" >
  11932. <productMenu id="protocol"
  11933. type="0">
  11934. </productMenu>
  11935. <productMenu id="sip"
  11936. type="1" >
  11937. </productMenu>
  11938. <productMenu id="bluetoothIntercom"
  11939. type="1" >
  11940. </productMenu>
  11941. <productMenu id="phone"
  11942. type="2" >
  11943. </productMenu>
  11944. <productMenu id="fmradio"
  11945. type="3" >
  11946. </productMenu>
  11947. <productMenu id="deviceSetting"
  11948. type="1"
  11949. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11950. <productMenuURL version="1.0"
  11951. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11952. />
  11953. </productMenu>
  11954. <productMenu id="quickGuide"
  11955. type="1"
  11956. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11957. size="689KB" >
  11958. </productMenu>
  11959. <productMenu id="userGuide"
  11960. type="1"
  11961. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11962. size="1.43MB" >
  11963. </productMenu>
  11964. <productID id="5920"
  11965. />
  11966. <productGroupable type="0"
  11967. />
  11968. </product>
  11969. <product id="DWO6"
  11970. name="SEDICI DWO6-PRO"
  11971. series="10"
  11972. latestVersion="1.0.2"
  11973. show = "0" >
  11974. <productMenu id="protocol"
  11975. type="0">
  11976. </productMenu>
  11977. <productMenu id="sip"
  11978. type="1" >
  11979. </productMenu>
  11980. <productMenu id="bluetoothIntercom"
  11981. type="1" >
  11982. </productMenu>
  11983. <productMenu id="phone"
  11984. type="2" >
  11985. </productMenu>
  11986. <productMenu id="fmradio"
  11987. type="3" >
  11988. </productMenu>
  11989. <productMenu id="deviceSetting"
  11990. type="1"
  11991. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  11992. </productMenu>
  11993. <productMenu id="quickGuide"
  11994. type="1"
  11995. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11996. size="529KB" >
  11997. </productMenu>
  11998. <productMenu id="userGuide"
  11999. type="1"
  12000. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  12001. size="4.09MB" >
  12002. </productMenu>
  12003. <productID id="6112"
  12004. />
  12005. <productGroupable type="0"
  12006. />
  12007. </product>
  12008. <product id="DWO6A"
  12009. name="SEDICI DWO-6"
  12010. series="10"
  12011. latestVersion="1.0.2"
  12012. show = "0" >
  12013. <productMenu id="protocol"
  12014. type="0">
  12015. </productMenu>
  12016. <productMenu id="sip"
  12017. type="1" >
  12018. </productMenu>
  12019. <productMenu id="bluetoothIntercom"
  12020. type="1" >
  12021. </productMenu>
  12022. <productMenu id="phone"
  12023. type="2" >
  12024. </productMenu>
  12025. <productMenu id="fmradio"
  12026. type="3" >
  12027. </productMenu>
  12028. <productMenu id="deviceSetting"
  12029. type="1"
  12030. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  12031. </productMenu>
  12032. <productMenu id="quickGuide"
  12033. type="1"
  12034. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  12035. size="522KB" >
  12036. </productMenu>
  12037. <productMenu id="userGuide"
  12038. type="1"
  12039. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  12040. size="2.71MB" >
  12041. </productMenu>
  12042. <productID id="6114"
  12043. />
  12044. <productGroupable type="0"
  12045. />
  12046. </product>
  12047. <product id="3SPLUS"
  12048. name="ZILL"
  12049. series="3"
  12050. latestVersion="1.0.4"
  12051. show = "0" >
  12052. <productMenu id="protocol"
  12053. type="0">
  12054. </productMenu>
  12055. <productMenu id="sip"
  12056. type="1" >
  12057. </productMenu>
  12058. <productMenu id="bluetoothIntercom"
  12059. type="1" >
  12060. </productMenu>
  12061. <productMenu id="deviceSetting"
  12062. type="1"
  12063. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  12064. </productMenu>
  12065. <productMenu id="quickGuide"
  12066. type="1"
  12067. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  12068. size="842KB" >
  12069. </productMenu>
  12070. <productMenu id="userGuide"
  12071. type="1"
  12072. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  12073. size="1.02MB" >
  12074. </productMenu>
  12075. <productID id="6335"
  12076. />
  12077. <productGroupable type="0"
  12078. />
  12079. </product>
  12080. <product id="HD50S"
  12081. name="Boom! Audio 30K"
  12082. series="30"
  12083. latestVersion="3.4"
  12084. show = "0" >
  12085. <productMenu id="protocol"
  12086. type="1"
  12087. url="0">
  12088. </productMenu>
  12089. <productMenu id="wa"
  12090. type="0" >
  12091. </productMenu>
  12092. <productMenu id="sip"
  12093. type="1" >
  12094. </productMenu>
  12095. <productMenu id="meshIntercom"
  12096. type="20" >
  12097. <productMenuType version="2.9.9"
  12098. type="10"
  12099. />
  12100. </productMenu>
  12101. <productMenu id="bluetoothIntercom"
  12102. type="1" >
  12103. </productMenu>
  12104. <productMenu id="phone"
  12105. type="1" >
  12106. </productMenu>
  12107. <productMenu id="music"
  12108. type="1" >
  12109. </productMenu>
  12110. <productMenu id="fmradio"
  12111. type="1" >
  12112. </productMenu>
  12113. <productMenu id="deviceSetting"
  12114. type="1"
  12115. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  12116. <productMenuURL version="3.2"
  12117. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  12118. />
  12119. <productMenuURL version="3.0"
  12120. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  12121. />
  12122. <productMenuURL version="2.2"
  12123. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12124. />
  12125. </productMenu>
  12126. <productMenu id="quickGuide"
  12127. type="1"
  12128. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12129. size="1.06MB" >
  12130. </productMenu>
  12131. <productMenu id="userGuide"
  12132. type="1"
  12133. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12134. size="3.15MB" >
  12135. </productMenu>
  12136. <productMenu id="volume"
  12137. type="1" >
  12138. </productMenu>
  12139. <productID id="3112"
  12140. />
  12141. <productGroupable type="0"
  12142. />
  12143. </product>
  12144. <product id="HD50S"
  12145. name="Boom! Audio N02"
  12146. series="30"
  12147. latestVersion="3.1"
  12148. show = "0" >
  12149. <productMenu id="protocol"
  12150. type="1"
  12151. url="0">
  12152. </productMenu>
  12153. <productMenu id="wa"
  12154. type="2" >
  12155. </productMenu>
  12156. <productMenu id="sip"
  12157. type="1" >
  12158. </productMenu>
  12159. <productMenu id="meshIntercom"
  12160. type="20" >
  12161. <productMenuType version="2.9.9"
  12162. type="10"
  12163. />
  12164. </productMenu>
  12165. <productMenu id="bluetoothIntercom"
  12166. type="1" >
  12167. </productMenu>
  12168. <productMenu id="phone"
  12169. type="1" >
  12170. </productMenu>
  12171. <productMenu id="music"
  12172. type="1" >
  12173. </productMenu>
  12174. <productMenu id="fmradio"
  12175. type="1" >
  12176. </productMenu>
  12177. <productMenu id="deviceSetting"
  12178. type="1"
  12179. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  12180. <productMenuURL version="2.2"
  12181. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12182. />
  12183. </productMenu>
  12184. <productMenu id="quickGuide"
  12185. type="1"
  12186. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  12187. size="1.06MB" >
  12188. </productMenu>
  12189. <productMenu id="userGuide"
  12190. type="1"
  12191. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  12192. size="3.15MB" >
  12193. </productMenu>
  12194. <productMenu id="volume"
  12195. type="2" >
  12196. </productMenu>
  12197. <productID id="3114"
  12198. />
  12199. <productGroupable type="0"
  12200. />
  12201. </product>
  12202. <product id="HD50S"
  12203. name="Boom Audio 20S"
  12204. series="50"
  12205. latestVersion="2.5.2"
  12206. show = "0" >
  12207. <productMenu id="protocol"
  12208. type="0">
  12209. </productMenu>
  12210. <productMenu id="sip"
  12211. type="1" >
  12212. <productMenuType version="1.0"
  12213. type="0"
  12214. />
  12215. </productMenu>
  12216. <productMenu id="bluetoothIntercom"
  12217. type="1" >
  12218. <productMenuType version="1.0"
  12219. type="0"
  12220. />
  12221. </productMenu>
  12222. <productMenu id="intercomSetting"
  12223. type="1" >
  12224. </productMenu>
  12225. <productMenu id="phone"
  12226. type="2" >
  12227. </productMenu>
  12228. <productMenu id="fmradio"
  12229. type="3" >
  12230. </productMenu>
  12231. <productMenu id="deviceSetting"
  12232. type="1"
  12233. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12234. <productMenuURL version="2.4"
  12235. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12236. />
  12237. <productMenuURL version="1.5"
  12238. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12239. />
  12240. <productMenuURL version="1.4.1"
  12241. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12242. />
  12243. <productMenuURL version="1.1"
  12244. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12245. />
  12246. <productMenuURL version="1.0"
  12247. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12248. />
  12249. </productMenu>
  12250. <productMenu id="quickGuide"
  12251. type="1"
  12252. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12253. size="264KB" >
  12254. </productMenu>
  12255. <productMenu id="userGuide"
  12256. type="1"
  12257. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12258. size="3.09MB" >
  12259. </productMenu>
  12260. <productMenu id="connectGuide"
  12261. type="1"
  12262. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  12263. size="1.12MB" >
  12264. </productMenu>
  12265. <productID id="4210"
  12266. />
  12267. <productProductKey key="11"
  12268. />
  12269. <productID id="4230"
  12270. />
  12271. <productProductKey key="11"
  12272. />
  12273. <productGroupable type="1"
  12274. />
  12275. </product>
  12276. <product id="HD50S"
  12277. name="Boom Audio 20S EVO"
  12278. series="50"
  12279. latestVersion="2.5.2"
  12280. show = "0" >
  12281. <productMenu id="protocol"
  12282. type="0">
  12283. </productMenu>
  12284. <productMenu id="sip"
  12285. type="1" >
  12286. <productMenuType version="1.0"
  12287. type="0"
  12288. />
  12289. </productMenu>
  12290. <productMenu id="bluetoothIntercom"
  12291. type="1" >
  12292. <productMenuType version="1.0"
  12293. type="0"
  12294. />
  12295. </productMenu>
  12296. <productMenu id="intercomSetting"
  12297. type="1" >
  12298. </productMenu>
  12299. <productMenu id="phone"
  12300. type="2" >
  12301. </productMenu>
  12302. <productMenu id="fmradio"
  12303. type="3" >
  12304. </productMenu>
  12305. <productMenu id="deviceSetting"
  12306. type="1"
  12307. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12308. <productMenuURL version="2.4"
  12309. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12310. />
  12311. <productMenuURL version="1.5"
  12312. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12313. />
  12314. <productMenuURL version="1.4.1"
  12315. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12316. />
  12317. <productMenuURL version="1.1"
  12318. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12319. />
  12320. <productMenuURL version="1.0"
  12321. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12322. />
  12323. </productMenu>
  12324. <productMenu id="quickGuide"
  12325. type="1"
  12326. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12327. size="321KB" >
  12328. </productMenu>
  12329. <productMenu id="userGuide"
  12330. type="1"
  12331. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12332. size="2.46MB" >
  12333. </productMenu>
  12334. <productID id="4230"
  12335. />
  12336. <productProductKey key="27"
  12337. />
  12338. <productGroupable type="1"
  12339. />
  12340. </product>
  12341. <product id="HD50S"
  12342. name="Boom! Audio 10S"
  12343. series="50"
  12344. latestVersion="1.1.3"
  12345. show = "0" >
  12346. <productMenu id="protocol"
  12347. type="0">
  12348. </productMenu>
  12349. <productMenu id="sip"
  12350. type="1" >
  12351. </productMenu>
  12352. <productMenu id="bluetoothIntercom"
  12353. type="1" >
  12354. </productMenu>
  12355. <productMenu id="phone"
  12356. type="2" >
  12357. </productMenu>
  12358. <productMenu id="fmradio"
  12359. type="3" >
  12360. </productMenu>
  12361. <productMenu id="deviceSetting"
  12362. type="1"
  12363. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  12364. </productMenu>
  12365. <productMenu id="quickGuide"
  12366. type="1"
  12367. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12368. size="538KB" >
  12369. </productMenu>
  12370. <productMenu id="userGuide"
  12371. type="1"
  12372. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12373. size="1.55MB" >
  12374. </productMenu>
  12375. <productID id="5532"
  12376. />
  12377. <productGroupable type="0"
  12378. />
  12379. </product>
  12380. <product id="HD50S"
  12381. name="Boom! Audio N01 10R"
  12382. series="50"
  12383. latestVersion="1.1.3"
  12384. show = "0" >
  12385. <productMenu id="protocol"
  12386. type="0">
  12387. </productMenu>
  12388. <productMenu id="sip"
  12389. type="1" >
  12390. </productMenu>
  12391. <productMenu id="bluetoothIntercom"
  12392. type="1" >
  12393. </productMenu>
  12394. <productMenu id="phone"
  12395. type="2" >
  12396. </productMenu>
  12397. <productMenu id="fmradio"
  12398. type="3" >
  12399. </productMenu>
  12400. <productMenu id="deviceSetting"
  12401. type="1"
  12402. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  12403. </productMenu>
  12404. <productMenu id="quickGuide"
  12405. type="1"
  12406. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12407. size="766KB" >
  12408. </productMenu>
  12409. <productMenu id="userGuide"
  12410. type="1"
  12411. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12412. size="1.45MB" >
  12413. </productMenu>
  12414. <productID id="5522"
  12415. />
  12416. <productGroupable type="0"
  12417. />
  12418. </product>
  12419. <product id="HD50S"
  12420. name="OUTRUSH-R N03"
  12421. series="50"
  12422. latestVersion="1.2.1"
  12423. show = "-1" >
  12424. <productMenu id="protocol"
  12425. type="0">
  12426. </productMenu>
  12427. <productMenu id="sip"
  12428. type="1" >
  12429. </productMenu>
  12430. <productMenu id="bluetoothIntercom"
  12431. type="1" >
  12432. </productMenu>
  12433. <productMenu id="phone"
  12434. type="2" >
  12435. </productMenu>
  12436. <productMenu id="fmradio"
  12437. type="3" >
  12438. </productMenu>
  12439. <productMenu id="deviceSetting"
  12440. type="1"
  12441. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  12442. </productMenu>
  12443. <productMenu id="userGuide"
  12444. type="1"
  12445. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  12446. size="660KB" >
  12447. </productMenu>
  12448. <productID id="5434"
  12449. />
  12450. <productGroupable type="0"
  12451. />
  12452. </product>
  12453. <product id="HD50S"
  12454. name="OUTRUSH-R N03"
  12455. series="50"
  12456. latestVersion="2.0"
  12457. show = "0" >
  12458. <productMenu id="protocol"
  12459. type="3" >
  12460. </productMenu>
  12461. <productMenu id="sip"
  12462. type="1" >
  12463. </productMenu>
  12464. <productMenu id="bluetoothIntercom"
  12465. type="1" >
  12466. </productMenu>
  12467. <productMenu id="phone"
  12468. type="1" >
  12469. </productMenu>
  12470. <productMenu id="fmradio"
  12471. type="1" >
  12472. </productMenu>
  12473. <productMenu id="deviceSetting"
  12474. type="1"
  12475. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  12476. </productMenu>
  12477. <productMenu id="userGuide"
  12478. type="1"
  12479. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  12480. size="1.14MB" >
  12481. </productMenu>
  12482. <productID id="5441"
  12483. />
  12484. <productGroupable type="0"
  12485. />
  12486. </product>
  12487. <product id="5R"
  12488. name="5R"
  12489. series="5"
  12490. latestVersion="1.0.1"
  12491. show = "1" >
  12492. <productMenu id="protocol"
  12493. type="3" >
  12494. </productMenu>
  12495. <productMenu id="sip"
  12496. type="1" >
  12497. </productMenu>
  12498. <productMenu id="bluetoothIntercom"
  12499. type="1" >
  12500. </productMenu>
  12501. <productMenu id="phone"
  12502. type="1" >
  12503. </productMenu>
  12504. <productMenu id="fmradio"
  12505. type="1" >
  12506. </productMenu>
  12507. <productMenu id="deviceSetting"
  12508. type="1"
  12509. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12510. </productMenu>
  12511. <productMenu id="quickGuide"
  12512. type="0"
  12513. url=""
  12514. size="934KB" >
  12515. </productMenu>
  12516. <productMenu id="userGuide"
  12517. type="1"
  12518. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  12519. size="1.14MB" >
  12520. </productMenu>
  12521. <productMenu id="connectGuide"
  12522. type="1"
  12523. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12524. size="1.12MB" >
  12525. </productMenu>
  12526. <productID id="5591"
  12527. />
  12528. <productGroupable type="0"
  12529. />
  12530. </product>
  12531. <product id="5R"
  12532. name="5R LITE"
  12533. series="5"
  12534. latestVersion="1.0.1"
  12535. show = "1" >
  12536. <productMenu id="protocol"
  12537. type="3" >
  12538. </productMenu>
  12539. <productMenu id="sip"
  12540. type="1" >
  12541. </productMenu>
  12542. <productMenu id="bluetoothIntercom"
  12543. type="1" >
  12544. </productMenu>
  12545. <productMenu id="phone"
  12546. type="1" >
  12547. </productMenu>
  12548. <productMenu id="fmradio"
  12549. type="1" >
  12550. </productMenu>
  12551. <productMenu id="deviceSetting"
  12552. type="1"
  12553. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12554. </productMenu>
  12555. <productMenu id="quickGuide"
  12556. type="0"
  12557. url=""
  12558. size="934KB" >
  12559. </productMenu>
  12560. <productMenu id="userGuide"
  12561. type="1"
  12562. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12563. size="1.14MB" >
  12564. </productMenu>
  12565. <productMenu id="connectGuide"
  12566. type="1"
  12567. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12568. size="1.12MB" >
  12569. </productMenu>
  12570. <productID id="5592"
  12571. />
  12572. <productGroupable type="0"
  12573. />
  12574. </product>
  12575. <product id="50RLE"
  12576. name="50R LE"
  12577. series="50"
  12578. latestVersion="1.1"
  12579. show = "0" >
  12580. <productMenu id="protocol"
  12581. type="2" >
  12582. </productMenu>
  12583. <productMenu id="alexa"
  12584. type="0" >
  12585. </productMenu>
  12586. <productMenu id="sip"
  12587. type="1" >
  12588. </productMenu>
  12589. <productMenu id="meshIntercom"
  12590. type="30" >
  12591. </productMenu>
  12592. <productMenu id="meshIntercom+"
  12593. type="3"
  12594. url="2" >
  12595. <productMenuType version="1.0.9"
  12596. type="2"
  12597. />
  12598. </productMenu>
  12599. <productMenu id="waveIntercom"
  12600. type="1" >
  12601. <productMenuType version="1.0.9"
  12602. type="0"
  12603. />
  12604. </productMenu>
  12605. <productMenu id="bluetoothIntercom"
  12606. type="1" >
  12607. </productMenu>
  12608. <productMenu id="phone"
  12609. type="1" >
  12610. </productMenu>
  12611. <productMenu id="music"
  12612. type="1" >
  12613. </productMenu>
  12614. <productMenu id="fmradio"
  12615. type="0" >
  12616. </productMenu>
  12617. <productMenu id="deviceSetting"
  12618. type="1"
  12619. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  12620. <productMenuURL version="1.0.9"
  12621. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  12622. />
  12623. </productMenu>
  12624. <productMenu id="quickGuide"
  12625. type="0"
  12626. url=""
  12627. size="344KB" >
  12628. </productMenu>
  12629. <productMenu id="userGuide"
  12630. type="0"
  12631. url=""
  12632. size="3.41MB" >
  12633. </productMenu>
  12634. <productMenu id="volume"
  12635. type="11" >
  12636. </productMenu>
  12637. <productMenu id="battery"
  12638. type="1" >
  12639. </productMenu>
  12640. <productID id="3223"
  12641. />
  12642. <productGroupable type="0"
  12643. />
  12644. </product>
  12645. <product id="5RLOUIS"
  12646. name="5R LOUIS EDITION"
  12647. series="5"
  12648. latestVersion="1.0"
  12649. show = "-1" >
  12650. <productMenu id="protocol"
  12651. type="3" >
  12652. </productMenu>
  12653. <productMenu id="sip"
  12654. type="1" >
  12655. </productMenu>
  12656. <productMenu id="bluetoothIntercom"
  12657. type="1" >
  12658. </productMenu>
  12659. <productMenu id="phone"
  12660. type="1" >
  12661. </productMenu>
  12662. <productMenu id="fmradio"
  12663. type="1" >
  12664. </productMenu>
  12665. <productMenu id="deviceSetting"
  12666. type="1"
  12667. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12668. </productMenu>
  12669. <productMenu id="quickGuide"
  12670. type="0"
  12671. url=""
  12672. size="934KB" >
  12673. </productMenu>
  12674. <productMenu id="userGuide"
  12675. type="0"
  12676. url=""
  12677. size="1.14MB" >
  12678. </productMenu>
  12679. <productID id="5597"
  12680. />
  12681. <productGroupable type="0"
  12682. />
  12683. </product>
  12684. <product id="5S"
  12685. name="Ridekont 5S"
  12686. series="5"
  12687. latestVersion="2.3"
  12688. show = "-1" >
  12689. <productMenu id="protocol"
  12690. type="3" >
  12691. </productMenu>
  12692. <productMenu id="sip"
  12693. type="1" >
  12694. </productMenu>
  12695. <productMenu id="bluetoothIntercom"
  12696. type="1" >
  12697. </productMenu>
  12698. <productMenu id="phone"
  12699. type="1" >
  12700. </productMenu>
  12701. <productMenu id="fmradio"
  12702. type="0" >
  12703. </productMenu>
  12704. <productMenu id="deviceSetting"
  12705. type="1"
  12706. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12707. </productMenu>
  12708. <productMenu id="quickGuide"
  12709. type="0"
  12710. url=""
  12711. size="934KB" >
  12712. </productMenu>
  12713. <productMenu id="userGuide"
  12714. type="1"
  12715. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12716. size="1.14MB" >
  12717. </productMenu>
  12718. <productID id="5589"
  12719. />
  12720. <productGroupable type="0"
  12721. />
  12722. </product>
  12723. <product id="5R"
  12724. name="Ridekont 5R"
  12725. series="5"
  12726. latestVersion="1.0"
  12727. show = "0" >
  12728. <productMenu id="protocol"
  12729. type="3" >
  12730. </productMenu>
  12731. <productMenu id="sip"
  12732. type="1" >
  12733. </productMenu>
  12734. <productMenu id="bluetoothIntercom"
  12735. type="1" >
  12736. </productMenu>
  12737. <productMenu id="phone"
  12738. type="1" >
  12739. </productMenu>
  12740. <productMenu id="fmradio"
  12741. type="1" >
  12742. </productMenu>
  12743. <productMenu id="deviceSetting"
  12744. type="1"
  12745. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12746. </productMenu>
  12747. <productMenu id="quickGuide"
  12748. type="1"
  12749. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12750. size="934KB" >
  12751. </productMenu>
  12752. <productMenu id="userGuide"
  12753. type="1"
  12754. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12755. size="1.14MB" >
  12756. </productMenu>
  12757. <productID id="5593"
  12758. />
  12759. <productGroupable type="0"
  12760. />
  12761. </product>
  12762. <product id="5R"
  12763. name="Ridekont 5R LITE"
  12764. series="5"
  12765. latestVersion="1.0"
  12766. show = "0" >
  12767. <productMenu id="protocol"
  12768. type="3" >
  12769. </productMenu>
  12770. <productMenu id="sip"
  12771. type="1" >
  12772. </productMenu>
  12773. <productMenu id="bluetoothIntercom"
  12774. type="1" >
  12775. </productMenu>
  12776. <productMenu id="phone"
  12777. type="1" >
  12778. </productMenu>
  12779. <productMenu id="fmradio"
  12780. type="1" >
  12781. </productMenu>
  12782. <productMenu id="deviceSetting"
  12783. type="1"
  12784. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12785. </productMenu>
  12786. <productMenu id="quickGuide"
  12787. type="0"
  12788. url=""
  12789. size="934KB" >
  12790. </productMenu>
  12791. <productMenu id="userGuide"
  12792. type="1"
  12793. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12794. size="1.14MB" >
  12795. </productMenu>
  12796. <productID id="5594"
  12797. />
  12798. <productGroupable type="0"
  12799. />
  12800. </product>
  12801. <product id="SA30"
  12802. name="SA30"
  12803. series="SA"
  12804. latestVersion="1.0.3"
  12805. latestVersionVoicePrompt="0.15"
  12806. show = "-1" >
  12807. <productMenu id="protocol"
  12808. type="2" >
  12809. </productMenu>
  12810. <productMenu id="ota"
  12811. type="2" >
  12812. <otaPackages>
  12813. <package
  12814. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.3-build0.img"
  12815. size="3144148"
  12816. />
  12817. </otaPackages>
  12818. </productMenu>
  12819. <productMenu id="meshIntercom"
  12820. type="30" >
  12821. </productMenu>
  12822. <productMenu id="meshIntercom+"
  12823. type="3"
  12824. url="2" >
  12825. </productMenu>
  12826. <productMenu id="phone"
  12827. type="1" >
  12828. </productMenu>
  12829. <productMenu id="music"
  12830. type="1" >
  12831. </productMenu>
  12832. <productMenu id="musicSharing"
  12833. type="0" >
  12834. </productMenu>
  12835. <productMenu id="deviceSetting"
  12836. type="1"
  12837. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12838. </productMenu>
  12839. <productMenu id="quickGuide"
  12840. type="0"
  12841. url=""
  12842. size="1.12MB" >
  12843. </productMenu>
  12844. <productMenu id="userGuide"
  12845. type="1"
  12846. url=""
  12847. size="2.0MB" >
  12848. </productMenu>
  12849. <productMenu id="videoGuide"
  12850. type="0"
  12851. url=""
  12852. size="3.41MB" >
  12853. </productMenu>
  12854. <productMenu id="volume"
  12855. type="12" >
  12856. </productMenu>
  12857. <productMenu id="battery"
  12858. type="1" >
  12859. </productMenu>
  12860. <productID id="6852"
  12861. />
  12862. <productGroupable type="0"
  12863. />
  12864. </product>
  12865. <product id="I30"
  12866. name="I30"
  12867. series="I"
  12868. latestVersion="1.0.3"
  12869. latestVersionVoicePrompt="0.2"
  12870. show = "-1" >
  12871. <productMenu id="protocol"
  12872. type="2" >
  12873. </productMenu>
  12874. <productMenu id="ota"
  12875. type="2" >
  12876. <otaPackages>
  12877. <package
  12878. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.3-build0.img"
  12879. size="3144148"
  12880. />
  12881. </otaPackages>
  12882. </productMenu>
  12883. <productMenu id="meshIntercom"
  12884. type="30" >
  12885. </productMenu>
  12886. <productMenu id="meshIntercom+"
  12887. type="3"
  12888. url="2" >
  12889. </productMenu>
  12890. <productMenu id="phone"
  12891. type="1" >
  12892. </productMenu>
  12893. <productMenu id="music"
  12894. type="1" >
  12895. </productMenu>
  12896. <productMenu id="musicSharing"
  12897. type="0" >
  12898. </productMenu>
  12899. <productMenu id="deviceSetting"
  12900. type="1"
  12901. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12902. </productMenu>
  12903. <productMenu id="quickGuide"
  12904. type="0"
  12905. url=""
  12906. size="1.12MB" >
  12907. </productMenu>
  12908. <productMenu id="userGuide"
  12909. type="1"
  12910. url=""
  12911. size="2.10MB" >
  12912. </productMenu>
  12913. <productMenu id="videoGuide"
  12914. type="0"
  12915. url=""
  12916. size="3.11MB" >
  12917. </productMenu>
  12918. <productMenu id="volume"
  12919. type="12" >
  12920. </productMenu>
  12921. <productMenu id="battery"
  12922. type="1" >
  12923. </productMenu>
  12924. <productID id="6853"
  12925. />
  12926. <productGroupable type="0"
  12927. />
  12928. </product>
  12929. <product id="LS2C30"
  12930. name="LS2-C30"
  12931. series="C"
  12932. latestVersion="1.0"
  12933. latestVersionVoicePrompt="0.13"
  12934. show = "-1" >
  12935. <productMenu id="protocol"
  12936. type="2" >
  12937. </productMenu>
  12938. <productMenu id="ota"
  12939. type="0" >
  12940. <otaPackages>
  12941. <package
  12942. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_LS2C30-v1.2.2-build0.img"
  12943. size="3144148"
  12944. />
  12945. </otaPackages>
  12946. </productMenu>
  12947. <productMenu id="meshIntercom+"
  12948. type="3"
  12949. url="2" >
  12950. </productMenu>
  12951. <productMenu id="waveIntercom"
  12952. type="1" >
  12953. </productMenu>
  12954. <productMenu id="phone"
  12955. type="1" >
  12956. </productMenu>
  12957. <productMenu id="music"
  12958. type="1" >
  12959. </productMenu>
  12960. <productMenu id="musicSharing"
  12961. type="0" >
  12962. </productMenu>
  12963. <productMenu id="deviceSetting"
  12964. type="1"
  12965. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  12966. </productMenu>
  12967. <productMenu id="quickGuide"
  12968. type="0"
  12969. url=""
  12970. size="1.17MB" >
  12971. </productMenu>
  12972. <productMenu id="userGuide"
  12973. type="1"
  12974. url=""
  12975. size="2.0MB" >
  12976. </productMenu>
  12977. <productMenu id="videoGuide"
  12978. type="0"
  12979. url=""
  12980. size="3.41MB" >
  12981. </productMenu>
  12982. <productMenu id="volume"
  12983. type="12" >
  12984. </productMenu>
  12985. <productMenu id="battery"
  12986. type="1" >
  12987. </productMenu>
  12988. <productID id="685E"
  12989. />
  12990. <productGroupable type="0"
  12991. />
  12992. </product>
  12993. <product id="C30EVO"
  12994. name="C30 EVO"
  12995. series="C"
  12996. latestVersion="1.0"
  12997. latestVersionVoicePrompt="0.13"
  12998. show = "-1" >
  12999. <productMenu id="protocol"
  13000. type="2" >
  13001. </productMenu>
  13002. <productMenu id="ota"
  13003. type="0" >
  13004. <otaPackages>
  13005. <package
  13006. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  13007. size="3144148"
  13008. />
  13009. </otaPackages>
  13010. </productMenu>
  13011. <productMenu id="meshIntercom+"
  13012. type="3"
  13013. url="2" >
  13014. </productMenu>
  13015. <productMenu id="waveIntercom"
  13016. type="1" >
  13017. </productMenu>
  13018. <productMenu id="phone"
  13019. type="1" >
  13020. </productMenu>
  13021. <productMenu id="music"
  13022. type="1" >
  13023. </productMenu>
  13024. <productMenu id="musicSharing"
  13025. type="0" >
  13026. </productMenu>
  13027. <productMenu id="deviceSetting"
  13028. type="1"
  13029. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  13030. </productMenu>
  13031. <productMenu id="quickGuide"
  13032. type="0"
  13033. url=""
  13034. size="1.17MB" >
  13035. </productMenu>
  13036. <productMenu id="userGuide"
  13037. type="1"
  13038. url=""
  13039. size="2.0MB" >
  13040. </productMenu>
  13041. <productMenu id="videoGuide"
  13042. type="0"
  13043. url=""
  13044. size="3.41MB" >
  13045. </productMenu>
  13046. <productMenu id="volume"
  13047. type="12" >
  13048. </productMenu>
  13049. <productMenu id="battery"
  13050. type="1" >
  13051. </productMenu>
  13052. <productID id="685B"
  13053. />
  13054. <productGroupable type="0"
  13055. />
  13056. </product>
  13057. <product id="C30"
  13058. name="SENA C30"
  13059. series="C"
  13060. latestVersion="1.2.4"
  13061. latestVersionVoicePrompt="0.13"
  13062. show = "1" >
  13063. <productMenu id="protocol"
  13064. type="2" >
  13065. </productMenu>
  13066. <productMenu id="alexa"
  13067. type="0" >
  13068. </productMenu>
  13069. <productMenu id="ota"
  13070. type="2" >
  13071. <otaPackages>
  13072. <package
  13073. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.4-build0.img"
  13074. size="3144148"
  13075. />
  13076. </otaPackages>
  13077. </productMenu>
  13078. <productMenu id="wa"
  13079. type="0" >
  13080. </productMenu>
  13081. <productMenu id="meshIntercom"
  13082. type="30" >
  13083. </productMenu>
  13084. <productMenu id="meshIntercom+"
  13085. type="3"
  13086. url="2" >
  13087. <productMenuType version="1.0.9"
  13088. type="2"
  13089. />
  13090. </productMenu>
  13091. <productMenu id="waveIntercom"
  13092. type="1" >
  13093. <productMenuType version="1.1.9"
  13094. type="0"
  13095. />
  13096. </productMenu>
  13097. <productMenu id="phone"
  13098. type="1" >
  13099. </productMenu>
  13100. <productMenu id="music"
  13101. type="1" >
  13102. </productMenu>
  13103. <productMenu id="musicSharing"
  13104. type="0" >
  13105. </productMenu>
  13106. <productMenu id="deviceSetting"
  13107. type="1"
  13108. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  13109. <productMenuURL version="1.1.3"
  13110. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  13111. />
  13112. <productMenuURL version="1.0.9"
  13113. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  13114. />
  13115. </productMenu>
  13116. <productMenu id="quickGuide"
  13117. type="1"
  13118. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13119. size="1.12MB" >
  13120. </productMenu>
  13121. <productMenu id="userGuide"
  13122. type="0"
  13123. url=""
  13124. size="2.0MB" >
  13125. </productMenu>
  13126. <productMenu id="videoGuide"
  13127. type="0"
  13128. url=""
  13129. size="3.41MB" >
  13130. </productMenu>
  13131. <productMenu id="volume"
  13132. type="12" >
  13133. </productMenu>
  13134. <productMenu id="battery"
  13135. type="1" >
  13136. </productMenu>
  13137. <productID id="683A"
  13138. />
  13139. <productGroupable type="0"
  13140. />
  13141. </product>
  13142. <product id="C20"
  13143. name="C20"
  13144. series="C"
  13145. latestVersion="1.0"
  13146. show = "1" >
  13147. <productMenu id="protocol"
  13148. type="3" >
  13149. </productMenu>
  13150. <productMenu id="sip"
  13151. type="1" >
  13152. </productMenu>
  13153. <productMenu id="bluetoothIntercom"
  13154. type="1" >
  13155. </productMenu>
  13156. <productMenu id="phone"
  13157. type="1" >
  13158. </productMenu>
  13159. <productMenu id="deviceSetting"
  13160. type="1"
  13161. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  13162. </productMenu>
  13163. <productMenu id="quickGuide"
  13164. type="1"
  13165. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  13166. size="934KB" >
  13167. </productMenu>
  13168. <productMenu id="userGuide"
  13169. type="1"
  13170. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  13171. size="1.14MB" >
  13172. </productMenu>
  13173. <productID id="3701"
  13174. />
  13175. <productGroupable type="0"
  13176. />
  13177. </product>
  13178. <product id="C10"
  13179. name="C10"
  13180. series="C"
  13181. latestVersion="1.4.4"
  13182. show = "1" >
  13183. <productMenu id="protocol"
  13184. type="3" >
  13185. </productMenu>
  13186. <productMenu id="sip"
  13187. type="1" >
  13188. </productMenu>
  13189. <productMenu id="bluetoothIntercom"
  13190. type="1" >
  13191. </productMenu>
  13192. <productMenu id="phone"
  13193. type="1" >
  13194. </productMenu>
  13195. <productMenu id="fmradio"
  13196. type="0" >
  13197. </productMenu>
  13198. <productMenu id="deviceSetting"
  13199. type="1"
  13200. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13201. </productMenu>
  13202. <productMenu id="userGuide"
  13203. type="1"
  13204. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  13205. size="1.14MB" >
  13206. </productMenu>
  13207. <productID id="5595"
  13208. />
  13209. <productGroupable type="0"
  13210. />
  13211. </product>
  13212. <product id="CA1"
  13213. name="CA1"
  13214. series="C"
  13215. latestVersion="0.2"
  13216. show = "-1" >
  13217. <productMenu id="protocol"
  13218. type="2" >
  13219. </productMenu>
  13220. <productMenu id="ota"
  13221. type="2" >
  13222. <otaPackages>
  13223. <package
  13224. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/CA1/SENA_CA1-v0.2-build1.img"
  13225. size="3144148"
  13226. />
  13227. </otaPackages>
  13228. </productMenu>
  13229. <productMenu id="phone"
  13230. type="1" >
  13231. </productMenu>
  13232. <productMenu id="music"
  13233. type="1" >
  13234. </productMenu>
  13235. <productMenu id="musicSharing"
  13236. type="0" >
  13237. </productMenu>
  13238. <productMenu id="deviceSetting"
  13239. type="1"
  13240. url="https://api.sena.com/support/SenaNeoApp/CA1/NS_CA1_AIROHA_01_zh_rCN.xml" >
  13241. </productMenu>
  13242. <productMenu id="quickGuide"
  13243. type="1"
  13244. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13245. size="1.12MB" >
  13246. </productMenu>
  13247. <productMenu id="userGuide"
  13248. type="0"
  13249. url=""
  13250. size="2.0MB" >
  13251. </productMenu>
  13252. <productMenu id="videoGuide"
  13253. type="1"
  13254. url=""
  13255. size="3.41MB" >
  13256. </productMenu>
  13257. <productMenu id="volume"
  13258. type="12" >
  13259. </productMenu>
  13260. <productMenu id="battery"
  13261. type="1" >
  13262. </productMenu>
  13263. <productID id="5F01"
  13264. />
  13265. <productGroupable type="0"
  13266. />
  13267. </product>
  13268. <product id="J30"
  13269. name="J30"
  13270. series="J"
  13271. latestVersion="1.2.4"
  13272. latestVersionVoicePrompt="0.14"
  13273. show = "0" >
  13274. <productMenu id="protocol"
  13275. type="2" >
  13276. </productMenu>
  13277. <productMenu id="alexa"
  13278. type="0" >
  13279. </productMenu>
  13280. <productMenu id="ota"
  13281. type="2" >
  13282. <otaPackages>
  13283. <package
  13284. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.4-build0.img"
  13285. size="3144148"
  13286. />
  13287. </otaPackages>
  13288. </productMenu>
  13289. <productMenu id="wa"
  13290. type="0" >
  13291. </productMenu>
  13292. <productMenu id="meshIntercom"
  13293. type="30" >
  13294. </productMenu>
  13295. <productMenu id="meshIntercom+"
  13296. type="3"
  13297. url="2" >
  13298. <productMenuType version="1.0.9"
  13299. type="2"
  13300. />
  13301. </productMenu>
  13302. <productMenu id="waveIntercom"
  13303. type="1" >
  13304. <productMenuType version="1.1.9"
  13305. type="0"
  13306. />
  13307. </productMenu>
  13308. <productMenu id="phone"
  13309. type="1" >
  13310. </productMenu>
  13311. <productMenu id="music"
  13312. type="1" >
  13313. </productMenu>
  13314. <productMenu id="musicSharing"
  13315. type="0" >
  13316. </productMenu>
  13317. <productMenu id="deviceSetting"
  13318. type="1"
  13319. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  13320. <productMenuURL version="1.0.9"
  13321. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  13322. />
  13323. </productMenu>
  13324. <productMenu id="quickGuide"
  13325. type="0"
  13326. url=""
  13327. size="1.12MB" >
  13328. </productMenu>
  13329. <productMenu id="userGuide"
  13330. type="1"
  13331. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  13332. size="2.0MB" >
  13333. </productMenu>
  13334. <productMenu id="videoGuide"
  13335. type="0"
  13336. url=""
  13337. size="3.41MB" >
  13338. </productMenu>
  13339. <productMenu id="volume"
  13340. type="12" >
  13341. </productMenu>
  13342. <productMenu id="battery"
  13343. type="1" >
  13344. </productMenu>
  13345. <productID id="6848"
  13346. />
  13347. <productGroupable type="0"
  13348. />
  13349. </product>
  13350. <product id="J10"
  13351. name="J10"
  13352. series="5"
  13353. latestVersion="1.1.4"
  13354. show = "0" >
  13355. <productMenu id="protocol"
  13356. type="3" >
  13357. </productMenu>
  13358. <productMenu id="sip"
  13359. type="1" >
  13360. </productMenu>
  13361. <productMenu id="bluetoothIntercom"
  13362. type="1" >
  13363. </productMenu>
  13364. <productMenu id="phone"
  13365. type="1" >
  13366. </productMenu>
  13367. <productMenu id="fmradio"
  13368. type="0" >
  13369. </productMenu>
  13370. <productMenu id="deviceSetting"
  13371. type="1"
  13372. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13373. </productMenu>
  13374. <productMenu id="userGuide"
  13375. type="1"
  13376. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  13377. size="1.14MB" >
  13378. </productMenu>
  13379. <productID id="5598"
  13380. />
  13381. <productGroupable type="0"
  13382. />
  13383. </product>
  13384. <product id="B20"
  13385. name="B20"
  13386. series="B"
  13387. latestVersion="1.1.4"
  13388. latestVersionVoicePrompt="0.14"
  13389. show = "0" >
  13390. <productMenu id="protocol"
  13391. type="2" >
  13392. </productMenu>
  13393. <productMenu id="alexa"
  13394. type="0" >
  13395. </productMenu>
  13396. <productMenu id="ota"
  13397. type="2" >
  13398. <otaPackages>
  13399. <package
  13400. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.4-build0.img"
  13401. size="3144148"
  13402. />
  13403. </otaPackages>
  13404. </productMenu>
  13405. <productMenu id="wa"
  13406. type="0" >
  13407. </productMenu>
  13408. <productMenu id="meshIntercom"
  13409. type="30" >
  13410. </productMenu>
  13411. <productMenu id="phone"
  13412. type="1" >
  13413. </productMenu>
  13414. <productMenu id="music"
  13415. type="1" >
  13416. </productMenu>
  13417. <productMenu id="musicSharing"
  13418. type="0" >
  13419. </productMenu>
  13420. <productMenu id="deviceSetting"
  13421. type="1"
  13422. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  13423. <productMenuURL version="1.0.9"
  13424. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  13425. />
  13426. </productMenu>
  13427. <productMenu id="quickGuide"
  13428. type="0"
  13429. url=""
  13430. size="1.12MB" >
  13431. </productMenu>
  13432. <productMenu id="userGuide"
  13433. type="1"
  13434. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  13435. size="2.0MB" >
  13436. </productMenu>
  13437. <productMenu id="videoGuide"
  13438. type="0"
  13439. url=""
  13440. size="3.41MB" >
  13441. </productMenu>
  13442. <productMenu id="volume"
  13443. type="12" >
  13444. </productMenu>
  13445. <productMenu id="battery"
  13446. type="1" >
  13447. </productMenu>
  13448. <productID id="6847"
  13449. />
  13450. <productGroupable type="0"
  13451. />
  13452. </product>
  13453. <product id="B10"
  13454. name="B10"
  13455. series="5"
  13456. latestVersion="1.2.4"
  13457. show = "0" >
  13458. <productMenu id="protocol"
  13459. type="3" >
  13460. </productMenu>
  13461. <productMenu id="sip"
  13462. type="1" >
  13463. </productMenu>
  13464. <productMenu id="bluetoothIntercom"
  13465. type="1" >
  13466. </productMenu>
  13467. <productMenu id="phone"
  13468. type="1" >
  13469. </productMenu>
  13470. <productMenu id="fmradio"
  13471. type="0" >
  13472. </productMenu>
  13473. <productMenu id="deviceSetting"
  13474. type="1"
  13475. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  13476. </productMenu>
  13477. <productMenu id="userGuide"
  13478. type="1"
  13479. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  13480. size="1.14MB" >
  13481. </productMenu>
  13482. <productID id="5596"
  13483. />
  13484. <productGroupable type="0"
  13485. />
  13486. </product>
  13487. <product id="E30"
  13488. name="E30"
  13489. series="E"
  13490. latestVersion="1.1.4"
  13491. latestVersionVoicePrompt="0.14"
  13492. show = "0" >
  13493. <productMenu id="protocol"
  13494. type="2" >
  13495. </productMenu>
  13496. <productMenu id="alexa"
  13497. type="0" >
  13498. </productMenu>
  13499. <productMenu id="ota"
  13500. type="2" >
  13501. <otaPackages>
  13502. <package
  13503. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.4-build0.img"
  13504. size="3144148"
  13505. />
  13506. </otaPackages>
  13507. </productMenu>
  13508. <productMenu id="wa"
  13509. type="0" >
  13510. </productMenu>
  13511. <productMenu id="meshIntercom"
  13512. type="30" >
  13513. </productMenu>
  13514. <productMenu id="meshIntercom+"
  13515. type="3"
  13516. url="2" >
  13517. </productMenu>
  13518. <productMenu id="waveIntercom"
  13519. type="1" >
  13520. <productMenuType version="1.0.9"
  13521. type="0"
  13522. />
  13523. </productMenu>
  13524. <productMenu id="phone"
  13525. type="1" >
  13526. </productMenu>
  13527. <productMenu id="music"
  13528. type="1" >
  13529. </productMenu>
  13530. <productMenu id="musicSharing"
  13531. type="0" >
  13532. </productMenu>
  13533. <productMenu id="deviceSetting"
  13534. type="1"
  13535. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  13536. </productMenu>
  13537. <productMenu id="quickGuide"
  13538. type="0"
  13539. url=""
  13540. size="1.12MB" >
  13541. </productMenu>
  13542. <productMenu id="userGuide"
  13543. type="1"
  13544. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  13545. size="2.0MB" >
  13546. </productMenu>
  13547. <productMenu id="videoGuide"
  13548. type="0"
  13549. url=""
  13550. size="3.41MB" >
  13551. </productMenu>
  13552. <productMenu id="volume"
  13553. type="12" >
  13554. </productMenu>
  13555. <productMenu id="battery"
  13556. type="1" >
  13557. </productMenu>
  13558. <productID id="6846"
  13559. />
  13560. <productGroupable type="0"
  13561. />
  13562. </product>
  13563. <product id="ACSRAM"
  13564. name="ACS-RAM"
  13565. series="ACS"
  13566. latestVersion="1.0.5"
  13567. show = "1" >
  13568. <productMenu id="protocol"
  13569. type="3" >
  13570. </productMenu>
  13571. <productMenu id="sip"
  13572. type="1" >
  13573. </productMenu>
  13574. <productMenu id="bluetoothIntercom"
  13575. type="1" >
  13576. </productMenu>
  13577. <productMenu id="deviceSetting"
  13578. type="1"
  13579. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM_01.xml" >
  13580. <productMenuURL version="1.0.9"
  13581. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml"
  13582. />
  13583. </productMenu>
  13584. <productMenu id="quickGuide"
  13585. type="1"
  13586. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  13587. size="344KB" >
  13588. </productMenu>
  13589. <productMenu id="userGuide"
  13590. type="1"
  13591. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  13592. size="1.14MB" >
  13593. </productMenu>
  13594. <productMenu id="connectGuide"
  13595. type="1"
  13596. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  13597. size="1.12MB" >
  13598. </productMenu>
  13599. <productID id="3400"
  13600. />
  13601. <productGroupable type="0"
  13602. />
  13603. </product>
  13604. <product id="ACS10"
  13605. name="ACS10"
  13606. series="ACS"
  13607. latestVersion="1.0.2"
  13608. show = "1" >
  13609. <productMenu id="protocol"
  13610. type="0">
  13611. </productMenu>
  13612. <productMenu id="sip"
  13613. type="1" >
  13614. </productMenu>
  13615. <productMenu id="bluetoothIntercom"
  13616. type="1" >
  13617. </productMenu>
  13618. <productMenu id="phone"
  13619. type="2" >
  13620. </productMenu>
  13621. <productMenu id="deviceSetting"
  13622. type="1"
  13623. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  13624. </productMenu>
  13625. <productMenu id="quickGuide"
  13626. type="1"
  13627. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  13628. size="970KB" >
  13629. </productMenu>
  13630. <productMenu id="userGuide"
  13631. type="1"
  13632. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  13633. size="1.26MB" >
  13634. </productMenu>
  13635. <productMenu id="connectGuide"
  13636. type="1"
  13637. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  13638. size="1.12MB" >
  13639. </productMenu>
  13640. <productID id="3300"
  13641. />
  13642. <productGroupable type="0"
  13643. />
  13644. </product>
  13645. <product id="DWO7ProMesh"
  13646. name="DWO 7 Pro Mesh"
  13647. series="50"
  13648. latestVersion="1.1"
  13649. latestVersionVoicePrompt="0.9"
  13650. show = "0" >
  13651. <productMenu id="protocol"
  13652. type="2" >
  13653. </productMenu>
  13654. <productMenu id="alexa"
  13655. type="0" >
  13656. </productMenu>
  13657. <productMenu id="ota"
  13658. type="2" >
  13659. <otaPackages>
  13660. <package
  13661. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  13662. size="2945812"
  13663. />
  13664. </otaPackages>
  13665. </productMenu>
  13666. <productMenu id="wa"
  13667. type="0" >
  13668. </productMenu>
  13669. <productMenu id="meshIntercom"
  13670. type="20" >
  13671. </productMenu>
  13672. <productMenu id="meshIntercom+"
  13673. type="3"
  13674. url="2" >
  13675. <productMenuType version="1.0.9"
  13676. type="2"
  13677. />
  13678. <productMenuURL version="2.1.1"
  13679. url="0"
  13680. />
  13681. </productMenu>
  13682. <productMenu id="waveIntercom"
  13683. type="1" >
  13684. <productMenuType version="1.0.9"
  13685. type="0"
  13686. />
  13687. </productMenu>
  13688. <productMenu id="phone"
  13689. type="1" >
  13690. </productMenu>
  13691. <productMenu id="music"
  13692. type="1" >
  13693. </productMenu>
  13694. <productMenu id="fmradio"
  13695. type="1" >
  13696. </productMenu>
  13697. <productMenu id="musicSharing"
  13698. type="0" >
  13699. </productMenu>
  13700. <productMenu id="deviceSetting"
  13701. type="1"
  13702. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  13703. <productMenuURL version="1.0.9"
  13704. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  13705. />
  13706. </productMenu>
  13707. <productMenu id="quickGuide"
  13708. type="1"
  13709. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13710. size="1.12MB" >
  13711. </productMenu>
  13712. <productMenu id="userGuide"
  13713. type="1"
  13714. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13715. size="2.0MB" >
  13716. </productMenu>
  13717. <productMenu id="volume"
  13718. type="12" >
  13719. </productMenu>
  13720. <productMenu id="battery"
  13721. type="1" >
  13722. </productMenu>
  13723. <productID id="6806"
  13724. />
  13725. <productGroupable type="0"
  13726. />
  13727. </product>
  13728. <product id="ERA1X"
  13729. name="ERA 1 X"
  13730. series="UCOM"
  13731. latestVersion="0.2.1"
  13732. latestVersionMesh="0.19"
  13733. latestVersionVoicePrompt="1.2"
  13734. show = "-1" >
  13735. <productMenu id="protocol"
  13736. type="2" >
  13737. </productMenu>
  13738. <productMenu id="ota"
  13739. type="2" >
  13740. <otaLanguages>
  13741. <otaLanguage
  13742. id="0"
  13743. name="English"
  13744. package="0"
  13745. />
  13746. <otaLanguage
  13747. id="0"
  13748. name="French"
  13749. package="1"
  13750. />
  13751. <otaLanguage
  13752. id="0"
  13753. name="Spanish"
  13754. package="2"
  13755. />
  13756. <otaLanguage
  13757. id="0"
  13758. name="Italian"
  13759. package="3"
  13760. />
  13761. <otaLanguage
  13762. id="0"
  13763. name="German"
  13764. package="4"
  13765. />
  13766. <otaLanguage
  13767. id="0"
  13768. name="Dutch"
  13769. package="5"
  13770. />
  13771. <otaLanguage
  13772. id="0"
  13773. name="Russian"
  13774. package="6"
  13775. />
  13776. <otaLanguage
  13777. id="0"
  13778. name="Chinese"
  13779. package="7"
  13780. />
  13781. <otaLanguage
  13782. id="0"
  13783. name="Korean"
  13784. package="8"
  13785. />
  13786. <otaLanguage
  13787. id="0"
  13788. name="Japanese"
  13789. package="9"
  13790. />
  13791. <otaLanguage
  13792. id="0"
  13793. name="Finnish"
  13794. package="10"
  13795. />
  13796. <otaLanguage
  13797. id="0"
  13798. name="Polish"
  13799. package="11"
  13800. />
  13801. <otaLanguage
  13802. id="0"
  13803. name="Czech"
  13804. package="12"
  13805. />
  13806. <otaLanguage
  13807. id="0"
  13808. name="Danish"
  13809. package="13"
  13810. />
  13811. <otaLanguage
  13812. id="0"
  13813. name="Norwegian"
  13814. package="14"
  13815. />
  13816. <otaLanguage
  13817. id="0"
  13818. name="Swedish"
  13819. package="15"
  13820. />
  13821. <otaLanguage
  13822. id="0"
  13823. name="Turkish"
  13824. package="16"
  13825. />
  13826. <otaLanguage
  13827. id="0"
  13828. name="Hungarian"
  13829. package="17"
  13830. />
  13831. <otaLanguage
  13832. id="0"
  13833. name="Portuguese"
  13834. package="18"
  13835. />
  13836. <otaLanguage
  13837. id="0"
  13838. name="Hebrew"
  13839. package="19"
  13840. />
  13841. <otaLanguage
  13842. id="0"
  13843. name="Greek"
  13844. package="20"
  13845. />
  13846. </otaLanguages>
  13847. <otaPackages>
  13848. <package
  13849. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13850. size="5183988"
  13851. />
  13852. <package
  13853. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13854. size="5183988"
  13855. />
  13856. <package
  13857. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13858. size="5183988"
  13859. />
  13860. <package
  13861. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13862. size="5183988"
  13863. />
  13864. <package
  13865. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13866. size="5183988"
  13867. />
  13868. <package
  13869. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13870. size="5183988"
  13871. />
  13872. <package
  13873. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13874. size="5183988"
  13875. />
  13876. <package
  13877. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13878. size="5183988"
  13879. />
  13880. <package
  13881. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13882. size="5183988"
  13883. />
  13884. <package
  13885. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13886. size="5183988"
  13887. />
  13888. <package
  13889. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13890. size="5183988"
  13891. />
  13892. <package
  13893. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13894. size="5183988"
  13895. />
  13896. <package
  13897. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13898. size="5183988"
  13899. />
  13900. <package
  13901. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13902. size="5183988"
  13903. />
  13904. <package
  13905. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13906. size="5183988"
  13907. />
  13908. <package
  13909. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13910. size="5183988"
  13911. />
  13912. <package
  13913. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13914. size="5183988"
  13915. />
  13916. <package
  13917. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13918. size="5183988"
  13919. />
  13920. <package
  13921. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13922. size="5183988"
  13923. />
  13924. <package
  13925. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13926. size="5183988"
  13927. />
  13928. <package
  13929. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13930. size="5183988"
  13931. />
  13932. </otaPackages>
  13933. </productMenu>
  13934. <productMenu id="wa"
  13935. type="0" >
  13936. </productMenu>
  13937. <productMenu id="sip"
  13938. type="1" >
  13939. </productMenu>
  13940. <productMenu id="led"
  13941. type="0" >
  13942. </productMenu>
  13943. <productMenu id="illusion"
  13944. type="1" >
  13945. </productMenu>
  13946. <productMenu id="meshIntercom"
  13947. type="30" >
  13948. </productMenu>
  13949. <productMenu id="meshIntercom+"
  13950. type="3"
  13951. url="2" >
  13952. </productMenu>
  13953. <productMenu id="waveIntercom"
  13954. type="0" >
  13955. </productMenu>
  13956. <productMenu id="bluetoothIntercom"
  13957. type="1" >
  13958. </productMenu>
  13959. <productMenu id="bluetoothIntercomGrouping"
  13960. type="0" >
  13961. </productMenu>
  13962. <productMenu id="fmradio"
  13963. type="1"
  13964. url="1" >
  13965. </productMenu>
  13966. <productMenu id="phone"
  13967. type="1" >
  13968. </productMenu>
  13969. <productMenu id="music"
  13970. type="1" >
  13971. </productMenu>
  13972. <productMenu id="musicSharing"
  13973. type="0" >
  13974. </productMenu>
  13975. <productMenu id="deviceSetting"
  13976. type="1"
  13977. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  13978. </productMenu>
  13979. <productMenu id="quickGuide"
  13980. type="0"
  13981. url=""
  13982. size="1.12MB" >
  13983. </productMenu>
  13984. <productMenu id="userGuide"
  13985. type="1"
  13986. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  13987. size="2.0MB" >
  13988. </productMenu>
  13989. <productMenu id="videoGuide"
  13990. type="0"
  13991. url=""
  13992. size="3.41MB" >
  13993. </productMenu>
  13994. <productMenu id="volume"
  13995. type="16" >
  13996. </productMenu>
  13997. <productMenu id="soundMode"
  13998. type="1" >
  13999. </productMenu>
  14000. <productMenu id="battery"
  14001. type="1" >
  14002. </productMenu>
  14003. <productID id="6A83"
  14004. />
  14005. <productGroupable type="0"
  14006. />
  14007. </product>
  14008. <product id="MeshStation"
  14009. name="Mesh Station"
  14010. series="50"
  14011. latestVersion="0.9"
  14012. show = "-1" >
  14013. <productMenu id="protocol"
  14014. type="2" >
  14015. </productMenu>
  14016. <productMenu id="meshIntercom"
  14017. type="20"
  14018. url="99" >
  14019. </productMenu>
  14020. <productID id="3161"
  14021. />
  14022. <productGroupable type="0"
  14023. />
  14024. </product>
  14025. </products>
  14026. </sna>