snm.xml 511 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260180" 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.3"
  338. latestVersionMesh="0.19"
  339. latestVersionVoicePrompt="1.8"
  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.3-build1.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-fr-FR.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-es-ES.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-it-IT.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-de-DE.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-nl-NL.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ru-RU.img"
  441. size="5183988"
  442. />
  443. <package
  444. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-cmn-CN.img"
  445. size="5183988"
  446. />
  447. <package
  448. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ko-KR.img"
  449. size="5183988"
  450. />
  451. <package
  452. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ja-JP.img"
  453. size="5183988"
  454. />
  455. <package
  456. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-fi-FI.img"
  457. size="5183988"
  458. />
  459. <package
  460. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-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_01.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.11"
  554. latestVersionMesh="1.2"
  555. latestVersionVoicePrompt="1.8"
  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.11-build1.img"
  627. size="5183988"
  628. />
  629. <package
  630. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-fr-FR.img"
  631. size="5183988"
  632. />
  633. <package
  634. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-es-ES.img"
  635. size="5183988"
  636. />
  637. <package
  638. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-it-IT.img"
  639. size="5183988"
  640. />
  641. <package
  642. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-de-DE.img"
  643. size="5183988"
  644. />
  645. <package
  646. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-nl-NL.img"
  647. size="5183988"
  648. />
  649. <package
  650. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ru-RU.img"
  651. size="5183988"
  652. />
  653. <package
  654. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-cmn-CN.img"
  655. size="5183988"
  656. />
  657. <package
  658. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ko-KR.img"
  659. size="5183988"
  660. />
  661. <package
  662. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ja-JP.img"
  663. size="5183988"
  664. />
  665. <package
  666. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-fi-FI.img"
  667. size="5183988"
  668. />
  669. <package
  670. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-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_12.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.11"
  773. latestVersionMesh="1.2"
  774. latestVersionVoicePrompt="1.8"
  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.11-build1.img"
  846. size="5183988"
  847. />
  848. <package
  849. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-fr-FR.img"
  850. size="5183988"
  851. />
  852. <package
  853. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-es-ES.img"
  854. size="5183988"
  855. />
  856. <package
  857. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-it-IT.img"
  858. size="5183988"
  859. />
  860. <package
  861. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-de-DE.img"
  862. size="5183988"
  863. />
  864. <package
  865. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-nl-NL.img"
  866. size="5183988"
  867. />
  868. <package
  869. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ru-RU.img"
  870. size="5183988"
  871. />
  872. <package
  873. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-cmn-CN.img"
  874. size="5183988"
  875. />
  876. <package
  877. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ko-KR.img"
  878. size="5183988"
  879. />
  880. <package
  881. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ja-JP.img"
  882. size="5183988"
  883. />
  884. <package
  885. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-fi-FI.img"
  886. size="5183988"
  887. />
  888. <package
  889. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-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_12.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.1"
  1019. latestVersionMesh="0.19"
  1020. latestVersionVoicePrompt="1.8"
  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.1-build1.img"
  1098. size="5183988"
  1099. />
  1100. <package
  1101. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-fr-FR.img"
  1102. size="5183988"
  1103. />
  1104. <package
  1105. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-es-ES.img"
  1106. size="5183988"
  1107. />
  1108. <package
  1109. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-it-IT.img"
  1110. size="5183988"
  1111. />
  1112. <package
  1113. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-de-DE.img"
  1114. size="5183988"
  1115. />
  1116. <package
  1117. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-nl-NL.img"
  1118. size="5183988"
  1119. />
  1120. <package
  1121. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ru-RU.img"
  1122. size="5183988"
  1123. />
  1124. <package
  1125. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-cmn-CN.img"
  1126. size="5183988"
  1127. />
  1128. <package
  1129. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ko-KR.img"
  1130. size="5183988"
  1131. />
  1132. <package
  1133. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ja-JP.img"
  1134. size="5183988"
  1135. />
  1136. <package
  1137. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-fi-FI.img"
  1138. size="5183988"
  1139. />
  1140. <package
  1141. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-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_01.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.1-build1.img"
  1573. size="5183988"
  1574. />
  1575. <package
  1576. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-fr-FR.img"
  1577. size="5183988"
  1578. />
  1579. <package
  1580. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-es-ES.img"
  1581. size="5183988"
  1582. />
  1583. <package
  1584. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-it-IT.img"
  1585. size="5183988"
  1586. />
  1587. <package
  1588. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-de-DE.img"
  1589. size="5183988"
  1590. />
  1591. <package
  1592. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-nl-NL.img"
  1593. size="5183988"
  1594. />
  1595. <package
  1596. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-ru-RU.img"
  1597. size="5183988"
  1598. />
  1599. <package
  1600. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-cmn-CN.img"
  1601. size="5183988"
  1602. />
  1603. <package
  1604. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-ko-KR.img"
  1605. size="5183988"
  1606. />
  1607. <package
  1608. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-ja-JP.img"
  1609. size="5183988"
  1610. />
  1611. <package
  1612. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-fi-FI.img"
  1613. size="5183988"
  1614. />
  1615. <package
  1616. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-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_12.xml" >
  2511. <productMenuURL version="1.2.10"
  2512. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  2513. />
  2514. <productMenuURL version="1.2.4"
  2515. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2516. />
  2517. </productMenu>
  2518. <productMenu id="quickGuide"
  2519. type="0"
  2520. url=""
  2521. size="1.12MB" >
  2522. </productMenu>
  2523. <productMenu id="userGuide"
  2524. type="1"
  2525. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2526. size="2.0MB" >
  2527. </productMenu>
  2528. <productMenu id="videoGuide"
  2529. type="0"
  2530. url=""
  2531. size="3.41MB" >
  2532. </productMenu>
  2533. <productMenu id="volume"
  2534. type="16" >
  2535. </productMenu>
  2536. <productMenu id="volume+"
  2537. type="2"
  2538. url="0x6004" >
  2539. </productMenu>
  2540. <productMenu id="battery"
  2541. type="1" >
  2542. </productMenu>
  2543. <productID id="6A0F"
  2544. />
  2545. <productGroupable type="0"
  2546. />
  2547. </product>
  2548. <product id="PHANTOMXB"
  2549. name="PHANTOM XB"
  2550. series="Helmet"
  2551. latestVersion="1.2.9"
  2552. latestVersionVoicePrompt="1.6"
  2553. show = "-1" >
  2554. <productMenu id="protocol"
  2555. type="2" >
  2556. </productMenu>
  2557. <productMenu id="ota"
  2558. type="2" >
  2559. <otaLanguages>
  2560. <otaLanguage
  2561. id="0"
  2562. name="English"
  2563. package="0"
  2564. />
  2565. <otaLanguage
  2566. id="0"
  2567. name="French"
  2568. package="1"
  2569. />
  2570. <otaLanguage
  2571. id="0"
  2572. name="Spanish"
  2573. package="2"
  2574. />
  2575. <otaLanguage
  2576. id="0"
  2577. name="Italian"
  2578. package="3"
  2579. />
  2580. <otaLanguage
  2581. id="0"
  2582. name="German"
  2583. package="4"
  2584. />
  2585. <otaLanguage
  2586. id="0"
  2587. name="Dutch"
  2588. package="5"
  2589. />
  2590. <otaLanguage
  2591. id="0"
  2592. name="Russian"
  2593. package="6"
  2594. />
  2595. <otaLanguage
  2596. id="0"
  2597. name="Chinese"
  2598. package="7"
  2599. />
  2600. <otaLanguage
  2601. id="0"
  2602. name="Korean"
  2603. package="8"
  2604. />
  2605. <otaLanguage
  2606. id="0"
  2607. name="Japanese"
  2608. package="9"
  2609. />
  2610. <otaLanguage
  2611. id="0"
  2612. name="Finnish"
  2613. package="10"
  2614. />
  2615. <otaLanguage
  2616. id="0"
  2617. name="Polish"
  2618. package="11"
  2619. />
  2620. </otaLanguages>
  2621. <otaPackages>
  2622. <package
  2623. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0.img"
  2624. size="5183988"
  2625. />
  2626. <package
  2627. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fr-FR.img"
  2628. size="5183988"
  2629. />
  2630. <package
  2631. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-es-ES.img"
  2632. size="5183988"
  2633. />
  2634. <package
  2635. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-it-IT.img"
  2636. size="5183988"
  2637. />
  2638. <package
  2639. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-de-DE.img"
  2640. size="5183988"
  2641. />
  2642. <package
  2643. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-nl-NL.img"
  2644. size="5183988"
  2645. />
  2646. <package
  2647. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ru-RU.img"
  2648. size="5183988"
  2649. />
  2650. <package
  2651. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-cmn-CN.img"
  2652. size="5183988"
  2653. />
  2654. <package
  2655. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ko-KR.img"
  2656. size="5183988"
  2657. />
  2658. <package
  2659. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ja-JP.img"
  2660. size="5183988"
  2661. />
  2662. <package
  2663. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fi-FI.img"
  2664. size="5183988"
  2665. />
  2666. <package
  2667. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-pl-PL.img"
  2668. size="5183988"
  2669. />
  2670. </otaPackages>
  2671. </productMenu>
  2672. <productMenu id="wa"
  2673. type="0" >
  2674. </productMenu>
  2675. <productMenu id="led"
  2676. type="5" >
  2677. </productMenu>
  2678. <productMenu id="led+"
  2679. type="2"
  2680. url="1" >
  2681. </productMenu>
  2682. <productMenu id="meshIntercom"
  2683. type="30" >
  2684. </productMenu>
  2685. <productMenu id="meshIntercom+"
  2686. type="3"
  2687. url="2" >
  2688. </productMenu>
  2689. <productMenu id="waveIntercom"
  2690. type="1" >
  2691. </productMenu>
  2692. <productMenu id="fmradio"
  2693. type="0" >
  2694. </productMenu>
  2695. <productMenu id="phone"
  2696. type="1" >
  2697. </productMenu>
  2698. <productMenu id="music"
  2699. type="1" >
  2700. </productMenu>
  2701. <productMenu id="musicSharing"
  2702. type="0" >
  2703. </productMenu>
  2704. <productMenu id="deviceSetting"
  2705. type="1"
  2706. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  2707. <productMenuURL version="1.2.10"
  2708. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  2709. />
  2710. <productMenuURL version="1.2.4"
  2711. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2712. />
  2713. <productMenuURL version="1.2.1"
  2714. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2715. />
  2716. </productMenu>
  2717. <productMenu id="quickGuide"
  2718. type="0"
  2719. url=""
  2720. size="1.12MB" >
  2721. </productMenu>
  2722. <productMenu id="userGuide"
  2723. type="1"
  2724. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2725. size="2.0MB" >
  2726. </productMenu>
  2727. <productMenu id="videoGuide"
  2728. type="0"
  2729. url=""
  2730. size="3.41MB" >
  2731. </productMenu>
  2732. <productMenu id="volume"
  2733. type="16" >
  2734. </productMenu>
  2735. <productMenu id="volume+"
  2736. type="2"
  2737. url="0x6004" >
  2738. </productMenu>
  2739. <productMenu id="battery"
  2740. type="1" >
  2741. </productMenu>
  2742. <productID id="6A0C"
  2743. />
  2744. <productGroupable type="0"
  2745. />
  2746. </product>
  2747. <product id="PHANTOMKV"
  2748. name="PHANTOM KV"
  2749. series="Helmet"
  2750. latestVersion="1.2.10"
  2751. latestVersionVoicePrompt="1.7"
  2752. show = "1" >
  2753. <productMenu id="protocol"
  2754. type="2" >
  2755. </productMenu>
  2756. <productMenu id="ota"
  2757. type="2" >
  2758. <otaLanguages>
  2759. <otaLanguage
  2760. id="0"
  2761. name="English"
  2762. package="0"
  2763. />
  2764. <otaLanguage
  2765. id="0"
  2766. name="French"
  2767. package="1"
  2768. />
  2769. <otaLanguage
  2770. id="0"
  2771. name="Spanish"
  2772. package="2"
  2773. />
  2774. <otaLanguage
  2775. id="0"
  2776. name="Italian"
  2777. package="3"
  2778. />
  2779. <otaLanguage
  2780. id="0"
  2781. name="German"
  2782. package="4"
  2783. />
  2784. <otaLanguage
  2785. id="0"
  2786. name="Dutch"
  2787. package="5"
  2788. />
  2789. <otaLanguage
  2790. id="0"
  2791. name="Russian"
  2792. package="6"
  2793. />
  2794. <otaLanguage
  2795. id="0"
  2796. name="Chinese"
  2797. package="7"
  2798. />
  2799. <otaLanguage
  2800. id="0"
  2801. name="Korean"
  2802. package="8"
  2803. />
  2804. <otaLanguage
  2805. id="0"
  2806. name="Japanese"
  2807. package="9"
  2808. />
  2809. <otaLanguage
  2810. id="0"
  2811. name="Finnish"
  2812. package="10"
  2813. />
  2814. <otaLanguage
  2815. id="0"
  2816. name="Polish"
  2817. package="11"
  2818. />
  2819. </otaLanguages>
  2820. <otaPackages>
  2821. <package
  2822. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0.img"
  2823. size="5183988"
  2824. />
  2825. <package
  2826. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fr-FR.img"
  2827. size="5183988"
  2828. />
  2829. <package
  2830. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-es-ES.img"
  2831. size="5183988"
  2832. />
  2833. <package
  2834. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-it-IT.img"
  2835. size="5183988"
  2836. />
  2837. <package
  2838. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-de-DE.img"
  2839. size="5183988"
  2840. />
  2841. <package
  2842. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-nl-NL.img"
  2843. size="5183988"
  2844. />
  2845. <package
  2846. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ru-RU.img"
  2847. size="5183988"
  2848. />
  2849. <package
  2850. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-cmn-CN.img"
  2851. size="5183988"
  2852. />
  2853. <package
  2854. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ko-KR.img"
  2855. size="5183988"
  2856. />
  2857. <package
  2858. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ja-JP.img"
  2859. size="5183988"
  2860. />
  2861. <package
  2862. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fi-FI.img"
  2863. size="5183988"
  2864. />
  2865. <package
  2866. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-pl-PL.img"
  2867. size="5183988"
  2868. />
  2869. </otaPackages>
  2870. </productMenu>
  2871. <productMenu id="wa"
  2872. type="0" >
  2873. </productMenu>
  2874. <productMenu id="led"
  2875. type="5" >
  2876. </productMenu>
  2877. <productMenu id="led+"
  2878. type="2"
  2879. url="1" >
  2880. </productMenu>
  2881. <productMenu id="meshIntercom"
  2882. type="30" >
  2883. </productMenu>
  2884. <productMenu id="meshIntercom+"
  2885. type="3"
  2886. url="2" >
  2887. </productMenu>
  2888. <productMenu id="waveIntercom"
  2889. type="1" >
  2890. </productMenu>
  2891. <productMenu id="fmradio"
  2892. type="0" >
  2893. </productMenu>
  2894. <productMenu id="phone"
  2895. type="1" >
  2896. </productMenu>
  2897. <productMenu id="music"
  2898. type="1" >
  2899. </productMenu>
  2900. <productMenu id="musicSharing"
  2901. type="0" >
  2902. </productMenu>
  2903. <productMenu id="deviceSetting"
  2904. type="1"
  2905. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  2906. <productMenuURL version="1.2.10"
  2907. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  2908. />
  2909. <productMenuURL version="1.2.4"
  2910. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2911. />
  2912. </productMenu>
  2913. <productMenu id="quickGuide"
  2914. type="0"
  2915. url=""
  2916. size="1.12MB" >
  2917. </productMenu>
  2918. <productMenu id="userGuide"
  2919. type="1"
  2920. url=""
  2921. size="2.0MB" >
  2922. </productMenu>
  2923. <productMenu id="videoGuide"
  2924. type="0"
  2925. url=""
  2926. size="3.41MB" >
  2927. </productMenu>
  2928. <productMenu id="connectGuide"
  2929. type="1"
  2930. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  2931. size="1.1MB" >
  2932. </productMenu>
  2933. <productMenu id="volume"
  2934. type="16" >
  2935. </productMenu>
  2936. <productMenu id="volume+"
  2937. type="2"
  2938. url="0x6004" >
  2939. </productMenu>
  2940. <productMenu id="soundMode"
  2941. type="1" >
  2942. </productMenu>
  2943. <productMenu id="battery"
  2944. type="1" >
  2945. </productMenu>
  2946. <productID id="6A13"
  2947. />
  2948. <productGroupable type="0"
  2949. />
  2950. </product>
  2951. <product id="PHANTOMCamera"
  2952. name="PHANTOM Camera"
  2953. series="Helmet"
  2954. latestVersion="1.2.10"
  2955. latestVersionVoicePrompt="1.7"
  2956. show = "1" >
  2957. <productMenu id="protocol"
  2958. type="2" >
  2959. </productMenu>
  2960. <productMenu id="ota"
  2961. type="3" >
  2962. <otaLanguages>
  2963. <otaLanguage
  2964. id="0"
  2965. name="English"
  2966. package="0"
  2967. />
  2968. <otaLanguage
  2969. id="0"
  2970. name="French"
  2971. package="1"
  2972. />
  2973. <otaLanguage
  2974. id="0"
  2975. name="Spanish"
  2976. package="2"
  2977. />
  2978. <otaLanguage
  2979. id="0"
  2980. name="Italian"
  2981. package="3"
  2982. />
  2983. <otaLanguage
  2984. id="0"
  2985. name="German"
  2986. package="4"
  2987. />
  2988. <otaLanguage
  2989. id="0"
  2990. name="Dutch"
  2991. package="5"
  2992. />
  2993. <otaLanguage
  2994. id="0"
  2995. name="Russian"
  2996. package="6"
  2997. />
  2998. <otaLanguage
  2999. id="0"
  3000. name="Chinese"
  3001. package="7"
  3002. />
  3003. <otaLanguage
  3004. id="0"
  3005. name="Korean"
  3006. package="8"
  3007. />
  3008. <otaLanguage
  3009. id="0"
  3010. name="Japanese"
  3011. package="9"
  3012. />
  3013. <otaLanguage
  3014. id="0"
  3015. name="Finnish"
  3016. package="10"
  3017. />
  3018. <otaLanguage
  3019. id="0"
  3020. name="Polish"
  3021. package="11"
  3022. />
  3023. </otaLanguages>
  3024. <otaPackages>
  3025. <package
  3026. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0.img"
  3027. size="5183988"
  3028. />
  3029. <package
  3030. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fr-FR.img"
  3031. size="5183988"
  3032. />
  3033. <package
  3034. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-es-ES.img"
  3035. size="5183988"
  3036. />
  3037. <package
  3038. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-it-IT.img"
  3039. size="5183988"
  3040. />
  3041. <package
  3042. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-de-DE.img"
  3043. size="5183988"
  3044. />
  3045. <package
  3046. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-nl-NL.img"
  3047. size="5183988"
  3048. />
  3049. <package
  3050. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ru-RU.img"
  3051. size="5183988"
  3052. />
  3053. <package
  3054. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-cmn-CN.img"
  3055. size="5183988"
  3056. />
  3057. <package
  3058. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ko-KR.img"
  3059. size="5183988"
  3060. />
  3061. <package
  3062. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ja-JP.img"
  3063. size="5183988"
  3064. />
  3065. <package
  3066. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fi-FI.img"
  3067. size="5183988"
  3068. />
  3069. <package
  3070. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-pl-PL.img"
  3071. size="5183988"
  3072. />
  3073. </otaPackages>
  3074. </productMenu>
  3075. <productMenu id="wa"
  3076. type="0" >
  3077. </productMenu>
  3078. <productMenu id="led"
  3079. type="5" >
  3080. </productMenu>
  3081. <productMenu id="led+"
  3082. type="2"
  3083. url="1" >
  3084. </productMenu>
  3085. <productMenu id="meshIntercom"
  3086. type="30" >
  3087. </productMenu>
  3088. <productMenu id="meshIntercom+"
  3089. type="3"
  3090. url="2" >
  3091. </productMenu>
  3092. <productMenu id="waveIntercom"
  3093. type="1" >
  3094. </productMenu>
  3095. <productMenu id="fmradio"
  3096. type="0" >
  3097. </productMenu>
  3098. <productMenu id="phone"
  3099. type="1" >
  3100. </productMenu>
  3101. <productMenu id="music"
  3102. type="1" >
  3103. </productMenu>
  3104. <productMenu id="musicSharing"
  3105. type="0" >
  3106. </productMenu>
  3107. <productMenu id="deviceSetting"
  3108. type="1"
  3109. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3110. </productMenu>
  3111. <productMenu id="quickGuide"
  3112. type="0"
  3113. url=""
  3114. size="1.12MB" >
  3115. </productMenu>
  3116. <productMenu id="userGuide"
  3117. type="1"
  3118. url=""
  3119. size="2.0MB" >
  3120. </productMenu>
  3121. <productMenu id="videoGuide"
  3122. type="0"
  3123. url=""
  3124. size="3.41MB" >
  3125. </productMenu>
  3126. <productMenu id="volume"
  3127. type="16" >
  3128. </productMenu>
  3129. <productMenu id="battery"
  3130. type="1" >
  3131. </productMenu>
  3132. <productID id="6A10"
  3133. />
  3134. <productGroupable type="0"
  3135. />
  3136. </product>
  3137. <product id="PHANTOMCamera"
  3138. name="PHANTOM Camera"
  3139. series="Helmet"
  3140. latestVersion="1.2.10"
  3141. latestVersionVoicePrompt="1.7"
  3142. show = "-1" >
  3143. <productMenu id="protocol"
  3144. type="2" >
  3145. </productMenu>
  3146. <productMenu id="ota"
  3147. type="3" >
  3148. <otaLanguages>
  3149. <otaLanguage
  3150. id="0"
  3151. name="English"
  3152. package="0"
  3153. />
  3154. <otaLanguage
  3155. id="0"
  3156. name="French"
  3157. package="1"
  3158. />
  3159. <otaLanguage
  3160. id="0"
  3161. name="Spanish"
  3162. package="2"
  3163. />
  3164. <otaLanguage
  3165. id="0"
  3166. name="Italian"
  3167. package="3"
  3168. />
  3169. <otaLanguage
  3170. id="0"
  3171. name="German"
  3172. package="4"
  3173. />
  3174. <otaLanguage
  3175. id="0"
  3176. name="Dutch"
  3177. package="5"
  3178. />
  3179. <otaLanguage
  3180. id="0"
  3181. name="Russian"
  3182. package="6"
  3183. />
  3184. <otaLanguage
  3185. id="0"
  3186. name="Chinese"
  3187. package="7"
  3188. />
  3189. <otaLanguage
  3190. id="0"
  3191. name="Korean"
  3192. package="8"
  3193. />
  3194. <otaLanguage
  3195. id="0"
  3196. name="Japanese"
  3197. package="9"
  3198. />
  3199. <otaLanguage
  3200. id="0"
  3201. name="Finnish"
  3202. package="10"
  3203. />
  3204. <otaLanguage
  3205. id="0"
  3206. name="Polish"
  3207. package="11"
  3208. />
  3209. </otaLanguages>
  3210. <otaPackages>
  3211. <package
  3212. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0.img"
  3213. size="5183988"
  3214. />
  3215. <package
  3216. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fr-FR.img"
  3217. size="5183988"
  3218. />
  3219. <package
  3220. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-es-ES.img"
  3221. size="5183988"
  3222. />
  3223. <package
  3224. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-it-IT.img"
  3225. size="5183988"
  3226. />
  3227. <package
  3228. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-de-DE.img"
  3229. size="5183988"
  3230. />
  3231. <package
  3232. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-nl-NL.img"
  3233. size="5183988"
  3234. />
  3235. <package
  3236. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ru-RU.img"
  3237. size="5183988"
  3238. />
  3239. <package
  3240. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-cmn-CN.img"
  3241. size="5183988"
  3242. />
  3243. <package
  3244. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ko-KR.img"
  3245. size="5183988"
  3246. />
  3247. <package
  3248. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ja-JP.img"
  3249. size="5183988"
  3250. />
  3251. <package
  3252. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fi-FI.img"
  3253. size="5183988"
  3254. />
  3255. <package
  3256. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-pl-PL.img"
  3257. size="5183988"
  3258. />
  3259. </otaPackages>
  3260. </productMenu>
  3261. <productMenu id="wa"
  3262. type="0" >
  3263. </productMenu>
  3264. <productMenu id="led"
  3265. type="5" >
  3266. </productMenu>
  3267. <productMenu id="led+"
  3268. type="2"
  3269. url="1" >
  3270. </productMenu>
  3271. <productMenu id="meshIntercom"
  3272. type="30" >
  3273. </productMenu>
  3274. <productMenu id="meshIntercom+"
  3275. type="3"
  3276. url="2" >
  3277. </productMenu>
  3278. <productMenu id="waveIntercom"
  3279. type="1" >
  3280. </productMenu>
  3281. <productMenu id="fmradio"
  3282. type="0" >
  3283. </productMenu>
  3284. <productMenu id="phone"
  3285. type="1" >
  3286. </productMenu>
  3287. <productMenu id="music"
  3288. type="1" >
  3289. </productMenu>
  3290. <productMenu id="musicSharing"
  3291. type="0" >
  3292. </productMenu>
  3293. <productMenu id="deviceSetting"
  3294. type="1"
  3295. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3296. </productMenu>
  3297. <productMenu id="quickGuide"
  3298. type="0"
  3299. url=""
  3300. size="1.12MB" >
  3301. </productMenu>
  3302. <productMenu id="userGuide"
  3303. type="1"
  3304. url=""
  3305. size="2.0MB" >
  3306. </productMenu>
  3307. <productMenu id="videoGuide"
  3308. type="0"
  3309. url=""
  3310. size="3.41MB" >
  3311. </productMenu>
  3312. <productMenu id="volume"
  3313. type="16" >
  3314. </productMenu>
  3315. <productMenu id="battery"
  3316. type="1" >
  3317. </productMenu>
  3318. <productID id="6A09"
  3319. />
  3320. <productGroupable type="0"
  3321. />
  3322. </product>
  3323. <product id="PHANTOM"
  3324. name="PHANTOM ANC"
  3325. series="Helmet"
  3326. latestVersion="1.2.9"
  3327. latestVersionVoicePrompt="1.7"
  3328. show = "1" >
  3329. <productMenu id="protocol"
  3330. type="2" >
  3331. </productMenu>
  3332. <productMenu id="ota"
  3333. type="2" >
  3334. <productMenuType version="0.6.9"
  3335. type="0"
  3336. />
  3337. <otaLanguages>
  3338. <otaLanguage
  3339. id="0"
  3340. name="English"
  3341. package="0"
  3342. />
  3343. <otaLanguage
  3344. id="0"
  3345. name="French"
  3346. package="1"
  3347. />
  3348. <otaLanguage
  3349. id="0"
  3350. name="Spanish"
  3351. package="2"
  3352. />
  3353. <otaLanguage
  3354. id="0"
  3355. name="Italian"
  3356. package="3"
  3357. />
  3358. <otaLanguage
  3359. id="0"
  3360. name="German"
  3361. package="4"
  3362. />
  3363. <otaLanguage
  3364. id="0"
  3365. name="Dutch"
  3366. package="5"
  3367. />
  3368. <otaLanguage
  3369. id="0"
  3370. name="Russian"
  3371. package="6"
  3372. />
  3373. <otaLanguage
  3374. id="0"
  3375. name="Chinese"
  3376. package="7"
  3377. />
  3378. <otaLanguage
  3379. id="0"
  3380. name="Korean"
  3381. package="8"
  3382. />
  3383. <otaLanguage
  3384. id="0"
  3385. name="Japanese"
  3386. package="9"
  3387. />
  3388. <otaLanguage
  3389. id="0"
  3390. name="Finnish"
  3391. package="10"
  3392. />
  3393. <otaLanguage
  3394. id="0"
  3395. name="Polish"
  3396. package="11"
  3397. />
  3398. </otaLanguages>
  3399. <otaPackages>
  3400. <package
  3401. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0.img"
  3402. size="5183988"
  3403. />
  3404. <package
  3405. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fr-FR.img"
  3406. size="5183988"
  3407. />
  3408. <package
  3409. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-es-ES.img"
  3410. size="5183988"
  3411. />
  3412. <package
  3413. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-it-IT.img"
  3414. size="5183988"
  3415. />
  3416. <package
  3417. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-de-DE.img"
  3418. size="5183988"
  3419. />
  3420. <package
  3421. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-nl-NL.img"
  3422. size="5183988"
  3423. />
  3424. <package
  3425. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ru-RU.img"
  3426. size="5183988"
  3427. />
  3428. <package
  3429. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-cmn-CN.img"
  3430. size="5183988"
  3431. />
  3432. <package
  3433. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ko-KR.img"
  3434. size="5183988"
  3435. />
  3436. <package
  3437. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ja-JP.img"
  3438. size="5183988"
  3439. />
  3440. <package
  3441. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fi-FI.img"
  3442. size="5183988"
  3443. />
  3444. <package
  3445. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-pl-PL.img"
  3446. size="5183988"
  3447. />
  3448. </otaPackages>
  3449. </productMenu>
  3450. <productMenu id="wa"
  3451. type="0" >
  3452. </productMenu>
  3453. <productMenu id="led"
  3454. type="5" >
  3455. </productMenu>
  3456. <productMenu id="led+"
  3457. type="2"
  3458. url="1" >
  3459. </productMenu>
  3460. <productMenu id="meshIntercom"
  3461. type="30" >
  3462. </productMenu>
  3463. <productMenu id="meshIntercom+"
  3464. type="3"
  3465. url="2" >
  3466. <productMenuURL version="1.0.4"
  3467. url="10"
  3468. />
  3469. </productMenu>
  3470. <productMenu id="waveIntercom"
  3471. type="1" >
  3472. <productMenuType version="1.0.9"
  3473. type="0"
  3474. />
  3475. </productMenu>
  3476. <productMenu id="fmradio"
  3477. type="0" >
  3478. </productMenu>
  3479. <productMenu id="phone"
  3480. type="1" >
  3481. </productMenu>
  3482. <productMenu id="music"
  3483. type="1" >
  3484. </productMenu>
  3485. <productMenu id="musicSharing"
  3486. type="0" >
  3487. </productMenu>
  3488. <productMenu id="deviceSetting"
  3489. type="1"
  3490. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3491. <productMenuURL version="1.2.10"
  3492. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3493. />
  3494. <productMenuURL version="1.2.4"
  3495. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3496. />
  3497. <productMenuURL version="1.2.1"
  3498. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3499. />
  3500. <productMenuURL version="1.1.2"
  3501. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3502. />
  3503. <productMenuURL version="1.0.4"
  3504. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3505. />
  3506. </productMenu>
  3507. <productMenu id="quickGuide"
  3508. type="0"
  3509. url=""
  3510. size="1.12MB" >
  3511. </productMenu>
  3512. <productMenu id="userGuide"
  3513. type="1"
  3514. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3515. size="2.0MB" >
  3516. </productMenu>
  3517. <productMenu id="videoGuide"
  3518. type="0"
  3519. url=""
  3520. size="3.41MB" >
  3521. </productMenu>
  3522. <productMenu id="connectGuide"
  3523. type="1"
  3524. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3525. size="1.1MB" >
  3526. </productMenu>
  3527. <productMenu id="volume"
  3528. type="16" >
  3529. </productMenu>
  3530. <productMenu id="volume+"
  3531. type="2"
  3532. url="0x6004" >
  3533. </productMenu>
  3534. <productMenu id="soundMode"
  3535. type="1" >
  3536. <productMenuType version="0.9.11"
  3537. type="0"
  3538. />
  3539. </productMenu>
  3540. <productMenu id="battery"
  3541. type="1" >
  3542. </productMenu>
  3543. <productID id="6A01"
  3544. />
  3545. <productGroupable type="0"
  3546. />
  3547. </product>
  3548. <product id="PHANTOM"
  3549. name="PHANTOM ANC"
  3550. series="Helmet"
  3551. latestVersion="1.2.9"
  3552. latestVersionVoicePrompt="1.7"
  3553. show = "-1" >
  3554. <productMenu id="protocol"
  3555. type="2" >
  3556. </productMenu>
  3557. <productMenu id="ota"
  3558. type="2" >
  3559. <otaLanguages>
  3560. <otaLanguage
  3561. id="0"
  3562. name="English"
  3563. package="0"
  3564. />
  3565. <otaLanguage
  3566. id="0"
  3567. name="French"
  3568. package="1"
  3569. />
  3570. <otaLanguage
  3571. id="0"
  3572. name="Spanish"
  3573. package="2"
  3574. />
  3575. <otaLanguage
  3576. id="0"
  3577. name="Italian"
  3578. package="3"
  3579. />
  3580. <otaLanguage
  3581. id="0"
  3582. name="German"
  3583. package="4"
  3584. />
  3585. <otaLanguage
  3586. id="0"
  3587. name="Dutch"
  3588. package="5"
  3589. />
  3590. <otaLanguage
  3591. id="0"
  3592. name="Russian"
  3593. package="6"
  3594. />
  3595. <otaLanguage
  3596. id="0"
  3597. name="Chinese"
  3598. package="7"
  3599. />
  3600. <otaLanguage
  3601. id="0"
  3602. name="Korean"
  3603. package="8"
  3604. />
  3605. <otaLanguage
  3606. id="0"
  3607. name="Japanese"
  3608. package="9"
  3609. />
  3610. <otaLanguage
  3611. id="0"
  3612. name="Finnish"
  3613. package="10"
  3614. />
  3615. <otaLanguage
  3616. id="0"
  3617. name="Polish"
  3618. package="11"
  3619. />
  3620. </otaLanguages>
  3621. <otaPackages>
  3622. <package
  3623. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0.img"
  3624. size="5183988"
  3625. />
  3626. <package
  3627. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fr-FR.img"
  3628. size="5183988"
  3629. />
  3630. <package
  3631. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-es-ES.img"
  3632. size="5183988"
  3633. />
  3634. <package
  3635. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-it-IT.img"
  3636. size="5183988"
  3637. />
  3638. <package
  3639. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-de-DE.img"
  3640. size="5183988"
  3641. />
  3642. <package
  3643. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-nl-NL.img"
  3644. size="5183988"
  3645. />
  3646. <package
  3647. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ru-RU.img"
  3648. size="5183988"
  3649. />
  3650. <package
  3651. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-cmn-CN.img"
  3652. size="5183988"
  3653. />
  3654. <package
  3655. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ko-KR.img"
  3656. size="5183988"
  3657. />
  3658. <package
  3659. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ja-JP.img"
  3660. size="5183988"
  3661. />
  3662. <package
  3663. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fi-FI.img"
  3664. size="5183988"
  3665. />
  3666. <package
  3667. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-pl-PL.img"
  3668. size="5183988"
  3669. />
  3670. </otaPackages>
  3671. </productMenu>
  3672. <productMenu id="led"
  3673. type="5" >
  3674. </productMenu>
  3675. <productMenu id="led+"
  3676. type="2"
  3677. url="1" >
  3678. </productMenu>
  3679. <productMenu id="meshIntercom"
  3680. type="30" >
  3681. </productMenu>
  3682. <productMenu id="meshIntercom+"
  3683. type="3"
  3684. url="2" >
  3685. </productMenu>
  3686. <productMenu id="waveIntercom"
  3687. type="1" >
  3688. </productMenu>
  3689. <productMenu id="fmradio"
  3690. type="0" >
  3691. </productMenu>
  3692. <productMenu id="phone"
  3693. type="1" >
  3694. </productMenu>
  3695. <productMenu id="music"
  3696. type="1" >
  3697. </productMenu>
  3698. <productMenu id="musicSharing"
  3699. type="0" >
  3700. </productMenu>
  3701. <productMenu id="deviceSetting"
  3702. type="1"
  3703. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3704. <productMenuURL version="1.2.10"
  3705. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3706. />
  3707. <productMenuURL version="1.2.4"
  3708. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3709. />
  3710. </productMenu>
  3711. <productMenu id="quickGuide"
  3712. type="0"
  3713. url=""
  3714. size="1.12MB" >
  3715. </productMenu>
  3716. <productMenu id="userGuide"
  3717. type="1"
  3718. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3719. size="2.0MB" >
  3720. </productMenu>
  3721. <productMenu id="videoGuide"
  3722. type="0"
  3723. url=""
  3724. size="3.41MB" >
  3725. </productMenu>
  3726. <productMenu id="connectGuide"
  3727. type="1"
  3728. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3729. size="1.1MB" >
  3730. </productMenu>
  3731. <productMenu id="volume"
  3732. type="16" >
  3733. </productMenu>
  3734. <productMenu id="volume+"
  3735. type="2"
  3736. url="0x6004" >
  3737. </productMenu>
  3738. <productMenu id="soundMode"
  3739. type="1" >
  3740. </productMenu>
  3741. <productMenu id="battery"
  3742. type="1" >
  3743. </productMenu>
  3744. <productID id="6A19"
  3745. />
  3746. <productGroupable type="0"
  3747. />
  3748. </product>
  3749. <product id="PHANTOM"
  3750. name="PHANTOM"
  3751. series="Helmet"
  3752. latestVersion="1.2.9"
  3753. latestVersionVoicePrompt="1.7"
  3754. show = "-1" >
  3755. <productMenu id="protocol"
  3756. type="2" >
  3757. </productMenu>
  3758. <productMenu id="ota"
  3759. type="2" >
  3760. <otaLanguages>
  3761. <otaLanguage
  3762. id="0"
  3763. name="English"
  3764. package="0"
  3765. />
  3766. <otaLanguage
  3767. id="0"
  3768. name="French"
  3769. package="1"
  3770. />
  3771. <otaLanguage
  3772. id="0"
  3773. name="Spanish"
  3774. package="2"
  3775. />
  3776. <otaLanguage
  3777. id="0"
  3778. name="Italian"
  3779. package="3"
  3780. />
  3781. <otaLanguage
  3782. id="0"
  3783. name="German"
  3784. package="4"
  3785. />
  3786. <otaLanguage
  3787. id="0"
  3788. name="Dutch"
  3789. package="5"
  3790. />
  3791. <otaLanguage
  3792. id="0"
  3793. name="Russian"
  3794. package="6"
  3795. />
  3796. <otaLanguage
  3797. id="0"
  3798. name="Chinese"
  3799. package="7"
  3800. />
  3801. <otaLanguage
  3802. id="0"
  3803. name="Korean"
  3804. package="8"
  3805. />
  3806. <otaLanguage
  3807. id="0"
  3808. name="Japanese"
  3809. package="9"
  3810. />
  3811. <otaLanguage
  3812. id="0"
  3813. name="Finnish"
  3814. package="10"
  3815. />
  3816. <otaLanguage
  3817. id="0"
  3818. name="Polish"
  3819. package="11"
  3820. />
  3821. </otaLanguages>
  3822. <otaPackages>
  3823. <package
  3824. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0.img"
  3825. size="5183988"
  3826. />
  3827. <package
  3828. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fr-FR.img"
  3829. size="5183988"
  3830. />
  3831. <package
  3832. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-es-ES.img"
  3833. size="5183988"
  3834. />
  3835. <package
  3836. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-it-IT.img"
  3837. size="5183988"
  3838. />
  3839. <package
  3840. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-de-DE.img"
  3841. size="5183988"
  3842. />
  3843. <package
  3844. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-nl-NL.img"
  3845. size="5183988"
  3846. />
  3847. <package
  3848. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ru-RU.img"
  3849. size="5183988"
  3850. />
  3851. <package
  3852. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-cmn-CN.img"
  3853. size="5183988"
  3854. />
  3855. <package
  3856. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ko-KR.img"
  3857. size="5183988"
  3858. />
  3859. <package
  3860. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ja-JP.img"
  3861. size="5183988"
  3862. />
  3863. <package
  3864. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fi-FI.img"
  3865. size="5183988"
  3866. />
  3867. <package
  3868. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-pl-PL.img"
  3869. size="5183988"
  3870. />
  3871. </otaPackages>
  3872. </productMenu>
  3873. <productMenu id="wa"
  3874. type="0" >
  3875. </productMenu>
  3876. <productMenu id="led"
  3877. type="5" >
  3878. </productMenu>
  3879. <productMenu id="led+"
  3880. type="2"
  3881. url="1" >
  3882. </productMenu>
  3883. <productMenu id="meshIntercom"
  3884. type="30" >
  3885. </productMenu>
  3886. <productMenu id="meshIntercom+"
  3887. type="3"
  3888. url="2" >
  3889. </productMenu>
  3890. <productMenu id="waveIntercom"
  3891. type="1" >
  3892. </productMenu>
  3893. <productMenu id="fmradio"
  3894. type="0" >
  3895. </productMenu>
  3896. <productMenu id="phone"
  3897. type="1" >
  3898. </productMenu>
  3899. <productMenu id="music"
  3900. type="1" >
  3901. </productMenu>
  3902. <productMenu id="musicSharing"
  3903. type="0" >
  3904. </productMenu>
  3905. <productMenu id="deviceSetting"
  3906. type="1"
  3907. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3908. <productMenuURL version="1.2.10"
  3909. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3910. />
  3911. <productMenuURL version="1.2.4"
  3912. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3913. />
  3914. </productMenu>
  3915. <productMenu id="quickGuide"
  3916. type="0"
  3917. url=""
  3918. size="1.52MB" >
  3919. </productMenu>
  3920. <productMenu id="userGuide"
  3921. type="1"
  3922. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3923. size="2.01MB" >
  3924. </productMenu>
  3925. <productMenu id="videoGuide"
  3926. type="0"
  3927. url=""
  3928. size="3.46MB" >
  3929. </productMenu>
  3930. <productMenu id="connectGuide"
  3931. type="1"
  3932. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3933. size="1.1MB" >
  3934. </productMenu>
  3935. <productMenu id="volume"
  3936. type="16" >
  3937. </productMenu>
  3938. <productMenu id="volume+"
  3939. type="2"
  3940. url="0x6004" >
  3941. </productMenu>
  3942. <productMenu id="battery"
  3943. type="1" >
  3944. </productMenu>
  3945. <productID id="6A0E"
  3946. />
  3947. <productGroupable type="0"
  3948. />
  3949. </product>
  3950. <product id="PHANTOM"
  3951. name="PHANTOM"
  3952. series="Helmet"
  3953. latestVersion="1.2.9"
  3954. latestVersionVoicePrompt="1.7"
  3955. show = "1" >
  3956. <productMenu id="protocol"
  3957. type="2" >
  3958. </productMenu>
  3959. <productMenu id="ota"
  3960. type="2" >
  3961. <otaLanguages>
  3962. <otaLanguage
  3963. id="0"
  3964. name="English"
  3965. package="0"
  3966. />
  3967. <otaLanguage
  3968. id="0"
  3969. name="French"
  3970. package="1"
  3971. />
  3972. <otaLanguage
  3973. id="0"
  3974. name="Spanish"
  3975. package="2"
  3976. />
  3977. <otaLanguage
  3978. id="0"
  3979. name="Italian"
  3980. package="3"
  3981. />
  3982. <otaLanguage
  3983. id="0"
  3984. name="German"
  3985. package="4"
  3986. />
  3987. <otaLanguage
  3988. id="0"
  3989. name="Dutch"
  3990. package="5"
  3991. />
  3992. <otaLanguage
  3993. id="0"
  3994. name="Russian"
  3995. package="6"
  3996. />
  3997. <otaLanguage
  3998. id="0"
  3999. name="Chinese"
  4000. package="7"
  4001. />
  4002. <otaLanguage
  4003. id="0"
  4004. name="Korean"
  4005. package="8"
  4006. />
  4007. <otaLanguage
  4008. id="0"
  4009. name="Japanese"
  4010. package="9"
  4011. />
  4012. <otaLanguage
  4013. id="0"
  4014. name="Finnish"
  4015. package="10"
  4016. />
  4017. <otaLanguage
  4018. id="0"
  4019. name="Polish"
  4020. package="11"
  4021. />
  4022. </otaLanguages>
  4023. <otaPackages>
  4024. <package
  4025. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0.img"
  4026. size="5183988"
  4027. />
  4028. <package
  4029. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fr-FR.img"
  4030. size="5183988"
  4031. />
  4032. <package
  4033. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-es-ES.img"
  4034. size="5183988"
  4035. />
  4036. <package
  4037. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-it-IT.img"
  4038. size="5183988"
  4039. />
  4040. <package
  4041. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-de-DE.img"
  4042. size="5183988"
  4043. />
  4044. <package
  4045. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-nl-NL.img"
  4046. size="5183988"
  4047. />
  4048. <package
  4049. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ru-RU.img"
  4050. size="5183988"
  4051. />
  4052. <package
  4053. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-cmn-CN.img"
  4054. size="5183988"
  4055. />
  4056. <package
  4057. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ko-KR.img"
  4058. size="5183988"
  4059. />
  4060. <package
  4061. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ja-JP.img"
  4062. size="5183988"
  4063. />
  4064. <package
  4065. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fi-FI.img"
  4066. size="5183988"
  4067. />
  4068. <package
  4069. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-pl-PL.img"
  4070. size="5183988"
  4071. />
  4072. </otaPackages>
  4073. </productMenu>
  4074. <productMenu id="wa"
  4075. type="0" >
  4076. </productMenu>
  4077. <productMenu id="led"
  4078. type="5" >
  4079. <productMenuType version="1.0.1"
  4080. type="4"
  4081. />
  4082. </productMenu>
  4083. <productMenu id="led+"
  4084. type="2"
  4085. url="1" >
  4086. <productMenuType version="1.0.1"
  4087. type="-1"
  4088. />
  4089. </productMenu>
  4090. <productMenu id="meshIntercom"
  4091. type="30" >
  4092. </productMenu>
  4093. <productMenu id="meshIntercom+"
  4094. type="3"
  4095. url="2" >
  4096. <productMenuURL version="1.0.4"
  4097. url="10"
  4098. />
  4099. </productMenu>
  4100. <productMenu id="waveIntercom"
  4101. type="1" >
  4102. <productMenuType version="1.0.9"
  4103. type="0"
  4104. />
  4105. </productMenu>
  4106. <productMenu id="fmradio"
  4107. type="0" >
  4108. </productMenu>
  4109. <productMenu id="phone"
  4110. type="1" >
  4111. </productMenu>
  4112. <productMenu id="music"
  4113. type="1" >
  4114. </productMenu>
  4115. <productMenu id="musicSharing"
  4116. type="0" >
  4117. </productMenu>
  4118. <productMenu id="deviceSetting"
  4119. type="1"
  4120. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  4121. <productMenuURL version="1.2.10"
  4122. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  4123. />
  4124. <productMenuURL version="1.2.4"
  4125. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4126. />
  4127. <productMenuURL version="1.2.1"
  4128. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4129. />
  4130. <productMenuURL version="1.0.4"
  4131. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4132. />
  4133. <productMenuURL version="1.0.1"
  4134. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4135. />
  4136. </productMenu>
  4137. <productMenu id="quickGuide"
  4138. type="0"
  4139. url=""
  4140. size="1.12MB" >
  4141. </productMenu>
  4142. <productMenu id="userGuide"
  4143. type="1"
  4144. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4145. size="2.0MB" >
  4146. </productMenu>
  4147. <productMenu id="videoGuide"
  4148. type="0"
  4149. url=""
  4150. size="3.41MB" >
  4151. </productMenu>
  4152. <productMenu id="connectGuide"
  4153. type="1"
  4154. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4155. size="1.12MB" >
  4156. </productMenu>
  4157. <productMenu id="volume"
  4158. type="16" >
  4159. <productMenuType version="1.0"
  4160. type="13"
  4161. />
  4162. </productMenu>
  4163. <productMenu id="volume+"
  4164. type="2"
  4165. url="0x6004" >
  4166. </productMenu>
  4167. <productMenu id="battery"
  4168. type="1" >
  4169. </productMenu>
  4170. <productID id="6A04"
  4171. />
  4172. <productGroupable type="0"
  4173. />
  4174. </product>
  4175. <product id="PHANTOMEasyLink"
  4176. name="PHANTOM EasyLink"
  4177. series="Helmet"
  4178. latestVersion="0.1"
  4179. latestVersionVoicePrompt="1.2"
  4180. show = "-1" >
  4181. <productMenu id="protocol"
  4182. type="2" >
  4183. </productMenu>
  4184. <productMenu id="ota"
  4185. type="0" >
  4186. <otaLanguages>
  4187. <otaLanguage
  4188. id="0"
  4189. name="English"
  4190. package="0"
  4191. />
  4192. <otaLanguage
  4193. id="0"
  4194. name="French"
  4195. package="1"
  4196. />
  4197. <otaLanguage
  4198. id="0"
  4199. name="Spanish"
  4200. package="2"
  4201. />
  4202. <otaLanguage
  4203. id="0"
  4204. name="Italian"
  4205. package="3"
  4206. />
  4207. <otaLanguage
  4208. id="0"
  4209. name="German"
  4210. package="4"
  4211. />
  4212. <otaLanguage
  4213. id="0"
  4214. name="Dutch"
  4215. package="5"
  4216. />
  4217. <otaLanguage
  4218. id="0"
  4219. name="Russian"
  4220. package="6"
  4221. />
  4222. <otaLanguage
  4223. id="0"
  4224. name="Chinese"
  4225. package="7"
  4226. />
  4227. <otaLanguage
  4228. id="0"
  4229. name="Korean"
  4230. package="8"
  4231. />
  4232. <otaLanguage
  4233. id="0"
  4234. name="Japanese"
  4235. package="9"
  4236. />
  4237. <otaLanguage
  4238. id="0"
  4239. name="Finnish"
  4240. package="10"
  4241. />
  4242. <otaLanguage
  4243. id="0"
  4244. name="Polish"
  4245. package="11"
  4246. />
  4247. </otaLanguages>
  4248. <otaPackages>
  4249. <package
  4250. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4251. size="5183988"
  4252. />
  4253. <package
  4254. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4255. size="5183988"
  4256. />
  4257. <package
  4258. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4259. size="5183988"
  4260. />
  4261. <package
  4262. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4263. size="5183988"
  4264. />
  4265. <package
  4266. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4267. size="5183988"
  4268. />
  4269. <package
  4270. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4271. size="5183988"
  4272. />
  4273. <package
  4274. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4275. size="5183988"
  4276. />
  4277. <package
  4278. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4279. size="5183988"
  4280. />
  4281. <package
  4282. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4283. size="5183988"
  4284. />
  4285. <package
  4286. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4287. size="5183988"
  4288. />
  4289. <package
  4290. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4291. size="5183988"
  4292. />
  4293. <package
  4294. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4295. size="5183988"
  4296. />
  4297. </otaPackages>
  4298. </productMenu>
  4299. <productMenu id="meshIntercom"
  4300. type="30" >
  4301. </productMenu>
  4302. <productMenu id="meshIntercom+"
  4303. type="3"
  4304. url="2" >
  4305. </productMenu>
  4306. <productMenu id="waveIntercom"
  4307. type="1" >
  4308. </productMenu>
  4309. <productMenu id="fmradio"
  4310. type="0" >
  4311. </productMenu>
  4312. <productMenu id="phone"
  4313. type="1" >
  4314. </productMenu>
  4315. <productMenu id="music"
  4316. type="1" >
  4317. </productMenu>
  4318. <productMenu id="musicSharing"
  4319. type="0" >
  4320. </productMenu>
  4321. <productMenu id="deviceSetting"
  4322. type="1"
  4323. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4324. </productMenu>
  4325. <productMenu id="quickGuide"
  4326. type="0"
  4327. url=""
  4328. size="1.12MB" >
  4329. </productMenu>
  4330. <productMenu id="userGuide"
  4331. type="1"
  4332. url=""
  4333. size="2.0MB" >
  4334. </productMenu>
  4335. <productMenu id="videoGuide"
  4336. type="0"
  4337. url=""
  4338. size="3.41MB" >
  4339. </productMenu>
  4340. <productMenu id="connectGuide"
  4341. type="0"
  4342. url=""
  4343. size="1.12MB" >
  4344. </productMenu>
  4345. <productMenu id="volume"
  4346. type="16" >
  4347. </productMenu>
  4348. <productMenu id="battery"
  4349. type="1" >
  4350. </productMenu>
  4351. <productID id="6A18"
  4352. />
  4353. <productGroupable type="0"
  4354. />
  4355. </product>
  4356. <product id="SPIDERXSlim"
  4357. name="SPIDER X Slim"
  4358. series="SPIDER"
  4359. latestVersion="1.0"
  4360. latestVersionVoicePrompt="1.7"
  4361. show = "1" >
  4362. <productMenu id="protocol"
  4363. type="2" >
  4364. </productMenu>
  4365. <productMenu id="warranty"
  4366. type="1" >
  4367. </productMenu>
  4368. <productMenu id="serialNumber"
  4369. type="1" >
  4370. </productMenu>
  4371. <productMenu id="ota"
  4372. type="2" >
  4373. <otaLanguages>
  4374. <otaLanguage
  4375. id="0"
  4376. name="English"
  4377. package="0"
  4378. />
  4379. <otaLanguage
  4380. id="0"
  4381. name="French"
  4382. package="1"
  4383. />
  4384. <otaLanguage
  4385. id="0"
  4386. name="Spanish"
  4387. package="2"
  4388. />
  4389. <otaLanguage
  4390. id="0"
  4391. name="Italian"
  4392. package="3"
  4393. />
  4394. <otaLanguage
  4395. id="0"
  4396. name="German"
  4397. package="4"
  4398. />
  4399. <otaLanguage
  4400. id="0"
  4401. name="Dutch"
  4402. package="5"
  4403. />
  4404. <otaLanguage
  4405. id="0"
  4406. name="Russian"
  4407. package="6"
  4408. />
  4409. <otaLanguage
  4410. id="0"
  4411. name="Chinese"
  4412. package="7"
  4413. />
  4414. <otaLanguage
  4415. id="0"
  4416. name="Korean"
  4417. package="8"
  4418. />
  4419. <otaLanguage
  4420. id="0"
  4421. name="Japanese"
  4422. package="9"
  4423. />
  4424. <otaLanguage
  4425. id="0"
  4426. name="Finnish"
  4427. package="10"
  4428. />
  4429. <otaLanguage
  4430. id="0"
  4431. name="Polish"
  4432. package="11"
  4433. />
  4434. </otaLanguages>
  4435. <otaPackages>
  4436. <package
  4437. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5.img"
  4438. size="5183988"
  4439. />
  4440. <package
  4441. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fr-FR.img"
  4442. size="5183988"
  4443. />
  4444. <package
  4445. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-es-ES.img"
  4446. size="5183988"
  4447. />
  4448. <package
  4449. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-it-IT.img"
  4450. size="5183988"
  4451. />
  4452. <package
  4453. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-de-DE.img"
  4454. size="5183988"
  4455. />
  4456. <package
  4457. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-nl-NL.img"
  4458. size="5183988"
  4459. />
  4460. <package
  4461. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ru-RU.img"
  4462. size="5183988"
  4463. />
  4464. <package
  4465. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-cmn-CN.img"
  4466. size="5183988"
  4467. />
  4468. <package
  4469. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ko-KR.img"
  4470. size="5183988"
  4471. />
  4472. <package
  4473. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ja-JP.img"
  4474. size="5183988"
  4475. />
  4476. <package
  4477. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fi-FI.img"
  4478. size="5183988"
  4479. />
  4480. <package
  4481. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-pl-PL.img"
  4482. size="5183988"
  4483. />
  4484. </otaPackages>
  4485. </productMenu>
  4486. <productMenu id="meshIntercom"
  4487. type="30" >
  4488. </productMenu>
  4489. <productMenu id="meshIntercom+"
  4490. type="3"
  4491. url="2" >
  4492. </productMenu>
  4493. <productMenu id="waveIntercom"
  4494. type="1" >
  4495. </productMenu>
  4496. <productMenu id="fmradio"
  4497. type="1"
  4498. url="1" >
  4499. </productMenu>
  4500. <productMenu id="phone"
  4501. type="1" >
  4502. </productMenu>
  4503. <productMenu id="music"
  4504. type="1" >
  4505. </productMenu>
  4506. <productMenu id="musicSharing"
  4507. type="0" >
  4508. </productMenu>
  4509. <productMenu id="deviceSetting"
  4510. type="1"
  4511. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_03.xml" >
  4512. <productMenuURL version="1.0"
  4513. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml"
  4514. />
  4515. </productMenu>
  4516. <productMenu id="quickGuide"
  4517. type="0"
  4518. url=""
  4519. size="1.12MB" >
  4520. </productMenu>
  4521. <productMenu id="userGuide"
  4522. type="1"
  4523. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_X_Slim_1.0.0_en_260629.pdf"
  4524. size="2.0MB" >
  4525. </productMenu>
  4526. <productMenu id="videoGuide"
  4527. type="0"
  4528. url=""
  4529. size="3.41MB" >
  4530. </productMenu>
  4531. <productMenu id="connectGuide"
  4532. type="1"
  4533. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_spiderxslim.json"
  4534. size="1.12MB" >
  4535. </productMenu>
  4536. <productMenu id="volume"
  4537. type="16" >
  4538. </productMenu>
  4539. <productMenu id="volume+"
  4540. type="2"
  4541. url="0x6004" >
  4542. </productMenu>
  4543. <productMenu id="appearance"
  4544. type="1"
  4545. url="2|white,silver,chrome,black" >
  4546. </productMenu>
  4547. <productMenu id="battery"
  4548. type="1" >
  4549. </productMenu>
  4550. <productID id="6A07"
  4551. />
  4552. <productGroupable type="0"
  4553. />
  4554. </product>
  4555. <product id="XFITM"
  4556. name="X-FIT M"
  4557. series="SPIDER"
  4558. latestVersion="0.1.11"
  4559. latestVersionVoicePrompt="1.1"
  4560. show = "-1" >
  4561. <productMenu id="protocol"
  4562. type="2" >
  4563. </productMenu>
  4564. <productMenu id="ota"
  4565. type="0" >
  4566. <otaLanguages>
  4567. <otaLanguage
  4568. id="0"
  4569. name="English"
  4570. package="0"
  4571. />
  4572. <otaLanguage
  4573. id="0"
  4574. name="French"
  4575. package="1"
  4576. />
  4577. <otaLanguage
  4578. id="0"
  4579. name="Spanish"
  4580. package="2"
  4581. />
  4582. <otaLanguage
  4583. id="0"
  4584. name="Italian"
  4585. package="3"
  4586. />
  4587. <otaLanguage
  4588. id="0"
  4589. name="German"
  4590. package="4"
  4591. />
  4592. <otaLanguage
  4593. id="0"
  4594. name="Dutch"
  4595. package="5"
  4596. />
  4597. <otaLanguage
  4598. id="0"
  4599. name="Russian"
  4600. package="6"
  4601. />
  4602. <otaLanguage
  4603. id="0"
  4604. name="Chinese"
  4605. package="7"
  4606. />
  4607. <otaLanguage
  4608. id="0"
  4609. name="Korean"
  4610. package="8"
  4611. />
  4612. <otaLanguage
  4613. id="0"
  4614. name="Japanese"
  4615. package="9"
  4616. />
  4617. <otaLanguage
  4618. id="0"
  4619. name="Finnish"
  4620. package="10"
  4621. />
  4622. <otaLanguage
  4623. id="0"
  4624. name="Polish"
  4625. package="11"
  4626. />
  4627. </otaLanguages>
  4628. <otaPackages>
  4629. <package
  4630. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4631. size="5183988"
  4632. />
  4633. <package
  4634. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4635. size="5183988"
  4636. />
  4637. <package
  4638. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4639. size="5183988"
  4640. />
  4641. <package
  4642. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4643. size="5183988"
  4644. />
  4645. <package
  4646. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4647. size="5183988"
  4648. />
  4649. <package
  4650. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4651. size="5183988"
  4652. />
  4653. <package
  4654. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4655. size="5183988"
  4656. />
  4657. <package
  4658. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4659. size="5183988"
  4660. />
  4661. <package
  4662. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4663. size="5183988"
  4664. />
  4665. <package
  4666. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4667. size="5183988"
  4668. />
  4669. <package
  4670. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4671. size="5183988"
  4672. />
  4673. <package
  4674. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4675. size="5183988"
  4676. />
  4677. </otaPackages>
  4678. </productMenu>
  4679. <productMenu id="meshIntercom"
  4680. type="30" >
  4681. </productMenu>
  4682. <productMenu id="meshIntercom+"
  4683. type="3"
  4684. url="2" >
  4685. </productMenu>
  4686. <productMenu id="waveIntercom"
  4687. type="1" >
  4688. </productMenu>
  4689. <productMenu id="fmradio"
  4690. type="1"
  4691. url="1" >
  4692. </productMenu>
  4693. <productMenu id="phone"
  4694. type="1" >
  4695. </productMenu>
  4696. <productMenu id="music"
  4697. type="1" >
  4698. </productMenu>
  4699. <productMenu id="musicSharing"
  4700. type="0" >
  4701. </productMenu>
  4702. <productMenu id="deviceSetting"
  4703. type="1"
  4704. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4705. </productMenu>
  4706. <productMenu id="quickGuide"
  4707. type="0"
  4708. url=""
  4709. size="1.12MB" >
  4710. </productMenu>
  4711. <productMenu id="userGuide"
  4712. type="1"
  4713. url=""
  4714. size="2.0MB" >
  4715. </productMenu>
  4716. <productMenu id="videoGuide"
  4717. type="0"
  4718. url=""
  4719. size="3.41MB" >
  4720. </productMenu>
  4721. <productMenu id="volume"
  4722. type="16" >
  4723. </productMenu>
  4724. <productMenu id="volume+"
  4725. type="2"
  4726. url="0x6004" >
  4727. </productMenu>
  4728. <productMenu id="battery"
  4729. type="1" >
  4730. </productMenu>
  4731. <productID id="6A17"
  4732. />
  4733. <productGroupable type="0"
  4734. />
  4735. </product>
  4736. <product id="VORTEXMESH"
  4737. name="VORTEX MESH"
  4738. series="Helmet"
  4739. latestVersion="0.1.11"
  4740. latestVersionVoicePrompt="1.1"
  4741. show = "-1" >
  4742. <productMenu id="protocol"
  4743. type="2" >
  4744. </productMenu>
  4745. <productMenu id="ota"
  4746. type="0" >
  4747. <otaLanguages>
  4748. <otaLanguage
  4749. id="0"
  4750. name="English"
  4751. package="0"
  4752. />
  4753. <otaLanguage
  4754. id="0"
  4755. name="French"
  4756. package="1"
  4757. />
  4758. <otaLanguage
  4759. id="0"
  4760. name="Spanish"
  4761. package="2"
  4762. />
  4763. <otaLanguage
  4764. id="0"
  4765. name="Italian"
  4766. package="3"
  4767. />
  4768. <otaLanguage
  4769. id="0"
  4770. name="German"
  4771. package="4"
  4772. />
  4773. <otaLanguage
  4774. id="0"
  4775. name="Dutch"
  4776. package="5"
  4777. />
  4778. <otaLanguage
  4779. id="0"
  4780. name="Russian"
  4781. package="6"
  4782. />
  4783. <otaLanguage
  4784. id="0"
  4785. name="Chinese"
  4786. package="7"
  4787. />
  4788. <otaLanguage
  4789. id="0"
  4790. name="Korean"
  4791. package="8"
  4792. />
  4793. <otaLanguage
  4794. id="0"
  4795. name="Japanese"
  4796. package="9"
  4797. />
  4798. <otaLanguage
  4799. id="0"
  4800. name="Finnish"
  4801. package="10"
  4802. />
  4803. <otaLanguage
  4804. id="0"
  4805. name="Polish"
  4806. package="11"
  4807. />
  4808. </otaLanguages>
  4809. <otaPackages>
  4810. <package
  4811. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4812. size="5183988"
  4813. />
  4814. <package
  4815. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4816. size="5183988"
  4817. />
  4818. <package
  4819. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4820. size="5183988"
  4821. />
  4822. <package
  4823. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4824. size="5183988"
  4825. />
  4826. <package
  4827. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4828. size="5183988"
  4829. />
  4830. <package
  4831. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4832. size="5183988"
  4833. />
  4834. <package
  4835. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4836. size="5183988"
  4837. />
  4838. <package
  4839. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4840. size="5183988"
  4841. />
  4842. <package
  4843. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4844. size="5183988"
  4845. />
  4846. <package
  4847. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4848. size="5183988"
  4849. />
  4850. <package
  4851. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4852. size="5183988"
  4853. />
  4854. <package
  4855. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4856. size="5183988"
  4857. />
  4858. </otaPackages>
  4859. </productMenu>
  4860. <productMenu id="wa"
  4861. type="0" >
  4862. </productMenu>
  4863. <productMenu id="led"
  4864. type="5" >
  4865. </productMenu>
  4866. <productMenu id="led+"
  4867. type="2"
  4868. url="1" >
  4869. </productMenu>
  4870. <productMenu id="meshIntercom"
  4871. type="30" >
  4872. </productMenu>
  4873. <productMenu id="meshIntercom+"
  4874. type="3"
  4875. url="2" >
  4876. </productMenu>
  4877. <productMenu id="waveIntercom"
  4878. type="1" >
  4879. </productMenu>
  4880. <productMenu id="fmradio"
  4881. type="0" >
  4882. </productMenu>
  4883. <productMenu id="phone"
  4884. type="1" >
  4885. </productMenu>
  4886. <productMenu id="music"
  4887. type="1" >
  4888. </productMenu>
  4889. <productMenu id="musicSharing"
  4890. type="0" >
  4891. </productMenu>
  4892. <productMenu id="deviceSetting"
  4893. type="1"
  4894. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4895. </productMenu>
  4896. <productMenu id="quickGuide"
  4897. type="0"
  4898. url=""
  4899. size="1.12MB" >
  4900. </productMenu>
  4901. <productMenu id="userGuide"
  4902. type="1"
  4903. url=""
  4904. size="2.0MB" >
  4905. </productMenu>
  4906. <productMenu id="videoGuide"
  4907. type="0"
  4908. url=""
  4909. size="3.41MB" >
  4910. </productMenu>
  4911. <productMenu id="volume"
  4912. type="16" >
  4913. </productMenu>
  4914. <productMenu id="battery"
  4915. type="1" >
  4916. </productMenu>
  4917. <productID id="6A12"
  4918. />
  4919. <productGroupable type="0"
  4920. />
  4921. </product>
  4922. <product id="MeshOn"
  4923. name="MeshON"
  4924. series="Other"
  4925. latestVersion="1.0.1"
  4926. latestVersionVoicePrompt="0.7"
  4927. show = "1" >
  4928. <productMenu id="protocol"
  4929. type="2" >
  4930. </productMenu>
  4931. <productMenu id="ota"
  4932. type="2" >
  4933. <otaPackages>
  4934. <package
  4935. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4936. size="2945812"
  4937. />
  4938. </otaPackages>
  4939. </productMenu>
  4940. <productMenu id="meshIntercom+"
  4941. type="3"
  4942. url="4" >
  4943. </productMenu>
  4944. <productMenu id="waveIntercom"
  4945. type="0" >
  4946. </productMenu>
  4947. <productMenu id="phone"
  4948. type="0" >
  4949. </productMenu>
  4950. <productMenu id="music"
  4951. type="0" >
  4952. </productMenu>
  4953. <productMenu id="musicSharing"
  4954. type="0" >
  4955. </productMenu>
  4956. <productMenu id="deviceSetting"
  4957. type="1"
  4958. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4959. </productMenu>
  4960. <productMenu id="userGuide"
  4961. type="1"
  4962. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_MeshON_1.0.0_en_260720.pdf"
  4963. size="2.0MB" >
  4964. </productMenu>
  4965. <productMenu id="bluetoothHeadset"
  4966. type="1"
  4967. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4968. </productMenu>
  4969. <productMenu id="volume"
  4970. type="0" >
  4971. </productMenu>
  4972. <productMenu id="battery"
  4973. type="1" >
  4974. </productMenu>
  4975. <productID id="684E"
  4976. />
  4977. <productGroupable type="0"
  4978. />
  4979. </product>
  4980. <product id="Impulse"
  4981. name="Impulse"
  4982. series="Helmet"
  4983. latestVersion="1.4.1"
  4984. show = "1" >
  4985. <productMenu id="protocol"
  4986. type="2" >
  4987. </productMenu>
  4988. <productMenu id="alexa"
  4989. type="0" >
  4990. </productMenu>
  4991. <productMenu id="ota"
  4992. type="0" >
  4993. </productMenu>
  4994. <productMenu id="wa"
  4995. type="24" >
  4996. </productMenu>
  4997. <productMenu id="manager"
  4998. type="0" >
  4999. </productMenu>
  5000. <productMenu id="sip"
  5001. type="1" >
  5002. </productMenu>
  5003. <productMenu id="led"
  5004. type="1" >
  5005. <productMenuType version="1.0.1"
  5006. type="2"
  5007. />
  5008. <productMenuType version="1.0"
  5009. type="1"
  5010. />
  5011. </productMenu>
  5012. <productMenu id="meshIntercom"
  5013. type="30" >
  5014. <productMenuType version="1.1.1"
  5015. type="20"
  5016. />
  5017. </productMenu>
  5018. <productMenu id="meshIntercom+"
  5019. type="3"
  5020. url="2" >
  5021. <productMenuType version="1.3.9"
  5022. type="2"
  5023. />
  5024. <productMenuURL version="1.1.1"
  5025. url="0"
  5026. />
  5027. </productMenu>
  5028. <productMenu id="waveIntercom"
  5029. type="1" >
  5030. <productMenuType version="1.3.9"
  5031. type="0"
  5032. />
  5033. </productMenu>
  5034. <productMenu id="bluetoothIntercom"
  5035. type="1" >
  5036. </productMenu>
  5037. <productMenu id="phone"
  5038. type="1" >
  5039. </productMenu>
  5040. <productMenu id="music"
  5041. type="1" >
  5042. </productMenu>
  5043. <productMenu id="fmradio"
  5044. type="1" >
  5045. </productMenu>
  5046. <productMenu id="deviceSetting"
  5047. type="1"
  5048. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5049. <productMenuURL version="1.3.9"
  5050. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5051. />
  5052. <productMenuURL version="1.1.1"
  5053. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5054. />
  5055. <productMenuURL version="1.0.4"
  5056. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5057. />
  5058. </productMenu>
  5059. <productMenu id="quickGuide"
  5060. type="0"
  5061. url=""
  5062. size="344KB" >
  5063. </productMenu>
  5064. <productMenu id="userGuide"
  5065. type="1"
  5066. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  5067. size="3.41MB" >
  5068. </productMenu>
  5069. <productMenu id="connectGuide"
  5070. type="1"
  5071. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5072. size="1.12MB" >
  5073. </productMenu>
  5074. <productMenu id="volume"
  5075. type="11" >
  5076. </productMenu>
  5077. <productMenu id="battery"
  5078. type="1" >
  5079. </productMenu>
  5080. <productID id="3148"
  5081. />
  5082. <productGroupable type="0"
  5083. />
  5084. </product>
  5085. <product id="Impulse"
  5086. name="Impulse"
  5087. series="Helmet"
  5088. latestVersion="2.0"
  5089. show = "-1" >
  5090. <productMenu id="protocol"
  5091. type="2" >
  5092. </productMenu>
  5093. <productMenu id="alexa"
  5094. type="0" >
  5095. </productMenu>
  5096. <productMenu id="ota"
  5097. type="0" >
  5098. </productMenu>
  5099. <productMenu id="wa"
  5100. type="8" >
  5101. </productMenu>
  5102. <productMenu id="manager"
  5103. type="0" >
  5104. </productMenu>
  5105. <productMenu id="sip"
  5106. type="1" >
  5107. </productMenu>
  5108. <productMenu id="led"
  5109. type="3" >
  5110. </productMenu>
  5111. <productMenu id="meshIntercom"
  5112. type="20" >
  5113. </productMenu>
  5114. <productMenu id="bluetoothIntercom"
  5115. type="1" >
  5116. </productMenu>
  5117. <productMenu id="phone"
  5118. type="1" >
  5119. </productMenu>
  5120. <productMenu id="music"
  5121. type="1" >
  5122. </productMenu>
  5123. <productMenu id="fmradio"
  5124. type="1" >
  5125. </productMenu>
  5126. <productMenu id="deviceSetting"
  5127. type="1"
  5128. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5129. </productMenu>
  5130. <productMenu id="quickGuide"
  5131. type="1"
  5132. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5133. size="344KB" >
  5134. </productMenu>
  5135. <productMenu id="userGuide"
  5136. type="1"
  5137. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5138. size="3.41MB" >
  5139. </productMenu>
  5140. <productMenu id="volume"
  5141. type="11" >
  5142. </productMenu>
  5143. <productMenu id="battery"
  5144. type="1" >
  5145. </productMenu>
  5146. <productID id="3221"
  5147. />
  5148. <productGroupable type="0"
  5149. />
  5150. </product>
  5151. <product id="Stryker"
  5152. name="Stryker"
  5153. series="Helmet"
  5154. latestVersion="1.4.1"
  5155. show = "1" >
  5156. <productMenu id="protocol"
  5157. type="2" >
  5158. </productMenu>
  5159. <productMenu id="alexa"
  5160. type="0" >
  5161. </productMenu>
  5162. <productMenu id="ota"
  5163. type="0" >
  5164. </productMenu>
  5165. <productMenu id="wa"
  5166. type="40" >
  5167. </productMenu>
  5168. <productMenu id="manager"
  5169. type="0" >
  5170. </productMenu>
  5171. <productMenu id="sip"
  5172. type="1" >
  5173. </productMenu>
  5174. <productMenu id="led"
  5175. type="1" >
  5176. <productMenuType version="1.0.1"
  5177. type="2"
  5178. />
  5179. <productMenuType version="1.0"
  5180. type="1"
  5181. />
  5182. </productMenu>
  5183. <productMenu id="meshIntercom"
  5184. type="30" >
  5185. <productMenuType version="1.1.1"
  5186. type="20"
  5187. />
  5188. </productMenu>
  5189. <productMenu id="meshIntercom+"
  5190. type="3"
  5191. url="2" >
  5192. <productMenuType version="1.3.9"
  5193. type="2"
  5194. />
  5195. <productMenuURL version="1.1.1"
  5196. url="0"
  5197. />
  5198. </productMenu>
  5199. <productMenu id="waveIntercom"
  5200. type="1" >
  5201. <productMenuType version="1.2.9"
  5202. type="0"
  5203. />
  5204. </productMenu>
  5205. <productMenu id="bluetoothIntercom"
  5206. type="1" >
  5207. </productMenu>
  5208. <productMenu id="phone"
  5209. type="1" >
  5210. </productMenu>
  5211. <productMenu id="music"
  5212. type="1" >
  5213. </productMenu>
  5214. <productMenu id="fmradio"
  5215. type="1" >
  5216. </productMenu>
  5217. <productMenu id="deviceSetting"
  5218. type="1"
  5219. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5220. <productMenuURL version="1.3.9"
  5221. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5222. />
  5223. <productMenuURL version="1.1.1"
  5224. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5225. />
  5226. <productMenuURL version="1.0.4"
  5227. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5228. />
  5229. </productMenu>
  5230. <productMenu id="quickGuide"
  5231. type="0"
  5232. url=""
  5233. size="344KB" >
  5234. </productMenu>
  5235. <productMenu id="userGuide"
  5236. type="1"
  5237. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5238. size="3.41MB" >
  5239. </productMenu>
  5240. <productMenu id="connectGuide"
  5241. type="1"
  5242. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5243. size="1.12MB" >
  5244. </productMenu>
  5245. <productMenu id="volume"
  5246. type="11" >
  5247. </productMenu>
  5248. <productMenu id="battery"
  5249. type="1" >
  5250. </productMenu>
  5251. <productID id="3154"
  5252. />
  5253. <productGroupable type="0"
  5254. />
  5255. </product>
  5256. <product id="SRL3Plus"
  5257. name="SRL3 Plus"
  5258. series="60"
  5259. latestVersion="0.9.14"
  5260. latestVersionMesh="0.19"
  5261. latestVersionVoicePrompt="1.8"
  5262. show = "-1" >
  5263. <productMenu id="protocol"
  5264. type="2" >
  5265. </productMenu>
  5266. <productMenu id="ota"
  5267. type="0" >
  5268. <otaLanguages>
  5269. <otaLanguage
  5270. id="0"
  5271. name="English"
  5272. package="0"
  5273. />
  5274. <otaLanguage
  5275. id="0"
  5276. name="French"
  5277. package="1"
  5278. />
  5279. <otaLanguage
  5280. id="0"
  5281. name="Spanish"
  5282. package="2"
  5283. />
  5284. <otaLanguage
  5285. id="0"
  5286. name="Italian"
  5287. package="3"
  5288. />
  5289. <otaLanguage
  5290. id="0"
  5291. name="German"
  5292. package="4"
  5293. />
  5294. <otaLanguage
  5295. id="0"
  5296. name="Dutch"
  5297. package="5"
  5298. />
  5299. <otaLanguage
  5300. id="0"
  5301. name="Russian"
  5302. package="6"
  5303. />
  5304. <otaLanguage
  5305. id="0"
  5306. name="Chinese"
  5307. package="7"
  5308. />
  5309. <otaLanguage
  5310. id="0"
  5311. name="Korean"
  5312. package="8"
  5313. />
  5314. <otaLanguage
  5315. id="0"
  5316. name="Japanese"
  5317. package="9"
  5318. />
  5319. <otaLanguage
  5320. id="0"
  5321. name="Finnish"
  5322. package="10"
  5323. />
  5324. <otaLanguage
  5325. id="0"
  5326. name="Polish"
  5327. package="11"
  5328. />
  5329. </otaLanguages>
  5330. <otaPackages>
  5331. <package
  5332. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0.img"
  5333. size="5183988"
  5334. />
  5335. <package
  5336. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fr-FR.img"
  5337. size="5183988"
  5338. />
  5339. <package
  5340. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-es-ES.img"
  5341. size="5183988"
  5342. />
  5343. <package
  5344. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-it-IT.img"
  5345. size="5183988"
  5346. />
  5347. <package
  5348. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-de-DE.img"
  5349. size="5183988"
  5350. />
  5351. <package
  5352. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-nl-NL.img"
  5353. size="5183988"
  5354. />
  5355. <package
  5356. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ru-RU.img"
  5357. size="5183988"
  5358. />
  5359. <package
  5360. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-cmn-CN.img"
  5361. size="5183988"
  5362. />
  5363. <package
  5364. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ko-KR.img"
  5365. size="5183988"
  5366. />
  5367. <package
  5368. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ja-JP.img"
  5369. size="5183988"
  5370. />
  5371. <package
  5372. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fi-FI.img"
  5373. size="5183988"
  5374. />
  5375. <package
  5376. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-pl-PL.img"
  5377. size="5183988"
  5378. />
  5379. </otaPackages>
  5380. </productMenu>
  5381. <productMenu id="sip"
  5382. type="1" >
  5383. </productMenu>
  5384. <productMenu id="meshIntercom+"
  5385. type="3"
  5386. url="2" >
  5387. </productMenu>
  5388. <productMenu id="waveIntercom"
  5389. type="1" >
  5390. </productMenu>
  5391. <productMenu id="bluetoothIntercom"
  5392. type="1"
  5393. url="2" >
  5394. </productMenu>
  5395. <productMenu id="bluetoothIntercomGrouping"
  5396. type="0" >
  5397. </productMenu>
  5398. <productMenu id="fmradio"
  5399. type="1"
  5400. url="1" >
  5401. </productMenu>
  5402. <productMenu id="phone"
  5403. type="1" >
  5404. </productMenu>
  5405. <productMenu id="music"
  5406. type="1" >
  5407. </productMenu>
  5408. <productMenu id="musicSharing"
  5409. type="0" >
  5410. </productMenu>
  5411. <productMenu id="deviceSetting"
  5412. type="1"
  5413. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/NS_SRL3Plus_01.xml" >
  5414. </productMenu>
  5415. <productMenu id="quickGuide"
  5416. type="0"
  5417. url=""
  5418. size="1.12MB" >
  5419. </productMenu>
  5420. <productMenu id="userGuide"
  5421. type="0"
  5422. url=""
  5423. size="2.0MB" >
  5424. </productMenu>
  5425. <productMenu id="videoGuide"
  5426. type="0"
  5427. url=""
  5428. size="3.41MB" >
  5429. </productMenu>
  5430. <productMenu id="volume"
  5431. type="16" >
  5432. </productMenu>
  5433. <productMenu id="soundMode"
  5434. type="1" >
  5435. </productMenu>
  5436. <productMenu id="battery"
  5437. type="1" >
  5438. </productMenu>
  5439. <productID id="6A08"
  5440. />
  5441. <productGroupable type="0"
  5442. />
  5443. </product>
  5444. <product id="SRL3"
  5445. name="SRL3"
  5446. series="SRL"
  5447. latestVersion="1.5"
  5448. show = "1" >
  5449. <productMenu id="protocol"
  5450. type="2" >
  5451. </productMenu>
  5452. <productMenu id="alexa"
  5453. type="0" >
  5454. </productMenu>
  5455. <productMenu id="ota"
  5456. type="0" >
  5457. </productMenu>
  5458. <productMenu id="wa"
  5459. type="1" >
  5460. </productMenu>
  5461. <productMenu id="sip"
  5462. type="1" >
  5463. </productMenu>
  5464. <productMenu id="meshIntercom"
  5465. type="30" >
  5466. </productMenu>
  5467. <productMenu id="meshIntercom+"
  5468. type="3"
  5469. url="2" >
  5470. <productMenuType version="1.3.9"
  5471. type="2"
  5472. />
  5473. </productMenu>
  5474. <productMenu id="waveIntercom"
  5475. type="1" >
  5476. <productMenuType version="1.4.9"
  5477. type="0"
  5478. />
  5479. </productMenu>
  5480. <productMenu id="bluetoothIntercom"
  5481. type="1" >
  5482. </productMenu>
  5483. <productMenu id="phone"
  5484. type="1" >
  5485. </productMenu>
  5486. <productMenu id="music"
  5487. type="1" >
  5488. </productMenu>
  5489. <productMenu id="fmradio"
  5490. type="1" >
  5491. </productMenu>
  5492. <productMenu id="deviceSetting"
  5493. type="1"
  5494. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5495. <productMenuURL version="1.3"
  5496. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5497. />
  5498. </productMenu>
  5499. <productMenu id="quickGuide"
  5500. type="0"
  5501. url=""
  5502. size="344KB" >
  5503. </productMenu>
  5504. <productMenu id="userGuide"
  5505. type="1"
  5506. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5507. size="3.41MB" >
  5508. </productMenu>
  5509. <productMenu id="connectGuide"
  5510. type="1"
  5511. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5512. size="1.12MB" >
  5513. </productMenu>
  5514. <productMenu id="volume"
  5515. type="11" >
  5516. </productMenu>
  5517. <productMenu id="battery"
  5518. type="1" >
  5519. </productMenu>
  5520. <productID id="3219"
  5521. />
  5522. <productGroupable type="0"
  5523. />
  5524. </product>
  5525. <product id="SRL_Mesh"
  5526. name="SRL-Mesh"
  5527. series="SRL"
  5528. latestVersion="1.7.1"
  5529. show = "1" >
  5530. <productMenu id="protocol"
  5531. type="2" >
  5532. </productMenu>
  5533. <productMenu id="alexa"
  5534. type="0" >
  5535. </productMenu>
  5536. <productMenu id="ota"
  5537. type="0" >
  5538. </productMenu>
  5539. <productMenu id="wa"
  5540. type="1" >
  5541. </productMenu>
  5542. <productMenu id="sip"
  5543. type="1" >
  5544. </productMenu>
  5545. <productMenu id="meshIntercom"
  5546. type="30" >
  5547. <productMenuType version="1.1.1"
  5548. type="20"
  5549. />
  5550. </productMenu>
  5551. <productMenu id="meshIntercom+"
  5552. type="3"
  5553. url="2" >
  5554. <productMenuType version="1.5.9"
  5555. type="2"
  5556. />
  5557. <productMenuURL version="1.1.1"
  5558. url="0"
  5559. />
  5560. </productMenu>
  5561. <productMenu id="waveIntercom"
  5562. type="1" >
  5563. <productMenuType version="1.6.9"
  5564. type="0"
  5565. />
  5566. </productMenu>
  5567. <productMenu id="bluetoothIntercom"
  5568. type="1" >
  5569. </productMenu>
  5570. <productMenu id="phone"
  5571. type="1" >
  5572. </productMenu>
  5573. <productMenu id="music"
  5574. type="1" >
  5575. </productMenu>
  5576. <productMenu id="fmradio"
  5577. type="1" >
  5578. </productMenu>
  5579. <productMenu id="deviceSetting"
  5580. type="1"
  5581. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5582. <productMenuURL version="1.5"
  5583. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5584. />
  5585. <productMenuURL version="1.1.1"
  5586. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5587. />
  5588. <productMenuURL version="1.0.3"
  5589. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5590. />
  5591. </productMenu>
  5592. <productMenu id="quickGuide"
  5593. type="0"
  5594. url=""
  5595. size="344KB" >
  5596. </productMenu>
  5597. <productMenu id="userGuide"
  5598. type="1"
  5599. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5600. size="3.41MB" >
  5601. </productMenu>
  5602. <productMenu id="connectGuide"
  5603. type="1"
  5604. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5605. size="1.12MB" >
  5606. </productMenu>
  5607. <productMenu id="volume"
  5608. type="11" >
  5609. </productMenu>
  5610. <productMenu id="battery"
  5611. type="1" >
  5612. </productMenu>
  5613. <productID id="3216"
  5614. />
  5615. <productGroupable type="0"
  5616. />
  5617. </product>
  5618. <product id="SRL_EXT"
  5619. name="SRL-EXT"
  5620. series="SRL"
  5621. latestVersion="1.7.1"
  5622. show = "1" >
  5623. <productMenu id="protocol"
  5624. type="2" >
  5625. </productMenu>
  5626. <productMenu id="alexa"
  5627. type="0" >
  5628. </productMenu>
  5629. <productMenu id="ota"
  5630. type="0" >
  5631. </productMenu>
  5632. <productMenu id="wa"
  5633. type="0" >
  5634. </productMenu>
  5635. <productMenu id="sip"
  5636. type="1" >
  5637. </productMenu>
  5638. <productMenu id="meshIntercom"
  5639. type="30" >
  5640. <productMenuType version="1.1.1"
  5641. type="20"
  5642. />
  5643. </productMenu>
  5644. <productMenu id="meshIntercom+"
  5645. type="3"
  5646. url="2" >
  5647. <productMenuType version="1.5.9"
  5648. type="2"
  5649. />
  5650. <productMenuURL version="1.1.1"
  5651. url="0"
  5652. />
  5653. </productMenu>
  5654. <productMenu id="waveIntercom"
  5655. type="1" >
  5656. <productMenuType version="1.6.9"
  5657. type="0"
  5658. />
  5659. </productMenu>
  5660. <productMenu id="bluetoothIntercom"
  5661. type="1" >
  5662. </productMenu>
  5663. <productMenu id="phone"
  5664. type="1" >
  5665. </productMenu>
  5666. <productMenu id="music"
  5667. type="1" >
  5668. </productMenu>
  5669. <productMenu id="fmradio"
  5670. type="1" >
  5671. </productMenu>
  5672. <productMenu id="deviceSetting"
  5673. type="1"
  5674. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5675. <productMenuURL version="1.5"
  5676. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5677. />
  5678. <productMenuURL version="1.1.1"
  5679. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5680. />
  5681. <productMenuURL version="1.0.3"
  5682. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5683. />
  5684. </productMenu>
  5685. <productMenu id="quickGuide"
  5686. type="0"
  5687. url=""
  5688. size="344KB" >
  5689. </productMenu>
  5690. <productMenu id="userGuide"
  5691. type="1"
  5692. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5693. size="3.41MB" >
  5694. </productMenu>
  5695. <productMenu id="connectGuide"
  5696. type="1"
  5697. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5698. size="1.12MB" >
  5699. </productMenu>
  5700. <productMenu id="volume"
  5701. type="11" >
  5702. </productMenu>
  5703. <productMenu id="battery"
  5704. type="1" >
  5705. </productMenu>
  5706. <productID id="3212"
  5707. />
  5708. <productGroupable type="0"
  5709. />
  5710. </product>
  5711. <product id="SRL2"
  5712. name="SRL2"
  5713. series="SRL"
  5714. latestVersion="1.0.9"
  5715. show = "1" >
  5716. <productMenu id="protocol"
  5717. type="0">
  5718. </productMenu>
  5719. <productMenu id="sip"
  5720. type="1" >
  5721. </productMenu>
  5722. <productMenu id="bluetoothIntercom"
  5723. type="1" >
  5724. </productMenu>
  5725. <productMenu id="intercomSetting"
  5726. type="1" >
  5727. </productMenu>
  5728. <productMenu id="phone"
  5729. type="2" >
  5730. </productMenu>
  5731. <productMenu id="fmradio"
  5732. type="3" >
  5733. </productMenu>
  5734. <productMenu id="deviceSetting"
  5735. type="1"
  5736. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5737. </productMenu>
  5738. <productMenu id="quickGuide"
  5739. type="1"
  5740. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5741. size="846KB" >
  5742. </productMenu>
  5743. <productMenu id="userGuide"
  5744. type="1"
  5745. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5746. size="1.18MB" >
  5747. </productMenu>
  5748. <productMenu id="connectGuide"
  5749. type="1"
  5750. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5751. size="1.12MB" >
  5752. </productMenu>
  5753. <productID id="4530"
  5754. />
  5755. <productGroupable type="1"
  5756. />
  5757. </product>
  5758. <product id="Neotec2"
  5759. name="SRL Neotec2"
  5760. series="SRL"
  5761. latestVersion="1.1.5"
  5762. show = "1" >
  5763. <productMenu id="protocol"
  5764. type="0">
  5765. </productMenu>
  5766. <productMenu id="sip"
  5767. type="1" >
  5768. </productMenu>
  5769. <productMenu id="bluetoothIntercom"
  5770. type="1" >
  5771. </productMenu>
  5772. <productMenu id="intercomSetting"
  5773. type="1" >
  5774. </productMenu>
  5775. <productMenu id="phone"
  5776. type="2" >
  5777. </productMenu>
  5778. <productMenu id="fmradio"
  5779. type="3" >
  5780. </productMenu>
  5781. <productMenu id="deviceSetting"
  5782. type="1"
  5783. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5784. </productMenu>
  5785. <productMenu id="quickGuide"
  5786. type="0"
  5787. url=""
  5788. size="796KB" >
  5789. </productMenu>
  5790. <productMenu id="userGuide"
  5791. type="1"
  5792. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5793. size="1.90MB" >
  5794. </productMenu>
  5795. <productMenu id="connectGuide"
  5796. type="1"
  5797. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5798. size="1.12MB" >
  5799. </productMenu>
  5800. <productID id="4510"
  5801. />
  5802. <productGroupable type="1"
  5803. />
  5804. </product>
  5805. <product id="MultiComNeo"
  5806. name="MultiCom Neo"
  5807. series="MultiCom"
  5808. latestVersion="1.0"
  5809. latestVersionVoicePrompt="1.6"
  5810. show = "-1" >
  5811. <productMenu id="protocol"
  5812. type="2" >
  5813. </productMenu>
  5814. <productMenu id="ota"
  5815. type="0" >
  5816. <otaPackages>
  5817. <package
  5818. url="https://api.sena.com/support/OTA/Motorcycles/MultiComNeo/MultiComNeo-v1.0-build0.img"
  5819. size="2945812"
  5820. />
  5821. </otaPackages>
  5822. </productMenu>
  5823. <productMenu id="meshIntercom+"
  5824. type="3"
  5825. url="2" >
  5826. </productMenu>
  5827. <productMenu id="waveIntercom"
  5828. type="1" >
  5829. </productMenu>
  5830. <productMenu id="phone"
  5831. type="1" >
  5832. </productMenu>
  5833. <productMenu id="music"
  5834. type="1" >
  5835. </productMenu>
  5836. <productMenu id="musicSharing"
  5837. type="0" >
  5838. </productMenu>
  5839. <productMenu id="deviceSetting"
  5840. type="1"
  5841. url="https://api.sena.com/support/SenaNeoApp/MultiComNeo/NS_MultiComNeo.xml" >
  5842. </productMenu>
  5843. <productMenu id="quickGuide"
  5844. type="0"
  5845. url=""
  5846. size="1.12MB" >
  5847. </productMenu>
  5848. <productMenu id="userGuide"
  5849. type="1"
  5850. url=""
  5851. size="2.0MB" >
  5852. </productMenu>
  5853. <productMenu id="videoGuide"
  5854. type="0"
  5855. url=""
  5856. size="3.41MB" >
  5857. </productMenu>
  5858. <productMenu id="connectGuide"
  5859. type="0"
  5860. url=""
  5861. size="1.12MB" >
  5862. </productMenu>
  5863. <productMenu id="volume"
  5864. type="12" >
  5865. </productMenu>
  5866. <productMenu id="volume+"
  5867. type="2"
  5868. url="0x2000" >
  5869. </productMenu>
  5870. <productMenu id="battery"
  5871. type="1" >
  5872. </productMenu>
  5873. <productID id="685F"
  5874. />
  5875. <productGroupable type="0"
  5876. />
  5877. </product>
  5878. <product id="SPIDERST2ANC"
  5879. name="SPIDER ST2 ANC"
  5880. series="SPIDER"
  5881. latestVersion="0.5.1"
  5882. latestVersionVoicePrompt="0.2"
  5883. latestVersionMesh="0.8"
  5884. show = "-1" >
  5885. <productMenu id="protocol"
  5886. type="2" >
  5887. </productMenu>
  5888. <productMenu id="ota"
  5889. type="0" >
  5890. <otaPackages>
  5891. <package
  5892. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5893. size="2945812"
  5894. />
  5895. </otaPackages>
  5896. </productMenu>
  5897. <productMenu id="wa"
  5898. type="0" >
  5899. </productMenu>
  5900. <productMenu id="led"
  5901. type="1" >
  5902. </productMenu>
  5903. <productMenu id="meshIntercom"
  5904. type="30" >
  5905. </productMenu>
  5906. <productMenu id="fmradio"
  5907. type="1" >
  5908. </productMenu>
  5909. <productMenu id="phone"
  5910. type="1" >
  5911. </productMenu>
  5912. <productMenu id="music"
  5913. type="1" >
  5914. </productMenu>
  5915. <productMenu id="musicSharing"
  5916. type="0" >
  5917. </productMenu>
  5918. <productMenu id="deviceSetting"
  5919. type="1"
  5920. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  5921. </productMenu>
  5922. <productMenu id="quickGuide"
  5923. type="1"
  5924. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5925. size="1.12MB" >
  5926. </productMenu>
  5927. <productMenu id="userGuide"
  5928. type="1"
  5929. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5930. size="2.0MB" >
  5931. </productMenu>
  5932. <productMenu id="videoGuide"
  5933. type="1"
  5934. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5935. size="3.41MB" >
  5936. </productMenu>
  5937. <productMenu id="volume"
  5938. type="12" >
  5939. </productMenu>
  5940. <productMenu id="battery"
  5941. type="1" >
  5942. </productMenu>
  5943. <productID id="6A00"
  5944. />
  5945. <productGroupable type="0"
  5946. />
  5947. </product>
  5948. <product id="SPIDER_ST1"
  5949. name="SPIDER ST1"
  5950. series="SPIDER"
  5951. latestVersion="2.5.3"
  5952. latestVersionVoicePrompt="1.6"
  5953. show = "1" >
  5954. <productMenu id="protocol"
  5955. type="2" >
  5956. </productMenu>
  5957. <productMenu id="alexa"
  5958. type="0" >
  5959. </productMenu>
  5960. <productMenu id="ota"
  5961. type="2" >
  5962. <productMenuType version="2.1.9"
  5963. type="0"
  5964. />
  5965. <otaPackages>
  5966. <package
  5967. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  5968. size="2945812"
  5969. />
  5970. </otaPackages>
  5971. </productMenu>
  5972. <productMenu id="wa"
  5973. type="0" >
  5974. </productMenu>
  5975. <productMenu id="meshIntercom"
  5976. type="30" >
  5977. <productMenuType version="2.1.1"
  5978. type="20"
  5979. />
  5980. </productMenu>
  5981. <productMenu id="meshIntercom+"
  5982. type="3"
  5983. url="2" >
  5984. <productMenuType version="2.2.9"
  5985. type="2"
  5986. />
  5987. <productMenuURL version="2.1.1"
  5988. url="0"
  5989. />
  5990. </productMenu>
  5991. <productMenu id="waveIntercom"
  5992. type="1" >
  5993. <productMenuType version="2.3.9"
  5994. type="0"
  5995. />
  5996. </productMenu>
  5997. <productMenu id="phone"
  5998. type="1" >
  5999. </productMenu>
  6000. <productMenu id="music"
  6001. type="1" >
  6002. </productMenu>
  6003. <productMenu id="musicSharing"
  6004. type="0" >
  6005. </productMenu>
  6006. <productMenu id="deviceSetting"
  6007. type="1"
  6008. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6009. <productMenuURL version="2.4.9"
  6010. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6011. />
  6012. <productMenuURL version="2.2.2"
  6013. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6014. />
  6015. <productMenuURL version="2.1.1"
  6016. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6017. />
  6018. </productMenu>
  6019. <productMenu id="quickGuide"
  6020. type="0"
  6021. url=""
  6022. size="1.12MB" >
  6023. </productMenu>
  6024. <productMenu id="userGuide"
  6025. type="1"
  6026. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  6027. size="2.0MB" >
  6028. </productMenu>
  6029. <productMenu id="videoGuide"
  6030. type="1"
  6031. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6032. size="3.41MB" >
  6033. </productMenu>
  6034. <productMenu id="connectGuide"
  6035. type="1"
  6036. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6037. size="1.12MB" >
  6038. </productMenu>
  6039. <productMenu id="volume"
  6040. type="12" >
  6041. </productMenu>
  6042. <productMenu id="volume+"
  6043. type="2"
  6044. url="0x2000" >
  6045. </productMenu>
  6046. <productMenu id="battery"
  6047. type="1" >
  6048. </productMenu>
  6049. <productID id="6800"
  6050. />
  6051. <productGroupable type="0"
  6052. />
  6053. </product>
  6054. <product id="SPIDER_ST1"
  6055. name="SPIDER ST1"
  6056. series="SPIDER"
  6057. latestVersion="1.2.2"
  6058. show = "-1" >
  6059. <productMenu id="protocol"
  6060. type="2" >
  6061. </productMenu>
  6062. <productMenu id="alexa"
  6063. type="0" >
  6064. </productMenu>
  6065. <productMenu id="ota"
  6066. type="0" >
  6067. </productMenu>
  6068. <productMenu id="wa"
  6069. type="0" >
  6070. </productMenu>
  6071. <productMenu id="meshIntercom"
  6072. type="20" >
  6073. </productMenu>
  6074. <productMenu id="phone"
  6075. type="1" >
  6076. </productMenu>
  6077. <productMenu id="music"
  6078. type="1" >
  6079. </productMenu>
  6080. <productMenu id="deviceSetting"
  6081. type="1"
  6082. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6083. </productMenu>
  6084. <productMenu id="quickGuide"
  6085. type="0"
  6086. url=""
  6087. size="1.12MB" >
  6088. </productMenu>
  6089. <productMenu id="userGuide"
  6090. type="1"
  6091. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  6092. size="2.0MB" >
  6093. </productMenu>
  6094. <productMenu id="videoGuide"
  6095. type="1"
  6096. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6097. size="3.41MB" >
  6098. </productMenu>
  6099. <productMenu id="volume"
  6100. type="13" >
  6101. <productMenuType version="1.1.6"
  6102. type="14"/>
  6103. </productMenu>
  6104. <productMenu id="battery"
  6105. type="1" >
  6106. </productMenu>
  6107. <productID id="6510"
  6108. />
  6109. <productGroupable type="0"
  6110. />
  6111. </product>
  6112. <product id="SPIDER_RT1"
  6113. name="SPIDER RT1"
  6114. series="SPIDER"
  6115. latestVersion="2.5.3"
  6116. latestVersionVoicePrompt="1.6"
  6117. show = "1" >
  6118. <productMenu id="protocol"
  6119. type="2" >
  6120. </productMenu>
  6121. <productMenu id="alexa"
  6122. type="0" >
  6123. </productMenu>
  6124. <productMenu id="ota"
  6125. type="2" >
  6126. <productMenuType version="2.1.9"
  6127. type="0"
  6128. />
  6129. <otaPackages>
  6130. <package
  6131. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  6132. size="2945812"
  6133. />
  6134. </otaPackages>
  6135. </productMenu>
  6136. <productMenu id="wa"
  6137. type="0" >
  6138. </productMenu>
  6139. <productMenu id="meshIntercom"
  6140. type="30" >
  6141. <productMenuType version="2.1.1"
  6142. type="20"
  6143. />
  6144. </productMenu>
  6145. <productMenu id="meshIntercom+"
  6146. type="3"
  6147. url="2" >
  6148. <productMenuType version="2.2.9"
  6149. type="2"
  6150. />
  6151. <productMenuURL version="2.1.1"
  6152. url="0"
  6153. />
  6154. </productMenu>
  6155. <productMenu id="waveIntercom"
  6156. type="1" >
  6157. <productMenuType version="2.3.9"
  6158. type="0"
  6159. />
  6160. </productMenu>
  6161. <productMenu id="phone"
  6162. type="1" >
  6163. </productMenu>
  6164. <productMenu id="music"
  6165. type="1" >
  6166. </productMenu>
  6167. <productMenu id="musicSharing"
  6168. type="0" >
  6169. </productMenu>
  6170. <productMenu id="deviceSetting"
  6171. type="1"
  6172. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6173. <productMenuURL version="2.4.9"
  6174. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6175. />
  6176. <productMenuURL version="2.2.2"
  6177. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6178. />
  6179. <productMenuURL version="2.1.1"
  6180. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6181. />
  6182. </productMenu>
  6183. <productMenu id="quickGuide"
  6184. type="0"
  6185. url=""
  6186. size="1.12MB" >
  6187. </productMenu>
  6188. <productMenu id="userGuide"
  6189. type="1"
  6190. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6191. size="2.0MB" >
  6192. </productMenu>
  6193. <productMenu id="videoGuide"
  6194. type="1"
  6195. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6196. size="3.41MB" >
  6197. </productMenu>
  6198. <productMenu id="connectGuide"
  6199. type="1"
  6200. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6201. size="1.12MB" >
  6202. </productMenu>
  6203. <productMenu id="volume"
  6204. type="12" >
  6205. </productMenu>
  6206. <productMenu id="volume+"
  6207. type="2"
  6208. url="0x2000" >
  6209. </productMenu>
  6210. <productMenu id="battery"
  6211. type="1" >
  6212. </productMenu>
  6213. <productID id="6810"
  6214. />
  6215. <productGroupable type="0"
  6216. />
  6217. </product>
  6218. <product id="SPIDER_RT1"
  6219. name="SPIDER RT1"
  6220. series="SPIDER"
  6221. latestVersion="1.2.2"
  6222. show = "-1" >
  6223. <productMenu id="protocol"
  6224. type="2" >
  6225. </productMenu>
  6226. <productMenu id="alexa"
  6227. type="0" >
  6228. </productMenu>
  6229. <productMenu id="ota"
  6230. type="0" >
  6231. </productMenu>
  6232. <productMenu id="wa"
  6233. type="0" >
  6234. </productMenu>
  6235. <productMenu id="meshIntercom"
  6236. type="20" >
  6237. </productMenu>
  6238. <productMenu id="phone"
  6239. type="1" >
  6240. </productMenu>
  6241. <productMenu id="music"
  6242. type="1" >
  6243. </productMenu>
  6244. <productMenu id="deviceSetting"
  6245. type="1"
  6246. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6247. </productMenu>
  6248. <productMenu id="quickGuide"
  6249. type="0"
  6250. url=""
  6251. size="1.32MB" >
  6252. </productMenu>
  6253. <productMenu id="userGuide"
  6254. type="1"
  6255. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6256. size="1.79MB" >
  6257. </productMenu>
  6258. <productMenu id="videoGuide"
  6259. type="1"
  6260. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6261. size="3.41MB" >
  6262. </productMenu>
  6263. <productMenu id="volume"
  6264. type="13" >
  6265. <productMenuType version="1.1.6"
  6266. type="14"/>
  6267. </productMenu>
  6268. <productMenu id="battery"
  6269. type="1" >
  6270. </productMenu>
  6271. <productID id="6500"
  6272. />
  6273. <productGroupable type="0"
  6274. />
  6275. </product>
  6276. <product id="30K"
  6277. name="30K"
  6278. series="30"
  6279. latestVersion="4.5.1"
  6280. show = "1" >
  6281. <productMenu id="protocol"
  6282. type="2" >
  6283. </productMenu>
  6284. <productMenu id="alexa"
  6285. type="0" >
  6286. </productMenu>
  6287. <productMenu id="wa"
  6288. type="1" >
  6289. </productMenu>
  6290. <productMenu id="sip"
  6291. type="1" >
  6292. </productMenu>
  6293. <productMenu id="meshIntercom"
  6294. type="30" >
  6295. <productMenuType version="4.0.4"
  6296. type="20"
  6297. />
  6298. </productMenu>
  6299. <productMenu id="meshIntercom+"
  6300. type="3"
  6301. url="2" >
  6302. <productMenuType version="4.3.9"
  6303. type="2"
  6304. />
  6305. <productMenuURL version="4.0.4"
  6306. url="0"
  6307. />
  6308. </productMenu>
  6309. <productMenu id="waveIntercom"
  6310. type="1" >
  6311. <productMenuType version="4.4.9"
  6312. type="0"
  6313. />
  6314. </productMenu>
  6315. <productMenu id="bluetoothIntercom"
  6316. type="1" >
  6317. </productMenu>
  6318. <productMenu id="phone"
  6319. type="1" >
  6320. </productMenu>
  6321. <productMenu id="music"
  6322. type="1" >
  6323. </productMenu>
  6324. <productMenu id="fmradio"
  6325. type="1" >
  6326. </productMenu>
  6327. <productMenu id="deviceSetting"
  6328. type="1"
  6329. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6330. <productMenuURL version="4.3"
  6331. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6332. />
  6333. <productMenuURL version="4.2"
  6334. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6335. />
  6336. <productMenuURL version="4.0.4"
  6337. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6338. />
  6339. </productMenu>
  6340. <productMenu id="quickGuide"
  6341. type="0"
  6342. url=""
  6343. size="934KB" >
  6344. </productMenu>
  6345. <productMenu id="userGuide"
  6346. type="1"
  6347. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6348. size="1.14MB" >
  6349. </productMenu>
  6350. <productMenu id="connectGuide"
  6351. type="1"
  6352. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6353. size="1.12MB" >
  6354. </productMenu>
  6355. <productMenu id="volume"
  6356. type="11" >
  6357. </productMenu>
  6358. <productMenu id="battery"
  6359. type="1" >
  6360. </productMenu>
  6361. <productID id="3211"
  6362. />
  6363. <productGroupable type="0"
  6364. />
  6365. </product>
  6366. <product id="30K"
  6367. name="30K"
  6368. series="30"
  6369. latestVersion="3.5"
  6370. show = "-1" >
  6371. <productMenu id="protocol"
  6372. type="1"
  6373. url="0">
  6374. </productMenu>
  6375. <productMenu id="wa"
  6376. type="7" >
  6377. </productMenu>
  6378. <productMenu id="sip"
  6379. type="1" >
  6380. </productMenu>
  6381. <productMenu id="meshIntercom"
  6382. type="20" >
  6383. <productMenuType version="2.9.9"
  6384. type="10"
  6385. />
  6386. </productMenu>
  6387. <productMenu id="meshIntercom+"
  6388. type="3"
  6389. url="2" >
  6390. <productMenuType version="3.4.9"
  6391. type="2"
  6392. />
  6393. <productMenuType version="2.9.9"
  6394. type="1"
  6395. />
  6396. <productMenuURL version="3.3.1"
  6397. url="0"
  6398. />
  6399. </productMenu>
  6400. <productMenu id="bluetoothIntercom"
  6401. type="1" >
  6402. </productMenu>
  6403. <productMenu id="phone"
  6404. type="1" >
  6405. </productMenu>
  6406. <productMenu id="music"
  6407. type="1" >
  6408. </productMenu>
  6409. <productMenu id="fmradio"
  6410. type="1" >
  6411. </productMenu>
  6412. <productMenu id="deviceSetting"
  6413. type="1"
  6414. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6415. <productMenuURL version="3.4.9"
  6416. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6417. />
  6418. <productMenuURL version="3.3.1"
  6419. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6420. />
  6421. <productMenuURL version="3.0.1"
  6422. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6423. />
  6424. <productMenuURL version="2.3.1"
  6425. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6426. />
  6427. <productMenuURL version="2.0"
  6428. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6429. />
  6430. <productMenuURL version="1.0.3"
  6431. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6432. />
  6433. </productMenu>
  6434. <productMenu id="quickGuide"
  6435. type="0"
  6436. url=""
  6437. size="1.06MB" >
  6438. </productMenu>
  6439. <productMenu id="userGuide"
  6440. type="1"
  6441. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6442. size="3.15MB" >
  6443. </productMenu>
  6444. <productMenu id="volume"
  6445. type="1" >
  6446. </productMenu>
  6447. <productID id="3110"
  6448. />
  6449. <productGroupable type="0"
  6450. />
  6451. </product>
  6452. <product id="FURY"
  6453. name="FURY"
  6454. series="Helmet"
  6455. latestVersion="1.0"
  6456. show = "-1" >
  6457. <productMenu id="protocol"
  6458. type="2" >
  6459. </productMenu>
  6460. <productMenu id="alexa"
  6461. type="0" >
  6462. </productMenu>
  6463. <productMenu id="ota"
  6464. type="0" >
  6465. </productMenu>
  6466. <productMenu id="wa"
  6467. type="0" >
  6468. </productMenu>
  6469. <productMenu id="meshIntercom"
  6470. type="20" >
  6471. </productMenu>
  6472. <productMenu id="phone"
  6473. type="1" >
  6474. </productMenu>
  6475. <productMenu id="music"
  6476. type="1" >
  6477. </productMenu>
  6478. <productMenu id="fmradio"
  6479. type="1" >
  6480. </productMenu>
  6481. <productMenu id="deviceSetting"
  6482. type="1"
  6483. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6484. </productMenu>
  6485. <productMenu id="quickGuide"
  6486. type="1"
  6487. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6488. size="1.12MB" >
  6489. </productMenu>
  6490. <productMenu id="userGuide"
  6491. type="1"
  6492. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6493. size="2.0MB" >
  6494. </productMenu>
  6495. <productMenu id="volume"
  6496. type="13" >
  6497. </productMenu>
  6498. <productMenu id="battery"
  6499. type="1" >
  6500. </productMenu>
  6501. <productID id="5552"
  6502. />
  6503. <productGroupable type="0"
  6504. />
  6505. </product>
  6506. <product id="MomentumM"
  6507. name="Momentum EVO"
  6508. series="Helmet"
  6509. latestVersion="2.1.2"
  6510. show = "1" >
  6511. <productMenu id="protocol"
  6512. type="1"
  6513. url="0">
  6514. </productMenu>
  6515. <productMenu id="wa"
  6516. type="3" >
  6517. </productMenu>
  6518. <productMenu id="sip"
  6519. type="1" >
  6520. </productMenu>
  6521. <productMenu id="meshIntercom"
  6522. type="20" >
  6523. <productMenuType version="1.9.9"
  6524. type="10"
  6525. />
  6526. </productMenu>
  6527. <productMenu id="bluetoothIntercom"
  6528. type="1" >
  6529. </productMenu>
  6530. <productMenu id="phone"
  6531. type="1" >
  6532. </productMenu>
  6533. <productMenu id="music"
  6534. type="1" >
  6535. </productMenu>
  6536. <productMenu id="fmradio"
  6537. type="1" >
  6538. </productMenu>
  6539. <productMenu id="deviceSetting"
  6540. type="1"
  6541. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6542. <productMenuURL version="1.0.1"
  6543. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6544. />
  6545. </productMenu>
  6546. <productMenu id="quickGuide"
  6547. type="1"
  6548. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6549. size="1.06MB" >
  6550. </productMenu>
  6551. <productMenu id="userGuide"
  6552. type="1"
  6553. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6554. size="3.15MB" >
  6555. </productMenu>
  6556. <productMenu id="connectGuide"
  6557. type="1"
  6558. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6559. size="1.12MB" >
  6560. </productMenu>
  6561. <productMenu id="volume"
  6562. type="2" >
  6563. </productMenu>
  6564. <productID id="3116"
  6565. />
  6566. <productGroupable type="0"
  6567. />
  6568. </product>
  6569. <product id="Momentum"
  6570. name="Momentum"
  6571. series="Helmet"
  6572. latestVersion="1.0.9"
  6573. show = "1" >
  6574. <productMenu id="protocol"
  6575. type="0">
  6576. </productMenu>
  6577. <productMenu id="sip"
  6578. type="1" >
  6579. </productMenu>
  6580. <productMenu id="bluetoothIntercom"
  6581. type="1" >
  6582. </productMenu>
  6583. <productMenu id="intercomSetting"
  6584. type="1" >
  6585. </productMenu>
  6586. <productMenu id="phone"
  6587. type="2" >
  6588. </productMenu>
  6589. <productMenu id="fmradio"
  6590. type="3" >
  6591. </productMenu>
  6592. <productMenu id="deviceSetting"
  6593. type="1"
  6594. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6595. </productMenu>
  6596. <productMenu id="quickGuide"
  6597. type="1"
  6598. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6599. size="796KB" >
  6600. </productMenu>
  6601. <productMenu id="userGuide"
  6602. type="1"
  6603. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6604. size="1.90MB" >
  6605. </productMenu>
  6606. <productMenu id="connectGuide"
  6607. type="1"
  6608. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6609. size="1.12MB" >
  6610. </productMenu>
  6611. <productID id="4310"
  6612. />
  6613. <productGroupable type="1"
  6614. />
  6615. </product>
  6616. <product id="Momentum_Pro"
  6617. name="Momentum Pro"
  6618. series="Helmet"
  6619. latestVersion="1.0.6"
  6620. show = "1" >
  6621. <productMenu id="protocol"
  6622. type="0">
  6623. </productMenu>
  6624. <productMenu id="sip"
  6625. type="1" >
  6626. </productMenu>
  6627. <productMenu id="bluetoothIntercom"
  6628. type="1" >
  6629. </productMenu>
  6630. <productMenu id="intercomSetting"
  6631. type="1" >
  6632. </productMenu>
  6633. <productMenu id="phone"
  6634. type="2" >
  6635. </productMenu>
  6636. <productMenu id="fmradio"
  6637. type="3" >
  6638. </productMenu>
  6639. <productMenu id="deviceSetting"
  6640. type="1"
  6641. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6642. </productMenu>
  6643. <productMenu id="quickGuide"
  6644. type="1"
  6645. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6646. size="796KB" >
  6647. </productMenu>
  6648. <productMenu id="userGuide"
  6649. type="1"
  6650. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6651. size="1.90MB" >
  6652. </productMenu>
  6653. <productMenu id="connectGuide"
  6654. type="1"
  6655. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6656. size="1.12MB" >
  6657. </productMenu>
  6658. <productID id="4330"
  6659. />
  6660. <productGroupable type="1"
  6661. />
  6662. </product>
  6663. <product id="Momentum_INC"
  6664. name="Momentum INC"
  6665. series="Helmet"
  6666. latestVersion="1.0.7"
  6667. show = "1" >
  6668. <productMenu id="protocol"
  6669. type="0">
  6670. </productMenu>
  6671. <productMenu id="sip"
  6672. type="1" >
  6673. </productMenu>
  6674. <productMenu id="bluetoothIntercom"
  6675. type="1" >
  6676. </productMenu>
  6677. <productMenu id="intercomSetting"
  6678. type="1" >
  6679. </productMenu>
  6680. <productMenu id="phone"
  6681. type="2" >
  6682. </productMenu>
  6683. <productMenu id="fmradio"
  6684. type="3" >
  6685. </productMenu>
  6686. <productMenu id="deviceSetting"
  6687. type="1"
  6688. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6689. </productMenu>
  6690. <productMenu id="quickGuide"
  6691. type="1"
  6692. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6693. size="794KB" >
  6694. </productMenu>
  6695. <productMenu id="userGuide"
  6696. type="1"
  6697. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6698. size="1.53MB" >
  6699. </productMenu>
  6700. <productMenu id="connectGuide"
  6701. type="1"
  6702. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6703. size="1.12MB" >
  6704. </productMenu>
  6705. <productID id="4410"
  6706. />
  6707. <productGroupable type="1"
  6708. />
  6709. </product>
  6710. <product id="Momentum_INCP"
  6711. name="Momentum INC Pro"
  6712. series="Helmet"
  6713. latestVersion="1.0.4"
  6714. show = "1" >
  6715. <productMenu id="protocol"
  6716. type="0">
  6717. </productMenu>
  6718. <productMenu id="sip"
  6719. type="1" >
  6720. </productMenu>
  6721. <productMenu id="bluetoothIntercom"
  6722. type="1" >
  6723. </productMenu>
  6724. <productMenu id="intercomSetting"
  6725. type="1" >
  6726. </productMenu>
  6727. <productMenu id="phone"
  6728. type="2" >
  6729. </productMenu>
  6730. <productMenu id="fmradio"
  6731. type="3" >
  6732. </productMenu>
  6733. <productMenu id="deviceSetting"
  6734. type="1"
  6735. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6736. </productMenu>
  6737. <productMenu id="quickGuide"
  6738. type="1"
  6739. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6740. size="794KB" >
  6741. </productMenu>
  6742. <productMenu id="userGuide"
  6743. type="1"
  6744. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6745. size="1.53MB" >
  6746. </productMenu>
  6747. <productMenu id="connectGuide"
  6748. type="1"
  6749. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6750. size="1.12MB" >
  6751. </productMenu>
  6752. <productID id="4430"
  6753. />
  6754. <productGroupable type="1"
  6755. />
  6756. </product>
  6757. <product id="Momentum_Lite"
  6758. name="Momentum Lite"
  6759. series="Helmet"
  6760. latestVersion="2.0.3"
  6761. show = "1" >
  6762. <productMenu id="protocol"
  6763. type="0">
  6764. </productMenu>
  6765. <productMenu id="sip"
  6766. type="1" >
  6767. </productMenu>
  6768. <productMenu id="bluetoothIntercom"
  6769. type="1" >
  6770. </productMenu>
  6771. <productMenu id="phone"
  6772. type="2" >
  6773. </productMenu>
  6774. <productMenu id="fmradio"
  6775. type="3" >
  6776. </productMenu>
  6777. <productMenu id="deviceSetting"
  6778. type="1"
  6779. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6780. <productMenuURL version="1.1"
  6781. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6782. />
  6783. </productMenu>
  6784. <productMenu id="quickGuide"
  6785. type="1"
  6786. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6787. size="790KB" >
  6788. </productMenu>
  6789. <productMenu id="userGuide"
  6790. type="1"
  6791. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6792. size="1.42MB" >
  6793. </productMenu>
  6794. <productMenu id="connectGuide"
  6795. type="1"
  6796. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6797. size="1.12MB" >
  6798. </productMenu>
  6799. <productID id="5526"
  6800. />
  6801. <productGroupable type="0"
  6802. />
  6803. </product>
  6804. <product id="OUTRUSHM"
  6805. name="OUTRUSH M"
  6806. series="Helmet"
  6807. latestVersion="1.0"
  6808. show = "-1" >
  6809. <productMenu id="protocol"
  6810. type="2" >
  6811. </productMenu>
  6812. <productMenu id="alexa"
  6813. type="0" >
  6814. </productMenu>
  6815. <productMenu id="ota"
  6816. type="0" >
  6817. </productMenu>
  6818. <productMenu id="wa"
  6819. type="0" >
  6820. </productMenu>
  6821. <productMenu id="meshIntercom"
  6822. type="30" >
  6823. </productMenu>
  6824. <productMenu id="phone"
  6825. type="1" >
  6826. </productMenu>
  6827. <productMenu id="music"
  6828. type="1" >
  6829. </productMenu>
  6830. <productMenu id="fmradio"
  6831. type="1" >
  6832. </productMenu>
  6833. <productMenu id="deviceSetting"
  6834. type="1"
  6835. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6836. </productMenu>
  6837. <productMenu id="quickGuide"
  6838. type="1"
  6839. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6840. size="1.12MB" >
  6841. </productMenu>
  6842. <productMenu id="userGuide"
  6843. type="1"
  6844. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6845. size="2.0MB" >
  6846. </productMenu>
  6847. <productMenu id="volume"
  6848. type="13" >
  6849. </productMenu>
  6850. <productMenu id="battery"
  6851. type="1" >
  6852. </productMenu>
  6853. <productID id="5600"
  6854. />
  6855. <productGroupable type="0"
  6856. />
  6857. </product>
  6858. <product id="ProRideEVO"
  6859. name="ProRide EVO"
  6860. series="Helmet"
  6861. latestVersion="1.1.2"
  6862. show = "1" >
  6863. <productMenu id="protocol"
  6864. type="0">
  6865. </productMenu>
  6866. <productMenu id="sip"
  6867. type="1" >
  6868. </productMenu>
  6869. <productMenu id="bluetoothIntercom"
  6870. type="1" >
  6871. </productMenu>
  6872. <productMenu id="phone"
  6873. type="2" >
  6874. </productMenu>
  6875. <productMenu id="fmradio"
  6876. type="3" >
  6877. </productMenu>
  6878. <productMenu id="deviceSetting"
  6879. type="1"
  6880. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6881. </productMenu>
  6882. <productMenu id="userGuide"
  6883. type="1"
  6884. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6885. size="778KB" >
  6886. </productMenu>
  6887. <productMenu id="connectGuide"
  6888. type="1"
  6889. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6890. size="1.12MB" >
  6891. </productMenu>
  6892. <productID id="5426"
  6893. />
  6894. <productGroupable type="0"
  6895. />
  6896. </product>
  6897. <product id="OUTRUSHR"
  6898. name="OUTRUSH R"
  6899. series="Helmet"
  6900. latestVersion="2.1"
  6901. show = "1" >
  6902. <productMenu id="protocol"
  6903. type="3" >
  6904. </productMenu>
  6905. <productMenu id="sip"
  6906. type="1" >
  6907. </productMenu>
  6908. <productMenu id="bluetoothIntercom"
  6909. type="1" >
  6910. </productMenu>
  6911. <productMenu id="phone"
  6912. type="1" >
  6913. </productMenu>
  6914. <productMenu id="fmradio"
  6915. type="0" >
  6916. </productMenu>
  6917. <productMenu id="deviceSetting"
  6918. type="1"
  6919. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6920. </productMenu>
  6921. <productMenu id="userGuide"
  6922. type="1"
  6923. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6924. size="1.14MB" >
  6925. </productMenu>
  6926. <productMenu id="connectGuide"
  6927. type="1"
  6928. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6929. size="1.12MB" >
  6930. </productMenu>
  6931. <productID id="5440"
  6932. />
  6933. <productGroupable type="0"
  6934. />
  6935. </product>
  6936. <product id="OUTRUSHR"
  6937. name="OUTRUSH R"
  6938. series="Helmet"
  6939. latestVersion="1.1.4"
  6940. show = "-1" >
  6941. <productMenu id="protocol"
  6942. type="0">
  6943. </productMenu>
  6944. <productMenu id="sip"
  6945. type="1" >
  6946. </productMenu>
  6947. <productMenu id="bluetoothIntercom"
  6948. type="1" >
  6949. </productMenu>
  6950. <productMenu id="phone"
  6951. type="2" >
  6952. </productMenu>
  6953. <productMenu id="fmradio"
  6954. type="3" >
  6955. </productMenu>
  6956. <productMenu id="deviceSetting"
  6957. type="1"
  6958. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6959. </productMenu>
  6960. <productMenu id="userGuide"
  6961. type="1"
  6962. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6963. size="660KB" >
  6964. </productMenu>
  6965. <productMenu id="connectGuide"
  6966. type="1"
  6967. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6968. size="1.12MB" >
  6969. </productMenu>
  6970. <productID id="5424"
  6971. />
  6972. <productGroupable type="0"
  6973. />
  6974. </product>
  6975. <product id="OUTSTARS"
  6976. name="OUTSTAR S"
  6977. series="Helmet"
  6978. latestVersion="2.0.1"
  6979. show = "-1" >
  6980. <productMenu id="protocol"
  6981. type="3" >
  6982. </productMenu>
  6983. <productMenu id="sip"
  6984. type="1" >
  6985. </productMenu>
  6986. <productMenu id="bluetoothIntercom"
  6987. type="1" >
  6988. </productMenu>
  6989. <productMenu id="phone"
  6990. type="1" >
  6991. </productMenu>
  6992. <productMenu id="fmradio"
  6993. type="0" >
  6994. </productMenu>
  6995. <productMenu id="deviceSetting"
  6996. type="1"
  6997. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6998. </productMenu>
  6999. <productMenu id="userGuide"
  7000. type="0"
  7001. url=""
  7002. size="1.14MB" >
  7003. </productMenu>
  7004. <productID id="5443"
  7005. />
  7006. <productGroupable type="0"
  7007. />
  7008. </product>
  7009. <product id="OUTSTARS"
  7010. name="OUTSTAR S"
  7011. series="Helmet"
  7012. latestVersion="1.1.4"
  7013. show = "1" >
  7014. <productMenu id="protocol"
  7015. type="0">
  7016. </productMenu>
  7017. <productMenu id="sip"
  7018. type="1" >
  7019. </productMenu>
  7020. <productMenu id="bluetoothIntercom"
  7021. type="1" >
  7022. </productMenu>
  7023. <productMenu id="phone"
  7024. type="2" >
  7025. </productMenu>
  7026. <productMenu id="fmradio"
  7027. type="3" >
  7028. </productMenu>
  7029. <productMenu id="deviceSetting"
  7030. type="1"
  7031. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7032. </productMenu>
  7033. <productMenu id="quickGuide"
  7034. type="1"
  7035. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7036. size="643KB" >
  7037. </productMenu>
  7038. <productMenu id="userGuide"
  7039. type="1"
  7040. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7041. size="1.15MB" >
  7042. </productMenu>
  7043. <productMenu id="connectGuide"
  7044. type="1"
  7045. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7046. size="1.12MB" >
  7047. </productMenu>
  7048. <productID id="5428"
  7049. />
  7050. <productGroupable type="0"
  7051. />
  7052. </product>
  7053. <product id="OUTRIDE"
  7054. name="OUTRIDE"
  7055. series="Helmet"
  7056. latestVersion="1.0.1"
  7057. show = "1" >
  7058. <productMenu id="protocol"
  7059. type="0">
  7060. </productMenu>
  7061. <productMenu id="sip"
  7062. type="1" >
  7063. </productMenu>
  7064. <productMenu id="bluetoothIntercom"
  7065. type="1" >
  7066. </productMenu>
  7067. <productMenu id="phone"
  7068. type="2" >
  7069. </productMenu>
  7070. <productMenu id="fmradio"
  7071. type="3" >
  7072. </productMenu>
  7073. <productMenu id="deviceSetting"
  7074. type="1"
  7075. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7076. </productMenu>
  7077. <productMenu id="quickGuide"
  7078. type="1"
  7079. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7080. size="643KB" >
  7081. </productMenu>
  7082. <productMenu id="userGuide"
  7083. type="1"
  7084. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7085. size="660KB" >
  7086. </productMenu>
  7087. <productMenu id="connectGuide"
  7088. type="1"
  7089. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7090. size="1.12MB" >
  7091. </productMenu>
  7092. <productID id="5432"
  7093. />
  7094. <productGroupable type="0"
  7095. />
  7096. </product>
  7097. <product id="OUTFORCE"
  7098. name="OUTFORCE"
  7099. series="Helmet"
  7100. latestVersion="1.0.1"
  7101. show = "1" >
  7102. <productMenu id="protocol"
  7103. type="0">
  7104. </productMenu>
  7105. <productMenu id="sip"
  7106. type="1" >
  7107. </productMenu>
  7108. <productMenu id="bluetoothIntercom"
  7109. type="1" >
  7110. </productMenu>
  7111. <productMenu id="phone"
  7112. type="2" >
  7113. </productMenu>
  7114. <productMenu id="fmradio"
  7115. type="3" >
  7116. </productMenu>
  7117. <productMenu id="deviceSetting"
  7118. type="1"
  7119. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7120. </productMenu>
  7121. <productMenu id="quickGuide"
  7122. type="1"
  7123. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7124. size="643KB" >
  7125. </productMenu>
  7126. <productMenu id="userGuide"
  7127. type="1"
  7128. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7129. size="660KB" >
  7130. </productMenu>
  7131. <productMenu id="connectGuide"
  7132. type="1"
  7133. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7134. size="1.12MB" >
  7135. </productMenu>
  7136. <productID id="5430"
  7137. />
  7138. <productGroupable type="0"
  7139. />
  7140. </product>
  7141. <product id="Rumba"
  7142. name="Rumba"
  7143. series="30"
  7144. latestVersion="2.0"
  7145. show = "-1" >
  7146. <productMenu id="protocol"
  7147. type="3" >
  7148. </productMenu>
  7149. <productMenu id="sip"
  7150. type="1" >
  7151. </productMenu>
  7152. <productMenu id="bluetoothIntercom"
  7153. type="1" >
  7154. </productMenu>
  7155. <productMenu id="deviceSetting"
  7156. type="1"
  7157. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  7158. </productMenu>
  7159. <productMenu id="quickGuide"
  7160. type="1"
  7161. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  7162. size="344KB" >
  7163. </productMenu>
  7164. <productMenu id="userGuide"
  7165. type="1"
  7166. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  7167. size="1.14MB" >
  7168. </productMenu>
  7169. <productID id="6322"
  7170. />
  7171. <productGroupable type="0"
  7172. />
  7173. </product>
  7174. <product id="Savage"
  7175. name="Savage"
  7176. series="Helmet"
  7177. latestVersion="1.2.2"
  7178. show = "1" >
  7179. <productMenu id="protocol"
  7180. type="0">
  7181. </productMenu>
  7182. <productMenu id="sip"
  7183. type="1" >
  7184. </productMenu>
  7185. <productMenu id="bluetoothIntercom"
  7186. type="1" >
  7187. </productMenu>
  7188. <productMenu id="phone"
  7189. type="2" >
  7190. </productMenu>
  7191. <productMenu id="fmradio"
  7192. type="3" >
  7193. </productMenu>
  7194. <productMenu id="deviceSetting"
  7195. type="1"
  7196. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7197. <productMenuURL version="1.9"
  7198. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7199. />
  7200. <productMenuURL version="1.1"
  7201. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7202. />
  7203. </productMenu>
  7204. <productMenu id="quickGuide"
  7205. type="1"
  7206. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7207. size="796KB" >
  7208. </productMenu>
  7209. <productMenu id="userGuide"
  7210. type="1"
  7211. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7212. size="910KB" >
  7213. </productMenu>
  7214. <productMenu id="connectGuide"
  7215. type="1"
  7216. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7217. size="1.12MB" >
  7218. </productMenu>
  7219. <productID id="5550"
  7220. />
  7221. <productGroupable type="0"
  7222. />
  7223. </product>
  7224. <product id="RECON"
  7225. name="RECON"
  7226. series="Helmet"
  7227. latestVersion="1.0"
  7228. latestVersionVoicePrompt="1.8"
  7229. show = "-1" >
  7230. <productMenu id="protocol"
  7231. type="2" >
  7232. </productMenu>
  7233. <productMenu id="ota"
  7234. type="2" >
  7235. <otaLanguages>
  7236. <otaLanguage
  7237. id="0"
  7238. name="English"
  7239. package="0"
  7240. />
  7241. <otaLanguage
  7242. id="0"
  7243. name="French"
  7244. package="1"
  7245. />
  7246. <otaLanguage
  7247. id="0"
  7248. name="Spanish"
  7249. package="2"
  7250. />
  7251. <otaLanguage
  7252. id="0"
  7253. name="Italian"
  7254. package="3"
  7255. />
  7256. <otaLanguage
  7257. id="0"
  7258. name="German"
  7259. package="4"
  7260. />
  7261. <otaLanguage
  7262. id="0"
  7263. name="Dutch"
  7264. package="5"
  7265. />
  7266. <otaLanguage
  7267. id="0"
  7268. name="Russian"
  7269. package="6"
  7270. />
  7271. <otaLanguage
  7272. id="0"
  7273. name="Chinese"
  7274. package="7"
  7275. />
  7276. <otaLanguage
  7277. id="0"
  7278. name="Korean"
  7279. package="8"
  7280. />
  7281. <otaLanguage
  7282. id="0"
  7283. name="Japanese"
  7284. package="9"
  7285. />
  7286. <otaLanguage
  7287. id="0"
  7288. name="Finnish"
  7289. package="10"
  7290. />
  7291. <otaLanguage
  7292. id="0"
  7293. name="Polish"
  7294. package="11"
  7295. />
  7296. </otaLanguages>
  7297. <otaPackages>
  7298. <package
  7299. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4.img"
  7300. size="5183988"
  7301. />
  7302. <package
  7303. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fr-FR.img"
  7304. size="5183988"
  7305. />
  7306. <package
  7307. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-es-ES.img"
  7308. size="5183988"
  7309. />
  7310. <package
  7311. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-it-IT.img"
  7312. size="5183988"
  7313. />
  7314. <package
  7315. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-de-DE.img"
  7316. size="5183988"
  7317. />
  7318. <package
  7319. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-nl-NL.img"
  7320. size="5183988"
  7321. />
  7322. <package
  7323. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ru-RU.img"
  7324. size="5183988"
  7325. />
  7326. <package
  7327. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-cmn-CN.img"
  7328. size="5183988"
  7329. />
  7330. <package
  7331. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ko-KR.img"
  7332. size="5183988"
  7333. />
  7334. <package
  7335. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ja-JP.img"
  7336. size="5183988"
  7337. />
  7338. <package
  7339. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fi-FI.img"
  7340. size="5183988"
  7341. />
  7342. <package
  7343. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-pl-PL.img"
  7344. size="5183988"
  7345. />
  7346. </otaPackages>
  7347. </productMenu>
  7348. <productMenu id="wa"
  7349. type="0" >
  7350. </productMenu>
  7351. <productMenu id="led"
  7352. type="5" >
  7353. </productMenu>
  7354. <productMenu id="led+"
  7355. type="2"
  7356. url="1" >
  7357. </productMenu>
  7358. <productMenu id="meshIntercom+"
  7359. type="3"
  7360. url="2" >
  7361. </productMenu>
  7362. <productMenu id="waveIntercom"
  7363. type="1" >
  7364. </productMenu>
  7365. <productMenu id="fmradio"
  7366. type="0" >
  7367. </productMenu>
  7368. <productMenu id="phone"
  7369. type="1" >
  7370. </productMenu>
  7371. <productMenu id="music"
  7372. type="1" >
  7373. </productMenu>
  7374. <productMenu id="musicSharing"
  7375. type="0" >
  7376. </productMenu>
  7377. <productMenu id="deviceSetting"
  7378. type="1"
  7379. url="https://api.sena.com/support/SenaNeoApp/RECON/NS_RECON_01.xml" >
  7380. </productMenu>
  7381. <productMenu id="quickGuide"
  7382. type="0"
  7383. url=""
  7384. size="1.12MB" >
  7385. </productMenu>
  7386. <productMenu id="userGuide"
  7387. type="1"
  7388. url=""
  7389. size="2.28MB" >
  7390. </productMenu>
  7391. <productMenu id="videoGuide"
  7392. type="0"
  7393. url=""
  7394. size="3.41MB" >
  7395. </productMenu>
  7396. <productMenu id="volume"
  7397. type="16" >
  7398. </productMenu>
  7399. <productMenu id="volume+"
  7400. type="2"
  7401. url="0x6004" >
  7402. </productMenu>
  7403. <productMenu id="battery"
  7404. type="1" >
  7405. </productMenu>
  7406. <productID id="6A1D"
  7407. />
  7408. <productGroupable type="0"
  7409. />
  7410. </product>
  7411. <product id="SPECTER"
  7412. name="SPECTER"
  7413. series="Helmet"
  7414. latestVersion="1.0.9"
  7415. latestVersionVoicePrompt="1.7"
  7416. show = "1" >
  7417. <productMenu id="protocol"
  7418. type="2" >
  7419. </productMenu>
  7420. <productMenu id="ota"
  7421. type="2" >
  7422. <otaLanguages>
  7423. <otaLanguage
  7424. id="0"
  7425. name="English"
  7426. package="0"
  7427. />
  7428. <otaLanguage
  7429. id="0"
  7430. name="French"
  7431. package="1"
  7432. />
  7433. <otaLanguage
  7434. id="0"
  7435. name="Spanish"
  7436. package="2"
  7437. />
  7438. <otaLanguage
  7439. id="0"
  7440. name="Italian"
  7441. package="3"
  7442. />
  7443. <otaLanguage
  7444. id="0"
  7445. name="German"
  7446. package="4"
  7447. />
  7448. <otaLanguage
  7449. id="0"
  7450. name="Dutch"
  7451. package="5"
  7452. />
  7453. <otaLanguage
  7454. id="0"
  7455. name="Russian"
  7456. package="6"
  7457. />
  7458. <otaLanguage
  7459. id="0"
  7460. name="Chinese"
  7461. package="7"
  7462. />
  7463. <otaLanguage
  7464. id="0"
  7465. name="Korean"
  7466. package="8"
  7467. />
  7468. <otaLanguage
  7469. id="0"
  7470. name="Japanese"
  7471. package="9"
  7472. />
  7473. <otaLanguage
  7474. id="0"
  7475. name="Finnish"
  7476. package="10"
  7477. />
  7478. <otaLanguage
  7479. id="0"
  7480. name="Polish"
  7481. package="11"
  7482. />
  7483. </otaLanguages>
  7484. <otaPackages>
  7485. <package
  7486. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0.img"
  7487. size="5183988"
  7488. />
  7489. <package
  7490. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fr-FR.img"
  7491. size="5183988"
  7492. />
  7493. <package
  7494. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-es-ES.img"
  7495. size="5183988"
  7496. />
  7497. <package
  7498. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-it-IT.img"
  7499. size="5183988"
  7500. />
  7501. <package
  7502. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-de-DE.img"
  7503. size="5183988"
  7504. />
  7505. <package
  7506. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-nl-NL.img"
  7507. size="5183988"
  7508. />
  7509. <package
  7510. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ru-RU.img"
  7511. size="5183988"
  7512. />
  7513. <package
  7514. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-cmn-CN.img"
  7515. size="5183988"
  7516. />
  7517. <package
  7518. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ko-KR.img"
  7519. size="5183988"
  7520. />
  7521. <package
  7522. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ja-JP.img"
  7523. size="5183988"
  7524. />
  7525. <package
  7526. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fi-FI.img"
  7527. size="5183988"
  7528. />
  7529. <package
  7530. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-pl-PL.img"
  7531. size="5183988"
  7532. />
  7533. </otaPackages>
  7534. </productMenu>
  7535. <productMenu id="wa"
  7536. type="0" >
  7537. </productMenu>
  7538. <productMenu id="led"
  7539. type="5" >
  7540. </productMenu>
  7541. <productMenu id="led+"
  7542. type="2"
  7543. url="1" >
  7544. </productMenu>
  7545. <productMenu id="meshIntercom+"
  7546. type="3"
  7547. url="2" >
  7548. </productMenu>
  7549. <productMenu id="waveIntercom"
  7550. type="1" >
  7551. </productMenu>
  7552. <productMenu id="fmradio"
  7553. type="0" >
  7554. </productMenu>
  7555. <productMenu id="phone"
  7556. type="1" >
  7557. </productMenu>
  7558. <productMenu id="music"
  7559. type="1" >
  7560. </productMenu>
  7561. <productMenu id="musicSharing"
  7562. type="0" >
  7563. </productMenu>
  7564. <productMenu id="deviceSetting"
  7565. type="1"
  7566. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_02.xml" >
  7567. <productMenuURL version="1.0.10"
  7568. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml"
  7569. />
  7570. <productMenuURL version="1.0.4"
  7571. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7572. />
  7573. </productMenu>
  7574. <productMenu id="quickGuide"
  7575. type="0"
  7576. url=""
  7577. size="1.12MB" >
  7578. </productMenu>
  7579. <productMenu id="userGuide"
  7580. type="1"
  7581. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7582. size="2.0MB" >
  7583. </productMenu>
  7584. <productMenu id="videoGuide"
  7585. type="0"
  7586. url=""
  7587. size="3.41MB" >
  7588. </productMenu>
  7589. <productMenu id="connectGuide"
  7590. type="1"
  7591. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_specter.json"
  7592. size="1.12MB" >
  7593. </productMenu>
  7594. <productMenu id="volume"
  7595. type="16" >
  7596. </productMenu>
  7597. <productMenu id="volume+"
  7598. type="2"
  7599. url="0x6004" >
  7600. </productMenu>
  7601. <productMenu id="battery"
  7602. type="1" >
  7603. </productMenu>
  7604. <productID id="6A11"
  7605. />
  7606. <productGroupable type="0"
  7607. />
  7608. </product>
  7609. <product id="SPECTER"
  7610. name="SPECTER"
  7611. series="Helmet"
  7612. latestVersion="1.0.9"
  7613. latestVersionVoicePrompt="1.7"
  7614. show = "-1" >
  7615. <productMenu id="protocol"
  7616. type="2" >
  7617. </productMenu>
  7618. <productMenu id="ota"
  7619. type="2" >
  7620. <otaLanguages>
  7621. <otaLanguage
  7622. id="0"
  7623. name="English"
  7624. package="0"
  7625. />
  7626. <otaLanguage
  7627. id="0"
  7628. name="French"
  7629. package="1"
  7630. />
  7631. <otaLanguage
  7632. id="0"
  7633. name="Spanish"
  7634. package="2"
  7635. />
  7636. <otaLanguage
  7637. id="0"
  7638. name="Italian"
  7639. package="3"
  7640. />
  7641. <otaLanguage
  7642. id="0"
  7643. name="German"
  7644. package="4"
  7645. />
  7646. <otaLanguage
  7647. id="0"
  7648. name="Dutch"
  7649. package="5"
  7650. />
  7651. <otaLanguage
  7652. id="0"
  7653. name="Russian"
  7654. package="6"
  7655. />
  7656. <otaLanguage
  7657. id="0"
  7658. name="Chinese"
  7659. package="7"
  7660. />
  7661. <otaLanguage
  7662. id="0"
  7663. name="Korean"
  7664. package="8"
  7665. />
  7666. <otaLanguage
  7667. id="0"
  7668. name="Japanese"
  7669. package="9"
  7670. />
  7671. <otaLanguage
  7672. id="0"
  7673. name="Finnish"
  7674. package="10"
  7675. />
  7676. <otaLanguage
  7677. id="0"
  7678. name="Polish"
  7679. package="11"
  7680. />
  7681. </otaLanguages>
  7682. <otaPackages>
  7683. <package
  7684. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0.img"
  7685. size="5183988"
  7686. />
  7687. <package
  7688. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fr-FR.img"
  7689. size="5183988"
  7690. />
  7691. <package
  7692. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-es-ES.img"
  7693. size="5183988"
  7694. />
  7695. <package
  7696. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-it-IT.img"
  7697. size="5183988"
  7698. />
  7699. <package
  7700. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-de-DE.img"
  7701. size="5183988"
  7702. />
  7703. <package
  7704. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-nl-NL.img"
  7705. size="5183988"
  7706. />
  7707. <package
  7708. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ru-RU.img"
  7709. size="5183988"
  7710. />
  7711. <package
  7712. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-cmn-CN.img"
  7713. size="5183988"
  7714. />
  7715. <package
  7716. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ko-KR.img"
  7717. size="5183988"
  7718. />
  7719. <package
  7720. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ja-JP.img"
  7721. size="5183988"
  7722. />
  7723. <package
  7724. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fi-FI.img"
  7725. size="5183988"
  7726. />
  7727. <package
  7728. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-pl-PL.img"
  7729. size="5183988"
  7730. />
  7731. </otaPackages>
  7732. </productMenu>
  7733. <productMenu id="wa"
  7734. type="0" >
  7735. </productMenu>
  7736. <productMenu id="led"
  7737. type="5" >
  7738. </productMenu>
  7739. <productMenu id="led+"
  7740. type="2"
  7741. url="1" >
  7742. </productMenu>
  7743. <productMenu id="meshIntercom+"
  7744. type="3"
  7745. url="2" >
  7746. </productMenu>
  7747. <productMenu id="waveIntercom"
  7748. type="1" >
  7749. </productMenu>
  7750. <productMenu id="fmradio"
  7751. type="0" >
  7752. </productMenu>
  7753. <productMenu id="phone"
  7754. type="1" >
  7755. </productMenu>
  7756. <productMenu id="music"
  7757. type="1" >
  7758. </productMenu>
  7759. <productMenu id="musicSharing"
  7760. type="0" >
  7761. </productMenu>
  7762. <productMenu id="deviceSetting"
  7763. type="1"
  7764. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_02.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7765. <productMenuURL version="1.0.10"
  7766. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml"
  7767. />
  7768. <productMenuURL version="1.0.4"
  7769. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7770. />
  7771. <productMenuURL version="1.0"
  7772. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7773. />
  7774. </productMenu>
  7775. <productMenu id="quickGuide"
  7776. type="0"
  7777. url=""
  7778. size="1.12MB" >
  7779. </productMenu>
  7780. <productMenu id="userGuide"
  7781. type="1"
  7782. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7783. size="2.0MB" >
  7784. </productMenu>
  7785. <productMenu id="videoGuide"
  7786. type="0"
  7787. url=""
  7788. size="3.41MB" >
  7789. </productMenu>
  7790. <productMenu id="connectGuide"
  7791. type="1"
  7792. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_specter.json"
  7793. size="1.12MB" >
  7794. </productMenu>
  7795. <productMenu id="volume"
  7796. type="16" >
  7797. </productMenu>
  7798. <productMenu id="volume+"
  7799. type="2"
  7800. url="0x6004" >
  7801. </productMenu>
  7802. <productMenu id="battery"
  7803. type="1" >
  7804. </productMenu>
  7805. <productID id="6A0A"
  7806. />
  7807. <productGroupable type="0"
  7808. />
  7809. </product>
  7810. <product id="OUTLANDER"
  7811. name="OUTLANDER"
  7812. series="Helmet"
  7813. latestVersion="1.0.9"
  7814. latestVersionVoicePrompt="1.7"
  7815. show = "1" >
  7816. <productMenu id="protocol"
  7817. type="2" >
  7818. </productMenu>
  7819. <productMenu id="ota"
  7820. type="2" >
  7821. <otaLanguages>
  7822. <otaLanguage
  7823. id="0"
  7824. name="English"
  7825. package="0"
  7826. />
  7827. <otaLanguage
  7828. id="0"
  7829. name="French"
  7830. package="1"
  7831. />
  7832. <otaLanguage
  7833. id="0"
  7834. name="Spanish"
  7835. package="2"
  7836. />
  7837. <otaLanguage
  7838. id="0"
  7839. name="Italian"
  7840. package="3"
  7841. />
  7842. <otaLanguage
  7843. id="0"
  7844. name="German"
  7845. package="4"
  7846. />
  7847. <otaLanguage
  7848. id="0"
  7849. name="Dutch"
  7850. package="5"
  7851. />
  7852. <otaLanguage
  7853. id="0"
  7854. name="Russian"
  7855. package="6"
  7856. />
  7857. <otaLanguage
  7858. id="0"
  7859. name="Chinese"
  7860. package="7"
  7861. />
  7862. <otaLanguage
  7863. id="0"
  7864. name="Korean"
  7865. package="8"
  7866. />
  7867. <otaLanguage
  7868. id="0"
  7869. name="Japanese"
  7870. package="9"
  7871. />
  7872. <otaLanguage
  7873. id="0"
  7874. name="Finnish"
  7875. package="10"
  7876. />
  7877. <otaLanguage
  7878. id="0"
  7879. name="Polish"
  7880. package="11"
  7881. />
  7882. </otaLanguages>
  7883. <otaPackages>
  7884. <package
  7885. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0.img"
  7886. size="5183988"
  7887. />
  7888. <package
  7889. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fr-FR.img"
  7890. size="5183988"
  7891. />
  7892. <package
  7893. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-es-ES.img"
  7894. size="5183988"
  7895. />
  7896. <package
  7897. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-it-IT.img"
  7898. size="5183988"
  7899. />
  7900. <package
  7901. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-de-DE.img"
  7902. size="5183988"
  7903. />
  7904. <package
  7905. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-nl-NL.img"
  7906. size="5183988"
  7907. />
  7908. <package
  7909. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ru-RU.img"
  7910. size="5183988"
  7911. />
  7912. <package
  7913. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-cmn-CN.img"
  7914. size="5183988"
  7915. />
  7916. <package
  7917. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ko-KR.img"
  7918. size="5183988"
  7919. />
  7920. <package
  7921. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ja-JP.img"
  7922. size="5183988"
  7923. />
  7924. <package
  7925. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fi-FI.img"
  7926. size="5183988"
  7927. />
  7928. <package
  7929. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-pl-PL.img"
  7930. size="5183988"
  7931. />
  7932. </otaPackages>
  7933. </productMenu>
  7934. <productMenu id="wa"
  7935. type="0" >
  7936. </productMenu>
  7937. <productMenu id="led"
  7938. type="5" >
  7939. </productMenu>
  7940. <productMenu id="led+"
  7941. type="2"
  7942. url="1" >
  7943. </productMenu>
  7944. <productMenu id="meshIntercom+"
  7945. type="3"
  7946. url="2" >
  7947. </productMenu>
  7948. <productMenu id="waveIntercom"
  7949. type="1" >
  7950. </productMenu>
  7951. <productMenu id="fmradio"
  7952. type="0" >
  7953. </productMenu>
  7954. <productMenu id="phone"
  7955. type="1" >
  7956. </productMenu>
  7957. <productMenu id="music"
  7958. type="1" >
  7959. </productMenu>
  7960. <productMenu id="musicSharing"
  7961. type="0" >
  7962. </productMenu>
  7963. <productMenu id="deviceSetting"
  7964. type="1"
  7965. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_06.xml" >
  7966. <productMenuURL version="1.0.10"
  7967. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml"
  7968. />
  7969. <productMenuURL version="1.0.4"
  7970. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7971. />
  7972. </productMenu>
  7973. <productMenu id="quickGuide"
  7974. type="0"
  7975. url=""
  7976. size="1.12MB" >
  7977. </productMenu>
  7978. <productMenu id="userGuide"
  7979. type="1"
  7980. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7981. size="2.0MB" >
  7982. </productMenu>
  7983. <productMenu id="videoGuide"
  7984. type="0"
  7985. url=""
  7986. size="3.41MB" >
  7987. </productMenu>
  7988. <productMenu id="volume"
  7989. type="16" >
  7990. </productMenu>
  7991. <productMenu id="volume+"
  7992. type="2"
  7993. url="0x6004" >
  7994. </productMenu>
  7995. <productMenu id="battery"
  7996. type="1" >
  7997. </productMenu>
  7998. <productID id="6A05"
  7999. />
  8000. <productGroupable type="0"
  8001. />
  8002. </product>
  8003. <product id="OUTRUSH2"
  8004. name="OUTRUSH 2"
  8005. series="Helmet"
  8006. latestVersion="1.0.3"
  8007. latestVersionVoicePrompt="1.6"
  8008. show = "1" >
  8009. <productMenu id="protocol"
  8010. type="2" >
  8011. </productMenu>
  8012. <productMenu id="alexa"
  8013. type="0" >
  8014. </productMenu>
  8015. <productMenu id="ota"
  8016. type="2" >
  8017. <otaPackages>
  8018. <package
  8019. url="https://api.sena.com/support/OTA/Motorcycles/OUTRUSH2/OUTRUSH_2-v1.0.3-build0.img"
  8020. size="2945812"
  8021. />
  8022. </otaPackages>
  8023. </productMenu>
  8024. <productMenu id="meshIntercom+"
  8025. type="3"
  8026. url="2" >
  8027. </productMenu>
  8028. <productMenu id="waveIntercom"
  8029. type="1" >
  8030. </productMenu>
  8031. <productMenu id="phone"
  8032. type="1" >
  8033. </productMenu>
  8034. <productMenu id="music"
  8035. type="1" >
  8036. </productMenu>
  8037. <productMenu id="musicSharing"
  8038. type="0" >
  8039. </productMenu>
  8040. <productMenu id="deviceSetting"
  8041. type="1"
  8042. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8043. <productMenuURL version="1.0"
  8044. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  8045. />
  8046. </productMenu>
  8047. <productMenu id="quickGuide"
  8048. type="0"
  8049. url=""
  8050. size="1.12MB" >
  8051. </productMenu>
  8052. <productMenu id="userGuide"
  8053. type="1"
  8054. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  8055. size="2.0MB" >
  8056. </productMenu>
  8057. <productMenu id="connectGuide"
  8058. type="1"
  8059. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outrush2.json"
  8060. size="1.12MB" >
  8061. </productMenu>
  8062. <productMenu id="volume"
  8063. type="12" >
  8064. </productMenu>
  8065. <productMenu id="battery"
  8066. type="1" >
  8067. </productMenu>
  8068. <productID id="684A"
  8069. />
  8070. <productGroupable type="0"
  8071. />
  8072. </product>
  8073. <product id="OUTSTAR2"
  8074. name="OUTSTAR 2"
  8075. series="Helmet"
  8076. latestVersion="1.0.2"
  8077. latestVersionVoicePrompt="1.6"
  8078. show = "1" >
  8079. <productMenu id="protocol"
  8080. type="2" >
  8081. </productMenu>
  8082. <productMenu id="alexa"
  8083. type="0" >
  8084. </productMenu>
  8085. <productMenu id="ota"
  8086. type="2" >
  8087. <otaPackages>
  8088. <package
  8089. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.2-build0.img"
  8090. size="2945812"
  8091. />
  8092. </otaPackages>
  8093. </productMenu>
  8094. <productMenu id="meshIntercom+"
  8095. type="3"
  8096. url="2" >
  8097. </productMenu>
  8098. <productMenu id="waveIntercom"
  8099. type="1" >
  8100. </productMenu>
  8101. <productMenu id="phone"
  8102. type="1" >
  8103. </productMenu>
  8104. <productMenu id="music"
  8105. type="1" >
  8106. </productMenu>
  8107. <productMenu id="musicSharing"
  8108. type="0" >
  8109. </productMenu>
  8110. <productMenu id="deviceSetting"
  8111. type="1"
  8112. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8113. </productMenu>
  8114. <productMenu id="quickGuide"
  8115. type="0"
  8116. url=""
  8117. size="1.12MB" >
  8118. </productMenu>
  8119. <productMenu id="userGuide"
  8120. type="1"
  8121. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  8122. size="2.0MB" >
  8123. </productMenu>
  8124. <productMenu id="connectGuide"
  8125. type="1"
  8126. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outstar2.json"
  8127. size="1.12MB" >
  8128. </productMenu>
  8129. <productMenu id="volume"
  8130. type="12" >
  8131. </productMenu>
  8132. <productMenu id="battery"
  8133. type="1" >
  8134. </productMenu>
  8135. <productID id="684B"
  8136. />
  8137. <productGroupable type="0"
  8138. />
  8139. </product>
  8140. <product id="SURGE"
  8141. name="SURGE"
  8142. series="Helmet"
  8143. latestVersion="1.2"
  8144. latestVersionVoicePrompt="1.3"
  8145. show = "1" >
  8146. <productMenu id="protocol"
  8147. type="2" >
  8148. </productMenu>
  8149. <productMenu id="alexa"
  8150. type="0" >
  8151. </productMenu>
  8152. <productMenu id="ota"
  8153. type="2" >
  8154. <otaPackages>
  8155. <package
  8156. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  8157. size="2945812"
  8158. />
  8159. </otaPackages>
  8160. </productMenu>
  8161. <productMenu id="meshIntercom"
  8162. type="30" >
  8163. </productMenu>
  8164. <productMenu id="meshIntercom+"
  8165. type="3"
  8166. url="2" >
  8167. <productMenuType version="1.0.1"
  8168. type="2"
  8169. />
  8170. </productMenu>
  8171. <productMenu id="waveIntercom"
  8172. type="1" >
  8173. <productMenuType version="1.0.9"
  8174. type="0"
  8175. />
  8176. </productMenu>
  8177. <productMenu id="phone"
  8178. type="1" >
  8179. </productMenu>
  8180. <productMenu id="music"
  8181. type="1" >
  8182. </productMenu>
  8183. <productMenu id="musicSharing"
  8184. type="0" >
  8185. </productMenu>
  8186. <productMenu id="deviceSetting"
  8187. type="1"
  8188. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  8189. <productMenuURL version="1.1.9"
  8190. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  8191. />
  8192. <productMenuURL version="1.0.1"
  8193. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  8194. />
  8195. </productMenu>
  8196. <productMenu id="quickGuide"
  8197. type="0"
  8198. url=""
  8199. size="1.12MB" >
  8200. </productMenu>
  8201. <productMenu id="userGuide"
  8202. type="1"
  8203. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  8204. size="2.0MB" >
  8205. </productMenu>
  8206. <productMenu id="volume"
  8207. type="12" >
  8208. </productMenu>
  8209. <productMenu id="battery"
  8210. type="1" >
  8211. </productMenu>
  8212. <productID id="6840"
  8213. />
  8214. <productGroupable type="0"
  8215. />
  8216. </product>
  8217. <product id="Cavalry2"
  8218. name="Cavalry 2"
  8219. series="Helmet"
  8220. latestVersion="1.2"
  8221. latestVersionVoicePrompt="1.3"
  8222. show = "1" >
  8223. <productMenu id="protocol"
  8224. type="2" >
  8225. </productMenu>
  8226. <productMenu id="alexa"
  8227. type="0" >
  8228. </productMenu>
  8229. <productMenu id="ota"
  8230. type="2" >
  8231. <otaPackages>
  8232. <package
  8233. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  8234. size="3144148"
  8235. />
  8236. </otaPackages>
  8237. </productMenu>
  8238. <productMenu id="wa"
  8239. type="0" >
  8240. </productMenu>
  8241. <productMenu id="meshIntercom"
  8242. type="30" >
  8243. </productMenu>
  8244. <productMenu id="meshIntercom+"
  8245. type="3"
  8246. url="2" >
  8247. <productMenuType version="1.0"
  8248. type="2"
  8249. />
  8250. </productMenu>
  8251. <productMenu id="waveIntercom"
  8252. type="1" >
  8253. <productMenuType version="1.0.9"
  8254. type="0"
  8255. />
  8256. </productMenu>
  8257. <productMenu id="phone"
  8258. type="1" >
  8259. </productMenu>
  8260. <productMenu id="music"
  8261. type="1" >
  8262. </productMenu>
  8263. <productMenu id="musicSharing"
  8264. type="0" >
  8265. </productMenu>
  8266. <productMenu id="deviceSetting"
  8267. type="1"
  8268. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  8269. <productMenuURL version="1.1.9"
  8270. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  8271. />
  8272. <productMenuURL version="1.0"
  8273. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  8274. />
  8275. </productMenu>
  8276. <productMenu id="quickGuide"
  8277. type="0"
  8278. url=""
  8279. size="1.12MB" >
  8280. </productMenu>
  8281. <productMenu id="userGuide"
  8282. type="1"
  8283. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  8284. size="2.0MB" >
  8285. </productMenu>
  8286. <productMenu id="connectGuide"
  8287. type="1"
  8288. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  8289. size="1.12MB" >
  8290. </productMenu>
  8291. <productMenu id="volume"
  8292. type="12" >
  8293. </productMenu>
  8294. <productMenu id="battery"
  8295. type="1" >
  8296. </productMenu>
  8297. <productID id="6839"
  8298. />
  8299. <productGroupable type="0"
  8300. />
  8301. </product>
  8302. <product id="Cavalry"
  8303. name="Cavalry"
  8304. series="Helmet"
  8305. latestVersion="1.2.2"
  8306. show = "1" >
  8307. <productMenu id="protocol"
  8308. type="0">
  8309. </productMenu>
  8310. <productMenu id="sip"
  8311. type="1" >
  8312. </productMenu>
  8313. <productMenu id="bluetoothIntercom"
  8314. type="1" >
  8315. </productMenu>
  8316. <productMenu id="phone"
  8317. type="2" >
  8318. </productMenu>
  8319. <productMenu id="fmradio"
  8320. type="3" >
  8321. </productMenu>
  8322. <productMenu id="deviceSetting"
  8323. type="1"
  8324. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  8325. <productMenuURL version="1.9"
  8326. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  8327. />
  8328. <productMenuURL version="1.0.1"
  8329. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  8330. />
  8331. </productMenu>
  8332. <productMenu id="quickGuide"
  8333. type="1"
  8334. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  8335. size="795KB" >
  8336. </productMenu>
  8337. <productMenu id="userGuide"
  8338. type="1"
  8339. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  8340. size="1.87MB" >
  8341. </productMenu>
  8342. <productMenu id="connectGuide"
  8343. type="1"
  8344. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8345. size="1.12MB" >
  8346. </productMenu>
  8347. <productID id="5524"
  8348. />
  8349. <productGroupable type="0"
  8350. />
  8351. </product>
  8352. <product id="Cavalry_Lite"
  8353. name="Cavalry Lite"
  8354. series="Helmet"
  8355. latestVersion="1.0.2"
  8356. show = "1" >
  8357. <productMenu id="protocol"
  8358. type="0">
  8359. </productMenu>
  8360. <productMenu id="sip"
  8361. type="1" >
  8362. </productMenu>
  8363. <productMenu id="bluetoothIntercom"
  8364. type="1" >
  8365. </productMenu>
  8366. <productMenu id="phone"
  8367. type="2" >
  8368. </productMenu>
  8369. <productMenu id="fmradio"
  8370. type="3" >
  8371. </productMenu>
  8372. <productMenu id="deviceSetting"
  8373. type="1"
  8374. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  8375. </productMenu>
  8376. <productMenu id="userGuide"
  8377. type="1"
  8378. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  8379. size="1.74MB" >
  8380. </productMenu>
  8381. <productMenu id="connectGuide"
  8382. type="1"
  8383. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8384. size="1.12MB" >
  8385. </productMenu>
  8386. <productID id="5536"
  8387. />
  8388. <productGroupable type="0"
  8389. />
  8390. </product>
  8391. <product id="VORTEX"
  8392. name="VORTEX"
  8393. series="VORTEX"
  8394. latestVersion="1.0.2"
  8395. latestVersionVoicePrompt="1.0"
  8396. show = "1" >
  8397. <productMenu id="protocol"
  8398. type="2" >
  8399. </productMenu>
  8400. <productMenu id="warranty"
  8401. type="1" >
  8402. </productMenu>
  8403. <productMenu id="serialNumber"
  8404. type="1" >
  8405. </productMenu>
  8406. <productMenu id="ota"
  8407. type="2" >
  8408. <otaLanguages>
  8409. <otaLanguage
  8410. id="0"
  8411. name="English"
  8412. package="0"
  8413. />
  8414. <otaLanguage
  8415. id="0"
  8416. name="French"
  8417. package="1"
  8418. />
  8419. <otaLanguage
  8420. id="0"
  8421. name="Spanish"
  8422. package="2"
  8423. />
  8424. <otaLanguage
  8425. id="0"
  8426. name="Italian"
  8427. package="3"
  8428. />
  8429. <otaLanguage
  8430. id="0"
  8431. name="German"
  8432. package="4"
  8433. />
  8434. <otaLanguage
  8435. id="0"
  8436. name="Dutch"
  8437. package="5"
  8438. />
  8439. <otaLanguage
  8440. id="0"
  8441. name="Russian"
  8442. package="6"
  8443. />
  8444. <otaLanguage
  8445. id="0"
  8446. name="Chinese"
  8447. package="7"
  8448. />
  8449. <otaLanguage
  8450. id="0"
  8451. name="Korean"
  8452. package="8"
  8453. />
  8454. <otaLanguage
  8455. id="0"
  8456. name="Japanese"
  8457. package="9"
  8458. />
  8459. <otaLanguage
  8460. id="0"
  8461. name="Finnish"
  8462. package="10"
  8463. />
  8464. <otaLanguage
  8465. id="0"
  8466. name="Polish"
  8467. package="11"
  8468. />
  8469. </otaLanguages>
  8470. <otaPackages>
  8471. <package
  8472. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1.img"
  8473. size="5183988"
  8474. />
  8475. <package
  8476. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fr-FR.img"
  8477. size="5183988"
  8478. />
  8479. <package
  8480. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-es-ES.img"
  8481. size="5183988"
  8482. />
  8483. <package
  8484. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-it-IT.img"
  8485. size="5183988"
  8486. />
  8487. <package
  8488. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-de-DE.img"
  8489. size="5183988"
  8490. />
  8491. <package
  8492. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-nl-NL.img"
  8493. size="5183988"
  8494. />
  8495. <package
  8496. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ru-RU.img"
  8497. size="5183988"
  8498. />
  8499. <package
  8500. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-cmn-CN.img"
  8501. size="5183988"
  8502. />
  8503. <package
  8504. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ko-KR.img"
  8505. size="5183988"
  8506. />
  8507. <package
  8508. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ja-JP.img"
  8509. size="5183988"
  8510. />
  8511. <package
  8512. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fi-FI.img"
  8513. size="5183988"
  8514. />
  8515. <package
  8516. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-pl-PL.img"
  8517. size="5183988"
  8518. />
  8519. </otaPackages>
  8520. </productMenu>
  8521. <productMenu id="sip"
  8522. type="1" >
  8523. </productMenu>
  8524. <productMenu id="bluetoothIntercom"
  8525. type="1" >
  8526. </productMenu>
  8527. <productMenu id="phone"
  8528. type="1" >
  8529. </productMenu>
  8530. <productMenu id="music"
  8531. type="1" >
  8532. </productMenu>
  8533. <productMenu id="fmradio"
  8534. type="1"
  8535. url="1" >
  8536. </productMenu>
  8537. <productMenu id="deviceSetting"
  8538. type="1"
  8539. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8540. </productMenu>
  8541. <productMenu id="quickGuide"
  8542. type="0"
  8543. url=""
  8544. size="934KB" >
  8545. </productMenu>
  8546. <productMenu id="userGuide"
  8547. type="1"
  8548. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_VORTEX_1.0.0_en_260805.pdf"
  8549. size="1.14MB" >
  8550. </productMenu>
  8551. <productMenu id="connectGuide"
  8552. type="0"
  8553. url=""
  8554. size="1.12MB" >
  8555. </productMenu>
  8556. <productMenu id="volume"
  8557. type="15" >
  8558. </productMenu>
  8559. <productMenu id="volume+"
  8560. type="2"
  8561. url="0x0018" >
  8562. </productMenu>
  8563. <productMenu id="appearance"
  8564. type="1"
  8565. url="1|white,silver,black" >
  8566. </productMenu>
  8567. <productID id="3451"
  8568. />
  8569. <productGroupable type="0"
  8570. />
  8571. </product>
  8572. <product id="SF4"
  8573. name="SF4"
  8574. series="SF"
  8575. latestVersion="1.1.5"
  8576. show = "-1" >
  8577. <productMenu id="protocol"
  8578. type="1"
  8579. url="3">
  8580. </productMenu>
  8581. <productMenu id="sip"
  8582. type="1" >
  8583. </productMenu>
  8584. <productMenu id="bluetoothIntercom"
  8585. type="1" >
  8586. </productMenu>
  8587. <productMenu id="phone"
  8588. type="1" >
  8589. </productMenu>
  8590. <productMenu id="music"
  8591. type="1" >
  8592. </productMenu>
  8593. <productMenu id="fmradio"
  8594. type="1" >
  8595. </productMenu>
  8596. <productMenu id="deviceSetting"
  8597. type="1"
  8598. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8599. <productMenuURL version="1.0.1"
  8600. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8601. />
  8602. </productMenu>
  8603. <productMenu id="quickGuide"
  8604. type="1"
  8605. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8606. size="607KB" >
  8607. </productMenu>
  8608. <productMenu id="userGuide"
  8609. type="1"
  8610. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8611. size="1.91MB" >
  8612. </productMenu>
  8613. <productMenu id="volume"
  8614. type="4" >
  8615. </productMenu>
  8616. <productID id="5414"
  8617. />
  8618. <productGroupable type="0"
  8619. />
  8620. </product>
  8621. <product id="SF4"
  8622. name="SF4"
  8623. series="SF"
  8624. latestVersion="3.4.4"
  8625. show = "1" >
  8626. <productMenu id="protocol"
  8627. type="2" >
  8628. </productMenu>
  8629. <productMenu id="sip"
  8630. type="1" >
  8631. </productMenu>
  8632. <productMenu id="bluetoothIntercom"
  8633. type="1" >
  8634. </productMenu>
  8635. <productMenu id="phone"
  8636. type="1" >
  8637. </productMenu>
  8638. <productMenu id="music"
  8639. type="1" >
  8640. </productMenu>
  8641. <productMenu id="fmradio"
  8642. type="1" >
  8643. </productMenu>
  8644. <productMenu id="deviceSetting"
  8645. type="1"
  8646. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8647. <productMenuURL version="3.0"
  8648. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8649. />
  8650. </productMenu>
  8651. <productMenu id="quickGuide"
  8652. type="0"
  8653. url=""
  8654. size="934KB" >
  8655. </productMenu>
  8656. <productMenu id="userGuide"
  8657. type="1"
  8658. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8659. size="1.14MB" >
  8660. </productMenu>
  8661. <productMenu id="connectGuide"
  8662. type="1"
  8663. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8664. size="1.12MB" >
  8665. </productMenu>
  8666. <productMenu id="volume"
  8667. type="15" >
  8668. </productMenu>
  8669. <productID id="3370"
  8670. />
  8671. <productGroupable type="0"
  8672. />
  8673. </product>
  8674. <product id="SF2"
  8675. name="SF2"
  8676. series="SF"
  8677. latestVersion="1.2.1"
  8678. show = "-1" >
  8679. <productMenu id="protocol"
  8680. type="1"
  8681. url="2">
  8682. </productMenu>
  8683. <productMenu id="sip"
  8684. type="1" >
  8685. </productMenu>
  8686. <productMenu id="bluetoothIntercom"
  8687. type="1" >
  8688. </productMenu>
  8689. <productMenu id="phone"
  8690. type="1" >
  8691. </productMenu>
  8692. <productMenu id="music"
  8693. type="1" >
  8694. </productMenu>
  8695. <productMenu id="fmradio"
  8696. type="1" >
  8697. </productMenu>
  8698. <productMenu id="deviceSetting"
  8699. type="1"
  8700. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8701. <productMenuURL version="1.0.1"
  8702. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8703. />
  8704. </productMenu>
  8705. <productMenu id="quickGuide"
  8706. type="1"
  8707. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8708. size="607KB" >
  8709. </productMenu>
  8710. <productMenu id="userGuide"
  8711. type="1"
  8712. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8713. size="1.91MB" >
  8714. </productMenu>
  8715. <productMenu id="volume"
  8716. type="4" >
  8717. </productMenu>
  8718. <productID id="5412"
  8719. />
  8720. <productGroupable type="0"
  8721. />
  8722. </product>
  8723. <product id="SF2"
  8724. name="SF2"
  8725. series="SF"
  8726. latestVersion="3.3.4"
  8727. show = "1" >
  8728. <productMenu id="protocol"
  8729. type="2" >
  8730. </productMenu>
  8731. <productMenu id="sip"
  8732. type="1" >
  8733. </productMenu>
  8734. <productMenu id="bluetoothIntercom"
  8735. type="1" >
  8736. </productMenu>
  8737. <productMenu id="phone"
  8738. type="1" >
  8739. </productMenu>
  8740. <productMenu id="music"
  8741. type="1" >
  8742. </productMenu>
  8743. <productMenu id="fmradio"
  8744. type="0" >
  8745. </productMenu>
  8746. <productMenu id="deviceSetting"
  8747. type="1"
  8748. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8749. <productMenuURL version="3.0"
  8750. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8751. />
  8752. </productMenu>
  8753. <productMenu id="quickGuide"
  8754. type="0"
  8755. url=""
  8756. size="934KB" >
  8757. </productMenu>
  8758. <productMenu id="userGuide"
  8759. type="1"
  8760. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8761. size="1.14MB" >
  8762. </productMenu>
  8763. <productMenu id="connectGuide"
  8764. type="1"
  8765. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8766. size="1.12MB" >
  8767. </productMenu>
  8768. <productMenu id="volume"
  8769. type="15" >
  8770. </productMenu>
  8771. <productID id="3360"
  8772. />
  8773. <productGroupable type="0"
  8774. />
  8775. </product>
  8776. <product id="SF1"
  8777. name="SF1"
  8778. series="SF"
  8779. latestVersion="2.0.5"
  8780. show = "-1" >
  8781. <productMenu id="protocol"
  8782. type="1"
  8783. url="1">
  8784. </productMenu>
  8785. <productMenu id="sip"
  8786. type="1" >
  8787. </productMenu>
  8788. <productMenu id="bluetoothIntercom"
  8789. type="1" >
  8790. <productMenuType version="1.1"
  8791. type="0"
  8792. />
  8793. </productMenu>
  8794. <productMenu id="phone"
  8795. type="1" >
  8796. </productMenu>
  8797. <productMenu id="music"
  8798. type="1" >
  8799. </productMenu>
  8800. <productMenu id="deviceSetting"
  8801. type="1"
  8802. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8803. <productMenuURL version="1.1"
  8804. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8805. />
  8806. <productMenuURL version="1.0"
  8807. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8808. />
  8809. </productMenu>
  8810. <productMenu id="quickGuide"
  8811. type="1"
  8812. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8813. size="401KB" >
  8814. </productMenu>
  8815. <productMenu id="userGuide"
  8816. type="1"
  8817. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8818. size="1.91MB" >
  8819. </productMenu>
  8820. <productMenu id="volume"
  8821. type="3" >
  8822. </productMenu>
  8823. <productID id="5410"
  8824. />
  8825. <productGroupable type="0"
  8826. />
  8827. </product>
  8828. <product id="SF1"
  8829. name="SF1"
  8830. series="SF"
  8831. latestVersion="3.3.4"
  8832. show = "1" >
  8833. <productMenu id="protocol"
  8834. type="2" >
  8835. </productMenu>
  8836. <productMenu id="sip"
  8837. type="1" >
  8838. </productMenu>
  8839. <productMenu id="bluetoothIntercom"
  8840. type="1" >
  8841. </productMenu>
  8842. <productMenu id="phone"
  8843. type="1" >
  8844. </productMenu>
  8845. <productMenu id="music"
  8846. type="1" >
  8847. </productMenu>
  8848. <productMenu id="fmradio"
  8849. type="0" >
  8850. </productMenu>
  8851. <productMenu id="deviceSetting"
  8852. type="1"
  8853. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8854. <productMenuURL version="3.0"
  8855. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8856. />
  8857. </productMenu>
  8858. <productMenu id="quickGuide"
  8859. type="0"
  8860. url=""
  8861. size="934KB" >
  8862. </productMenu>
  8863. <productMenu id="userGuide"
  8864. type="1"
  8865. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8866. size="1.14MB" >
  8867. </productMenu>
  8868. <productMenu id="connectGuide"
  8869. type="1"
  8870. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8871. size="1.12MB" >
  8872. </productMenu>
  8873. <productMenu id="volume"
  8874. type="15" >
  8875. </productMenu>
  8876. <productID id="3350"
  8877. />
  8878. <productGroupable type="0"
  8879. />
  8880. </product>
  8881. <product id="SFR"
  8882. name="SFR"
  8883. series="SF"
  8884. latestVersion="1.1.1"
  8885. show = "1" >
  8886. <productMenu id="protocol"
  8887. type="1"
  8888. url="3">
  8889. </productMenu>
  8890. <productMenu id="sip"
  8891. type="1" >
  8892. </productMenu>
  8893. <productMenu id="bluetoothIntercom"
  8894. type="1" >
  8895. </productMenu>
  8896. <productMenu id="phone"
  8897. type="1" >
  8898. </productMenu>
  8899. <productMenu id="music"
  8900. type="1" >
  8901. </productMenu>
  8902. <productMenu id="fmradio"
  8903. type="1" >
  8904. </productMenu>
  8905. <productMenu id="deviceSetting"
  8906. type="1"
  8907. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8908. </productMenu>
  8909. <productMenu id="quickGuide"
  8910. type="1"
  8911. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8912. size="607KB" >
  8913. </productMenu>
  8914. <productMenu id="userGuide"
  8915. type="1"
  8916. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8917. size="1.91MB" >
  8918. </productMenu>
  8919. <productMenu id="volume"
  8920. type="4" >
  8921. </productMenu>
  8922. <productID id="5418"
  8923. />
  8924. <productGroupable type="0"
  8925. />
  8926. </product>
  8927. <product id="20S"
  8928. name="20S"
  8929. series="20"
  8930. latestVersion="2.2.3"
  8931. show = "1" >
  8932. <productMenu id="protocol"
  8933. type="0">
  8934. </productMenu>
  8935. <productMenu id="wa"
  8936. type="5" >
  8937. </productMenu>
  8938. <productMenu id="sip"
  8939. type="1" >
  8940. <productMenuType version="1.0"
  8941. type="0"
  8942. />
  8943. </productMenu>
  8944. <productMenu id="bluetoothIntercom"
  8945. type="1" >
  8946. <productMenuType version="1.0"
  8947. type="0"
  8948. />
  8949. </productMenu>
  8950. <productMenu id="intercomSetting"
  8951. type="1" >
  8952. </productMenu>
  8953. <productMenu id="phone"
  8954. type="2" >
  8955. </productMenu>
  8956. <productMenu id="fmradio"
  8957. type="3" >
  8958. </productMenu>
  8959. <productMenu id="deviceSetting"
  8960. type="1"
  8961. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8962. <productMenuURL version="2.0.2"
  8963. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8964. />
  8965. <productMenuURL version="1.5"
  8966. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8967. />
  8968. <productMenuURL version="1.4.1"
  8969. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8970. />
  8971. <productMenuURL version="1.1"
  8972. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8973. />
  8974. <productMenuURL version="1.0"
  8975. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8976. />
  8977. </productMenu>
  8978. <productMenu id="quickGuide"
  8979. type="0"
  8980. url=""
  8981. size="264KB" >
  8982. </productMenu>
  8983. <productMenu id="userGuide"
  8984. type="1"
  8985. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8986. size="3.09MB" >
  8987. </productMenu>
  8988. <productMenu id="connectGuide"
  8989. type="1"
  8990. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8991. size="1.12MB" >
  8992. </productMenu>
  8993. <productID id="4210"
  8994. />
  8995. <productGroupable type="1"
  8996. />
  8997. </product>
  8998. <product id="20S_EVO"
  8999. name="20S EVO"
  9000. series="20"
  9001. latestVersion="2.2.3"
  9002. show = "1" >
  9003. <productMenu id="protocol"
  9004. type="0">
  9005. </productMenu>
  9006. <productMenu id="wa"
  9007. type="5" >
  9008. </productMenu>
  9009. <productMenu id="sip"
  9010. type="1" >
  9011. <productMenuType version="1.0"
  9012. type="0"
  9013. />
  9014. </productMenu>
  9015. <productMenu id="bluetoothIntercom"
  9016. type="1" >
  9017. <productMenuType version="1.0"
  9018. type="0"
  9019. />
  9020. </productMenu>
  9021. <productMenu id="intercomSetting"
  9022. type="1" >
  9023. </productMenu>
  9024. <productMenu id="phone"
  9025. type="2" >
  9026. </productMenu>
  9027. <productMenu id="fmradio"
  9028. type="3" >
  9029. </productMenu>
  9030. <productMenu id="deviceSetting"
  9031. type="1"
  9032. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  9033. <productMenuURL version="2.0.2"
  9034. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9035. />
  9036. <productMenuURL version="1.5"
  9037. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9038. />
  9039. <productMenuURL version="1.4.1"
  9040. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9041. />
  9042. <productMenuURL version="1.1"
  9043. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9044. />
  9045. <productMenuURL version="1.0"
  9046. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9047. />
  9048. </productMenu>
  9049. <productMenu id="quickGuide"
  9050. type="0"
  9051. url=""
  9052. size="264KB" >
  9053. </productMenu>
  9054. <productMenu id="userGuide"
  9055. type="1"
  9056. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  9057. size="3.09MB" >
  9058. </productMenu>
  9059. <productMenu id="connectGuide"
  9060. type="1"
  9061. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9062. size="1.12MB" >
  9063. </productMenu>
  9064. <productID id="4210"
  9065. />
  9066. <productProductKey key="16"
  9067. />
  9068. <productGroupable type="1"
  9069. />
  9070. </product>
  9071. <product id="10S"
  9072. name="10S"
  9073. series="10"
  9074. latestVersion="3.0.2"
  9075. show = "1" >
  9076. <productMenu id="protocol"
  9077. type="3" >
  9078. </productMenu>
  9079. <productMenu id="sip"
  9080. type="1" >
  9081. </productMenu>
  9082. <productMenu id="bluetoothIntercom"
  9083. type="1" >
  9084. </productMenu>
  9085. <productMenu id="phone"
  9086. type="1" >
  9087. </productMenu>
  9088. <productMenu id="deviceSetting"
  9089. type="1"
  9090. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  9091. </productMenu>
  9092. <productMenu id="quickGuide"
  9093. type="1"
  9094. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  9095. size="934KB" >
  9096. </productMenu>
  9097. <productMenu id="userGuide"
  9098. type="1"
  9099. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  9100. size="1.14MB" >
  9101. </productMenu>
  9102. <productMenu id="connectGuide"
  9103. type="1"
  9104. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  9105. size="1.12MB" >
  9106. </productMenu>
  9107. <productID id="3380"
  9108. />
  9109. <productGroupable type="0"
  9110. />
  9111. </product>
  9112. <product id="10S"
  9113. name="10S"
  9114. series="10"
  9115. latestVersion="2.1.1"
  9116. show = "-1" >
  9117. <productMenu id="protocol"
  9118. type="0">
  9119. </productMenu>
  9120. <productMenu id="sip"
  9121. type="1" >
  9122. </productMenu>
  9123. <productMenu id="bluetoothIntercom"
  9124. type="1" >
  9125. </productMenu>
  9126. <productMenu id="phone"
  9127. type="2" >
  9128. </productMenu>
  9129. <productMenu id="fmradio"
  9130. type="3" >
  9131. </productMenu>
  9132. <productMenu id="deviceSetting"
  9133. type="1"
  9134. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  9135. <productMenuURL version="1.5"
  9136. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  9137. />
  9138. <productMenuURL version="1.3.1"
  9139. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  9140. />
  9141. </productMenu>
  9142. <productMenu id="quickGuide"
  9143. type="1"
  9144. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  9145. size="310KB" >
  9146. </productMenu>
  9147. <productMenu id="userGuide"
  9148. type="1"
  9149. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  9150. size="1.57MB" >
  9151. </productMenu>
  9152. <productID id="5530"
  9153. />
  9154. <productGroupable type="0"
  9155. />
  9156. </product>
  9157. <product id="Apex"
  9158. name="Apex"
  9159. series="Apex"
  9160. latestVersion="1.0"
  9161. latestVersionVoicePrompt="0.2"
  9162. show = "-1" >
  9163. <productMenu id="protocol"
  9164. type="2" >
  9165. </productMenu>
  9166. <productMenu id="warranty"
  9167. type="1" >
  9168. </productMenu>
  9169. <productMenu id="serialNumber"
  9170. type="1" >
  9171. </productMenu>
  9172. <productMenu id="ota"
  9173. type="2" >
  9174. <otaLanguages>
  9175. <otaLanguage
  9176. id="0"
  9177. name="English"
  9178. package="0"
  9179. />
  9180. <otaLanguage
  9181. id="0"
  9182. name="French"
  9183. package="1"
  9184. />
  9185. <otaLanguage
  9186. id="0"
  9187. name="Spanish"
  9188. package="2"
  9189. />
  9190. <otaLanguage
  9191. id="0"
  9192. name="Italian"
  9193. package="3"
  9194. />
  9195. <otaLanguage
  9196. id="0"
  9197. name="German"
  9198. package="4"
  9199. />
  9200. <otaLanguage
  9201. id="0"
  9202. name="Dutch"
  9203. package="5"
  9204. />
  9205. <otaLanguage
  9206. id="0"
  9207. name="Russian"
  9208. package="6"
  9209. />
  9210. <otaLanguage
  9211. id="0"
  9212. name="Chinese"
  9213. package="7"
  9214. />
  9215. <otaLanguage
  9216. id="0"
  9217. name="Korean"
  9218. package="8"
  9219. />
  9220. <otaLanguage
  9221. id="0"
  9222. name="Japanese"
  9223. package="9"
  9224. />
  9225. <otaLanguage
  9226. id="0"
  9227. name="Finnish"
  9228. package="10"
  9229. />
  9230. <otaLanguage
  9231. id="0"
  9232. name="Polish"
  9233. package="11"
  9234. />
  9235. </otaLanguages>
  9236. <otaPackages>
  9237. <package
  9238. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6.img"
  9239. size="5183988"
  9240. />
  9241. <package
  9242. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-fr-FR.img"
  9243. size="5183988"
  9244. />
  9245. <package
  9246. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-es-ES.img"
  9247. size="5183988"
  9248. />
  9249. <package
  9250. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-it-IT.img"
  9251. size="5183988"
  9252. />
  9253. <package
  9254. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-de-DE.img"
  9255. size="5183988"
  9256. />
  9257. <package
  9258. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-nl-NL.img"
  9259. size="5183988"
  9260. />
  9261. <package
  9262. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ru-RU.img"
  9263. size="5183988"
  9264. />
  9265. <package
  9266. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-cmn-CN.img"
  9267. size="5183988"
  9268. />
  9269. <package
  9270. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ko-KR.img"
  9271. size="5183988"
  9272. />
  9273. <package
  9274. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ja-JP.img"
  9275. size="5183988"
  9276. />
  9277. <package
  9278. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-fi-FI.img"
  9279. size="5183988"
  9280. />
  9281. <package
  9282. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-pl-PL.img"
  9283. size="5183988"
  9284. />
  9285. </otaPackages>
  9286. </productMenu>
  9287. <productMenu id="sip"
  9288. type="1" >
  9289. </productMenu>
  9290. <productMenu id="bluetoothIntercom"
  9291. type="1" >
  9292. </productMenu>
  9293. <productMenu id="phone"
  9294. type="1" >
  9295. </productMenu>
  9296. <productMenu id="music"
  9297. type="1" >
  9298. </productMenu>
  9299. <productMenu id="fmradio"
  9300. type="1"
  9301. url="1" >
  9302. </productMenu>
  9303. <productMenu id="deviceSetting"
  9304. type="1"
  9305. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_02.xml" >
  9306. <productMenuURL version="1.0"
  9307. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9308. />
  9309. </productMenu>
  9310. <productMenu id="quickGuide"
  9311. type="0"
  9312. url=""
  9313. size="934KB" >
  9314. </productMenu>
  9315. <productMenu id="userGuide"
  9316. type="1"
  9317. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9318. size="1.14MB" >
  9319. </productMenu>
  9320. <productMenu id="volume+"
  9321. type="2"
  9322. url="0x0004" >
  9323. </productMenu>
  9324. <productMenu id="appearance"
  9325. type="1"
  9326. url="1|white,silver,black" >
  9327. </productMenu>
  9328. <productMenu id="battery"
  9329. type="1" >
  9330. </productMenu>
  9331. <productID id="3452"
  9332. />
  9333. <productGroupable type="0"
  9334. />
  9335. </product>
  9336. <product id="ApexPlus"
  9337. name="Apex Plus"
  9338. series="Apex"
  9339. latestVersion="1.0"
  9340. latestVersionVoicePrompt="0.2"
  9341. show = "-1" >
  9342. <productMenu id="protocol"
  9343. type="2" >
  9344. </productMenu>
  9345. <productMenu id="warranty"
  9346. type="1" >
  9347. </productMenu>
  9348. <productMenu id="serialNumber"
  9349. type="1" >
  9350. </productMenu>
  9351. <productMenu id="ota"
  9352. type="2" >
  9353. <otaLanguages>
  9354. <otaLanguage
  9355. id="0"
  9356. name="English"
  9357. package="0"
  9358. />
  9359. <otaLanguage
  9360. id="0"
  9361. name="French"
  9362. package="1"
  9363. />
  9364. <otaLanguage
  9365. id="0"
  9366. name="Spanish"
  9367. package="2"
  9368. />
  9369. <otaLanguage
  9370. id="0"
  9371. name="Italian"
  9372. package="3"
  9373. />
  9374. <otaLanguage
  9375. id="0"
  9376. name="German"
  9377. package="4"
  9378. />
  9379. <otaLanguage
  9380. id="0"
  9381. name="Dutch"
  9382. package="5"
  9383. />
  9384. <otaLanguage
  9385. id="0"
  9386. name="Russian"
  9387. package="6"
  9388. />
  9389. <otaLanguage
  9390. id="0"
  9391. name="Chinese"
  9392. package="7"
  9393. />
  9394. <otaLanguage
  9395. id="0"
  9396. name="Korean"
  9397. package="8"
  9398. />
  9399. <otaLanguage
  9400. id="0"
  9401. name="Japanese"
  9402. package="9"
  9403. />
  9404. <otaLanguage
  9405. id="0"
  9406. name="Finnish"
  9407. package="10"
  9408. />
  9409. <otaLanguage
  9410. id="0"
  9411. name="Polish"
  9412. package="11"
  9413. />
  9414. </otaLanguages>
  9415. <otaPackages>
  9416. <package
  9417. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6.img"
  9418. size="5183988"
  9419. />
  9420. <package
  9421. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-fr-FR.img"
  9422. size="5183988"
  9423. />
  9424. <package
  9425. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-es-ES.img"
  9426. size="5183988"
  9427. />
  9428. <package
  9429. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-it-IT.img"
  9430. size="5183988"
  9431. />
  9432. <package
  9433. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-de-DE.img"
  9434. size="5183988"
  9435. />
  9436. <package
  9437. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-nl-NL.img"
  9438. size="5183988"
  9439. />
  9440. <package
  9441. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ru-RU.img"
  9442. size="5183988"
  9443. />
  9444. <package
  9445. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-cmn-CN.img"
  9446. size="5183988"
  9447. />
  9448. <package
  9449. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ko-KR.img"
  9450. size="5183988"
  9451. />
  9452. <package
  9453. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ja-JP.img"
  9454. size="5183988"
  9455. />
  9456. <package
  9457. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-fi-FI.img"
  9458. size="5183988"
  9459. />
  9460. <package
  9461. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-pl-PL.img"
  9462. size="5183988"
  9463. />
  9464. </otaPackages>
  9465. </productMenu>
  9466. <productMenu id="sip"
  9467. type="1" >
  9468. </productMenu>
  9469. <productMenu id="bluetoothIntercom"
  9470. type="1" >
  9471. </productMenu>
  9472. <productMenu id="phone"
  9473. type="1" >
  9474. </productMenu>
  9475. <productMenu id="music"
  9476. type="1" >
  9477. </productMenu>
  9478. <productMenu id="fmradio"
  9479. type="1"
  9480. url="1" >
  9481. </productMenu>
  9482. <productMenu id="deviceSetting"
  9483. type="1"
  9484. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_02.xml" >
  9485. <productMenuURL version="1.0"
  9486. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9487. />
  9488. </productMenu>
  9489. <productMenu id="quickGuide"
  9490. type="0"
  9491. url=""
  9492. size="934KB" >
  9493. </productMenu>
  9494. <productMenu id="userGuide"
  9495. type="1"
  9496. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9497. size="1.14MB" >
  9498. </productMenu>
  9499. <productMenu id="volume+"
  9500. type="2"
  9501. url="0x0004" >
  9502. </productMenu>
  9503. <productMenu id="appearance"
  9504. type="1"
  9505. url="1|white,silver,black" >
  9506. </productMenu>
  9507. <productMenu id="battery"
  9508. type="1" >
  9509. </productMenu>
  9510. <productID id="3453"
  9511. />
  9512. <productGroupable type="0"
  9513. />
  9514. </product>
  9515. <product id="10R2"
  9516. name="10R 2"
  9517. series="10"
  9518. latestVersion="0.9"
  9519. latestVersionVoicePrompt="1.1"
  9520. show = "-1" >
  9521. <productMenu id="protocol"
  9522. type="2" >
  9523. </productMenu>
  9524. <productMenu id="ota"
  9525. type="2" >
  9526. <otaPackages>
  9527. <package
  9528. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9529. size="2945812"
  9530. />
  9531. </otaPackages>
  9532. </productMenu>
  9533. <productMenu id="sip"
  9534. type="1" >
  9535. </productMenu>
  9536. <productMenu id="bluetoothIntercom"
  9537. type="1" >
  9538. </productMenu>
  9539. <productMenu id="phone"
  9540. type="1" >
  9541. </productMenu>
  9542. <productMenu id="music"
  9543. type="1" >
  9544. </productMenu>
  9545. <productMenu id="fmradio"
  9546. type="1"
  9547. url="1" >
  9548. </productMenu>
  9549. <productMenu id="deviceSetting"
  9550. type="1"
  9551. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9552. </productMenu>
  9553. <productMenu id="quickGuide"
  9554. type="1"
  9555. url=""
  9556. size="934KB" >
  9557. </productMenu>
  9558. <productMenu id="userGuide"
  9559. type="0"
  9560. url=""
  9561. size="1.14MB" >
  9562. </productMenu>
  9563. <productMenu id="volume"
  9564. type="15" >
  9565. </productMenu>
  9566. <productID id="4000"
  9567. />
  9568. <productGroupable type="0"
  9569. />
  9570. </product>
  9571. <product id="10R"
  9572. name="10R"
  9573. series="10"
  9574. latestVersion="2.1.1"
  9575. show = "1" >
  9576. <productMenu id="protocol"
  9577. type="0">
  9578. </productMenu>
  9579. <productMenu id="sip"
  9580. type="1" >
  9581. <productMenuType version="1.0.2"
  9582. type="0"
  9583. />
  9584. </productMenu>
  9585. <productMenu id="bluetoothIntercom"
  9586. type="1" >
  9587. <productMenuType version="1.0.2"
  9588. type="0"
  9589. />
  9590. </productMenu>
  9591. <productMenu id="phone"
  9592. type="2" >
  9593. </productMenu>
  9594. <productMenu id="fmradio"
  9595. type="3" >
  9596. </productMenu>
  9597. <productMenu id="deviceSetting"
  9598. type="1"
  9599. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9600. <productMenuURL version="1.4"
  9601. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9602. />
  9603. <productMenuURL version="1.2.1"
  9604. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9605. />
  9606. <productMenuURL version="1.0.2"
  9607. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9608. />
  9609. <productMenuURL version="1.0"
  9610. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9611. />
  9612. </productMenu>
  9613. <productMenu id="quickGuide"
  9614. type="1"
  9615. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9616. size="400KB" >
  9617. </productMenu>
  9618. <productMenu id="userGuide"
  9619. type="1"
  9620. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9621. size="2.75MB" >
  9622. </productMenu>
  9623. <productMenu id="connectGuide"
  9624. type="1"
  9625. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9626. size="1.12MB" >
  9627. </productMenu>
  9628. <productID id="5520"
  9629. />
  9630. <productGroupable type="0"
  9631. />
  9632. </product>
  9633. <product id="10C_EVO"
  9634. name="10C EVO"
  9635. series="10"
  9636. latestVersion="1.7"
  9637. show = "1" >
  9638. <productMenu id="protocol"
  9639. type="0">
  9640. </productMenu>
  9641. <productMenu id="sip"
  9642. type="1" >
  9643. </productMenu>
  9644. <productMenu id="bluetoothIntercom"
  9645. type="1" >
  9646. </productMenu>
  9647. <productMenu id="phone"
  9648. type="2" >
  9649. </productMenu>
  9650. <productMenu id="fmradio"
  9651. type="3" >
  9652. </productMenu>
  9653. <productMenu id="deviceSetting"
  9654. type="1"
  9655. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9656. <productMenuURL version="1.3.1"
  9657. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9658. />
  9659. </productMenu>
  9660. <productMenu id="quickGuide"
  9661. type="1"
  9662. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9663. size="1.32MB" >
  9664. </productMenu>
  9665. <productMenu id="userGuide"
  9666. type="1"
  9667. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9668. size="1.68MB" >
  9669. </productMenu>
  9670. <productMenu id="connectGuide"
  9671. type="1"
  9672. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9673. size="1.12MB" >
  9674. </productMenu>
  9675. <productID id="5570"
  9676. />
  9677. <productGroupable type="0"
  9678. />
  9679. </product>
  9680. <product id="10C_Pro"
  9681. name="10C Pro"
  9682. series="10"
  9683. latestVersion="2.7.1"
  9684. show = "1" >
  9685. <productMenu id="protocol"
  9686. type="0">
  9687. </productMenu>
  9688. <productMenu id="sip"
  9689. type="1" >
  9690. </productMenu>
  9691. <productMenu id="bluetoothIntercom"
  9692. type="1" >
  9693. </productMenu>
  9694. <productMenu id="phone"
  9695. type="2" >
  9696. </productMenu>
  9697. <productMenu id="fmradio"
  9698. type="3" >
  9699. </productMenu>
  9700. <productMenu id="deviceSetting"
  9701. type="1"
  9702. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9703. <productMenuURL version="2.5.1"
  9704. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9705. />
  9706. <productMenuURL version="1.0"
  9707. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9708. />
  9709. </productMenu>
  9710. <productMenu id="quickGuide"
  9711. type="1"
  9712. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9713. size="651KB" >
  9714. </productMenu>
  9715. <productMenu id="userGuide"
  9716. type="1"
  9717. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9718. size="2.34MB" >
  9719. </productMenu>
  9720. <productMenu id="connectGuide"
  9721. type="1"
  9722. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9723. size="1.12MB" >
  9724. </productMenu>
  9725. <productID id="5580"
  9726. />
  9727. <productGroupable type="0"
  9728. />
  9729. </product>
  9730. <product id="10C"
  9731. name="10C"
  9732. series="10"
  9733. latestVersion="3.0.4"
  9734. show = "1" >
  9735. <productMenu id="protocol"
  9736. type="0">
  9737. </productMenu>
  9738. <productMenu id="sip"
  9739. type="1" >
  9740. <productMenuType version="1.0.4"
  9741. type="0"
  9742. />
  9743. </productMenu>
  9744. <productMenu id="bluetoothIntercom"
  9745. type="1" >
  9746. <productMenuType version="1.0.4"
  9747. type="0"
  9748. />
  9749. </productMenu>
  9750. <productMenu id="phone"
  9751. type="2" >
  9752. </productMenu>
  9753. <productMenu id="fmradio"
  9754. type="3" >
  9755. </productMenu>
  9756. <productMenu id="deviceSetting"
  9757. type="1"
  9758. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9759. <productMenuURL version="2.3"
  9760. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9761. />
  9762. <productMenuURL version="2.1.1"
  9763. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9764. />
  9765. <productMenuURL version="1.0.4"
  9766. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9767. />
  9768. <productMenuURL version="1.0.2"
  9769. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9770. />
  9771. </productMenu>
  9772. <productMenu id="quickGuide"
  9773. type="1"
  9774. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9775. size="935KB" >
  9776. </productMenu>
  9777. <productMenu id="userGuide"
  9778. type="1"
  9779. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9780. size="2.82MB" >
  9781. </productMenu>
  9782. <productMenu id="connectGuide"
  9783. type="1"
  9784. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9785. size="1.12MB" >
  9786. </productMenu>
  9787. <productID id="5510"
  9788. />
  9789. <productGroupable type="0"
  9790. />
  9791. </product>
  9792. <product id="10U_GT_AIR"
  9793. name="10U GT-Air"
  9794. series="10"
  9795. latestVersion="2.0.4"
  9796. show = "1" >
  9797. <productMenu id="protocol"
  9798. type="0">
  9799. </productMenu>
  9800. <productMenu id="sip"
  9801. type="1" >
  9802. <productMenuType version="1.0.2"
  9803. type="0"
  9804. />
  9805. </productMenu>
  9806. <productMenu id="bluetoothIntercom"
  9807. type="1" >
  9808. <productMenuType version="1.0.2"
  9809. type="0"
  9810. />
  9811. </productMenu>
  9812. <productMenu id="phone"
  9813. type="2" >
  9814. </productMenu>
  9815. <productMenu id="fmradio"
  9816. type="3" >
  9817. </productMenu>
  9818. <productMenu id="deviceSetting"
  9819. type="1"
  9820. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9821. <productMenuURL version="1.3.2"
  9822. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9823. />
  9824. <productMenuURL version="1.0.2"
  9825. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9826. />
  9827. </productMenu>
  9828. <productMenu id="quickGuide"
  9829. type="1"
  9830. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9831. size="685KB" >
  9832. </productMenu>
  9833. <productMenu id="userGuide"
  9834. type="1"
  9835. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9836. size="684KB" >
  9837. </productMenu>
  9838. <productMenu id="connectGuide"
  9839. type="1"
  9840. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9841. size="1.12MB" >
  9842. </productMenu>
  9843. <productID id="5610"
  9844. />
  9845. <productGroupable type="0"
  9846. />
  9847. </product>
  9848. <product id="10U_NEOTEC"
  9849. name="10U Neotec"
  9850. series="10"
  9851. latestVersion="2.0.4"
  9852. show = "1" >
  9853. <productMenu id="protocol"
  9854. type="0">
  9855. </productMenu>
  9856. <productMenu id="sip"
  9857. type="1" >
  9858. <productMenuType version="1.0.2"
  9859. type="0"
  9860. />
  9861. </productMenu>
  9862. <productMenu id="bluetoothIntercom"
  9863. type="1" >
  9864. <productMenuType version="1.0.2"
  9865. type="0"
  9866. />
  9867. </productMenu>
  9868. <productMenu id="phone"
  9869. type="2" >
  9870. </productMenu>
  9871. <productMenu id="fmradio"
  9872. type="3" >
  9873. </productMenu>
  9874. <productMenu id="deviceSetting"
  9875. type="1"
  9876. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9877. <productMenuURL version="1.3.2"
  9878. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9879. />
  9880. <productMenuURL version="1.0.2"
  9881. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9882. />
  9883. </productMenu>
  9884. <productMenu id="quickGuide"
  9885. type="1"
  9886. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9887. size="689KB" >
  9888. </productMenu>
  9889. <productMenu id="userGuide"
  9890. type="1"
  9891. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9892. size="684KB" >
  9893. </productMenu>
  9894. <productMenu id="connectGuide"
  9895. type="1"
  9896. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9897. size="1.12MB" >
  9898. </productMenu>
  9899. <productID id="5611"
  9900. />
  9901. <productGroupable type="0"
  9902. />
  9903. </product>
  9904. <product id="10U_J_CRUISE"
  9905. name="10U J-Cruise"
  9906. series="10"
  9907. latestVersion="2.0.4"
  9908. show = "1" >
  9909. <productMenu id="protocol"
  9910. type="0">
  9911. </productMenu>
  9912. <productMenu id="sip"
  9913. type="1" >
  9914. <productMenuType version="1.0.2"
  9915. type="0"
  9916. />
  9917. </productMenu>
  9918. <productMenu id="bluetoothIntercom"
  9919. type="1" >
  9920. <productMenuType version="1.0.2"
  9921. type="0"
  9922. />
  9923. </productMenu>
  9924. <productMenu id="phone"
  9925. type="2" >
  9926. </productMenu>
  9927. <productMenu id="fmradio"
  9928. type="3" >
  9929. </productMenu>
  9930. <productMenu id="deviceSetting"
  9931. type="1"
  9932. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9933. <productMenuURL version="1.3.2"
  9934. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9935. />
  9936. <productMenuURL version="1.0.2"
  9937. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9938. />
  9939. </productMenu>
  9940. <productMenu id="quickGuide"
  9941. type="1"
  9942. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9943. size="686KB" >
  9944. </productMenu>
  9945. <productMenu id="userGuide"
  9946. type="1"
  9947. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9948. size="684KB" >
  9949. </productMenu>
  9950. <productMenu id="connectGuide"
  9951. type="1"
  9952. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9953. size="1.12MB" >
  9954. </productMenu>
  9955. <productID id="5612"
  9956. />
  9957. <productGroupable type="0"
  9958. />
  9959. </product>
  9960. <product id="10U_C3"
  9961. name="10U C3/C3Pro"
  9962. series="10"
  9963. latestVersion="2.0.4"
  9964. show = "1" >
  9965. <productMenu id="protocol"
  9966. type="0">
  9967. </productMenu>
  9968. <productMenu id="sip"
  9969. type="1" >
  9970. <productMenuType version="1.0.2"
  9971. type="0"
  9972. />
  9973. </productMenu>
  9974. <productMenu id="bluetoothIntercom"
  9975. type="1" >
  9976. <productMenuType version="1.0.2"
  9977. type="0"
  9978. />
  9979. </productMenu>
  9980. <productMenu id="phone"
  9981. type="2" >
  9982. </productMenu>
  9983. <productMenu id="fmradio"
  9984. type="3" >
  9985. </productMenu>
  9986. <productMenu id="deviceSetting"
  9987. type="1"
  9988. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9989. <productMenuURL version="1.3.2"
  9990. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9991. />
  9992. <productMenuURL version="1.0.2"
  9993. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9994. />
  9995. </productMenu>
  9996. <productMenu id="quickGuide"
  9997. type="1"
  9998. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9999. size="199KB" >
  10000. </productMenu>
  10001. <productMenu id="userGuide"
  10002. type="1"
  10003. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10004. size="684KB" >
  10005. </productMenu>
  10006. <productMenu id="connectGuide"
  10007. type="1"
  10008. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10009. size="1.12MB" >
  10010. </productMenu>
  10011. <productID id="5620"
  10012. />
  10013. <productGroupable type="0"
  10014. />
  10015. </product>
  10016. <product id="10U_ARAI"
  10017. name="10U Arai"
  10018. series="10"
  10019. latestVersion="2.0.4"
  10020. show = "1" >
  10021. <productMenu id="protocol"
  10022. type="0">
  10023. </productMenu>
  10024. <productMenu id="sip"
  10025. type="1" >
  10026. <productMenuType version="1.0.2"
  10027. type="0"
  10028. />
  10029. </productMenu>
  10030. <productMenu id="bluetoothIntercom"
  10031. type="1" >
  10032. <productMenuType version="1.0.2"
  10033. type="0"
  10034. />
  10035. </productMenu>
  10036. <productMenu id="phone"
  10037. type="2" >
  10038. </productMenu>
  10039. <productMenu id="fmradio"
  10040. type="3" >
  10041. </productMenu>
  10042. <productMenu id="deviceSetting"
  10043. type="1"
  10044. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10045. <productMenuURL version="1.3.2"
  10046. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10047. />
  10048. <productMenuURL version="1.0.2"
  10049. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10050. />
  10051. </productMenu>
  10052. <productMenu id="quickGuide"
  10053. type="1"
  10054. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  10055. size="689KB" >
  10056. </productMenu>
  10057. <productMenu id="userGuide"
  10058. type="1"
  10059. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10060. size="684KB" >
  10061. </productMenu>
  10062. <productMenu id="connectGuide"
  10063. type="1"
  10064. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10065. size="1.12MB" >
  10066. </productMenu>
  10067. <productID id="5621"
  10068. />
  10069. <productGroupable type="0"
  10070. />
  10071. </product>
  10072. <product id="10Upad"
  10073. name="10Upad"
  10074. series="10"
  10075. latestVersion="2.0.3"
  10076. show = "1" >
  10077. <productMenu id="protocol"
  10078. type="0">
  10079. </productMenu>
  10080. <productMenu id="sip"
  10081. type="1" >
  10082. </productMenu>
  10083. <productMenu id="bluetoothIntercom"
  10084. type="1" >
  10085. </productMenu>
  10086. <productMenu id="phone"
  10087. type="2" >
  10088. </productMenu>
  10089. <productMenu id="fmradio"
  10090. type="3" >
  10091. </productMenu>
  10092. <productMenu id="deviceSetting"
  10093. type="1"
  10094. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  10095. <productMenuURL version="1.0.3"
  10096. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  10097. />
  10098. </productMenu>
  10099. <productMenu id="quickGuide"
  10100. type="1"
  10101. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  10102. size="615KB" >
  10103. </productMenu>
  10104. <productMenu id="userGuide"
  10105. type="1"
  10106. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  10107. size="0.99MB" >
  10108. </productMenu>
  10109. <productMenu id="connectGuide"
  10110. type="1"
  10111. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  10112. size="1.12MB" >
  10113. </productMenu>
  10114. <productID id="6210"
  10115. />
  10116. <productGroupable type="0"
  10117. />
  10118. </product>
  10119. <product id="5S"
  10120. name="5S"
  10121. series="5"
  10122. latestVersion="2.3.1"
  10123. show = "1" >
  10124. <productMenu id="protocol"
  10125. type="3" >
  10126. </productMenu>
  10127. <productMenu id="sip"
  10128. type="1" >
  10129. </productMenu>
  10130. <productMenu id="bluetoothIntercom"
  10131. type="1" >
  10132. </productMenu>
  10133. <productMenu id="phone"
  10134. type="1" >
  10135. </productMenu>
  10136. <productMenu id="fmradio"
  10137. type="0" >
  10138. </productMenu>
  10139. <productMenu id="deviceSetting"
  10140. type="1"
  10141. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10142. </productMenu>
  10143. <productMenu id="quickGuide"
  10144. type="0"
  10145. url=""
  10146. size="934KB" >
  10147. </productMenu>
  10148. <productMenu id="userGuide"
  10149. type="1"
  10150. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  10151. size="1.14MB" >
  10152. </productMenu>
  10153. <productMenu id="connectGuide"
  10154. type="1"
  10155. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  10156. size="1.12MB" >
  10157. </productMenu>
  10158. <productID id="5590"
  10159. />
  10160. <productGroupable type="0"
  10161. />
  10162. </product>
  10163. <product id="5S"
  10164. name="5S"
  10165. series="5"
  10166. latestVersion="1.2"
  10167. show = "-1" >
  10168. <productMenu id="protocol"
  10169. type="0">
  10170. </productMenu>
  10171. <productMenu id="sip"
  10172. type="1" >
  10173. </productMenu>
  10174. <productMenu id="bluetoothIntercom"
  10175. type="1" >
  10176. </productMenu>
  10177. <productMenu id="phone"
  10178. type="2" >
  10179. </productMenu>
  10180. <productMenu id="fmradio"
  10181. type="3" >
  10182. </productMenu>
  10183. <productMenu id="deviceSetting"
  10184. type="1"
  10185. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  10186. </productMenu>
  10187. <productMenu id="quickGuide"
  10188. type="0"
  10189. url=""
  10190. size="970KB" >
  10191. </productMenu>
  10192. <productMenu id="userGuide"
  10193. type="1"
  10194. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  10195. size="1.26MB" >
  10196. </productMenu>
  10197. <productID id="5534"
  10198. />
  10199. <productGroupable type="0"
  10200. />
  10201. </product>
  10202. <product id="5S"
  10203. name="5S"
  10204. series="5"
  10205. latestVersion="3.0.1"
  10206. show = "-1" >
  10207. <productMenu id="protocol"
  10208. type="0">
  10209. </productMenu>
  10210. <productMenu id="sip"
  10211. type="1" >
  10212. </productMenu>
  10213. <productMenu id="bluetoothIntercom"
  10214. type="1" >
  10215. </productMenu>
  10216. <productMenu id="phone"
  10217. type="2" >
  10218. </productMenu>
  10219. <productMenu id="fmradio"
  10220. type="0" >
  10221. </productMenu>
  10222. <productMenu id="deviceSetting"
  10223. type="1"
  10224. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  10225. </productMenu>
  10226. <productMenu id="quickGuide"
  10227. type="0"
  10228. url=""
  10229. size="970KB" >
  10230. </productMenu>
  10231. <productMenu id="userGuide"
  10232. type="1"
  10233. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  10234. size="1.26MB" >
  10235. </productMenu>
  10236. <productID id="5538"
  10237. />
  10238. <productGroupable type="0"
  10239. />
  10240. </product>
  10241. <product id="3SPLUS"
  10242. name="3S PLUS"
  10243. series="3"
  10244. latestVersion="2.2"
  10245. show = "1" >
  10246. <productMenu id="protocol"
  10247. type="3" >
  10248. </productMenu>
  10249. <productMenu id="sip"
  10250. type="1" >
  10251. </productMenu>
  10252. <productMenu id="bluetoothIntercom"
  10253. type="1" >
  10254. </productMenu>
  10255. <productMenu id="deviceSetting"
  10256. type="1"
  10257. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  10258. <productMenuURL version="2.2.1"
  10259. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  10260. />
  10261. </productMenu>
  10262. <productMenu id="quickGuide"
  10263. type="1"
  10264. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10265. size="344KB" >
  10266. </productMenu>
  10267. <productMenu id="userGuide"
  10268. type="1"
  10269. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  10270. size="1.14MB" >
  10271. </productMenu>
  10272. <productMenu id="connectGuide"
  10273. type="1"
  10274. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  10275. size="1.12MB" >
  10276. </productMenu>
  10277. <productID id="4023"
  10278. />
  10279. <productGroupable type="0"
  10280. />
  10281. </product>
  10282. <product id="3SPLUS"
  10283. name="3S PLUS"
  10284. series="3"
  10285. latestVersion="1.1"
  10286. show = "-1" >
  10287. <productMenu id="protocol"
  10288. type="0">
  10289. </productMenu>
  10290. <productMenu id="sip"
  10291. type="1" >
  10292. </productMenu>
  10293. <productMenu id="bluetoothIntercom"
  10294. type="1" >
  10295. </productMenu>
  10296. <productMenu id="deviceSetting"
  10297. type="1"
  10298. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  10299. </productMenu>
  10300. <productMenu id="quickGuide"
  10301. type="1"
  10302. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10303. size="842KB" >
  10304. </productMenu>
  10305. <productMenu id="userGuide"
  10306. type="1"
  10307. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  10308. size="1.02MB" >
  10309. </productMenu>
  10310. <productID id="6320"
  10311. />
  10312. <productGroupable type="0"
  10313. />
  10314. </product>
  10315. <product id="AConnect"
  10316. name="Alpinestars A-Connect"
  10317. series="60"
  10318. latestVersion="1.0.2"
  10319. latestVersionMesh="0.19"
  10320. latestVersionVoicePrompt="1.6"
  10321. show = "-1" >
  10322. <productMenu id="protocol"
  10323. type="2" >
  10324. </productMenu>
  10325. <productMenu id="ota"
  10326. type="2" >
  10327. <otaLanguages>
  10328. <otaLanguage
  10329. id="0"
  10330. name="English"
  10331. package="0"
  10332. />
  10333. <otaLanguage
  10334. id="0"
  10335. name="French"
  10336. package="1"
  10337. />
  10338. <otaLanguage
  10339. id="0"
  10340. name="Spanish"
  10341. package="2"
  10342. />
  10343. <otaLanguage
  10344. id="0"
  10345. name="Italian"
  10346. package="3"
  10347. />
  10348. <otaLanguage
  10349. id="0"
  10350. name="German"
  10351. package="4"
  10352. />
  10353. <otaLanguage
  10354. id="0"
  10355. name="Dutch"
  10356. package="5"
  10357. />
  10358. <otaLanguage
  10359. id="0"
  10360. name="Russian"
  10361. package="6"
  10362. />
  10363. <otaLanguage
  10364. id="0"
  10365. name="Chinese"
  10366. package="7"
  10367. />
  10368. <otaLanguage
  10369. id="0"
  10370. name="Korean"
  10371. package="8"
  10372. />
  10373. <otaLanguage
  10374. id="0"
  10375. name="Japanese"
  10376. package="9"
  10377. />
  10378. <otaLanguage
  10379. id="0"
  10380. name="Finnish"
  10381. package="10"
  10382. />
  10383. <otaLanguage
  10384. id="0"
  10385. name="Polish"
  10386. package="11"
  10387. />
  10388. </otaLanguages>
  10389. <otaPackages>
  10390. <package
  10391. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  10392. size="5183988"
  10393. />
  10394. <package
  10395. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  10396. size="5183988"
  10397. />
  10398. <package
  10399. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  10400. size="5183988"
  10401. />
  10402. <package
  10403. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  10404. size="5183988"
  10405. />
  10406. <package
  10407. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  10408. size="5183988"
  10409. />
  10410. <package
  10411. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  10412. size="5183988"
  10413. />
  10414. <package
  10415. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  10416. size="5183988"
  10417. />
  10418. <package
  10419. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  10420. size="5183988"
  10421. />
  10422. <package
  10423. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  10424. size="5183988"
  10425. />
  10426. <package
  10427. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10428. size="5183988"
  10429. />
  10430. <package
  10431. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10432. size="5183988"
  10433. />
  10434. <package
  10435. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10436. size="5183988"
  10437. />
  10438. </otaPackages>
  10439. </productMenu>
  10440. <productMenu id="sip"
  10441. type="1" >
  10442. </productMenu>
  10443. <productMenu id="illusion"
  10444. type="0" >
  10445. </productMenu>
  10446. <productMenu id="meshIntercom+"
  10447. type="3"
  10448. url="2" >
  10449. </productMenu>
  10450. <productMenu id="waveIntercom"
  10451. type="1" >
  10452. </productMenu>
  10453. <productMenu id="bluetoothIntercom"
  10454. type="1"
  10455. url="2" >
  10456. </productMenu>
  10457. <productMenu id="bluetoothIntercomGrouping"
  10458. type="0" >
  10459. </productMenu>
  10460. <productMenu id="fmradio"
  10461. type="1"
  10462. url="1" >
  10463. </productMenu>
  10464. <productMenu id="phone"
  10465. type="1" >
  10466. </productMenu>
  10467. <productMenu id="music"
  10468. type="1" >
  10469. </productMenu>
  10470. <productMenu id="musicSharing"
  10471. type="0" >
  10472. </productMenu>
  10473. <productMenu id="deviceSetting"
  10474. type="1"
  10475. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/NS_SRL3Plus_01.xml" >
  10476. <productMenuURL version="1.0.3"
  10477. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml"
  10478. />
  10479. </productMenu>
  10480. <productMenu id="quickGuide"
  10481. type="0"
  10482. url=""
  10483. size="1.12MB" >
  10484. </productMenu>
  10485. <productMenu id="userGuide"
  10486. type="1"
  10487. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  10488. size="2.0MB" >
  10489. </productMenu>
  10490. <productMenu id="videoGuide"
  10491. type="0"
  10492. url=""
  10493. size="3.41MB" >
  10494. </productMenu>
  10495. <productMenu id="volume"
  10496. type="16" >
  10497. </productMenu>
  10498. <productMenu id="volume+"
  10499. type="2"
  10500. url="0x6004" >
  10501. </productMenu>
  10502. <productMenu id="soundMode"
  10503. type="0" >
  10504. </productMenu>
  10505. <productMenu id="battery"
  10506. type="1" >
  10507. </productMenu>
  10508. <productID id="6A82"
  10509. />
  10510. <productGroupable type="0"
  10511. />
  10512. </product>
  10513. <product id="iCon"
  10514. name="iCon"
  10515. series="50"
  10516. latestVersion="1.2"
  10517. show = "0" >
  10518. <productMenu id="protocol"
  10519. type="2" >
  10520. </productMenu>
  10521. <productMenu id="alexa"
  10522. type="0" >
  10523. </productMenu>
  10524. <productMenu id="wa"
  10525. type="0" >
  10526. </productMenu>
  10527. <productMenu id="sip"
  10528. type="1" >
  10529. </productMenu>
  10530. <productMenu id="led"
  10531. type="3" >
  10532. </productMenu>
  10533. <productMenu id="meshIntercom"
  10534. type="20" >
  10535. </productMenu>
  10536. <productMenu id="meshIntercom+"
  10537. type="3"
  10538. url="0" >
  10539. <productMenuType version="1.0.9"
  10540. type="2"
  10541. />
  10542. </productMenu>
  10543. <productMenu id="bluetoothIntercom"
  10544. type="1" >
  10545. </productMenu>
  10546. <productMenu id="phone"
  10547. type="1" >
  10548. </productMenu>
  10549. <productMenu id="music"
  10550. type="1" >
  10551. </productMenu>
  10552. <productMenu id="fmradio"
  10553. type="1" >
  10554. </productMenu>
  10555. <productMenu id="deviceSetting"
  10556. type="1"
  10557. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10558. <productMenuURL version="1.0.9"
  10559. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10560. />
  10561. </productMenu>
  10562. <productMenu id="quickGuide"
  10563. type="1"
  10564. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10565. size="344KB" >
  10566. </productMenu>
  10567. <productMenu id="userGuide"
  10568. type="1"
  10569. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10570. size="3.41MB" >
  10571. </productMenu>
  10572. <productMenu id="volume"
  10573. type="11" >
  10574. </productMenu>
  10575. <productMenu id="battery"
  10576. type="1" >
  10577. </productMenu>
  10578. <productID id="3900"
  10579. />
  10580. <productGroupable type="0"
  10581. />
  10582. </product>
  10583. <product id="ICONHelmLinkSL"
  10584. name="ICON HelmLink SL"
  10585. series="50"
  10586. latestVersion="1.0"
  10587. latestVersionVoicePrompt="1.6"
  10588. show = "-1" >
  10589. <productMenu id="protocol"
  10590. type="2" >
  10591. </productMenu>
  10592. <productMenu id="alexa"
  10593. type="0" >
  10594. </productMenu>
  10595. <productMenu id="ota"
  10596. type="2" >
  10597. <otaPackages>
  10598. <package
  10599. url="https://api.sena.com/support/OTA/Motorcycles/HELMLINKSL/ICON_HELMLINK_SL-v1.0-build1.img"
  10600. size="2945812"
  10601. />
  10602. </otaPackages>
  10603. </productMenu>
  10604. <productMenu id="wa"
  10605. type="0" >
  10606. </productMenu>
  10607. <productMenu id="meshIntercom"
  10608. type="30" >
  10609. </productMenu>
  10610. <productMenu id="meshIntercom+"
  10611. type="3"
  10612. url="2" >
  10613. </productMenu>
  10614. <productMenu id="waveIntercom"
  10615. type="1" >
  10616. </productMenu>
  10617. <productMenu id="phone"
  10618. type="1" >
  10619. </productMenu>
  10620. <productMenu id="music"
  10621. type="1" >
  10622. </productMenu>
  10623. <productMenu id="musicSharing"
  10624. type="0" >
  10625. </productMenu>
  10626. <productMenu id="deviceSetting"
  10627. type="1"
  10628. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10629. </productMenu>
  10630. <productMenu id="quickGuide"
  10631. type="0"
  10632. url=""
  10633. size="1.12MB" >
  10634. </productMenu>
  10635. <productMenu id="userGuide"
  10636. type="1"
  10637. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_HelmLink_SL_1.0.0_en_260604.pdf"
  10638. size="2.0MB" >
  10639. </productMenu>
  10640. <productMenu id="volume"
  10641. type="12" >
  10642. </productMenu>
  10643. <productMenu id="battery"
  10644. type="1" >
  10645. </productMenu>
  10646. <productID id="6842"
  10647. />
  10648. <productGroupable type="0"
  10649. />
  10650. </product>
  10651. <product id="HD50S"
  10652. name="H-D Audio 50S"
  10653. series="50"
  10654. latestVersion="1.0.1"
  10655. show = "-1" >
  10656. <productMenu id="protocol"
  10657. type="2" >
  10658. </productMenu>
  10659. <productMenu id="alexa"
  10660. type="0" >
  10661. </productMenu>
  10662. <productMenu id="ota"
  10663. type="0"
  10664. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10665. size="1150234" >
  10666. </productMenu>
  10667. <productMenu id="wa"
  10668. type="1" >
  10669. </productMenu>
  10670. <productMenu id="sip"
  10671. type="1" >
  10672. </productMenu>
  10673. <productMenu id="meshIntercom"
  10674. type="20" >
  10675. </productMenu>
  10676. <productMenu id="meshIntercom+"
  10677. type="3"
  10678. url="0" >
  10679. <productMenuType version="1.0.9"
  10680. type="2"
  10681. />
  10682. </productMenu>
  10683. <productMenu id="bluetoothIntercom"
  10684. type="1" >
  10685. </productMenu>
  10686. <productMenu id="phone"
  10687. type="1" >
  10688. </productMenu>
  10689. <productMenu id="music"
  10690. type="1" >
  10691. </productMenu>
  10692. <productMenu id="fmradio"
  10693. type="1" >
  10694. </productMenu>
  10695. <productMenu id="deviceSetting"
  10696. type="1"
  10697. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10698. <productMenuURL version="1.0.9"
  10699. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10700. />
  10701. </productMenu>
  10702. <productMenu id="quickGuide"
  10703. type="1"
  10704. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10705. size="934KB" >
  10706. </productMenu>
  10707. <productMenu id="userGuide"
  10708. type="1"
  10709. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10710. size="1.14MB" >
  10711. </productMenu>
  10712. <productMenu id="volume"
  10713. type="11" >
  10714. </productMenu>
  10715. <productMenu id="battery"
  10716. type="1" >
  10717. </productMenu>
  10718. <productID id="3156"
  10719. />
  10720. <productGroupable type="0"
  10721. />
  10722. </product>
  10723. <product id="HD50S"
  10724. name="H-D Audio 50S"
  10725. series="50"
  10726. latestVersion="2.0.2"
  10727. show = "0" >
  10728. <productMenu id="protocol"
  10729. type="2" >
  10730. </productMenu>
  10731. <productMenu id="alexa"
  10732. type="0" >
  10733. </productMenu>
  10734. <productMenu id="ota"
  10735. type="0"
  10736. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10737. size="1150234" >
  10738. </productMenu>
  10739. <productMenu id="wa"
  10740. type="1" >
  10741. </productMenu>
  10742. <productMenu id="sip"
  10743. type="1" >
  10744. </productMenu>
  10745. <productMenu id="meshIntercom"
  10746. type="20" >
  10747. </productMenu>
  10748. <productMenu id="meshIntercom+"
  10749. type="3"
  10750. url="0" >
  10751. <productMenuType version="2.0.9"
  10752. type="2"
  10753. />
  10754. </productMenu>
  10755. <productMenu id="bluetoothIntercom"
  10756. type="1" >
  10757. </productMenu>
  10758. <productMenu id="phone"
  10759. type="1" >
  10760. </productMenu>
  10761. <productMenu id="music"
  10762. type="1" >
  10763. </productMenu>
  10764. <productMenu id="fmradio"
  10765. type="1" >
  10766. </productMenu>
  10767. <productMenu id="deviceSetting"
  10768. type="1"
  10769. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10770. <productMenuURL version="2.0.9"
  10771. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10772. />
  10773. </productMenu>
  10774. <productMenu id="quickGuide"
  10775. type="1"
  10776. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10777. size="934KB" >
  10778. </productMenu>
  10779. <productMenu id="userGuide"
  10780. type="1"
  10781. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10782. size="1.14MB" >
  10783. </productMenu>
  10784. <productMenu id="volume"
  10785. type="11" >
  10786. </productMenu>
  10787. <productMenu id="battery"
  10788. type="1" >
  10789. </productMenu>
  10790. <productID id="3213"
  10791. />
  10792. <productGroupable type="0"
  10793. />
  10794. </product>
  10795. <product id="HD50C"
  10796. name="H-D Audio 50C"
  10797. series="50"
  10798. latestVersion="1.0.1"
  10799. show = "0" >
  10800. <productMenu id="protocol"
  10801. type="2" >
  10802. </productMenu>
  10803. <productMenu id="ota"
  10804. type="0" >
  10805. </productMenu>
  10806. <productMenu id="wa"
  10807. type="1" >
  10808. </productMenu>
  10809. <productMenu id="sip"
  10810. type="1" >
  10811. </productMenu>
  10812. <productMenu id="meshIntercom"
  10813. type="20" >
  10814. </productMenu>
  10815. <productMenu id="meshIntercom+"
  10816. type="3"
  10817. url="0" >
  10818. <productMenuType version="1.0.9"
  10819. type="2"
  10820. />
  10821. </productMenu>
  10822. <productMenu id="bluetoothIntercom"
  10823. type="1" >
  10824. </productMenu>
  10825. <productMenu id="phone"
  10826. type="1" >
  10827. </productMenu>
  10828. <productMenu id="music"
  10829. type="1" >
  10830. </productMenu>
  10831. <productMenu id="fmradio"
  10832. type="1" >
  10833. </productMenu>
  10834. <productMenu id="deviceSetting"
  10835. type="1"
  10836. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10837. <productMenuURL version="1.0.9"
  10838. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10839. />
  10840. </productMenu>
  10841. <productMenu id="quickGuide"
  10842. type="1"
  10843. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10844. size="344KB" >
  10845. </productMenu>
  10846. <productMenu id="userGuide"
  10847. type="1"
  10848. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10849. size="3.41MB" >
  10850. </productMenu>
  10851. <productMenu id="volume"
  10852. type="11" >
  10853. </productMenu>
  10854. <productMenu id="battery"
  10855. type="1" >
  10856. </productMenu>
  10857. <productID id="3240"
  10858. />
  10859. <productGroupable type="0"
  10860. />
  10861. </product>
  10862. <product id="HD50S"
  10863. name="FURY N04"
  10864. series="Helmet"
  10865. latestVersion="1.0"
  10866. show = "0" >
  10867. <productMenu id="protocol"
  10868. type="2" >
  10869. </productMenu>
  10870. <productMenu id="alexa"
  10871. type="0" >
  10872. </productMenu>
  10873. <productMenu id="ota"
  10874. type="0" >
  10875. </productMenu>
  10876. <productMenu id="wa"
  10877. type="0" >
  10878. </productMenu>
  10879. <productMenu id="meshIntercom"
  10880. type="20" >
  10881. </productMenu>
  10882. <productMenu id="meshIntercom+"
  10883. type="3"
  10884. url="0" >
  10885. <productMenuType version="1.0.9"
  10886. type="2"
  10887. />
  10888. </productMenu>
  10889. <productMenu id="phone"
  10890. type="1" >
  10891. </productMenu>
  10892. <productMenu id="music"
  10893. type="1" >
  10894. </productMenu>
  10895. <productMenu id="fmradio"
  10896. type="1" >
  10897. </productMenu>
  10898. <productMenu id="deviceSetting"
  10899. type="1"
  10900. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10901. <productMenuURL version="1.0.9"
  10902. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10903. />
  10904. </productMenu>
  10905. <productMenu id="quickGuide"
  10906. type="1"
  10907. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10908. size="1.12MB" >
  10909. </productMenu>
  10910. <productMenu id="userGuide"
  10911. type="1"
  10912. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10913. size="2.0MB" >
  10914. </productMenu>
  10915. <productMenu id="volume"
  10916. type="13" >
  10917. </productMenu>
  10918. <productMenu id="battery"
  10919. type="1" >
  10920. </productMenu>
  10921. <productID id="5553"
  10922. />
  10923. <productGroupable type="0"
  10924. />
  10925. </product>
  10926. <product id="XCOM3Pro"
  10927. name="X-COM3 Pro"
  10928. series="50"
  10929. latestVersion="1.1"
  10930. show = "0" >
  10931. <productMenu id="protocol"
  10932. type="2" >
  10933. </productMenu>
  10934. <productMenu id="alexa"
  10935. type="0" >
  10936. </productMenu>
  10937. <productMenu id="ota"
  10938. type="0" >
  10939. </productMenu>
  10940. <productMenu id="wa"
  10941. type="0" >
  10942. </productMenu>
  10943. <productMenu id="sip"
  10944. type="1" >
  10945. </productMenu>
  10946. <productMenu id="meshIntercom"
  10947. type="30" >
  10948. </productMenu>
  10949. <productMenu id="meshIntercom+"
  10950. type="3"
  10951. url="2" >
  10952. <productMenuType version="1.1"
  10953. type="2"
  10954. />
  10955. </productMenu>
  10956. <productMenu id="waveIntercom"
  10957. type="1" >
  10958. <productMenuType version="1.1"
  10959. type="0"
  10960. />
  10961. </productMenu>
  10962. <productMenu id="bluetoothIntercom"
  10963. type="1" >
  10964. </productMenu>
  10965. <productMenu id="phone"
  10966. type="1" >
  10967. </productMenu>
  10968. <productMenu id="music"
  10969. type="1" >
  10970. </productMenu>
  10971. <productMenu id="fmradio"
  10972. type="1" >
  10973. </productMenu>
  10974. <productMenu id="deviceSetting"
  10975. type="1"
  10976. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10977. <productMenuURL version="1.1"
  10978. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10979. />
  10980. </productMenu>
  10981. <productMenu id="quickGuide"
  10982. type="0"
  10983. url=""
  10984. size="344KB" >
  10985. </productMenu>
  10986. <productMenu id="userGuide"
  10987. type="1"
  10988. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10989. size="3.41MB" >
  10990. </productMenu>
  10991. <productMenu id="volume"
  10992. type="11" >
  10993. </productMenu>
  10994. <productMenu id="battery"
  10995. type="1" >
  10996. </productMenu>
  10997. <productID id="321A"
  10998. />
  10999. <productGroupable type="0"
  11000. />
  11001. </product>
  11002. <product id="XCOM3"
  11003. name="X-COM3"
  11004. series="20"
  11005. latestVersion="1.0"
  11006. show = "0" >
  11007. <productMenu id="protocol"
  11008. type="2" >
  11009. </productMenu>
  11010. <productMenu id="sip"
  11011. type="1" >
  11012. </productMenu>
  11013. <productMenu id="bluetoothIntercom"
  11014. type="1" >
  11015. </productMenu>
  11016. <productMenu id="phone"
  11017. type="1" >
  11018. </productMenu>
  11019. <productMenu id="music"
  11020. type="1" >
  11021. </productMenu>
  11022. <productMenu id="fmradio"
  11023. type="1" >
  11024. </productMenu>
  11025. <productMenu id="deviceSetting"
  11026. type="1"
  11027. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  11028. </productMenu>
  11029. <productMenu id="quickGuide"
  11030. type="0"
  11031. url=""
  11032. size="934KB" >
  11033. </productMenu>
  11034. <productMenu id="userGuide"
  11035. type="1"
  11036. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  11037. size="1.14MB" >
  11038. </productMenu>
  11039. <productMenu id="volume"
  11040. type="15" >
  11041. </productMenu>
  11042. <productID id="3410"
  11043. />
  11044. <productGroupable type="0"
  11045. />
  11046. </product>
  11047. <product id="X-COM2"
  11048. name="X-COM2"
  11049. series="20"
  11050. latestVersion="1.0.5"
  11051. show = "0" >
  11052. <productMenu id="protocol"
  11053. type="0">
  11054. </productMenu>
  11055. <productMenu id="sip"
  11056. type="1" >
  11057. </productMenu>
  11058. <productMenu id="bluetoothIntercom"
  11059. type="1" >
  11060. </productMenu>
  11061. <productMenu id="intercomSetting"
  11062. type="1" >
  11063. </productMenu>
  11064. <productMenu id="phone"
  11065. type="2" >
  11066. </productMenu>
  11067. <productMenu id="fmradio"
  11068. type="3" >
  11069. </productMenu>
  11070. <productMenu id="deviceSetting"
  11071. type="1"
  11072. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  11073. </productMenu>
  11074. <productMenu id="quickGuide"
  11075. type="1"
  11076. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  11077. size="796KB" >
  11078. </productMenu>
  11079. <productMenu id="userGuide"
  11080. type="1"
  11081. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  11082. size="1.90MB" >
  11083. </productMenu>
  11084. <productID id="2030"
  11085. />
  11086. <productGroupable type="1"
  11087. />
  11088. </product>
  11089. <product id="AVAABC"
  11090. name="AVA ABC"
  11091. series="SPIDER"
  11092. latestVersion="1.1"
  11093. show = "0" >
  11094. <productMenu id="protocol"
  11095. type="2" >
  11096. </productMenu>
  11097. <productMenu id="alexa"
  11098. type="0" >
  11099. </productMenu>
  11100. <productMenu id="ota"
  11101. type="0" >
  11102. <productMenuType version="1.0"
  11103. type="0"
  11104. />
  11105. <otaPackages>
  11106. <package
  11107. url="https://api.sena.com/support/OTA/"
  11108. size="2945812"
  11109. />
  11110. </otaPackages>
  11111. </productMenu>
  11112. <productMenu id="wa"
  11113. type="0" >
  11114. </productMenu>
  11115. <productMenu id="meshIntercom"
  11116. type="30" >
  11117. <productMenuType version="1.0"
  11118. type="20"
  11119. />
  11120. </productMenu>
  11121. <productMenu id="meshIntercom+"
  11122. type="3"
  11123. url="2" >
  11124. <productMenuType version="1.0"
  11125. type="2"
  11126. />
  11127. <productMenuURL version="1.0"
  11128. url="0"
  11129. />
  11130. </productMenu>
  11131. <productMenu id="waveIntercom"
  11132. type="1" >
  11133. <productMenuType version="1.0"
  11134. type="0"
  11135. />
  11136. </productMenu>
  11137. <productMenu id="phone"
  11138. type="1" >
  11139. </productMenu>
  11140. <productMenu id="music"
  11141. type="1" >
  11142. </productMenu>
  11143. <productMenu id="musicSharing"
  11144. type="0" >
  11145. </productMenu>
  11146. <productMenu id="deviceSetting"
  11147. type="1"
  11148. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  11149. <productMenuURL version="1.0"
  11150. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  11151. />
  11152. </productMenu>
  11153. <productMenu id="quickGuide"
  11154. type="1"
  11155. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  11156. size="1.12MB" >
  11157. </productMenu>
  11158. <productMenu id="userGuide"
  11159. type="1"
  11160. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  11161. size="2.0MB" >
  11162. </productMenu>
  11163. <productMenu id="volume"
  11164. type="12" >
  11165. </productMenu>
  11166. <productMenu id="battery"
  11167. type="1" >
  11168. </productMenu>
  11169. <productID id="6808"
  11170. />
  11171. <productGroupable type="0"
  11172. />
  11173. </product>
  11174. <product id="ADVANCEProCOM2"
  11175. name="ADVANCE ProCOM 2"
  11176. series="Helmet"
  11177. latestVersion="0.5"
  11178. latestVersionVoicePrompt="0.3"
  11179. show = "-1" >
  11180. <productMenu id="protocol"
  11181. type="2" >
  11182. </productMenu>
  11183. <productMenu id="ota"
  11184. type="2" >
  11185. <otaLanguages>
  11186. <otaLanguage
  11187. id="0"
  11188. name="English"
  11189. package="0"
  11190. />
  11191. <otaLanguage
  11192. id="0"
  11193. name="French"
  11194. package="1"
  11195. />
  11196. <otaLanguage
  11197. id="0"
  11198. name="Spanish"
  11199. package="2"
  11200. />
  11201. <otaLanguage
  11202. id="0"
  11203. name="Italian"
  11204. package="3"
  11205. />
  11206. <otaLanguage
  11207. id="0"
  11208. name="German"
  11209. package="4"
  11210. />
  11211. <otaLanguage
  11212. id="0"
  11213. name="Dutch"
  11214. package="5"
  11215. />
  11216. <otaLanguage
  11217. id="0"
  11218. name="Russian"
  11219. package="6"
  11220. />
  11221. <otaLanguage
  11222. id="0"
  11223. name="Chinese"
  11224. package="7"
  11225. />
  11226. <otaLanguage
  11227. id="0"
  11228. name="Korean"
  11229. package="8"
  11230. />
  11231. <otaLanguage
  11232. id="0"
  11233. name="Japanese"
  11234. package="9"
  11235. />
  11236. <otaLanguage
  11237. id="0"
  11238. name="Finnish"
  11239. package="10"
  11240. />
  11241. <otaLanguage
  11242. id="0"
  11243. name="Polish"
  11244. package="11"
  11245. />
  11246. </otaLanguages>
  11247. <otaPackages>
  11248. <package
  11249. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  11250. size="5183988"
  11251. />
  11252. <package
  11253. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  11254. size="5183988"
  11255. />
  11256. <package
  11257. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  11258. size="5183988"
  11259. />
  11260. <package
  11261. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  11262. size="5183988"
  11263. />
  11264. <package
  11265. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  11266. size="5183988"
  11267. />
  11268. <package
  11269. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  11270. size="5183988"
  11271. />
  11272. <package
  11273. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  11274. size="5183988"
  11275. />
  11276. <package
  11277. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  11278. size="5183988"
  11279. />
  11280. <package
  11281. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  11282. size="5183988"
  11283. />
  11284. <package
  11285. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  11286. size="5183988"
  11287. />
  11288. <package
  11289. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  11290. size="5183988"
  11291. />
  11292. <package
  11293. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  11294. size="5183988"
  11295. />
  11296. </otaPackages>
  11297. </productMenu>
  11298. <productMenu id="wa"
  11299. type="0" >
  11300. </productMenu>
  11301. <productMenu id="meshIntercom"
  11302. type="30" >
  11303. </productMenu>
  11304. <productMenu id="meshIntercom+"
  11305. type="3"
  11306. url="2" >
  11307. </productMenu>
  11308. <productMenu id="waveIntercom"
  11309. type="1" >
  11310. </productMenu>
  11311. <productMenu id="fmradio"
  11312. type="1" >
  11313. </productMenu>
  11314. <productMenu id="phone"
  11315. type="0" >
  11316. </productMenu>
  11317. <productMenu id="music"
  11318. type="1" >
  11319. </productMenu>
  11320. <productMenu id="musicSharing"
  11321. type="0" >
  11322. </productMenu>
  11323. <productMenu id="deviceSetting"
  11324. type="1"
  11325. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  11326. </productMenu>
  11327. <productMenu id="quickGuide"
  11328. type="0"
  11329. url=""
  11330. size="1.12MB" >
  11331. </productMenu>
  11332. <productMenu id="userGuide"
  11333. type="1"
  11334. url=""
  11335. size="2.0MB" >
  11336. </productMenu>
  11337. <productMenu id="videoGuide"
  11338. type="0"
  11339. url=""
  11340. size="3.41MB" >
  11341. </productMenu>
  11342. <productMenu id="connectGuide"
  11343. type="1"
  11344. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  11345. size="1.12MB" >
  11346. </productMenu>
  11347. <productMenu id="volume"
  11348. type="16" >
  11349. </productMenu>
  11350. <productMenu id="battery"
  11351. type="1" >
  11352. </productMenu>
  11353. <productID id="6A85"
  11354. />
  11355. <productGroupable type="0"
  11356. />
  11357. </product>
  11358. <product id="TRIUMPH60X"
  11359. name="TRIUMPH 60X"
  11360. series="60"
  11361. latestVersion="1.0"
  11362. latestVersionMesh="0.19"
  11363. latestVersionVoicePrompt="1.7"
  11364. show = "-1" >
  11365. <productMenu id="protocol"
  11366. type="2" >
  11367. </productMenu>
  11368. <productMenu id="ota"
  11369. type="0" >
  11370. <otaLanguages>
  11371. <otaLanguage
  11372. id="0"
  11373. name="English"
  11374. package="0"
  11375. />
  11376. <otaLanguage
  11377. id="0"
  11378. name="French"
  11379. package="1"
  11380. />
  11381. <otaLanguage
  11382. id="0"
  11383. name="Spanish"
  11384. package="2"
  11385. />
  11386. <otaLanguage
  11387. id="0"
  11388. name="Italian"
  11389. package="3"
  11390. />
  11391. <otaLanguage
  11392. id="0"
  11393. name="German"
  11394. package="4"
  11395. />
  11396. <otaLanguage
  11397. id="0"
  11398. name="Dutch"
  11399. package="5"
  11400. />
  11401. <otaLanguage
  11402. id="0"
  11403. name="Russian"
  11404. package="6"
  11405. />
  11406. <otaLanguage
  11407. id="0"
  11408. name="Chinese"
  11409. package="7"
  11410. />
  11411. <otaLanguage
  11412. id="0"
  11413. name="Korean"
  11414. package="8"
  11415. />
  11416. <otaLanguage
  11417. id="0"
  11418. name="Japanese"
  11419. package="9"
  11420. />
  11421. <otaLanguage
  11422. id="0"
  11423. name="Finnish"
  11424. package="10"
  11425. />
  11426. <otaLanguage
  11427. id="0"
  11428. name="Polish"
  11429. package="11"
  11430. />
  11431. </otaLanguages>
  11432. <otaPackages>
  11433. <package
  11434. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1.img"
  11435. size="5183988"
  11436. />
  11437. <package
  11438. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-fr-FR.img"
  11439. size="5183988"
  11440. />
  11441. <package
  11442. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-es-ES.img"
  11443. size="5183988"
  11444. />
  11445. <package
  11446. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-it-IT.img"
  11447. size="5183988"
  11448. />
  11449. <package
  11450. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-de-DE.img"
  11451. size="5183988"
  11452. />
  11453. <package
  11454. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-nl-NL.img"
  11455. size="5183988"
  11456. />
  11457. <package
  11458. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-ru-RU.img"
  11459. size="5183988"
  11460. />
  11461. <package
  11462. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-cmn-CN.img"
  11463. size="5183988"
  11464. />
  11465. <package
  11466. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-ko-KR.img"
  11467. size="5183988"
  11468. />
  11469. <package
  11470. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-ja-JP.img"
  11471. size="5183988"
  11472. />
  11473. <package
  11474. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-fi-FI.img"
  11475. size="5183988"
  11476. />
  11477. <package
  11478. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-pl-PL.img"
  11479. size="5183988"
  11480. />
  11481. </otaPackages>
  11482. </productMenu>
  11483. <productMenu id="wa"
  11484. type="0" >
  11485. </productMenu>
  11486. <productMenu id="sip"
  11487. type="1" >
  11488. </productMenu>
  11489. <productMenu id="led"
  11490. type="1" >
  11491. </productMenu>
  11492. <productMenu id="illusion"
  11493. type="1" >
  11494. </productMenu>
  11495. <productMenu id="meshIntercom"
  11496. type="30" >
  11497. </productMenu>
  11498. <productMenu id="meshIntercom+"
  11499. type="3"
  11500. url="2" >
  11501. </productMenu>
  11502. <productMenu id="bluetoothIntercom"
  11503. type="1" >
  11504. </productMenu>
  11505. <productMenu id="fmradio"
  11506. type="1"
  11507. url="1" >
  11508. </productMenu>
  11509. <productMenu id="mic"
  11510. type="0" >
  11511. </productMenu>
  11512. <productMenu id="phone"
  11513. type="1" >
  11514. </productMenu>
  11515. <productMenu id="music"
  11516. type="1" >
  11517. </productMenu>
  11518. <productMenu id="musicSharing"
  11519. type="0" >
  11520. </productMenu>
  11521. <productMenu id="deviceSetting"
  11522. type="1"
  11523. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  11524. </productMenu>
  11525. <productMenu id="quickGuide"
  11526. type="0"
  11527. url=""
  11528. size="1.12MB" >
  11529. </productMenu>
  11530. <productMenu id="userGuide"
  11531. type="1"
  11532. url=""
  11533. size="2.0MB" >
  11534. </productMenu>
  11535. <productMenu id="videoGuide"
  11536. type="0"
  11537. url=""
  11538. size="3.41MB" >
  11539. </productMenu>
  11540. <productMenu id="keySettings"
  11541. type="1"
  11542. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  11543. </productMenu>
  11544. <productMenu id="volume"
  11545. type="13" >
  11546. </productMenu>
  11547. <productMenu id="volume+"
  11548. type="2"
  11549. url="0x6004" >
  11550. </productMenu>
  11551. <productMenu id="battery"
  11552. type="1" >
  11553. </productMenu>
  11554. <productID id="6A1C"
  11555. />
  11556. <productGroupable type="0"
  11557. />
  11558. </product>
  11559. <product id="Triumph_50S"
  11560. name="Triumph 50S"
  11561. series="50"
  11562. latestVersion="1.5"
  11563. show = "0" >
  11564. <productMenu id="protocol"
  11565. type="2" >
  11566. </productMenu>
  11567. <productMenu id="alexa"
  11568. type="0" >
  11569. </productMenu>
  11570. <productMenu id="ota"
  11571. type="0"
  11572. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11573. size="1150234" >
  11574. </productMenu>
  11575. <productMenu id="wa"
  11576. type="1" >
  11577. </productMenu>
  11578. <productMenu id="sip"
  11579. type="1" >
  11580. </productMenu>
  11581. <productMenu id="meshIntercom"
  11582. type="20" >
  11583. </productMenu>
  11584. <productMenu id="bluetoothIntercom"
  11585. type="1" >
  11586. </productMenu>
  11587. <productMenu id="meshIntercom+"
  11588. type="3"
  11589. url="2" >
  11590. <productMenuType version="1.2.9"
  11591. type="2"
  11592. />
  11593. <productMenuURL version="1.2.9"
  11594. url="0"
  11595. />
  11596. </productMenu>
  11597. <productMenu id="waveIntercom"
  11598. type="1" >
  11599. <productMenuType version="1.2.9"
  11600. type="0"
  11601. />
  11602. </productMenu>
  11603. <productMenu id="phone"
  11604. type="1" >
  11605. </productMenu>
  11606. <productMenu id="music"
  11607. type="1" >
  11608. </productMenu>
  11609. <productMenu id="fmradio"
  11610. type="1" >
  11611. </productMenu>
  11612. <productMenu id="deviceSetting"
  11613. type="1"
  11614. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11615. <productMenuURL version="1.2.9"
  11616. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  11617. />
  11618. <productMenuURL version="1.0"
  11619. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11620. />
  11621. </productMenu>
  11622. <productMenu id="quickGuide"
  11623. type="1"
  11624. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  11625. size="934KB" >
  11626. </productMenu>
  11627. <productMenu id="userGuide"
  11628. type="1"
  11629. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  11630. size="1.14MB" >
  11631. </productMenu>
  11632. <productMenu id="volume"
  11633. type="11" >
  11634. </productMenu>
  11635. <productMenu id="battery"
  11636. type="1" >
  11637. </productMenu>
  11638. <productID id="3264"
  11639. />
  11640. <productGroupable type="0"
  11641. />
  11642. </product>
  11643. <product id="RE50S"
  11644. name="RE 50S"
  11645. series="50"
  11646. latestVersion="2.7"
  11647. show = "0" >
  11648. <productMenu id="protocol"
  11649. type="2" >
  11650. </productMenu>
  11651. <productMenu id="alexa"
  11652. type="0" >
  11653. </productMenu>
  11654. <productMenu id="ota"
  11655. type="0"
  11656. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11657. size="1150234" >
  11658. </productMenu>
  11659. <productMenu id="wa"
  11660. type="1" >
  11661. </productMenu>
  11662. <productMenu id="sip"
  11663. type="1" >
  11664. </productMenu>
  11665. <productMenu id="meshIntercom"
  11666. type="30" >
  11667. </productMenu>
  11668. <productMenu id="meshIntercom+"
  11669. type="3"
  11670. url="2" >
  11671. <productMenuType version="2.5"
  11672. type="2"
  11673. />
  11674. </productMenu>
  11675. <productMenu id="waveIntercom"
  11676. type="1" >
  11677. <productMenuType version="2.5"
  11678. type="0"
  11679. />
  11680. </productMenu>
  11681. <productMenu id="bluetoothIntercom"
  11682. type="1" >
  11683. </productMenu>
  11684. <productMenu id="phone"
  11685. type="1" >
  11686. </productMenu>
  11687. <productMenu id="music"
  11688. type="1" >
  11689. </productMenu>
  11690. <productMenu id="fmradio"
  11691. type="1" >
  11692. </productMenu>
  11693. <productMenu id="deviceSetting"
  11694. type="1"
  11695. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11696. <productMenuURL version="2.5.9"
  11697. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11698. />
  11699. </productMenu>
  11700. <productMenu id="quickGuide"
  11701. type="1"
  11702. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11703. size="934KB" >
  11704. </productMenu>
  11705. <productMenu id="userGuide"
  11706. type="1"
  11707. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11708. size="1.14MB" >
  11709. </productMenu>
  11710. <productMenu id="videoGuide"
  11711. type="0"
  11712. url=""
  11713. size="3.41MB" >
  11714. </productMenu>
  11715. <productMenu id="volume"
  11716. type="11" >
  11717. </productMenu>
  11718. <productMenu id="battery"
  11719. type="1" >
  11720. </productMenu>
  11721. <productID id="321C"
  11722. />
  11723. <productGroupable type="0"
  11724. />
  11725. </product>
  11726. <product id="BMW_HELMET_II_U1"
  11727. name="BMW HELMET II U1"
  11728. series="50"
  11729. latestVersion="1.0"
  11730. show = "0" >
  11731. <productMenu id="protocol"
  11732. type="2" >
  11733. </productMenu>
  11734. <productMenu id="alexa"
  11735. type="0" >
  11736. </productMenu>
  11737. <productMenu id="sip"
  11738. type="1" >
  11739. </productMenu>
  11740. <productMenu id="meshIntercom"
  11741. type="20" >
  11742. </productMenu>
  11743. <productMenu id="bluetoothIntercom"
  11744. type="1" >
  11745. </productMenu>
  11746. <productMenu id="bluetoothIntercom2"
  11747. type="1" >
  11748. </productMenu>
  11749. <productMenu id="phone"
  11750. type="1" >
  11751. </productMenu>
  11752. <productMenu id="music"
  11753. type="1" >
  11754. </productMenu>
  11755. <productMenu id="fmradio"
  11756. type="1" >
  11757. </productMenu>
  11758. <productMenu id="deviceSetting"
  11759. type="1"
  11760. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11761. </productMenu>
  11762. <productMenu id="quickGuide"
  11763. type="1"
  11764. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11765. size="934KB" >
  11766. </productMenu>
  11767. <productMenu id="userGuide"
  11768. type="1"
  11769. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11770. size="1.14MB" >
  11771. </productMenu>
  11772. <productMenu id="volume"
  11773. type="11" >
  11774. </productMenu>
  11775. <productMenu id="battery"
  11776. type="1" >
  11777. </productMenu>
  11778. <productID id="3260"
  11779. />
  11780. <productGroupable type="0"
  11781. />
  11782. </product>
  11783. <product id="OUTRUSHR"
  11784. name="CX935"
  11785. series="Helmet"
  11786. latestVersion="2.1"
  11787. show = "-1" >
  11788. <productMenu id="protocol"
  11789. type="3">
  11790. </productMenu>
  11791. <productMenu id="sip"
  11792. type="1" >
  11793. </productMenu>
  11794. <productMenu id="bluetoothIntercom"
  11795. type="1" >
  11796. </productMenu>
  11797. <productMenu id="phone"
  11798. type="1" >
  11799. </productMenu>
  11800. <productMenu id="fmradio"
  11801. type="0" >
  11802. </productMenu>
  11803. <productMenu id="deviceSetting"
  11804. type="1"
  11805. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11806. </productMenu>
  11807. <productMenu id="userGuide"
  11808. type="1"
  11809. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11810. size="660KB" >
  11811. </productMenu>
  11812. <productID id="5446"
  11813. />
  11814. <productGroupable type="0"
  11815. />
  11816. </product>
  11817. <product id="LSE_01"
  11818. name="LSE-01"
  11819. series="SF"
  11820. latestVersion="1.2.3"
  11821. show = "0" >
  11822. <productMenu id="protocol"
  11823. type="1"
  11824. url="3">
  11825. </productMenu>
  11826. <productMenu id="sip"
  11827. type="1" >
  11828. </productMenu>
  11829. <productMenu id="bluetoothIntercom"
  11830. type="1" >
  11831. </productMenu>
  11832. <productMenu id="phone"
  11833. type="1" >
  11834. </productMenu>
  11835. <productMenu id="music"
  11836. type="1" >
  11837. </productMenu>
  11838. <productMenu id="fmradio"
  11839. type="1" >
  11840. </productMenu>
  11841. <productMenu id="deviceSetting"
  11842. type="1"
  11843. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11844. <productMenuURL version="1.1"
  11845. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11846. />
  11847. <productMenuURL version="1.0"
  11848. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11849. />
  11850. </productMenu>
  11851. <productMenu id="quickGuide"
  11852. type="1"
  11853. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11854. size="607KB" >
  11855. </productMenu>
  11856. <productMenu id="userGuide"
  11857. type="1"
  11858. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11859. size="1.91MB" >
  11860. </productMenu>
  11861. <productMenu id="volume"
  11862. type="4" >
  11863. </productMenu>
  11864. <productID id="5416"
  11865. />
  11866. <productGroupable type="0"
  11867. />
  11868. </product>
  11869. <product id="AGV_ARK"
  11870. name="AGV ARK"
  11871. series="SF"
  11872. latestVersion="1.0.3"
  11873. show = "0" >
  11874. <productMenu id="protocol"
  11875. type="1"
  11876. url="3">
  11877. </productMenu>
  11878. <productMenu id="sip"
  11879. type="1" >
  11880. </productMenu>
  11881. <productMenu id="bluetoothIntercom"
  11882. type="1" >
  11883. </productMenu>
  11884. <productMenu id="phone"
  11885. type="1" >
  11886. </productMenu>
  11887. <productMenu id="music"
  11888. type="1" >
  11889. </productMenu>
  11890. <productMenu id="fmradio"
  11891. type="1" >
  11892. </productMenu>
  11893. <productMenu id="deviceSetting"
  11894. type="1"
  11895. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11896. </productMenu>
  11897. <productMenu id="quickGuide"
  11898. type="1"
  11899. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11900. size="607KB" >
  11901. </productMenu>
  11902. <productMenu id="userGuide"
  11903. type="1"
  11904. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11905. size="1.91MB" >
  11906. </productMenu>
  11907. <productMenu id="volume"
  11908. type="4" >
  11909. </productMenu>
  11910. <productID id="5420"
  11911. />
  11912. <productGroupable type="0"
  11913. />
  11914. </product>
  11915. <product id="KLIM_KRIOS"
  11916. name="KLIM Krios"
  11917. series="10"
  11918. latestVersion="1.1.2"
  11919. show = "0" >
  11920. <productMenu id="protocol"
  11921. type="0">
  11922. </productMenu>
  11923. <productMenu id="sip"
  11924. type="1" >
  11925. </productMenu>
  11926. <productMenu id="bluetoothIntercom"
  11927. type="1" >
  11928. </productMenu>
  11929. <productMenu id="phone"
  11930. type="2" >
  11931. </productMenu>
  11932. <productMenu id="fmradio"
  11933. type="3" >
  11934. </productMenu>
  11935. <productMenu id="deviceSetting"
  11936. type="1"
  11937. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11938. <productMenuURL version="1.0"
  11939. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11940. />
  11941. </productMenu>
  11942. <productMenu id="quickGuide"
  11943. type="1"
  11944. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11945. size="649KB" >
  11946. </productMenu>
  11947. <productMenu id="userGuide"
  11948. type="1"
  11949. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11950. size="1.43MB" >
  11951. </productMenu>
  11952. <productID id="5910"
  11953. />
  11954. <productGroupable type="0"
  11955. />
  11956. </product>
  11957. <product id="POLARIS_SLINGSHOT"
  11958. name="Polaris Slingshot"
  11959. series="10"
  11960. latestVersion="1.1.2"
  11961. show = "0" >
  11962. <productMenu id="protocol"
  11963. type="0">
  11964. </productMenu>
  11965. <productMenu id="sip"
  11966. type="1" >
  11967. </productMenu>
  11968. <productMenu id="bluetoothIntercom"
  11969. type="1" >
  11970. </productMenu>
  11971. <productMenu id="phone"
  11972. type="2" >
  11973. </productMenu>
  11974. <productMenu id="fmradio"
  11975. type="3" >
  11976. </productMenu>
  11977. <productMenu id="deviceSetting"
  11978. type="1"
  11979. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11980. <productMenuURL version="1.0"
  11981. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11982. />
  11983. </productMenu>
  11984. <productMenu id="quickGuide"
  11985. type="1"
  11986. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11987. size="689KB" >
  11988. </productMenu>
  11989. <productMenu id="userGuide"
  11990. type="1"
  11991. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11992. size="1.43MB" >
  11993. </productMenu>
  11994. <productID id="5920"
  11995. />
  11996. <productGroupable type="0"
  11997. />
  11998. </product>
  11999. <product id="DWO6"
  12000. name="SEDICI DWO6-PRO"
  12001. series="10"
  12002. latestVersion="1.0.2"
  12003. show = "0" >
  12004. <productMenu id="protocol"
  12005. type="0">
  12006. </productMenu>
  12007. <productMenu id="sip"
  12008. type="1" >
  12009. </productMenu>
  12010. <productMenu id="bluetoothIntercom"
  12011. type="1" >
  12012. </productMenu>
  12013. <productMenu id="phone"
  12014. type="2" >
  12015. </productMenu>
  12016. <productMenu id="fmradio"
  12017. type="3" >
  12018. </productMenu>
  12019. <productMenu id="deviceSetting"
  12020. type="1"
  12021. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  12022. </productMenu>
  12023. <productMenu id="quickGuide"
  12024. type="1"
  12025. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  12026. size="529KB" >
  12027. </productMenu>
  12028. <productMenu id="userGuide"
  12029. type="1"
  12030. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  12031. size="4.09MB" >
  12032. </productMenu>
  12033. <productID id="6112"
  12034. />
  12035. <productGroupable type="0"
  12036. />
  12037. </product>
  12038. <product id="DWO6A"
  12039. name="SEDICI DWO-6"
  12040. series="10"
  12041. latestVersion="1.0.2"
  12042. show = "0" >
  12043. <productMenu id="protocol"
  12044. type="0">
  12045. </productMenu>
  12046. <productMenu id="sip"
  12047. type="1" >
  12048. </productMenu>
  12049. <productMenu id="bluetoothIntercom"
  12050. type="1" >
  12051. </productMenu>
  12052. <productMenu id="phone"
  12053. type="2" >
  12054. </productMenu>
  12055. <productMenu id="fmradio"
  12056. type="3" >
  12057. </productMenu>
  12058. <productMenu id="deviceSetting"
  12059. type="1"
  12060. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  12061. </productMenu>
  12062. <productMenu id="quickGuide"
  12063. type="1"
  12064. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  12065. size="522KB" >
  12066. </productMenu>
  12067. <productMenu id="userGuide"
  12068. type="1"
  12069. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  12070. size="2.71MB" >
  12071. </productMenu>
  12072. <productID id="6114"
  12073. />
  12074. <productGroupable type="0"
  12075. />
  12076. </product>
  12077. <product id="3SPLUS"
  12078. name="ZILL"
  12079. series="3"
  12080. latestVersion="1.0.4"
  12081. show = "0" >
  12082. <productMenu id="protocol"
  12083. type="0">
  12084. </productMenu>
  12085. <productMenu id="sip"
  12086. type="1" >
  12087. </productMenu>
  12088. <productMenu id="bluetoothIntercom"
  12089. type="1" >
  12090. </productMenu>
  12091. <productMenu id="deviceSetting"
  12092. type="1"
  12093. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  12094. </productMenu>
  12095. <productMenu id="quickGuide"
  12096. type="1"
  12097. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  12098. size="842KB" >
  12099. </productMenu>
  12100. <productMenu id="userGuide"
  12101. type="1"
  12102. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  12103. size="1.02MB" >
  12104. </productMenu>
  12105. <productID id="6335"
  12106. />
  12107. <productGroupable type="0"
  12108. />
  12109. </product>
  12110. <product id="HD50S"
  12111. name="Boom! Audio 30K"
  12112. series="30"
  12113. latestVersion="3.4"
  12114. show = "0" >
  12115. <productMenu id="protocol"
  12116. type="1"
  12117. url="0">
  12118. </productMenu>
  12119. <productMenu id="wa"
  12120. type="0" >
  12121. </productMenu>
  12122. <productMenu id="sip"
  12123. type="1" >
  12124. </productMenu>
  12125. <productMenu id="meshIntercom"
  12126. type="20" >
  12127. <productMenuType version="2.9.9"
  12128. type="10"
  12129. />
  12130. </productMenu>
  12131. <productMenu id="bluetoothIntercom"
  12132. type="1" >
  12133. </productMenu>
  12134. <productMenu id="phone"
  12135. type="1" >
  12136. </productMenu>
  12137. <productMenu id="music"
  12138. type="1" >
  12139. </productMenu>
  12140. <productMenu id="fmradio"
  12141. type="1" >
  12142. </productMenu>
  12143. <productMenu id="deviceSetting"
  12144. type="1"
  12145. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  12146. <productMenuURL version="3.2"
  12147. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  12148. />
  12149. <productMenuURL version="3.0"
  12150. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  12151. />
  12152. <productMenuURL version="2.2"
  12153. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12154. />
  12155. </productMenu>
  12156. <productMenu id="quickGuide"
  12157. type="1"
  12158. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12159. size="1.06MB" >
  12160. </productMenu>
  12161. <productMenu id="userGuide"
  12162. type="1"
  12163. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12164. size="3.15MB" >
  12165. </productMenu>
  12166. <productMenu id="volume"
  12167. type="1" >
  12168. </productMenu>
  12169. <productID id="3112"
  12170. />
  12171. <productGroupable type="0"
  12172. />
  12173. </product>
  12174. <product id="HD50S"
  12175. name="Boom! Audio N02"
  12176. series="30"
  12177. latestVersion="3.1"
  12178. show = "0" >
  12179. <productMenu id="protocol"
  12180. type="1"
  12181. url="0">
  12182. </productMenu>
  12183. <productMenu id="wa"
  12184. type="2" >
  12185. </productMenu>
  12186. <productMenu id="sip"
  12187. type="1" >
  12188. </productMenu>
  12189. <productMenu id="meshIntercom"
  12190. type="20" >
  12191. <productMenuType version="2.9.9"
  12192. type="10"
  12193. />
  12194. </productMenu>
  12195. <productMenu id="bluetoothIntercom"
  12196. type="1" >
  12197. </productMenu>
  12198. <productMenu id="phone"
  12199. type="1" >
  12200. </productMenu>
  12201. <productMenu id="music"
  12202. type="1" >
  12203. </productMenu>
  12204. <productMenu id="fmradio"
  12205. type="1" >
  12206. </productMenu>
  12207. <productMenu id="deviceSetting"
  12208. type="1"
  12209. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  12210. <productMenuURL version="2.2"
  12211. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12212. />
  12213. </productMenu>
  12214. <productMenu id="quickGuide"
  12215. type="1"
  12216. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  12217. size="1.06MB" >
  12218. </productMenu>
  12219. <productMenu id="userGuide"
  12220. type="1"
  12221. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  12222. size="3.15MB" >
  12223. </productMenu>
  12224. <productMenu id="volume"
  12225. type="2" >
  12226. </productMenu>
  12227. <productID id="3114"
  12228. />
  12229. <productGroupable type="0"
  12230. />
  12231. </product>
  12232. <product id="HD50S"
  12233. name="Boom Audio 20S"
  12234. series="50"
  12235. latestVersion="2.5.2"
  12236. show = "0" >
  12237. <productMenu id="protocol"
  12238. type="0">
  12239. </productMenu>
  12240. <productMenu id="sip"
  12241. type="1" >
  12242. <productMenuType version="1.0"
  12243. type="0"
  12244. />
  12245. </productMenu>
  12246. <productMenu id="bluetoothIntercom"
  12247. type="1" >
  12248. <productMenuType version="1.0"
  12249. type="0"
  12250. />
  12251. </productMenu>
  12252. <productMenu id="intercomSetting"
  12253. type="1" >
  12254. </productMenu>
  12255. <productMenu id="phone"
  12256. type="2" >
  12257. </productMenu>
  12258. <productMenu id="fmradio"
  12259. type="3" >
  12260. </productMenu>
  12261. <productMenu id="deviceSetting"
  12262. type="1"
  12263. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12264. <productMenuURL version="2.4"
  12265. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12266. />
  12267. <productMenuURL version="1.5"
  12268. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12269. />
  12270. <productMenuURL version="1.4.1"
  12271. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12272. />
  12273. <productMenuURL version="1.1"
  12274. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12275. />
  12276. <productMenuURL version="1.0"
  12277. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12278. />
  12279. </productMenu>
  12280. <productMenu id="quickGuide"
  12281. type="1"
  12282. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12283. size="264KB" >
  12284. </productMenu>
  12285. <productMenu id="userGuide"
  12286. type="1"
  12287. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12288. size="3.09MB" >
  12289. </productMenu>
  12290. <productMenu id="connectGuide"
  12291. type="1"
  12292. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  12293. size="1.12MB" >
  12294. </productMenu>
  12295. <productID id="4210"
  12296. />
  12297. <productProductKey key="11"
  12298. />
  12299. <productID id="4230"
  12300. />
  12301. <productProductKey key="11"
  12302. />
  12303. <productGroupable type="1"
  12304. />
  12305. </product>
  12306. <product id="HD50S"
  12307. name="Boom Audio 20S EVO"
  12308. series="50"
  12309. latestVersion="2.5.2"
  12310. show = "0" >
  12311. <productMenu id="protocol"
  12312. type="0">
  12313. </productMenu>
  12314. <productMenu id="sip"
  12315. type="1" >
  12316. <productMenuType version="1.0"
  12317. type="0"
  12318. />
  12319. </productMenu>
  12320. <productMenu id="bluetoothIntercom"
  12321. type="1" >
  12322. <productMenuType version="1.0"
  12323. type="0"
  12324. />
  12325. </productMenu>
  12326. <productMenu id="intercomSetting"
  12327. type="1" >
  12328. </productMenu>
  12329. <productMenu id="phone"
  12330. type="2" >
  12331. </productMenu>
  12332. <productMenu id="fmradio"
  12333. type="3" >
  12334. </productMenu>
  12335. <productMenu id="deviceSetting"
  12336. type="1"
  12337. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12338. <productMenuURL version="2.4"
  12339. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12340. />
  12341. <productMenuURL version="1.5"
  12342. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12343. />
  12344. <productMenuURL version="1.4.1"
  12345. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12346. />
  12347. <productMenuURL version="1.1"
  12348. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12349. />
  12350. <productMenuURL version="1.0"
  12351. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12352. />
  12353. </productMenu>
  12354. <productMenu id="quickGuide"
  12355. type="1"
  12356. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12357. size="321KB" >
  12358. </productMenu>
  12359. <productMenu id="userGuide"
  12360. type="1"
  12361. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12362. size="2.46MB" >
  12363. </productMenu>
  12364. <productID id="4230"
  12365. />
  12366. <productProductKey key="27"
  12367. />
  12368. <productGroupable type="1"
  12369. />
  12370. </product>
  12371. <product id="HD50S"
  12372. name="Boom! Audio 10S"
  12373. series="50"
  12374. latestVersion="1.1.3"
  12375. show = "0" >
  12376. <productMenu id="protocol"
  12377. type="0">
  12378. </productMenu>
  12379. <productMenu id="sip"
  12380. type="1" >
  12381. </productMenu>
  12382. <productMenu id="bluetoothIntercom"
  12383. type="1" >
  12384. </productMenu>
  12385. <productMenu id="phone"
  12386. type="2" >
  12387. </productMenu>
  12388. <productMenu id="fmradio"
  12389. type="3" >
  12390. </productMenu>
  12391. <productMenu id="deviceSetting"
  12392. type="1"
  12393. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  12394. </productMenu>
  12395. <productMenu id="quickGuide"
  12396. type="1"
  12397. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12398. size="538KB" >
  12399. </productMenu>
  12400. <productMenu id="userGuide"
  12401. type="1"
  12402. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12403. size="1.55MB" >
  12404. </productMenu>
  12405. <productID id="5532"
  12406. />
  12407. <productGroupable type="0"
  12408. />
  12409. </product>
  12410. <product id="HD50S"
  12411. name="Boom! Audio N01 10R"
  12412. series="50"
  12413. latestVersion="1.1.3"
  12414. show = "0" >
  12415. <productMenu id="protocol"
  12416. type="0">
  12417. </productMenu>
  12418. <productMenu id="sip"
  12419. type="1" >
  12420. </productMenu>
  12421. <productMenu id="bluetoothIntercom"
  12422. type="1" >
  12423. </productMenu>
  12424. <productMenu id="phone"
  12425. type="2" >
  12426. </productMenu>
  12427. <productMenu id="fmradio"
  12428. type="3" >
  12429. </productMenu>
  12430. <productMenu id="deviceSetting"
  12431. type="1"
  12432. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  12433. </productMenu>
  12434. <productMenu id="quickGuide"
  12435. type="1"
  12436. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12437. size="766KB" >
  12438. </productMenu>
  12439. <productMenu id="userGuide"
  12440. type="1"
  12441. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12442. size="1.45MB" >
  12443. </productMenu>
  12444. <productID id="5522"
  12445. />
  12446. <productGroupable type="0"
  12447. />
  12448. </product>
  12449. <product id="HD50S"
  12450. name="OUTRUSH-R N03"
  12451. series="50"
  12452. latestVersion="1.2.1"
  12453. show = "-1" >
  12454. <productMenu id="protocol"
  12455. type="0">
  12456. </productMenu>
  12457. <productMenu id="sip"
  12458. type="1" >
  12459. </productMenu>
  12460. <productMenu id="bluetoothIntercom"
  12461. type="1" >
  12462. </productMenu>
  12463. <productMenu id="phone"
  12464. type="2" >
  12465. </productMenu>
  12466. <productMenu id="fmradio"
  12467. type="3" >
  12468. </productMenu>
  12469. <productMenu id="deviceSetting"
  12470. type="1"
  12471. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  12472. </productMenu>
  12473. <productMenu id="userGuide"
  12474. type="1"
  12475. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  12476. size="660KB" >
  12477. </productMenu>
  12478. <productID id="5434"
  12479. />
  12480. <productGroupable type="0"
  12481. />
  12482. </product>
  12483. <product id="HD50S"
  12484. name="OUTRUSH-R N03"
  12485. series="50"
  12486. latestVersion="2.0"
  12487. show = "0" >
  12488. <productMenu id="protocol"
  12489. type="3" >
  12490. </productMenu>
  12491. <productMenu id="sip"
  12492. type="1" >
  12493. </productMenu>
  12494. <productMenu id="bluetoothIntercom"
  12495. type="1" >
  12496. </productMenu>
  12497. <productMenu id="phone"
  12498. type="1" >
  12499. </productMenu>
  12500. <productMenu id="fmradio"
  12501. type="1" >
  12502. </productMenu>
  12503. <productMenu id="deviceSetting"
  12504. type="1"
  12505. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  12506. </productMenu>
  12507. <productMenu id="userGuide"
  12508. type="1"
  12509. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  12510. size="1.14MB" >
  12511. </productMenu>
  12512. <productID id="5441"
  12513. />
  12514. <productGroupable type="0"
  12515. />
  12516. </product>
  12517. <product id="5R"
  12518. name="5R"
  12519. series="5"
  12520. latestVersion="1.0.1"
  12521. show = "1" >
  12522. <productMenu id="protocol"
  12523. type="3" >
  12524. </productMenu>
  12525. <productMenu id="sip"
  12526. type="1" >
  12527. </productMenu>
  12528. <productMenu id="bluetoothIntercom"
  12529. type="1" >
  12530. </productMenu>
  12531. <productMenu id="phone"
  12532. type="1" >
  12533. </productMenu>
  12534. <productMenu id="fmradio"
  12535. type="1" >
  12536. </productMenu>
  12537. <productMenu id="deviceSetting"
  12538. type="1"
  12539. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12540. </productMenu>
  12541. <productMenu id="quickGuide"
  12542. type="0"
  12543. url=""
  12544. size="934KB" >
  12545. </productMenu>
  12546. <productMenu id="userGuide"
  12547. type="1"
  12548. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  12549. size="1.14MB" >
  12550. </productMenu>
  12551. <productMenu id="connectGuide"
  12552. type="1"
  12553. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12554. size="1.12MB" >
  12555. </productMenu>
  12556. <productID id="5591"
  12557. />
  12558. <productGroupable type="0"
  12559. />
  12560. </product>
  12561. <product id="5R"
  12562. name="5R LITE"
  12563. series="5"
  12564. latestVersion="1.0.1"
  12565. show = "1" >
  12566. <productMenu id="protocol"
  12567. type="3" >
  12568. </productMenu>
  12569. <productMenu id="sip"
  12570. type="1" >
  12571. </productMenu>
  12572. <productMenu id="bluetoothIntercom"
  12573. type="1" >
  12574. </productMenu>
  12575. <productMenu id="phone"
  12576. type="1" >
  12577. </productMenu>
  12578. <productMenu id="fmradio"
  12579. type="1" >
  12580. </productMenu>
  12581. <productMenu id="deviceSetting"
  12582. type="1"
  12583. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12584. </productMenu>
  12585. <productMenu id="quickGuide"
  12586. type="0"
  12587. url=""
  12588. size="934KB" >
  12589. </productMenu>
  12590. <productMenu id="userGuide"
  12591. type="1"
  12592. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12593. size="1.14MB" >
  12594. </productMenu>
  12595. <productMenu id="connectGuide"
  12596. type="1"
  12597. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12598. size="1.12MB" >
  12599. </productMenu>
  12600. <productID id="5592"
  12601. />
  12602. <productGroupable type="0"
  12603. />
  12604. </product>
  12605. <product id="50RLE"
  12606. name="50R LE"
  12607. series="50"
  12608. latestVersion="1.1"
  12609. show = "0" >
  12610. <productMenu id="protocol"
  12611. type="2" >
  12612. </productMenu>
  12613. <productMenu id="alexa"
  12614. type="0" >
  12615. </productMenu>
  12616. <productMenu id="sip"
  12617. type="1" >
  12618. </productMenu>
  12619. <productMenu id="meshIntercom"
  12620. type="30" >
  12621. </productMenu>
  12622. <productMenu id="meshIntercom+"
  12623. type="3"
  12624. url="2" >
  12625. <productMenuType version="1.0.9"
  12626. type="2"
  12627. />
  12628. </productMenu>
  12629. <productMenu id="waveIntercom"
  12630. type="1" >
  12631. <productMenuType version="1.0.9"
  12632. type="0"
  12633. />
  12634. </productMenu>
  12635. <productMenu id="bluetoothIntercom"
  12636. type="1" >
  12637. </productMenu>
  12638. <productMenu id="phone"
  12639. type="1" >
  12640. </productMenu>
  12641. <productMenu id="music"
  12642. type="1" >
  12643. </productMenu>
  12644. <productMenu id="fmradio"
  12645. type="0" >
  12646. </productMenu>
  12647. <productMenu id="deviceSetting"
  12648. type="1"
  12649. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  12650. <productMenuURL version="1.0.9"
  12651. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  12652. />
  12653. </productMenu>
  12654. <productMenu id="quickGuide"
  12655. type="0"
  12656. url=""
  12657. size="344KB" >
  12658. </productMenu>
  12659. <productMenu id="userGuide"
  12660. type="0"
  12661. url=""
  12662. size="3.41MB" >
  12663. </productMenu>
  12664. <productMenu id="volume"
  12665. type="11" >
  12666. </productMenu>
  12667. <productMenu id="battery"
  12668. type="1" >
  12669. </productMenu>
  12670. <productID id="3223"
  12671. />
  12672. <productGroupable type="0"
  12673. />
  12674. </product>
  12675. <product id="5RLOUIS"
  12676. name="5R LOUIS EDITION"
  12677. series="5"
  12678. latestVersion="1.0"
  12679. show = "-1" >
  12680. <productMenu id="protocol"
  12681. type="3" >
  12682. </productMenu>
  12683. <productMenu id="sip"
  12684. type="1" >
  12685. </productMenu>
  12686. <productMenu id="bluetoothIntercom"
  12687. type="1" >
  12688. </productMenu>
  12689. <productMenu id="phone"
  12690. type="1" >
  12691. </productMenu>
  12692. <productMenu id="fmradio"
  12693. type="1" >
  12694. </productMenu>
  12695. <productMenu id="deviceSetting"
  12696. type="1"
  12697. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12698. </productMenu>
  12699. <productMenu id="quickGuide"
  12700. type="0"
  12701. url=""
  12702. size="934KB" >
  12703. </productMenu>
  12704. <productMenu id="userGuide"
  12705. type="0"
  12706. url=""
  12707. size="1.14MB" >
  12708. </productMenu>
  12709. <productID id="5597"
  12710. />
  12711. <productGroupable type="0"
  12712. />
  12713. </product>
  12714. <product id="5S"
  12715. name="Ridekont 5S"
  12716. series="5"
  12717. latestVersion="2.3"
  12718. show = "-1" >
  12719. <productMenu id="protocol"
  12720. type="3" >
  12721. </productMenu>
  12722. <productMenu id="sip"
  12723. type="1" >
  12724. </productMenu>
  12725. <productMenu id="bluetoothIntercom"
  12726. type="1" >
  12727. </productMenu>
  12728. <productMenu id="phone"
  12729. type="1" >
  12730. </productMenu>
  12731. <productMenu id="fmradio"
  12732. type="0" >
  12733. </productMenu>
  12734. <productMenu id="deviceSetting"
  12735. type="1"
  12736. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12737. </productMenu>
  12738. <productMenu id="quickGuide"
  12739. type="0"
  12740. url=""
  12741. size="934KB" >
  12742. </productMenu>
  12743. <productMenu id="userGuide"
  12744. type="1"
  12745. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12746. size="1.14MB" >
  12747. </productMenu>
  12748. <productID id="5589"
  12749. />
  12750. <productGroupable type="0"
  12751. />
  12752. </product>
  12753. <product id="5R"
  12754. name="Ridekont 5R"
  12755. series="5"
  12756. latestVersion="1.0"
  12757. show = "0" >
  12758. <productMenu id="protocol"
  12759. type="3" >
  12760. </productMenu>
  12761. <productMenu id="sip"
  12762. type="1" >
  12763. </productMenu>
  12764. <productMenu id="bluetoothIntercom"
  12765. type="1" >
  12766. </productMenu>
  12767. <productMenu id="phone"
  12768. type="1" >
  12769. </productMenu>
  12770. <productMenu id="fmradio"
  12771. type="1" >
  12772. </productMenu>
  12773. <productMenu id="deviceSetting"
  12774. type="1"
  12775. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12776. </productMenu>
  12777. <productMenu id="quickGuide"
  12778. type="1"
  12779. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12780. size="934KB" >
  12781. </productMenu>
  12782. <productMenu id="userGuide"
  12783. type="1"
  12784. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12785. size="1.14MB" >
  12786. </productMenu>
  12787. <productID id="5593"
  12788. />
  12789. <productGroupable type="0"
  12790. />
  12791. </product>
  12792. <product id="5R"
  12793. name="Ridekont 5R LITE"
  12794. series="5"
  12795. latestVersion="1.0"
  12796. show = "0" >
  12797. <productMenu id="protocol"
  12798. type="3" >
  12799. </productMenu>
  12800. <productMenu id="sip"
  12801. type="1" >
  12802. </productMenu>
  12803. <productMenu id="bluetoothIntercom"
  12804. type="1" >
  12805. </productMenu>
  12806. <productMenu id="phone"
  12807. type="1" >
  12808. </productMenu>
  12809. <productMenu id="fmradio"
  12810. type="1" >
  12811. </productMenu>
  12812. <productMenu id="deviceSetting"
  12813. type="1"
  12814. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12815. </productMenu>
  12816. <productMenu id="quickGuide"
  12817. type="0"
  12818. url=""
  12819. size="934KB" >
  12820. </productMenu>
  12821. <productMenu id="userGuide"
  12822. type="1"
  12823. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12824. size="1.14MB" >
  12825. </productMenu>
  12826. <productID id="5594"
  12827. />
  12828. <productGroupable type="0"
  12829. />
  12830. </product>
  12831. <product id="SA30"
  12832. name="SA30"
  12833. series="SA"
  12834. latestVersion="1.0.3"
  12835. latestVersionVoicePrompt="0.15"
  12836. show = "-1" >
  12837. <productMenu id="protocol"
  12838. type="2" >
  12839. </productMenu>
  12840. <productMenu id="ota"
  12841. type="2" >
  12842. <otaPackages>
  12843. <package
  12844. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.3-build0.img"
  12845. size="3144148"
  12846. />
  12847. </otaPackages>
  12848. </productMenu>
  12849. <productMenu id="meshIntercom"
  12850. type="30" >
  12851. </productMenu>
  12852. <productMenu id="meshIntercom+"
  12853. type="3"
  12854. url="2" >
  12855. </productMenu>
  12856. <productMenu id="phone"
  12857. type="1" >
  12858. </productMenu>
  12859. <productMenu id="music"
  12860. type="1" >
  12861. </productMenu>
  12862. <productMenu id="musicSharing"
  12863. type="0" >
  12864. </productMenu>
  12865. <productMenu id="deviceSetting"
  12866. type="1"
  12867. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12868. </productMenu>
  12869. <productMenu id="quickGuide"
  12870. type="0"
  12871. url=""
  12872. size="1.12MB" >
  12873. </productMenu>
  12874. <productMenu id="userGuide"
  12875. type="1"
  12876. url=""
  12877. size="2.0MB" >
  12878. </productMenu>
  12879. <productMenu id="videoGuide"
  12880. type="0"
  12881. url=""
  12882. size="3.41MB" >
  12883. </productMenu>
  12884. <productMenu id="volume"
  12885. type="12" >
  12886. </productMenu>
  12887. <productMenu id="battery"
  12888. type="1" >
  12889. </productMenu>
  12890. <productID id="6852"
  12891. />
  12892. <productGroupable type="0"
  12893. />
  12894. </product>
  12895. <product id="I30"
  12896. name="I30"
  12897. series="I"
  12898. latestVersion="1.0.3"
  12899. latestVersionVoicePrompt="0.2"
  12900. show = "-1" >
  12901. <productMenu id="protocol"
  12902. type="2" >
  12903. </productMenu>
  12904. <productMenu id="ota"
  12905. type="2" >
  12906. <otaPackages>
  12907. <package
  12908. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.3-build0.img"
  12909. size="3144148"
  12910. />
  12911. </otaPackages>
  12912. </productMenu>
  12913. <productMenu id="meshIntercom"
  12914. type="30" >
  12915. </productMenu>
  12916. <productMenu id="meshIntercom+"
  12917. type="3"
  12918. url="2" >
  12919. </productMenu>
  12920. <productMenu id="phone"
  12921. type="1" >
  12922. </productMenu>
  12923. <productMenu id="music"
  12924. type="1" >
  12925. </productMenu>
  12926. <productMenu id="musicSharing"
  12927. type="0" >
  12928. </productMenu>
  12929. <productMenu id="deviceSetting"
  12930. type="1"
  12931. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12932. </productMenu>
  12933. <productMenu id="quickGuide"
  12934. type="0"
  12935. url=""
  12936. size="1.12MB" >
  12937. </productMenu>
  12938. <productMenu id="userGuide"
  12939. type="1"
  12940. url=""
  12941. size="2.10MB" >
  12942. </productMenu>
  12943. <productMenu id="videoGuide"
  12944. type="0"
  12945. url=""
  12946. size="3.11MB" >
  12947. </productMenu>
  12948. <productMenu id="volume"
  12949. type="12" >
  12950. </productMenu>
  12951. <productMenu id="battery"
  12952. type="1" >
  12953. </productMenu>
  12954. <productID id="6853"
  12955. />
  12956. <productGroupable type="0"
  12957. />
  12958. </product>
  12959. <product id="LS2C30"
  12960. name="LS2-C30"
  12961. series="C"
  12962. latestVersion="1.0"
  12963. latestVersionVoicePrompt="0.13"
  12964. show = "-1" >
  12965. <productMenu id="protocol"
  12966. type="2" >
  12967. </productMenu>
  12968. <productMenu id="ota"
  12969. type="0" >
  12970. <otaPackages>
  12971. <package
  12972. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_LS2C30-v1.2.2-build0.img"
  12973. size="3144148"
  12974. />
  12975. </otaPackages>
  12976. </productMenu>
  12977. <productMenu id="meshIntercom+"
  12978. type="3"
  12979. url="2" >
  12980. </productMenu>
  12981. <productMenu id="waveIntercom"
  12982. type="1" >
  12983. </productMenu>
  12984. <productMenu id="phone"
  12985. type="1" >
  12986. </productMenu>
  12987. <productMenu id="music"
  12988. type="1" >
  12989. </productMenu>
  12990. <productMenu id="musicSharing"
  12991. type="0" >
  12992. </productMenu>
  12993. <productMenu id="deviceSetting"
  12994. type="1"
  12995. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  12996. </productMenu>
  12997. <productMenu id="quickGuide"
  12998. type="0"
  12999. url=""
  13000. size="1.17MB" >
  13001. </productMenu>
  13002. <productMenu id="userGuide"
  13003. type="1"
  13004. url=""
  13005. size="2.0MB" >
  13006. </productMenu>
  13007. <productMenu id="videoGuide"
  13008. type="0"
  13009. url=""
  13010. size="3.41MB" >
  13011. </productMenu>
  13012. <productMenu id="volume"
  13013. type="12" >
  13014. </productMenu>
  13015. <productMenu id="battery"
  13016. type="1" >
  13017. </productMenu>
  13018. <productID id="685E"
  13019. />
  13020. <productGroupable type="0"
  13021. />
  13022. </product>
  13023. <product id="C30EVO"
  13024. name="C30 EVO"
  13025. series="C"
  13026. latestVersion="1.0"
  13027. latestVersionVoicePrompt="0.13"
  13028. show = "-1" >
  13029. <productMenu id="protocol"
  13030. type="2" >
  13031. </productMenu>
  13032. <productMenu id="ota"
  13033. type="0" >
  13034. <otaPackages>
  13035. <package
  13036. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  13037. size="3144148"
  13038. />
  13039. </otaPackages>
  13040. </productMenu>
  13041. <productMenu id="meshIntercom+"
  13042. type="3"
  13043. url="2" >
  13044. </productMenu>
  13045. <productMenu id="waveIntercom"
  13046. type="1" >
  13047. </productMenu>
  13048. <productMenu id="phone"
  13049. type="1" >
  13050. </productMenu>
  13051. <productMenu id="music"
  13052. type="1" >
  13053. </productMenu>
  13054. <productMenu id="musicSharing"
  13055. type="0" >
  13056. </productMenu>
  13057. <productMenu id="deviceSetting"
  13058. type="1"
  13059. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  13060. </productMenu>
  13061. <productMenu id="quickGuide"
  13062. type="0"
  13063. url=""
  13064. size="1.17MB" >
  13065. </productMenu>
  13066. <productMenu id="userGuide"
  13067. type="1"
  13068. url=""
  13069. size="2.0MB" >
  13070. </productMenu>
  13071. <productMenu id="videoGuide"
  13072. type="0"
  13073. url=""
  13074. size="3.41MB" >
  13075. </productMenu>
  13076. <productMenu id="volume"
  13077. type="12" >
  13078. </productMenu>
  13079. <productMenu id="battery"
  13080. type="1" >
  13081. </productMenu>
  13082. <productID id="685B"
  13083. />
  13084. <productGroupable type="0"
  13085. />
  13086. </product>
  13087. <product id="C30"
  13088. name="SENA C30"
  13089. series="C"
  13090. latestVersion="1.2.4"
  13091. latestVersionVoicePrompt="0.13"
  13092. show = "1" >
  13093. <productMenu id="protocol"
  13094. type="2" >
  13095. </productMenu>
  13096. <productMenu id="alexa"
  13097. type="0" >
  13098. </productMenu>
  13099. <productMenu id="ota"
  13100. type="2" >
  13101. <otaPackages>
  13102. <package
  13103. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.4-build0.img"
  13104. size="3144148"
  13105. />
  13106. </otaPackages>
  13107. </productMenu>
  13108. <productMenu id="wa"
  13109. type="0" >
  13110. </productMenu>
  13111. <productMenu id="meshIntercom"
  13112. type="30" >
  13113. </productMenu>
  13114. <productMenu id="meshIntercom+"
  13115. type="3"
  13116. url="2" >
  13117. <productMenuType version="1.0.9"
  13118. type="2"
  13119. />
  13120. </productMenu>
  13121. <productMenu id="waveIntercom"
  13122. type="1" >
  13123. <productMenuType version="1.1.9"
  13124. type="0"
  13125. />
  13126. </productMenu>
  13127. <productMenu id="phone"
  13128. type="1" >
  13129. </productMenu>
  13130. <productMenu id="music"
  13131. type="1" >
  13132. </productMenu>
  13133. <productMenu id="musicSharing"
  13134. type="0" >
  13135. </productMenu>
  13136. <productMenu id="deviceSetting"
  13137. type="1"
  13138. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  13139. <productMenuURL version="1.1.3"
  13140. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  13141. />
  13142. <productMenuURL version="1.0.9"
  13143. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  13144. />
  13145. </productMenu>
  13146. <productMenu id="quickGuide"
  13147. type="1"
  13148. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13149. size="1.12MB" >
  13150. </productMenu>
  13151. <productMenu id="userGuide"
  13152. type="0"
  13153. url=""
  13154. size="2.0MB" >
  13155. </productMenu>
  13156. <productMenu id="videoGuide"
  13157. type="0"
  13158. url=""
  13159. size="3.41MB" >
  13160. </productMenu>
  13161. <productMenu id="volume"
  13162. type="12" >
  13163. </productMenu>
  13164. <productMenu id="battery"
  13165. type="1" >
  13166. </productMenu>
  13167. <productID id="683A"
  13168. />
  13169. <productGroupable type="0"
  13170. />
  13171. </product>
  13172. <product id="C20"
  13173. name="C20"
  13174. series="C"
  13175. latestVersion="1.0"
  13176. show = "1" >
  13177. <productMenu id="protocol"
  13178. type="3" >
  13179. </productMenu>
  13180. <productMenu id="sip"
  13181. type="1" >
  13182. </productMenu>
  13183. <productMenu id="bluetoothIntercom"
  13184. type="1" >
  13185. </productMenu>
  13186. <productMenu id="phone"
  13187. type="1" >
  13188. </productMenu>
  13189. <productMenu id="deviceSetting"
  13190. type="1"
  13191. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  13192. </productMenu>
  13193. <productMenu id="quickGuide"
  13194. type="1"
  13195. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  13196. size="934KB" >
  13197. </productMenu>
  13198. <productMenu id="userGuide"
  13199. type="1"
  13200. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  13201. size="1.14MB" >
  13202. </productMenu>
  13203. <productID id="3701"
  13204. />
  13205. <productGroupable type="0"
  13206. />
  13207. </product>
  13208. <product id="C10"
  13209. name="C10"
  13210. series="C"
  13211. latestVersion="1.4.4"
  13212. show = "1" >
  13213. <productMenu id="protocol"
  13214. type="3" >
  13215. </productMenu>
  13216. <productMenu id="sip"
  13217. type="1" >
  13218. </productMenu>
  13219. <productMenu id="bluetoothIntercom"
  13220. type="1" >
  13221. </productMenu>
  13222. <productMenu id="phone"
  13223. type="1" >
  13224. </productMenu>
  13225. <productMenu id="fmradio"
  13226. type="0" >
  13227. </productMenu>
  13228. <productMenu id="deviceSetting"
  13229. type="1"
  13230. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13231. </productMenu>
  13232. <productMenu id="userGuide"
  13233. type="1"
  13234. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  13235. size="1.14MB" >
  13236. </productMenu>
  13237. <productID id="5595"
  13238. />
  13239. <productGroupable type="0"
  13240. />
  13241. </product>
  13242. <product id="CA1"
  13243. name="CA1"
  13244. series="C"
  13245. latestVersion="0.2"
  13246. show = "-1" >
  13247. <productMenu id="protocol"
  13248. type="2" >
  13249. </productMenu>
  13250. <productMenu id="ota"
  13251. type="2" >
  13252. <otaPackages>
  13253. <package
  13254. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/CA1/SENA_CA1-v0.2-build1.img"
  13255. size="3144148"
  13256. />
  13257. </otaPackages>
  13258. </productMenu>
  13259. <productMenu id="phone"
  13260. type="1" >
  13261. </productMenu>
  13262. <productMenu id="music"
  13263. type="1" >
  13264. </productMenu>
  13265. <productMenu id="musicSharing"
  13266. type="0" >
  13267. </productMenu>
  13268. <productMenu id="deviceSetting"
  13269. type="1"
  13270. url="https://api.sena.com/support/SenaNeoApp/CA1/NS_CA1_AIROHA_01_zh_rCN.xml" >
  13271. </productMenu>
  13272. <productMenu id="quickGuide"
  13273. type="1"
  13274. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13275. size="1.12MB" >
  13276. </productMenu>
  13277. <productMenu id="userGuide"
  13278. type="0"
  13279. url=""
  13280. size="2.0MB" >
  13281. </productMenu>
  13282. <productMenu id="videoGuide"
  13283. type="1"
  13284. url=""
  13285. size="3.41MB" >
  13286. </productMenu>
  13287. <productMenu id="volume"
  13288. type="12" >
  13289. </productMenu>
  13290. <productMenu id="battery"
  13291. type="1" >
  13292. </productMenu>
  13293. <productID id="5F01"
  13294. />
  13295. <productGroupable type="0"
  13296. />
  13297. </product>
  13298. <product id="J30"
  13299. name="J30"
  13300. series="J"
  13301. latestVersion="1.2.4"
  13302. latestVersionVoicePrompt="0.14"
  13303. show = "0" >
  13304. <productMenu id="protocol"
  13305. type="2" >
  13306. </productMenu>
  13307. <productMenu id="alexa"
  13308. type="0" >
  13309. </productMenu>
  13310. <productMenu id="ota"
  13311. type="2" >
  13312. <otaPackages>
  13313. <package
  13314. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.4-build0.img"
  13315. size="3144148"
  13316. />
  13317. </otaPackages>
  13318. </productMenu>
  13319. <productMenu id="wa"
  13320. type="0" >
  13321. </productMenu>
  13322. <productMenu id="meshIntercom"
  13323. type="30" >
  13324. </productMenu>
  13325. <productMenu id="meshIntercom+"
  13326. type="3"
  13327. url="2" >
  13328. <productMenuType version="1.0.9"
  13329. type="2"
  13330. />
  13331. </productMenu>
  13332. <productMenu id="waveIntercom"
  13333. type="1" >
  13334. <productMenuType version="1.1.9"
  13335. type="0"
  13336. />
  13337. </productMenu>
  13338. <productMenu id="phone"
  13339. type="1" >
  13340. </productMenu>
  13341. <productMenu id="music"
  13342. type="1" >
  13343. </productMenu>
  13344. <productMenu id="musicSharing"
  13345. type="0" >
  13346. </productMenu>
  13347. <productMenu id="deviceSetting"
  13348. type="1"
  13349. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  13350. <productMenuURL version="1.0.9"
  13351. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  13352. />
  13353. </productMenu>
  13354. <productMenu id="quickGuide"
  13355. type="0"
  13356. url=""
  13357. size="1.12MB" >
  13358. </productMenu>
  13359. <productMenu id="userGuide"
  13360. type="1"
  13361. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  13362. size="2.0MB" >
  13363. </productMenu>
  13364. <productMenu id="videoGuide"
  13365. type="0"
  13366. url=""
  13367. size="3.41MB" >
  13368. </productMenu>
  13369. <productMenu id="volume"
  13370. type="12" >
  13371. </productMenu>
  13372. <productMenu id="battery"
  13373. type="1" >
  13374. </productMenu>
  13375. <productID id="6848"
  13376. />
  13377. <productGroupable type="0"
  13378. />
  13379. </product>
  13380. <product id="J10"
  13381. name="J10"
  13382. series="5"
  13383. latestVersion="1.1.4"
  13384. show = "0" >
  13385. <productMenu id="protocol"
  13386. type="3" >
  13387. </productMenu>
  13388. <productMenu id="sip"
  13389. type="1" >
  13390. </productMenu>
  13391. <productMenu id="bluetoothIntercom"
  13392. type="1" >
  13393. </productMenu>
  13394. <productMenu id="phone"
  13395. type="1" >
  13396. </productMenu>
  13397. <productMenu id="fmradio"
  13398. type="0" >
  13399. </productMenu>
  13400. <productMenu id="deviceSetting"
  13401. type="1"
  13402. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13403. </productMenu>
  13404. <productMenu id="userGuide"
  13405. type="1"
  13406. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  13407. size="1.14MB" >
  13408. </productMenu>
  13409. <productID id="5598"
  13410. />
  13411. <productGroupable type="0"
  13412. />
  13413. </product>
  13414. <product id="B20"
  13415. name="B20"
  13416. series="B"
  13417. latestVersion="1.1.4"
  13418. latestVersionVoicePrompt="0.14"
  13419. show = "0" >
  13420. <productMenu id="protocol"
  13421. type="2" >
  13422. </productMenu>
  13423. <productMenu id="alexa"
  13424. type="0" >
  13425. </productMenu>
  13426. <productMenu id="ota"
  13427. type="2" >
  13428. <otaPackages>
  13429. <package
  13430. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.4-build0.img"
  13431. size="3144148"
  13432. />
  13433. </otaPackages>
  13434. </productMenu>
  13435. <productMenu id="wa"
  13436. type="0" >
  13437. </productMenu>
  13438. <productMenu id="meshIntercom"
  13439. type="30" >
  13440. </productMenu>
  13441. <productMenu id="phone"
  13442. type="1" >
  13443. </productMenu>
  13444. <productMenu id="music"
  13445. type="1" >
  13446. </productMenu>
  13447. <productMenu id="musicSharing"
  13448. type="0" >
  13449. </productMenu>
  13450. <productMenu id="deviceSetting"
  13451. type="1"
  13452. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  13453. <productMenuURL version="1.0.9"
  13454. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  13455. />
  13456. </productMenu>
  13457. <productMenu id="quickGuide"
  13458. type="0"
  13459. url=""
  13460. size="1.12MB" >
  13461. </productMenu>
  13462. <productMenu id="userGuide"
  13463. type="1"
  13464. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  13465. size="2.0MB" >
  13466. </productMenu>
  13467. <productMenu id="videoGuide"
  13468. type="0"
  13469. url=""
  13470. size="3.41MB" >
  13471. </productMenu>
  13472. <productMenu id="volume"
  13473. type="12" >
  13474. </productMenu>
  13475. <productMenu id="battery"
  13476. type="1" >
  13477. </productMenu>
  13478. <productID id="6847"
  13479. />
  13480. <productGroupable type="0"
  13481. />
  13482. </product>
  13483. <product id="B10"
  13484. name="B10"
  13485. series="5"
  13486. latestVersion="1.2.4"
  13487. show = "0" >
  13488. <productMenu id="protocol"
  13489. type="3" >
  13490. </productMenu>
  13491. <productMenu id="sip"
  13492. type="1" >
  13493. </productMenu>
  13494. <productMenu id="bluetoothIntercom"
  13495. type="1" >
  13496. </productMenu>
  13497. <productMenu id="phone"
  13498. type="1" >
  13499. </productMenu>
  13500. <productMenu id="fmradio"
  13501. type="0" >
  13502. </productMenu>
  13503. <productMenu id="deviceSetting"
  13504. type="1"
  13505. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  13506. </productMenu>
  13507. <productMenu id="userGuide"
  13508. type="1"
  13509. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  13510. size="1.14MB" >
  13511. </productMenu>
  13512. <productID id="5596"
  13513. />
  13514. <productGroupable type="0"
  13515. />
  13516. </product>
  13517. <product id="E30"
  13518. name="E30"
  13519. series="E"
  13520. latestVersion="1.1.4"
  13521. latestVersionVoicePrompt="0.14"
  13522. show = "0" >
  13523. <productMenu id="protocol"
  13524. type="2" >
  13525. </productMenu>
  13526. <productMenu id="alexa"
  13527. type="0" >
  13528. </productMenu>
  13529. <productMenu id="ota"
  13530. type="2" >
  13531. <otaPackages>
  13532. <package
  13533. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.4-build0.img"
  13534. size="3144148"
  13535. />
  13536. </otaPackages>
  13537. </productMenu>
  13538. <productMenu id="wa"
  13539. type="0" >
  13540. </productMenu>
  13541. <productMenu id="meshIntercom"
  13542. type="30" >
  13543. </productMenu>
  13544. <productMenu id="meshIntercom+"
  13545. type="3"
  13546. url="2" >
  13547. </productMenu>
  13548. <productMenu id="waveIntercom"
  13549. type="1" >
  13550. <productMenuType version="1.0.9"
  13551. type="0"
  13552. />
  13553. </productMenu>
  13554. <productMenu id="phone"
  13555. type="1" >
  13556. </productMenu>
  13557. <productMenu id="music"
  13558. type="1" >
  13559. </productMenu>
  13560. <productMenu id="musicSharing"
  13561. type="0" >
  13562. </productMenu>
  13563. <productMenu id="deviceSetting"
  13564. type="1"
  13565. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  13566. </productMenu>
  13567. <productMenu id="quickGuide"
  13568. type="0"
  13569. url=""
  13570. size="1.12MB" >
  13571. </productMenu>
  13572. <productMenu id="userGuide"
  13573. type="1"
  13574. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  13575. size="2.0MB" >
  13576. </productMenu>
  13577. <productMenu id="videoGuide"
  13578. type="0"
  13579. url=""
  13580. size="3.41MB" >
  13581. </productMenu>
  13582. <productMenu id="volume"
  13583. type="12" >
  13584. </productMenu>
  13585. <productMenu id="battery"
  13586. type="1" >
  13587. </productMenu>
  13588. <productID id="6846"
  13589. />
  13590. <productGroupable type="0"
  13591. />
  13592. </product>
  13593. <product id="ACSRAM"
  13594. name="ACS-RAM"
  13595. series="ACS"
  13596. latestVersion="1.0.5"
  13597. show = "1" >
  13598. <productMenu id="protocol"
  13599. type="3" >
  13600. </productMenu>
  13601. <productMenu id="sip"
  13602. type="1" >
  13603. </productMenu>
  13604. <productMenu id="bluetoothIntercom"
  13605. type="1" >
  13606. </productMenu>
  13607. <productMenu id="deviceSetting"
  13608. type="1"
  13609. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM_01.xml" >
  13610. <productMenuURL version="1.0.9"
  13611. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml"
  13612. />
  13613. </productMenu>
  13614. <productMenu id="quickGuide"
  13615. type="1"
  13616. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  13617. size="344KB" >
  13618. </productMenu>
  13619. <productMenu id="userGuide"
  13620. type="1"
  13621. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  13622. size="1.14MB" >
  13623. </productMenu>
  13624. <productMenu id="connectGuide"
  13625. type="1"
  13626. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  13627. size="1.12MB" >
  13628. </productMenu>
  13629. <productID id="3400"
  13630. />
  13631. <productGroupable type="0"
  13632. />
  13633. </product>
  13634. <product id="ACS10"
  13635. name="ACS10"
  13636. series="ACS"
  13637. latestVersion="1.0.2"
  13638. show = "1" >
  13639. <productMenu id="protocol"
  13640. type="0">
  13641. </productMenu>
  13642. <productMenu id="sip"
  13643. type="1" >
  13644. </productMenu>
  13645. <productMenu id="bluetoothIntercom"
  13646. type="1" >
  13647. </productMenu>
  13648. <productMenu id="phone"
  13649. type="2" >
  13650. </productMenu>
  13651. <productMenu id="deviceSetting"
  13652. type="1"
  13653. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  13654. </productMenu>
  13655. <productMenu id="quickGuide"
  13656. type="1"
  13657. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  13658. size="970KB" >
  13659. </productMenu>
  13660. <productMenu id="userGuide"
  13661. type="1"
  13662. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  13663. size="1.26MB" >
  13664. </productMenu>
  13665. <productMenu id="connectGuide"
  13666. type="1"
  13667. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  13668. size="1.12MB" >
  13669. </productMenu>
  13670. <productID id="3300"
  13671. />
  13672. <productGroupable type="0"
  13673. />
  13674. </product>
  13675. <product id="DWO7ProMesh"
  13676. name="DWO 7 Pro Mesh"
  13677. series="50"
  13678. latestVersion="1.1"
  13679. latestVersionVoicePrompt="0.9"
  13680. show = "0" >
  13681. <productMenu id="protocol"
  13682. type="2" >
  13683. </productMenu>
  13684. <productMenu id="alexa"
  13685. type="0" >
  13686. </productMenu>
  13687. <productMenu id="ota"
  13688. type="2" >
  13689. <otaPackages>
  13690. <package
  13691. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  13692. size="2945812"
  13693. />
  13694. </otaPackages>
  13695. </productMenu>
  13696. <productMenu id="wa"
  13697. type="0" >
  13698. </productMenu>
  13699. <productMenu id="meshIntercom"
  13700. type="20" >
  13701. </productMenu>
  13702. <productMenu id="meshIntercom+"
  13703. type="3"
  13704. url="2" >
  13705. <productMenuType version="1.0.9"
  13706. type="2"
  13707. />
  13708. <productMenuURL version="2.1.1"
  13709. url="0"
  13710. />
  13711. </productMenu>
  13712. <productMenu id="waveIntercom"
  13713. type="1" >
  13714. <productMenuType version="1.0.9"
  13715. type="0"
  13716. />
  13717. </productMenu>
  13718. <productMenu id="phone"
  13719. type="1" >
  13720. </productMenu>
  13721. <productMenu id="music"
  13722. type="1" >
  13723. </productMenu>
  13724. <productMenu id="fmradio"
  13725. type="1" >
  13726. </productMenu>
  13727. <productMenu id="musicSharing"
  13728. type="0" >
  13729. </productMenu>
  13730. <productMenu id="deviceSetting"
  13731. type="1"
  13732. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  13733. <productMenuURL version="1.0.9"
  13734. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  13735. />
  13736. </productMenu>
  13737. <productMenu id="quickGuide"
  13738. type="1"
  13739. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13740. size="1.12MB" >
  13741. </productMenu>
  13742. <productMenu id="userGuide"
  13743. type="1"
  13744. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13745. size="2.0MB" >
  13746. </productMenu>
  13747. <productMenu id="volume"
  13748. type="12" >
  13749. </productMenu>
  13750. <productMenu id="battery"
  13751. type="1" >
  13752. </productMenu>
  13753. <productID id="6806"
  13754. />
  13755. <productGroupable type="0"
  13756. />
  13757. </product>
  13758. <product id="ERA1X"
  13759. name="ERA 1 X"
  13760. series="UCOM"
  13761. latestVersion="0.2.1"
  13762. latestVersionMesh="0.19"
  13763. latestVersionVoicePrompt="1.2"
  13764. show = "-1" >
  13765. <productMenu id="protocol"
  13766. type="2" >
  13767. </productMenu>
  13768. <productMenu id="ota"
  13769. type="2" >
  13770. <otaLanguages>
  13771. <otaLanguage
  13772. id="0"
  13773. name="English"
  13774. package="0"
  13775. />
  13776. <otaLanguage
  13777. id="0"
  13778. name="French"
  13779. package="1"
  13780. />
  13781. <otaLanguage
  13782. id="0"
  13783. name="Spanish"
  13784. package="2"
  13785. />
  13786. <otaLanguage
  13787. id="0"
  13788. name="Italian"
  13789. package="3"
  13790. />
  13791. <otaLanguage
  13792. id="0"
  13793. name="German"
  13794. package="4"
  13795. />
  13796. <otaLanguage
  13797. id="0"
  13798. name="Dutch"
  13799. package="5"
  13800. />
  13801. <otaLanguage
  13802. id="0"
  13803. name="Russian"
  13804. package="6"
  13805. />
  13806. <otaLanguage
  13807. id="0"
  13808. name="Chinese"
  13809. package="7"
  13810. />
  13811. <otaLanguage
  13812. id="0"
  13813. name="Korean"
  13814. package="8"
  13815. />
  13816. <otaLanguage
  13817. id="0"
  13818. name="Japanese"
  13819. package="9"
  13820. />
  13821. <otaLanguage
  13822. id="0"
  13823. name="Finnish"
  13824. package="10"
  13825. />
  13826. <otaLanguage
  13827. id="0"
  13828. name="Polish"
  13829. package="11"
  13830. />
  13831. <otaLanguage
  13832. id="0"
  13833. name="Czech"
  13834. package="12"
  13835. />
  13836. <otaLanguage
  13837. id="0"
  13838. name="Danish"
  13839. package="13"
  13840. />
  13841. <otaLanguage
  13842. id="0"
  13843. name="Norwegian"
  13844. package="14"
  13845. />
  13846. <otaLanguage
  13847. id="0"
  13848. name="Swedish"
  13849. package="15"
  13850. />
  13851. <otaLanguage
  13852. id="0"
  13853. name="Turkish"
  13854. package="16"
  13855. />
  13856. <otaLanguage
  13857. id="0"
  13858. name="Hungarian"
  13859. package="17"
  13860. />
  13861. <otaLanguage
  13862. id="0"
  13863. name="Portuguese"
  13864. package="18"
  13865. />
  13866. <otaLanguage
  13867. id="0"
  13868. name="Hebrew"
  13869. package="19"
  13870. />
  13871. <otaLanguage
  13872. id="0"
  13873. name="Greek"
  13874. package="20"
  13875. />
  13876. </otaLanguages>
  13877. <otaPackages>
  13878. <package
  13879. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13880. size="5183988"
  13881. />
  13882. <package
  13883. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13884. size="5183988"
  13885. />
  13886. <package
  13887. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13888. size="5183988"
  13889. />
  13890. <package
  13891. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13892. size="5183988"
  13893. />
  13894. <package
  13895. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13896. size="5183988"
  13897. />
  13898. <package
  13899. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13900. size="5183988"
  13901. />
  13902. <package
  13903. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13904. size="5183988"
  13905. />
  13906. <package
  13907. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13908. size="5183988"
  13909. />
  13910. <package
  13911. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13912. size="5183988"
  13913. />
  13914. <package
  13915. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13916. size="5183988"
  13917. />
  13918. <package
  13919. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13920. size="5183988"
  13921. />
  13922. <package
  13923. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13924. size="5183988"
  13925. />
  13926. <package
  13927. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13928. size="5183988"
  13929. />
  13930. <package
  13931. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13932. size="5183988"
  13933. />
  13934. <package
  13935. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13936. size="5183988"
  13937. />
  13938. <package
  13939. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13940. size="5183988"
  13941. />
  13942. <package
  13943. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13944. size="5183988"
  13945. />
  13946. <package
  13947. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13948. size="5183988"
  13949. />
  13950. <package
  13951. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13952. size="5183988"
  13953. />
  13954. <package
  13955. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13956. size="5183988"
  13957. />
  13958. <package
  13959. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13960. size="5183988"
  13961. />
  13962. </otaPackages>
  13963. </productMenu>
  13964. <productMenu id="wa"
  13965. type="0" >
  13966. </productMenu>
  13967. <productMenu id="sip"
  13968. type="1" >
  13969. </productMenu>
  13970. <productMenu id="led"
  13971. type="0" >
  13972. </productMenu>
  13973. <productMenu id="illusion"
  13974. type="1" >
  13975. </productMenu>
  13976. <productMenu id="meshIntercom"
  13977. type="30" >
  13978. </productMenu>
  13979. <productMenu id="meshIntercom+"
  13980. type="3"
  13981. url="2" >
  13982. </productMenu>
  13983. <productMenu id="waveIntercom"
  13984. type="0" >
  13985. </productMenu>
  13986. <productMenu id="bluetoothIntercom"
  13987. type="1" >
  13988. </productMenu>
  13989. <productMenu id="bluetoothIntercomGrouping"
  13990. type="0" >
  13991. </productMenu>
  13992. <productMenu id="fmradio"
  13993. type="1"
  13994. url="1" >
  13995. </productMenu>
  13996. <productMenu id="phone"
  13997. type="1" >
  13998. </productMenu>
  13999. <productMenu id="music"
  14000. type="1" >
  14001. </productMenu>
  14002. <productMenu id="musicSharing"
  14003. type="0" >
  14004. </productMenu>
  14005. <productMenu id="deviceSetting"
  14006. type="1"
  14007. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  14008. </productMenu>
  14009. <productMenu id="quickGuide"
  14010. type="0"
  14011. url=""
  14012. size="1.12MB" >
  14013. </productMenu>
  14014. <productMenu id="userGuide"
  14015. type="1"
  14016. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  14017. size="2.0MB" >
  14018. </productMenu>
  14019. <productMenu id="videoGuide"
  14020. type="0"
  14021. url=""
  14022. size="3.41MB" >
  14023. </productMenu>
  14024. <productMenu id="volume"
  14025. type="16" >
  14026. </productMenu>
  14027. <productMenu id="soundMode"
  14028. type="1" >
  14029. </productMenu>
  14030. <productMenu id="battery"
  14031. type="1" >
  14032. </productMenu>
  14033. <productID id="6A83"
  14034. />
  14035. <productGroupable type="0"
  14036. />
  14037. </product>
  14038. <product id="MeshStation"
  14039. name="Mesh Station"
  14040. series="50"
  14041. latestVersion="0.9"
  14042. show = "-1" >
  14043. <productMenu id="protocol"
  14044. type="2" >
  14045. </productMenu>
  14046. <productMenu id="meshIntercom"
  14047. type="20"
  14048. url="99" >
  14049. </productMenu>
  14050. <productID id="3161"
  14051. />
  14052. <productGroupable type="0"
  14053. />
  14054. </product>
  14055. </products>
  14056. </sna>