snm.xml 465 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260075" 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="https://www.sena.com/subscribe/"
  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="https://www.sena.com/support"
  22. />
  23. <forum url="https://community.sena.com/hc/en-us"
  24. />
  25. <sip url="https://community.sena.com/hc/en-us"
  26. />
  27. <productKeys>
  28. <productKey id="4210"
  29. userPSKey="5"
  30. valueLength="1"
  31. />
  32. <productKey id="4230"
  33. userPSKey="5"
  34. valueLength="1"
  35. />
  36. </productKeys>
  37. <!--
  38. <menus>
  39. <menu id="protocol" />
  40. <menu id="alexa" />
  41. <menu id="ota" />
  42. <menu id="wa" />
  43. <menu id="manager" />
  44. <menu id="sip" />
  45. <menu id="meshIntercom" />
  46. <menu id="bluetoothIntercom" />
  47. <menu id="music" />
  48. <menu id="musicSharing" />
  49. <menu id="fmradio" />
  50. <menu id="phone" />
  51. <menu id="led" />
  52. <menu id="volume" />
  53. <menu id="battery" />
  54. <menu id="deviceSetting" />
  55. <menu id="quickGuide" />
  56. <menu id="userGuide" />
  57. </menus>
  58. -->
  59. <serieses>
  60. <series id="60"
  61. name="60 Series"
  62. show="1"
  63. />
  64. <series id="50"
  65. name="50 Series"
  66. show="1"
  67. />
  68. <series id="Helmet"
  69. name="Smart Helmet"
  70. show="1"
  71. />
  72. <series id="30"
  73. name="30 Series"
  74. show="1"
  75. />
  76. <series id="SF"
  77. name="SF Series"
  78. show="1"
  79. />
  80. <series id="SPIDER"
  81. name="SPIDER Series"
  82. show="1"
  83. />
  84. <series id="20"
  85. name="20 Series"
  86. show="1"
  87. />
  88. <series id="SRL"
  89. name="SRL Series"
  90. show="1"
  91. />
  92. <series id="ACS"
  93. name="ACS Series"
  94. show="1"
  95. />
  96. <series id="10"
  97. name="10 Series"
  98. show="1"
  99. />
  100. <series id="5"
  101. name="5 Series"
  102. show="1"
  103. />
  104. <series id="3"
  105. name="3 Series"
  106. show="1"
  107. />
  108. <series id="C"
  109. name="C Series"
  110. show="1"
  111. />
  112. <!--
  113. <series id="smh"
  114. name="SMH"
  115. />
  116. <series id="cavalry"
  117. name="CAVALRY"
  118. show="0"
  119. />
  120. -->
  121. </serieses>
  122. <products>
  123. <product id="60SPRO"
  124. name="60S PRO"
  125. series="60"
  126. latestVersion="0.1"
  127. latestVersionMesh="0.19"
  128. latestVersionVoicePrompt="1.2"
  129. show = "-1" >
  130. <productMenu id="protocol"
  131. type="2" >
  132. </productMenu>
  133. <productMenu id="ota"
  134. type="0" >
  135. <otaLanguages>
  136. <otaLanguage
  137. id="0"
  138. name="English"
  139. package="0"
  140. />
  141. <otaLanguage
  142. id="0"
  143. name="French"
  144. package="1"
  145. />
  146. <otaLanguage
  147. id="0"
  148. name="Spanish"
  149. package="2"
  150. />
  151. <otaLanguage
  152. id="0"
  153. name="Italian"
  154. package="3"
  155. />
  156. <otaLanguage
  157. id="0"
  158. name="German"
  159. package="4"
  160. />
  161. <otaLanguage
  162. id="0"
  163. name="Dutch"
  164. package="5"
  165. />
  166. <otaLanguage
  167. id="0"
  168. name="Russian"
  169. package="6"
  170. />
  171. <otaLanguage
  172. id="0"
  173. name="Chinese"
  174. package="7"
  175. />
  176. <otaLanguage
  177. id="0"
  178. name="Korean"
  179. package="8"
  180. />
  181. <otaLanguage
  182. id="0"
  183. name="Japanese"
  184. package="9"
  185. />
  186. <otaLanguage
  187. id="0"
  188. name="Finnish"
  189. package="10"
  190. />
  191. <otaLanguage
  192. id="0"
  193. name="Polish"
  194. package="11"
  195. />
  196. </otaLanguages>
  197. <otaPackages>
  198. <package
  199. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  200. size="5183988"
  201. />
  202. <package
  203. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  204. size="5183988"
  205. />
  206. <package
  207. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  208. size="5183988"
  209. />
  210. <package
  211. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  212. size="5183988"
  213. />
  214. <package
  215. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  216. size="5183988"
  217. />
  218. <package
  219. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  220. size="5183988"
  221. />
  222. <package
  223. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  224. size="5183988"
  225. />
  226. <package
  227. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  228. size="5183988"
  229. />
  230. <package
  231. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  232. size="5183988"
  233. />
  234. <package
  235. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  236. size="5183988"
  237. />
  238. <package
  239. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  240. size="5183988"
  241. />
  242. <package
  243. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  244. size="5183988"
  245. />
  246. </otaPackages>
  247. </productMenu>
  248. <productMenu id="sip"
  249. type="1" >
  250. </productMenu>
  251. <productMenu id="illusion"
  252. type="1" >
  253. </productMenu>
  254. <productMenu id="meshIntercom"
  255. type="30" >
  256. </productMenu>
  257. <productMenu id="meshIntercom+"
  258. type="3"
  259. url="2" >
  260. </productMenu>
  261. <productMenu id="waveIntercom"
  262. type="1" >
  263. </productMenu>
  264. <productMenu id="bluetoothIntercom"
  265. type="1"
  266. url="2" >
  267. </productMenu>
  268. <productMenu id="bluetoothIntercomGrouping"
  269. type="0" >
  270. </productMenu>
  271. <productMenu id="fmradio"
  272. type="1"
  273. url="1" >
  274. </productMenu>
  275. <productMenu id="phone"
  276. type="1" >
  277. </productMenu>
  278. <productMenu id="music"
  279. type="1" >
  280. </productMenu>
  281. <productMenu id="musicSharing"
  282. type="0" >
  283. </productMenu>
  284. <productMenu id="deviceSetting"
  285. type="1"
  286. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  287. </productMenu>
  288. <productMenu id="quickGuide"
  289. type="0"
  290. url=""
  291. size="1.12MB" >
  292. </productMenu>
  293. <productMenu id="userGuide"
  294. type="1"
  295. url=""
  296. size="2.0MB" >
  297. </productMenu>
  298. <productMenu id="videoGuide"
  299. type="0"
  300. url=""
  301. size="3.41MB" >
  302. </productMenu>
  303. <productMenu id="connectGuide"
  304. type="0"
  305. url=""
  306. size="1.12MB" >
  307. </productMenu>
  308. <productMenu id="volume"
  309. type="16" >
  310. </productMenu>
  311. <productMenu id="soundMode"
  312. type="1" >
  313. </productMenu>
  314. <productMenu id="battery"
  315. type="1" >
  316. </productMenu>
  317. <productID id="6A1A"
  318. />
  319. <productGroupable type="0"
  320. />
  321. </product>
  322. <product id="60SEVO"
  323. name="60S EVO"
  324. series="60"
  325. latestVersion="1.0.1"
  326. latestVersionMesh="0.19"
  327. latestVersionVoicePrompt="1.7"
  328. show = "-1" >
  329. <productMenu id="protocol"
  330. type="2" >
  331. </productMenu>
  332. <productMenu id="warranty"
  333. type="1" >
  334. </productMenu>
  335. <productMenu id="serialNumber"
  336. type="1" >
  337. </productMenu>
  338. <productMenu id="ota"
  339. type="2" >
  340. <otaLanguages>
  341. <otaLanguage
  342. id="0"
  343. name="English"
  344. package="0"
  345. />
  346. <otaLanguage
  347. id="0"
  348. name="French"
  349. package="1"
  350. />
  351. <otaLanguage
  352. id="0"
  353. name="Spanish"
  354. package="2"
  355. />
  356. <otaLanguage
  357. id="0"
  358. name="Italian"
  359. package="3"
  360. />
  361. <otaLanguage
  362. id="0"
  363. name="German"
  364. package="4"
  365. />
  366. <otaLanguage
  367. id="0"
  368. name="Dutch"
  369. package="5"
  370. />
  371. <otaLanguage
  372. id="0"
  373. name="Russian"
  374. package="6"
  375. />
  376. <otaLanguage
  377. id="0"
  378. name="Chinese"
  379. package="7"
  380. />
  381. <otaLanguage
  382. id="0"
  383. name="Korean"
  384. package="8"
  385. />
  386. <otaLanguage
  387. id="0"
  388. name="Japanese"
  389. package="9"
  390. />
  391. <otaLanguage
  392. id="0"
  393. name="Finnish"
  394. package="10"
  395. />
  396. <otaLanguage
  397. id="0"
  398. name="Polish"
  399. package="11"
  400. />
  401. </otaLanguages>
  402. <otaPackages>
  403. <package
  404. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0.img"
  405. size="5183988"
  406. />
  407. <package
  408. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-fr-FR.img"
  409. size="5183988"
  410. />
  411. <package
  412. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-es-ES.img"
  413. size="5183988"
  414. />
  415. <package
  416. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-it-IT.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-de-DE.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-nl-NL.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-ru-RU.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-cmn-CN.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-ko-KR.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-ja-JP.img"
  441. size="5183988"
  442. />
  443. <package
  444. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-fi-FI.img"
  445. size="5183988"
  446. />
  447. <package
  448. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-pl-PL.img"
  449. size="5183988"
  450. />
  451. </otaPackages>
  452. </productMenu>
  453. <productMenu id="sip"
  454. type="1" >
  455. </productMenu>
  456. <productMenu id="illusion"
  457. type="1" >
  458. </productMenu>
  459. <productMenu id="meshIntercom"
  460. type="30" >
  461. </productMenu>
  462. <productMenu id="meshIntercom+"
  463. type="3"
  464. url="2" >
  465. </productMenu>
  466. <productMenu id="waveIntercom"
  467. type="1" >
  468. </productMenu>
  469. <productMenu id="bluetoothIntercom"
  470. type="1"
  471. url="2" >
  472. </productMenu>
  473. <productMenu id="bluetoothIntercomGrouping"
  474. type="0" >
  475. </productMenu>
  476. <productMenu id="fmradio"
  477. type="1"
  478. url="1" >
  479. </productMenu>
  480. <productMenu id="phone"
  481. type="1" >
  482. </productMenu>
  483. <productMenu id="music"
  484. type="1" >
  485. </productMenu>
  486. <productMenu id="musicSharing"
  487. type="0" >
  488. </productMenu>
  489. <productMenu id="deviceSetting"
  490. type="1"
  491. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_05_Auto.xml" >
  492. </productMenu>
  493. <productMenu id="quickGuide"
  494. type="0"
  495. url=""
  496. size="1.12MB" >
  497. </productMenu>
  498. <productMenu id="userGuide"
  499. type="1"
  500. url=""
  501. size="2.0MB" >
  502. </productMenu>
  503. <productMenu id="videoGuide"
  504. type="0"
  505. url=""
  506. size="3.41MB" >
  507. </productMenu>
  508. <productMenu id="connectGuide"
  509. type="0"
  510. url=""
  511. size="1.12MB" >
  512. </productMenu>
  513. <productMenu id="volume"
  514. type="16" >
  515. </productMenu>
  516. <productMenu id="soundMode"
  517. type="1" >
  518. </productMenu>
  519. <productMenu id="battery"
  520. type="1" >
  521. </productMenu>
  522. <productID id="6A15"
  523. />
  524. <productGroupable type="0"
  525. />
  526. </product>
  527. <product id="60S"
  528. name="60S"
  529. series="60"
  530. latestVersion="1.2.8"
  531. latestVersionMesh="1.2"
  532. latestVersionVoicePrompt="1.5"
  533. show = "1" >
  534. <productMenu id="protocol"
  535. type="2" >
  536. </productMenu>
  537. <productMenu id="ota"
  538. type="2" >
  539. <otaLanguages>
  540. <otaLanguage
  541. id="0"
  542. name="English"
  543. package="0"
  544. />
  545. <otaLanguage
  546. id="0"
  547. name="French"
  548. package="1"
  549. />
  550. <otaLanguage
  551. id="0"
  552. name="Spanish"
  553. package="2"
  554. />
  555. <otaLanguage
  556. id="0"
  557. name="Italian"
  558. package="3"
  559. />
  560. <otaLanguage
  561. id="0"
  562. name="German"
  563. package="4"
  564. />
  565. <otaLanguage
  566. id="0"
  567. name="Dutch"
  568. package="5"
  569. />
  570. <otaLanguage
  571. id="0"
  572. name="Russian"
  573. package="6"
  574. />
  575. <otaLanguage
  576. id="0"
  577. name="Chinese"
  578. package="7"
  579. />
  580. <otaLanguage
  581. id="0"
  582. name="Korean"
  583. package="8"
  584. />
  585. <otaLanguage
  586. id="0"
  587. name="Japanese"
  588. package="9"
  589. />
  590. <otaLanguage
  591. id="0"
  592. name="Finnish"
  593. package="10"
  594. />
  595. <otaLanguage
  596. id="0"
  597. name="Polish"
  598. package="11"
  599. />
  600. </otaLanguages>
  601. <otaPackages>
  602. <package
  603. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0.img"
  604. size="5183988"
  605. />
  606. <package
  607. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-fr-FR.img"
  608. size="5183988"
  609. />
  610. <package
  611. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-es-ES.img"
  612. size="5183988"
  613. />
  614. <package
  615. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-it-IT.img"
  616. size="5183988"
  617. />
  618. <package
  619. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-de-DE.img"
  620. size="5183988"
  621. />
  622. <package
  623. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-nl-NL.img"
  624. size="5183988"
  625. />
  626. <package
  627. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-ru-RU.img"
  628. size="5183988"
  629. />
  630. <package
  631. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-cmn-CN.img"
  632. size="5183988"
  633. />
  634. <package
  635. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-ko-KR.img"
  636. size="5183988"
  637. />
  638. <package
  639. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-ja-JP.img"
  640. size="5183988"
  641. />
  642. <package
  643. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-fi-FI.img"
  644. size="5183988"
  645. />
  646. <package
  647. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-pl-PL.img"
  648. size="5183988"
  649. />
  650. </otaPackages>
  651. </productMenu>
  652. <productMenu id="sip"
  653. type="1" >
  654. </productMenu>
  655. <productMenu id="illusion"
  656. type="1" >
  657. </productMenu>
  658. <productMenu id="meshIntercom"
  659. type="30" >
  660. </productMenu>
  661. <productMenu id="meshIntercom+"
  662. type="3"
  663. url="2" >
  664. </productMenu>
  665. <productMenu id="waveIntercom"
  666. type="1" >
  667. </productMenu>
  668. <productMenu id="bluetoothIntercom"
  669. type="1"
  670. url="2" >
  671. </productMenu>
  672. <productMenu id="bluetoothIntercomGrouping"
  673. type="0" >
  674. </productMenu>
  675. <productMenu id="fmradio"
  676. type="1"
  677. url="1" >
  678. </productMenu>
  679. <productMenu id="phone"
  680. type="1" >
  681. </productMenu>
  682. <productMenu id="music"
  683. type="1" >
  684. </productMenu>
  685. <productMenu id="musicSharing"
  686. type="0" >
  687. </productMenu>
  688. <productMenu id="deviceSetting"
  689. type="1"
  690. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  691. <productMenuURL version="1.2.6"
  692. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  693. />
  694. <productMenuURL version="1.2.3"
  695. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  696. />
  697. </productMenu>
  698. <productMenu id="quickGuide"
  699. type="0"
  700. url=""
  701. size="1.12MB" >
  702. </productMenu>
  703. <productMenu id="userGuide"
  704. type="1"
  705. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  706. size="2.0MB" >
  707. </productMenu>
  708. <productMenu id="videoGuide"
  709. type="0"
  710. url=""
  711. size="3.41MB" >
  712. </productMenu>
  713. <productMenu id="connectGuide"
  714. type="1"
  715. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  716. size="1.12MB" >
  717. </productMenu>
  718. <productMenu id="volume"
  719. type="16" >
  720. </productMenu>
  721. <productMenu id="volume+"
  722. type="2"
  723. url="0x6004" >
  724. <productMenuURL version="1.2.3"
  725. url="0x6004"
  726. />
  727. </productMenu>
  728. <productMenu id="soundMode"
  729. type="0" >
  730. </productMenu>
  731. <productMenu id="battery"
  732. type="1" >
  733. </productMenu>
  734. <productID id="6A0D"
  735. />
  736. <productGroupable type="0"
  737. />
  738. </product>
  739. <product id="60S"
  740. name="60S"
  741. series="60"
  742. latestVersion="1.2.8"
  743. latestVersionMesh="1.2"
  744. latestVersionVoicePrompt="1.5"
  745. show = "-1" >
  746. <productMenu id="protocol"
  747. type="2" >
  748. </productMenu>
  749. <productMenu id="ota"
  750. type="2" >
  751. <otaLanguages>
  752. <otaLanguage
  753. id="0"
  754. name="English"
  755. package="0"
  756. />
  757. <otaLanguage
  758. id="0"
  759. name="French"
  760. package="1"
  761. />
  762. <otaLanguage
  763. id="0"
  764. name="Spanish"
  765. package="2"
  766. />
  767. <otaLanguage
  768. id="0"
  769. name="Italian"
  770. package="3"
  771. />
  772. <otaLanguage
  773. id="0"
  774. name="German"
  775. package="4"
  776. />
  777. <otaLanguage
  778. id="0"
  779. name="Dutch"
  780. package="5"
  781. />
  782. <otaLanguage
  783. id="0"
  784. name="Russian"
  785. package="6"
  786. />
  787. <otaLanguage
  788. id="0"
  789. name="Chinese"
  790. package="7"
  791. />
  792. <otaLanguage
  793. id="0"
  794. name="Korean"
  795. package="8"
  796. />
  797. <otaLanguage
  798. id="0"
  799. name="Japanese"
  800. package="9"
  801. />
  802. <otaLanguage
  803. id="0"
  804. name="Finnish"
  805. package="10"
  806. />
  807. <otaLanguage
  808. id="0"
  809. name="Polish"
  810. package="11"
  811. />
  812. </otaLanguages>
  813. <otaPackages>
  814. <package
  815. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0.img"
  816. size="5183988"
  817. />
  818. <package
  819. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-fr-FR.img"
  820. size="5183988"
  821. />
  822. <package
  823. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-es-ES.img"
  824. size="5183988"
  825. />
  826. <package
  827. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-it-IT.img"
  828. size="5183988"
  829. />
  830. <package
  831. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-de-DE.img"
  832. size="5183988"
  833. />
  834. <package
  835. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-nl-NL.img"
  836. size="5183988"
  837. />
  838. <package
  839. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-ru-RU.img"
  840. size="5183988"
  841. />
  842. <package
  843. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-cmn-CN.img"
  844. size="5183988"
  845. />
  846. <package
  847. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-ko-KR.img"
  848. size="5183988"
  849. />
  850. <package
  851. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-ja-JP.img"
  852. size="5183988"
  853. />
  854. <package
  855. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-fi-FI.img"
  856. size="5183988"
  857. />
  858. <package
  859. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-pl-PL.img"
  860. size="5183988"
  861. />
  862. </otaPackages>
  863. </productMenu>
  864. <productMenu id="wa"
  865. type="0" >
  866. </productMenu>
  867. <productMenu id="sip"
  868. type="1" >
  869. </productMenu>
  870. <productMenu id="led"
  871. type="0" >
  872. </productMenu>
  873. <productMenu id="illusion"
  874. type="1" >
  875. </productMenu>
  876. <productMenu id="meshIntercom"
  877. type="30" >
  878. </productMenu>
  879. <productMenu id="meshIntercom+"
  880. type="3"
  881. url="2" >
  882. <productMenuURL version="1.0.2"
  883. url="10"
  884. />
  885. </productMenu>
  886. <productMenu id="waveIntercom"
  887. type="1" >
  888. <productMenuType version="1.0.9"
  889. type="0"
  890. />
  891. </productMenu>
  892. <productMenu id="bluetoothIntercom"
  893. type="1"
  894. url="2" >
  895. </productMenu>
  896. <productMenu id="bluetoothIntercomGrouping"
  897. type="0" >
  898. </productMenu>
  899. <productMenu id="fmradio"
  900. type="1"
  901. url="1" >
  902. </productMenu>
  903. <productMenu id="phone"
  904. type="1" >
  905. </productMenu>
  906. <productMenu id="music"
  907. type="1" >
  908. </productMenu>
  909. <productMenu id="musicSharing"
  910. type="0" >
  911. </productMenu>
  912. <productMenu id="deviceSetting"
  913. type="1"
  914. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  915. <productMenuURL version="1.2.6"
  916. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  917. />
  918. <productMenuURL version="1.2.3"
  919. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  920. />
  921. <productMenuURL version="1.0.2"
  922. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  923. />
  924. <productMenuURL version="1.0"
  925. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  926. />
  927. <productMenuURL version="0.9.11"
  928. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  929. />
  930. </productMenu>
  931. <productMenu id="quickGuide"
  932. type="0"
  933. url=""
  934. size="1.12MB" >
  935. </productMenu>
  936. <productMenu id="userGuide"
  937. type="1"
  938. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  939. size="2.0MB" >
  940. </productMenu>
  941. <productMenu id="videoGuide"
  942. type="0"
  943. url=""
  944. size="3.41MB" >
  945. </productMenu>
  946. <productMenu id="connectGuide"
  947. type="1"
  948. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  949. size="1.12MB" >
  950. </productMenu>
  951. <productMenu id="volume"
  952. type="16" >
  953. <productMenuType version="0.9.11"
  954. type="13"
  955. />
  956. </productMenu>
  957. <productMenu id="volume+"
  958. type="2"
  959. url="0x6004" >
  960. <productMenuURL version="1.2.3"
  961. url="0x6004"
  962. />
  963. </productMenu>
  964. <productMenu id="soundMode"
  965. type="0" >
  966. <productMenuType version="0.9.11"
  967. type="0"
  968. />
  969. </productMenu>
  970. <productMenu id="battery"
  971. type="1" >
  972. </productMenu>
  973. <productID id="6A02"
  974. />
  975. <productGroupable type="0"
  976. />
  977. </product>
  978. <product id="60X"
  979. name="60X"
  980. series="60"
  981. latestVersion="0.9.2"
  982. latestVersionMesh="0.19"
  983. latestVersionVoicePrompt="1.5"
  984. show = "-1" >
  985. <productMenu id="protocol"
  986. type="2" >
  987. </productMenu>
  988. <productMenu id="ota"
  989. type="0" >
  990. <otaLanguages>
  991. <otaLanguage
  992. id="0"
  993. name="English"
  994. package="0"
  995. />
  996. <otaLanguage
  997. id="0"
  998. name="French"
  999. package="1"
  1000. />
  1001. <otaLanguage
  1002. id="0"
  1003. name="Spanish"
  1004. package="2"
  1005. />
  1006. <otaLanguage
  1007. id="0"
  1008. name="Italian"
  1009. package="3"
  1010. />
  1011. <otaLanguage
  1012. id="0"
  1013. name="German"
  1014. package="4"
  1015. />
  1016. <otaLanguage
  1017. id="0"
  1018. name="Dutch"
  1019. package="5"
  1020. />
  1021. <otaLanguage
  1022. id="0"
  1023. name="Russian"
  1024. package="6"
  1025. />
  1026. <otaLanguage
  1027. id="0"
  1028. name="Chinese"
  1029. package="7"
  1030. />
  1031. <otaLanguage
  1032. id="0"
  1033. name="Korean"
  1034. package="8"
  1035. />
  1036. <otaLanguage
  1037. id="0"
  1038. name="Japanese"
  1039. package="9"
  1040. />
  1041. <otaLanguage
  1042. id="0"
  1043. name="Finnish"
  1044. package="10"
  1045. />
  1046. <otaLanguage
  1047. id="0"
  1048. name="Polish"
  1049. package="11"
  1050. />
  1051. </otaLanguages>
  1052. <otaPackages>
  1053. <package
  1054. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0.img"
  1055. size="5183988"
  1056. />
  1057. <package
  1058. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-fr-FR.img"
  1059. size="5183988"
  1060. />
  1061. <package
  1062. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-es-ES.img"
  1063. size="5183988"
  1064. />
  1065. <package
  1066. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-it-IT.img"
  1067. size="5183988"
  1068. />
  1069. <package
  1070. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-de-DE.img"
  1071. size="5183988"
  1072. />
  1073. <package
  1074. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-nl-NL.img"
  1075. size="5183988"
  1076. />
  1077. <package
  1078. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-ru-RU.img"
  1079. size="5183988"
  1080. />
  1081. <package
  1082. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-cmn-CN.img"
  1083. size="5183988"
  1084. />
  1085. <package
  1086. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-ko-KR.img"
  1087. size="5183988"
  1088. />
  1089. <package
  1090. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-ja-JP.img"
  1091. size="5183988"
  1092. />
  1093. <package
  1094. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-fi-FI.img"
  1095. size="5183988"
  1096. />
  1097. <package
  1098. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-pl-PL.img"
  1099. size="5183988"
  1100. />
  1101. </otaPackages>
  1102. </productMenu>
  1103. <productMenu id="wa"
  1104. type="0" >
  1105. </productMenu>
  1106. <productMenu id="sip"
  1107. type="1" >
  1108. </productMenu>
  1109. <productMenu id="led"
  1110. type="1" >
  1111. </productMenu>
  1112. <productMenu id="illusion"
  1113. type="1" >
  1114. </productMenu>
  1115. <productMenu id="meshIntercom"
  1116. type="30" >
  1117. </productMenu>
  1118. <productMenu id="meshIntercom+"
  1119. type="3"
  1120. url="2" >
  1121. </productMenu>
  1122. <productMenu id="bluetoothIntercom"
  1123. type="1" >
  1124. </productMenu>
  1125. <productMenu id="fmradio"
  1126. type="1"
  1127. url="1" >
  1128. </productMenu>
  1129. <productMenu id="phone"
  1130. type="1" >
  1131. </productMenu>
  1132. <productMenu id="music"
  1133. type="1" >
  1134. </productMenu>
  1135. <productMenu id="musicSharing"
  1136. type="0" >
  1137. </productMenu>
  1138. <productMenu id="deviceSetting"
  1139. type="1"
  1140. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1141. </productMenu>
  1142. <productMenu id="quickGuide"
  1143. type="0"
  1144. url=""
  1145. size="1.12MB" >
  1146. </productMenu>
  1147. <productMenu id="userGuide"
  1148. type="0"
  1149. url=""
  1150. size="2.0MB" >
  1151. </productMenu>
  1152. <productMenu id="videoGuide"
  1153. type="0"
  1154. url=""
  1155. size="3.41MB" >
  1156. </productMenu>
  1157. <productMenu id="keySettings"
  1158. type="1"
  1159. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1160. </productMenu>
  1161. <productMenu id="volume"
  1162. type="13" >
  1163. </productMenu>
  1164. <productMenu id="volume+"
  1165. type="2"
  1166. url="0x6004" >
  1167. </productMenu>
  1168. <productMenu id="battery"
  1169. type="1" >
  1170. </productMenu>
  1171. <productID id="6A03"
  1172. />
  1173. <productGroupable type="0"
  1174. />
  1175. </product>
  1176. <product id="R35"
  1177. name="R35"
  1178. series="R"
  1179. latestVersion="1.1"
  1180. latestVersionVoicePrompt="1.5"
  1181. show = "-1" >
  1182. <productMenu id="protocol"
  1183. type="2" >
  1184. </productMenu>
  1185. <productMenu id="ota"
  1186. type="2" >
  1187. <otaLanguages>
  1188. <otaLanguage
  1189. id="0"
  1190. name="English"
  1191. package="0"
  1192. />
  1193. <otaLanguage
  1194. id="0"
  1195. name="Chinese"
  1196. package="1"
  1197. />
  1198. <otaLanguage
  1199. id="0"
  1200. name="Chinese Singapore"
  1201. package="2"
  1202. />
  1203. <otaLanguage
  1204. id="0"
  1205. name="Filipino"
  1206. package="3"
  1207. />
  1208. <otaLanguage
  1209. id="0"
  1210. name="Hebrew"
  1211. package="4"
  1212. />
  1213. <otaLanguage
  1214. id="0"
  1215. name="Hindi"
  1216. package="5"
  1217. />
  1218. <otaLanguage
  1219. id="0"
  1220. name="Indonesian"
  1221. package="6"
  1222. />
  1223. <otaLanguage
  1224. id="0"
  1225. name="Japanese"
  1226. package="7"
  1227. />
  1228. <otaLanguage
  1229. id="0"
  1230. name="Korean"
  1231. package="8"
  1232. />
  1233. <otaLanguage
  1234. id="0"
  1235. name="Malay"
  1236. package="9"
  1237. />
  1238. <otaLanguage
  1239. id="0"
  1240. name="Modern Standard Arabic"
  1241. package="10"
  1242. />
  1243. <otaLanguage
  1244. id="0"
  1245. name="Taiwanese"
  1246. package="11"
  1247. />
  1248. <otaLanguage
  1249. id="0"
  1250. name="Tamil"
  1251. package="12"
  1252. />
  1253. <otaLanguage
  1254. id="0"
  1255. name="Thai"
  1256. package="13"
  1257. />
  1258. <otaLanguage
  1259. id="0"
  1260. name="东北话"
  1261. package="14"
  1262. />
  1263. <otaLanguage
  1264. id="0"
  1265. name="广东话"
  1266. package="15"
  1267. />
  1268. <otaLanguage
  1269. id="0"
  1270. name="江浙沪"
  1271. package="16"
  1272. />
  1273. <otaLanguage
  1274. id="0"
  1275. name="四川话"
  1276. package="17"
  1277. />
  1278. <otaLanguage
  1279. id="0"
  1280. name="陕西话"
  1281. package="18"
  1282. />
  1283. </otaLanguages>
  1284. <otaPackages>
  1285. <package
  1286. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0.img"
  1287. size="5183988"
  1288. />
  1289. <package
  1290. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-cmn-CN.img"
  1291. size="5183988"
  1292. />
  1293. <package
  1294. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-cmn-SG.img"
  1295. size="5183988"
  1296. />
  1297. <package
  1298. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-tl-PH.img"
  1299. size="5183988"
  1300. />
  1301. <package
  1302. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-he-IL.img"
  1303. size="5183988"
  1304. />
  1305. <package
  1306. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-hi-IN.img"
  1307. size="5183988"
  1308. />
  1309. <package
  1310. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-id-ID.img"
  1311. size="5183988"
  1312. />
  1313. <package
  1314. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ja-JP.img"
  1315. size="5183988"
  1316. />
  1317. <package
  1318. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ko-KR.img"
  1319. size="5183988"
  1320. />
  1321. <package
  1322. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ms-MY.img"
  1323. size="5183988"
  1324. />
  1325. <package
  1326. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ar-XA.img"
  1327. size="5183988"
  1328. />
  1329. <package
  1330. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-nan-TW.img"
  1331. size="5183988"
  1332. />
  1333. <package
  1334. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ta-IN.img"
  1335. size="5183988"
  1336. />
  1337. <package
  1338. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-th-TH.img"
  1339. size="5183988"
  1340. />
  1341. <package
  1342. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zdb-CN.img"
  1343. size="5183988"
  1344. />
  1345. <package
  1346. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-yue-CN.img"
  1347. size="5183988"
  1348. />
  1349. <package
  1350. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-wuu-CN.img"
  1351. size="5183988"
  1352. />
  1353. <package
  1354. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zsc-CN.img"
  1355. size="5183988"
  1356. />
  1357. <package
  1358. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zsn-CN.img"
  1359. size="5183988"
  1360. />
  1361. </otaPackages>
  1362. </productMenu>
  1363. <productMenu id="sip"
  1364. type="1" >
  1365. </productMenu>
  1366. <productMenu id="illusion"
  1367. type="1" >
  1368. </productMenu>
  1369. <productMenu id="meshIntercom"
  1370. type="30" >
  1371. </productMenu>
  1372. <productMenu id="meshIntercom+"
  1373. type="3"
  1374. url="2" >
  1375. </productMenu>
  1376. <productMenu id="waveIntercom"
  1377. type="1" >
  1378. </productMenu>
  1379. <productMenu id="phone"
  1380. type="1" >
  1381. </productMenu>
  1382. <productMenu id="music"
  1383. type="1" >
  1384. </productMenu>
  1385. <productMenu id="musicSharing"
  1386. type="0" >
  1387. </productMenu>
  1388. <productMenu id="deviceSetting"
  1389. type="1"
  1390. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml" >
  1391. <productMenuURL version="1.0.3"
  1392. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1393. />
  1394. </productMenu>
  1395. <productMenu id="quickGuide"
  1396. type="0"
  1397. url=""
  1398. size="1.12MB" >
  1399. </productMenu>
  1400. <productMenu id="userGuide"
  1401. type="1"
  1402. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1403. size="2.0MB" >
  1404. </productMenu>
  1405. <productMenu id="videoGuide"
  1406. type="0"
  1407. url=""
  1408. size="3.41MB" >
  1409. </productMenu>
  1410. <productMenu id="connectGuide"
  1411. type="0"
  1412. url=""
  1413. size="1.12MB" >
  1414. </productMenu>
  1415. <productMenu id="volume"
  1416. type="16" >
  1417. </productMenu>
  1418. <productMenu id="volume+"
  1419. type="2"
  1420. url="0x6004" >
  1421. </productMenu>
  1422. <productMenu id="soundMode"
  1423. type="0" >
  1424. </productMenu>
  1425. <productMenu id="battery"
  1426. type="1" >
  1427. </productMenu>
  1428. <productID id="6A06"
  1429. />
  1430. <productGroupable type="0"
  1431. />
  1432. </product>
  1433. <product id="COMP1"
  1434. name="BMW COM P1"
  1435. series="60"
  1436. latestVersion="1.0.6"
  1437. latestVersionMesh="0.19"
  1438. latestVersionVoicePrompt="1.0"
  1439. show = "-1" >
  1440. <productMenu id="protocol"
  1441. type="2" >
  1442. </productMenu>
  1443. <productMenu id="ota"
  1444. type="2" >
  1445. <otaLanguages>
  1446. <otaLanguage
  1447. id="0"
  1448. name="English"
  1449. package="0"
  1450. />
  1451. <otaLanguage
  1452. id="0"
  1453. name="French"
  1454. package="1"
  1455. />
  1456. <otaLanguage
  1457. id="0"
  1458. name="Spanish"
  1459. package="2"
  1460. />
  1461. <otaLanguage
  1462. id="0"
  1463. name="Italian"
  1464. package="3"
  1465. />
  1466. <otaLanguage
  1467. id="0"
  1468. name="German"
  1469. package="4"
  1470. />
  1471. <otaLanguage
  1472. id="0"
  1473. name="Dutch"
  1474. package="5"
  1475. />
  1476. <otaLanguage
  1477. id="0"
  1478. name="Russian"
  1479. package="6"
  1480. />
  1481. <otaLanguage
  1482. id="0"
  1483. name="Chinese"
  1484. package="7"
  1485. />
  1486. <otaLanguage
  1487. id="0"
  1488. name="Korean"
  1489. package="8"
  1490. />
  1491. <otaLanguage
  1492. id="0"
  1493. name="Japanese"
  1494. package="9"
  1495. />
  1496. <otaLanguage
  1497. id="0"
  1498. name="Finnish"
  1499. package="10"
  1500. />
  1501. </otaLanguages>
  1502. <otaPackages>
  1503. <package
  1504. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0.img"
  1505. size="5183988"
  1506. />
  1507. <package
  1508. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fr-FR.img"
  1509. size="5183988"
  1510. />
  1511. <package
  1512. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-es-ES.img"
  1513. size="5183988"
  1514. />
  1515. <package
  1516. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-it-IT.img"
  1517. size="5183988"
  1518. />
  1519. <package
  1520. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-de-DE.img"
  1521. size="5183988"
  1522. />
  1523. <package
  1524. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-nl-NL.img"
  1525. size="5183988"
  1526. />
  1527. <package
  1528. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ru-RU.img"
  1529. size="5183988"
  1530. />
  1531. <package
  1532. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-cmn-CN.img"
  1533. size="5183988"
  1534. />
  1535. <package
  1536. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ko-KR.img"
  1537. size="5183988"
  1538. />
  1539. <package
  1540. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ja-JP.img"
  1541. size="5183988"
  1542. />
  1543. <package
  1544. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fi-FI.img"
  1545. size="5183988"
  1546. />
  1547. </otaPackages>
  1548. </productMenu>
  1549. <productMenu id="wa"
  1550. type="0" >
  1551. </productMenu>
  1552. <productMenu id="sip"
  1553. type="1" >
  1554. </productMenu>
  1555. <productMenu id="led"
  1556. type="0" >
  1557. </productMenu>
  1558. <productMenu id="illusion"
  1559. type="0" >
  1560. </productMenu>
  1561. <productMenu id="meshIntercom"
  1562. type="30" >
  1563. </productMenu>
  1564. <productMenu id="bluetoothIntercom"
  1565. type="1" >
  1566. </productMenu>
  1567. <productMenu id="bluetoothIntercomGrouping"
  1568. type="0" >
  1569. </productMenu>
  1570. <productMenu id="fmradio"
  1571. type="0" >
  1572. </productMenu>
  1573. <productMenu id="phone"
  1574. type="1" >
  1575. </productMenu>
  1576. <productMenu id="music"
  1577. type="1" >
  1578. </productMenu>
  1579. <productMenu id="musicSharing"
  1580. type="0" >
  1581. </productMenu>
  1582. <productMenu id="deviceSetting"
  1583. type="1"
  1584. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1585. </productMenu>
  1586. <productMenu id="quickGuide"
  1587. type="0"
  1588. url=""
  1589. size="1.12MB" >
  1590. </productMenu>
  1591. <productMenu id="userGuide"
  1592. type="0"
  1593. url=""
  1594. size="2.0MB" >
  1595. </productMenu>
  1596. <productMenu id="videoGuide"
  1597. type="0"
  1598. url=""
  1599. size="3.41MB" >
  1600. </productMenu>
  1601. <productMenu id="volume"
  1602. type="16" >
  1603. </productMenu>
  1604. <productMenu id="battery"
  1605. type="1" >
  1606. </productMenu>
  1607. <productID id="6A80"
  1608. />
  1609. <productGroupable type="0"
  1610. />
  1611. </product>
  1612. <product id="50S"
  1613. name="50S"
  1614. series="50"
  1615. latestVersion="2.7.2"
  1616. show = "1" >
  1617. <productMenu id="protocol"
  1618. type="2" >
  1619. </productMenu>
  1620. <productMenu id="alexa"
  1621. type="0" >
  1622. </productMenu>
  1623. <productMenu id="ota"
  1624. type="0"
  1625. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1626. size="1150234" >
  1627. </productMenu>
  1628. <productMenu id="wa"
  1629. type="1" >
  1630. </productMenu>
  1631. <productMenu id="sip"
  1632. type="1" >
  1633. </productMenu>
  1634. <productMenu id="meshIntercom"
  1635. type="30" >
  1636. <productMenuType version="2.1.1"
  1637. type="20"
  1638. />
  1639. </productMenu>
  1640. <productMenu id="meshIntercom+"
  1641. type="3"
  1642. url="2" >
  1643. <productMenuType version="2.5.9"
  1644. type="2"
  1645. />
  1646. <productMenuURL version="2.1.1"
  1647. url="0"
  1648. />
  1649. </productMenu>
  1650. <productMenu id="waveIntercom"
  1651. type="1" >
  1652. <productMenuType version="2.6"
  1653. type="0"
  1654. />
  1655. </productMenu>
  1656. <productMenu id="bluetoothIntercom"
  1657. type="1" >
  1658. </productMenu>
  1659. <productMenu id="phone"
  1660. type="1" >
  1661. </productMenu>
  1662. <productMenu id="music"
  1663. type="1" >
  1664. </productMenu>
  1665. <productMenu id="fmradio"
  1666. type="1" >
  1667. </productMenu>
  1668. <productMenu id="deviceSetting"
  1669. type="1"
  1670. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1671. <productMenuURL version="2.5.9"
  1672. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1673. />
  1674. <productMenuURL version="2.1.1"
  1675. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1676. />
  1677. <productMenuURL version="2.0.3"
  1678. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1679. />
  1680. </productMenu>
  1681. <productMenu id="quickGuide"
  1682. type="0"
  1683. url=""
  1684. size="934KB" >
  1685. </productMenu>
  1686. <productMenu id="userGuide"
  1687. type="1"
  1688. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1689. size="1.14MB" >
  1690. </productMenu>
  1691. <productMenu id="videoGuide"
  1692. type="1"
  1693. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1694. size="3.41MB" >
  1695. </productMenu>
  1696. <productMenu id="connectGuide"
  1697. type="1"
  1698. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1699. size="1.12MB" >
  1700. </productMenu>
  1701. <productMenu id="volume"
  1702. type="11" >
  1703. </productMenu>
  1704. <productMenu id="battery"
  1705. type="1" >
  1706. </productMenu>
  1707. <productID id="3210"
  1708. />
  1709. <productGroupable type="0"
  1710. />
  1711. </product>
  1712. <product id="50S"
  1713. name="50S"
  1714. series="50"
  1715. latestVersion="1.5.1"
  1716. show = "-1" >
  1717. <productMenu id="protocol"
  1718. type="2" >
  1719. </productMenu>
  1720. <productMenu id="alexa"
  1721. type="0" >
  1722. </productMenu>
  1723. <productMenu id="wa"
  1724. type="1" >
  1725. </productMenu>
  1726. <productMenu id="sip"
  1727. type="1" >
  1728. </productMenu>
  1729. <productMenu id="meshIntercom"
  1730. type="30" >
  1731. <productMenuType version="1.2.2"
  1732. type="20"
  1733. />
  1734. </productMenu>
  1735. <productMenu id="meshIntercom+"
  1736. type="3"
  1737. url="2" >
  1738. <productMenuType version="1.4.9"
  1739. type="2"
  1740. />
  1741. <productMenuURL version="1.2.2"
  1742. url="0"
  1743. />
  1744. </productMenu>
  1745. <productMenu id="waveIntercom"
  1746. type="1" >
  1747. <productMenuType version="1.3.9"
  1748. type="0"
  1749. />
  1750. </productMenu>
  1751. <productMenu id="bluetoothIntercom"
  1752. type="1" >
  1753. </productMenu>
  1754. <productMenu id="phone"
  1755. type="1" >
  1756. </productMenu>
  1757. <productMenu id="music"
  1758. type="1" >
  1759. </productMenu>
  1760. <productMenu id="fmradio"
  1761. type="1" >
  1762. </productMenu>
  1763. <productMenu id="deviceSetting"
  1764. type="1"
  1765. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1766. <productMenuURL version="1.4.9"
  1767. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1768. />
  1769. <productMenuURL version="1.3.9"
  1770. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1771. />
  1772. <productMenuURL version="1.2.2"
  1773. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1774. />
  1775. <productMenuURL version="1.1.1"
  1776. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1777. />
  1778. </productMenu>
  1779. <productMenu id="quickGuide"
  1780. type="0"
  1781. url=""
  1782. size="934KB" >
  1783. </productMenu>
  1784. <productMenu id="userGuide"
  1785. type="1"
  1786. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  1787. size="1.14MB" >
  1788. </productMenu>
  1789. <productMenu id="videoGuide"
  1790. type="1"
  1791. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1792. size="3.41MB" >
  1793. </productMenu>
  1794. <productMenu id="volume"
  1795. type="11" >
  1796. </productMenu>
  1797. <productMenu id="battery"
  1798. type="1" >
  1799. </productMenu>
  1800. <productID id="3132"
  1801. />
  1802. <productGroupable type="0"
  1803. />
  1804. </product>
  1805. <product id="50R"
  1806. name="50R"
  1807. series="50"
  1808. latestVersion="2.7.1"
  1809. show = "1" >
  1810. <productMenu id="protocol"
  1811. type="2" >
  1812. </productMenu>
  1813. <productMenu id="alexa"
  1814. type="0" >
  1815. </productMenu>
  1816. <productMenu id="ota"
  1817. type="0"
  1818. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1819. size="1150234" >
  1820. </productMenu>
  1821. <productMenu id="wa"
  1822. type="1" >
  1823. </productMenu>
  1824. <productMenu id="sip"
  1825. type="1" >
  1826. </productMenu>
  1827. <productMenu id="meshIntercom"
  1828. type="30" >
  1829. <productMenuType version="2.1.1"
  1830. type="20"
  1831. />
  1832. </productMenu>
  1833. <productMenu id="meshIntercom+"
  1834. type="3"
  1835. url="2" >
  1836. <productMenuType version="2.5.9"
  1837. type="2"
  1838. />
  1839. <productMenuURL version="2.1.1"
  1840. url="0"
  1841. />
  1842. </productMenu>
  1843. <productMenu id="waveIntercom"
  1844. type="1" >
  1845. <productMenuType version="2.6"
  1846. type="0"
  1847. />
  1848. </productMenu>
  1849. <productMenu id="bluetoothIntercom"
  1850. type="1" >
  1851. </productMenu>
  1852. <productMenu id="phone"
  1853. type="1" >
  1854. </productMenu>
  1855. <productMenu id="music"
  1856. type="1" >
  1857. </productMenu>
  1858. <productMenu id="fmradio"
  1859. type="1" >
  1860. </productMenu>
  1861. <productMenu id="deviceSetting"
  1862. type="1"
  1863. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1864. <productMenuURL version="2.5.9"
  1865. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1866. />
  1867. <productMenuURL version="2.1.1"
  1868. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1869. />
  1870. <productMenuURL version="2.0"
  1871. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1872. />
  1873. </productMenu>
  1874. <productMenu id="quickGuide"
  1875. type="0"
  1876. url=""
  1877. size="344KB" >
  1878. </productMenu>
  1879. <productMenu id="userGuide"
  1880. type="1"
  1881. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  1882. size="3.41MB" >
  1883. </productMenu>
  1884. <productMenu id="videoGuide"
  1885. type="1"
  1886. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1887. size="3.41MB" >
  1888. </productMenu>
  1889. <productMenu id="connectGuide"
  1890. type="1"
  1891. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  1892. size="1.12MB" >
  1893. </productMenu>
  1894. <productMenu id="volume"
  1895. type="11" >
  1896. </productMenu>
  1897. <productMenu id="battery"
  1898. type="1" >
  1899. </productMenu>
  1900. <productID id="3218"
  1901. />
  1902. <productGroupable type="0"
  1903. />
  1904. </product>
  1905. <product id="50R"
  1906. name="50R"
  1907. series="50"
  1908. latestVersion="1.5.1"
  1909. show = "-1" >
  1910. <productMenu id="protocol"
  1911. type="2" >
  1912. </productMenu>
  1913. <productMenu id="alexa"
  1914. type="0" >
  1915. </productMenu>
  1916. <productMenu id="wa"
  1917. type="1" >
  1918. </productMenu>
  1919. <productMenu id="sip"
  1920. type="1" >
  1921. </productMenu>
  1922. <productMenu id="meshIntercom"
  1923. type="30" >
  1924. <productMenuType version="1.2.2"
  1925. type="20"
  1926. />
  1927. </productMenu>
  1928. <productMenu id="meshIntercom+"
  1929. type="3"
  1930. url="2" >
  1931. <productMenuType version="1.4.9"
  1932. type="2"
  1933. />
  1934. <productMenuURL version="1.2.2"
  1935. url="0"
  1936. />
  1937. </productMenu>
  1938. <productMenu id="waveIntercom"
  1939. type="1" >
  1940. <productMenuType version="1.3.9"
  1941. type="0"
  1942. />
  1943. </productMenu>
  1944. <productMenu id="bluetoothIntercom"
  1945. type="1" >
  1946. </productMenu>
  1947. <productMenu id="phone"
  1948. type="1" >
  1949. </productMenu>
  1950. <productMenu id="music"
  1951. type="1" >
  1952. </productMenu>
  1953. <productMenu id="fmradio"
  1954. type="1" >
  1955. </productMenu>
  1956. <productMenu id="deviceSetting"
  1957. type="1"
  1958. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1959. <productMenuURL version="1.4.9"
  1960. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1961. />
  1962. <productMenuURL version="1.3.9"
  1963. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1964. />
  1965. <productMenuURL version="1.2.2"
  1966. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1967. />
  1968. <productMenuURL version="1.1.1"
  1969. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1970. />
  1971. </productMenu>
  1972. <productMenu id="quickGuide"
  1973. type="0"
  1974. url=""
  1975. size="344KB" >
  1976. </productMenu>
  1977. <productMenu id="userGuide"
  1978. type="1"
  1979. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  1980. size="3.41MB" >
  1981. </productMenu>
  1982. <productMenu id="videoGuide"
  1983. type="1"
  1984. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1985. size="3.41MB" >
  1986. </productMenu>
  1987. <productMenu id="volume"
  1988. type="11" >
  1989. </productMenu>
  1990. <productMenu id="battery"
  1991. type="1" >
  1992. </productMenu>
  1993. <productID id="3134"
  1994. />
  1995. <productGroupable type="0"
  1996. />
  1997. </product>
  1998. <product id="50C"
  1999. name="50C"
  2000. series="50"
  2001. latestVersion="1.4.3"
  2002. show = "1" >
  2003. <productMenu id="protocol"
  2004. type="2" >
  2005. </productMenu>
  2006. <productMenu id="ota"
  2007. type="0" >
  2008. </productMenu>
  2009. <productMenu id="wa"
  2010. type="1" >
  2011. </productMenu>
  2012. <productMenu id="sip"
  2013. type="1" >
  2014. </productMenu>
  2015. <productMenu id="meshIntercom"
  2016. type="30" >
  2017. <productMenuType version="1.1.1"
  2018. type="20"
  2019. />
  2020. </productMenu>
  2021. <productMenu id="meshIntercom+"
  2022. type="3"
  2023. url="2" >
  2024. <productMenuType version="1.3.9"
  2025. type="2"
  2026. />
  2027. <productMenuURL version="1.1.1"
  2028. url="0"
  2029. />
  2030. </productMenu>
  2031. <productMenu id="waveIntercom"
  2032. type="1" >
  2033. <productMenuType version="1.2.9"
  2034. type="0"
  2035. />
  2036. </productMenu>
  2037. <productMenu id="bluetoothIntercom"
  2038. type="1" >
  2039. </productMenu>
  2040. <productMenu id="phone"
  2041. type="1" >
  2042. </productMenu>
  2043. <productMenu id="music"
  2044. type="1" >
  2045. </productMenu>
  2046. <productMenu id="fmradio"
  2047. type="1" >
  2048. </productMenu>
  2049. <productMenu id="deviceSetting"
  2050. type="1"
  2051. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2052. <productMenuURL version="1.3.9"
  2053. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2054. />
  2055. <productMenuURL version="1.1.1"
  2056. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2057. />
  2058. <productMenuURL version="1.0.1"
  2059. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2060. />
  2061. </productMenu>
  2062. <productMenu id="quickGuide"
  2063. type="0"
  2064. url=""
  2065. size="344KB" >
  2066. </productMenu>
  2067. <productMenu id="userGuide"
  2068. type="1"
  2069. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2070. size="3.41MB" >
  2071. </productMenu>
  2072. <productMenu id="connectGuide"
  2073. type="1"
  2074. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2075. size="1.12MB" >
  2076. </productMenu>
  2077. <productMenu id="volume"
  2078. type="11" >
  2079. </productMenu>
  2080. <productMenu id="battery"
  2081. type="1" >
  2082. </productMenu>
  2083. <productID id="3232"
  2084. />
  2085. <productGroupable type="0"
  2086. />
  2087. </product>
  2088. <product id="PHANTOMXB"
  2089. name="PHANTOM XB"
  2090. series="Helmet"
  2091. latestVersion="1.2.7"
  2092. latestVersionVoicePrompt="1.5"
  2093. show = "-1" >
  2094. <productMenu id="protocol"
  2095. type="2" >
  2096. </productMenu>
  2097. <productMenu id="ota"
  2098. type="2" >
  2099. <otaLanguages>
  2100. <otaLanguage
  2101. id="0"
  2102. name="English"
  2103. package="0"
  2104. />
  2105. <otaLanguage
  2106. id="0"
  2107. name="French"
  2108. package="1"
  2109. />
  2110. <otaLanguage
  2111. id="0"
  2112. name="Spanish"
  2113. package="2"
  2114. />
  2115. <otaLanguage
  2116. id="0"
  2117. name="Italian"
  2118. package="3"
  2119. />
  2120. <otaLanguage
  2121. id="0"
  2122. name="German"
  2123. package="4"
  2124. />
  2125. <otaLanguage
  2126. id="0"
  2127. name="Dutch"
  2128. package="5"
  2129. />
  2130. <otaLanguage
  2131. id="0"
  2132. name="Russian"
  2133. package="6"
  2134. />
  2135. <otaLanguage
  2136. id="0"
  2137. name="Chinese"
  2138. package="7"
  2139. />
  2140. <otaLanguage
  2141. id="0"
  2142. name="Korean"
  2143. package="8"
  2144. />
  2145. <otaLanguage
  2146. id="0"
  2147. name="Japanese"
  2148. package="9"
  2149. />
  2150. <otaLanguage
  2151. id="0"
  2152. name="Finnish"
  2153. package="10"
  2154. />
  2155. <otaLanguage
  2156. id="0"
  2157. name="Polish"
  2158. package="11"
  2159. />
  2160. </otaLanguages>
  2161. <otaPackages>
  2162. <package
  2163. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1.img"
  2164. size="5183988"
  2165. />
  2166. <package
  2167. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-fr-FR.img"
  2168. size="5183988"
  2169. />
  2170. <package
  2171. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-es-ES.img"
  2172. size="5183988"
  2173. />
  2174. <package
  2175. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-it-IT.img"
  2176. size="5183988"
  2177. />
  2178. <package
  2179. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-de-DE.img"
  2180. size="5183988"
  2181. />
  2182. <package
  2183. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-nl-NL.img"
  2184. size="5183988"
  2185. />
  2186. <package
  2187. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ru-RU.img"
  2188. size="5183988"
  2189. />
  2190. <package
  2191. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-cmn-CN.img"
  2192. size="5183988"
  2193. />
  2194. <package
  2195. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ko-KR.img"
  2196. size="5183988"
  2197. />
  2198. <package
  2199. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ja-JP.img"
  2200. size="5183988"
  2201. />
  2202. <package
  2203. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-fi-FI.img"
  2204. size="5183988"
  2205. />
  2206. <package
  2207. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-pl-PL.img"
  2208. size="5183988"
  2209. />
  2210. </otaPackages>
  2211. </productMenu>
  2212. <productMenu id="wa"
  2213. type="0" >
  2214. </productMenu>
  2215. <productMenu id="led"
  2216. type="5" >
  2217. </productMenu>
  2218. <productMenu id="led+"
  2219. type="2"
  2220. url="1" >
  2221. </productMenu>
  2222. <productMenu id="meshIntercom"
  2223. type="30" >
  2224. </productMenu>
  2225. <productMenu id="meshIntercom+"
  2226. type="3"
  2227. url="2" >
  2228. </productMenu>
  2229. <productMenu id="waveIntercom"
  2230. type="1" >
  2231. </productMenu>
  2232. <productMenu id="fmradio"
  2233. type="0" >
  2234. </productMenu>
  2235. <productMenu id="phone"
  2236. type="1" >
  2237. </productMenu>
  2238. <productMenu id="music"
  2239. type="1" >
  2240. </productMenu>
  2241. <productMenu id="musicSharing"
  2242. type="0" >
  2243. </productMenu>
  2244. <productMenu id="deviceSetting"
  2245. type="1"
  2246. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2247. <productMenuURL version="1.2.4"
  2248. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2249. />
  2250. </productMenu>
  2251. <productMenu id="quickGuide"
  2252. type="0"
  2253. url=""
  2254. size="1.12MB" >
  2255. </productMenu>
  2256. <productMenu id="userGuide"
  2257. type="1"
  2258. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2259. size="2.0MB" >
  2260. </productMenu>
  2261. <productMenu id="videoGuide"
  2262. type="0"
  2263. url=""
  2264. size="3.41MB" >
  2265. </productMenu>
  2266. <productMenu id="volume"
  2267. type="16" >
  2268. </productMenu>
  2269. <productMenu id="volume+"
  2270. type="2"
  2271. url="0x6004" >
  2272. </productMenu>
  2273. <productMenu id="battery"
  2274. type="1" >
  2275. </productMenu>
  2276. <productID id="6A0F"
  2277. />
  2278. <productGroupable type="0"
  2279. />
  2280. </product>
  2281. <product id="PHANTOMXB"
  2282. name="PHANTOM XB"
  2283. series="Helmet"
  2284. latestVersion="1.2.7"
  2285. latestVersionVoicePrompt="1.5"
  2286. show = "-1" >
  2287. <productMenu id="protocol"
  2288. type="2" >
  2289. </productMenu>
  2290. <productMenu id="ota"
  2291. type="2" >
  2292. <otaLanguages>
  2293. <otaLanguage
  2294. id="0"
  2295. name="English"
  2296. package="0"
  2297. />
  2298. <otaLanguage
  2299. id="0"
  2300. name="French"
  2301. package="1"
  2302. />
  2303. <otaLanguage
  2304. id="0"
  2305. name="Spanish"
  2306. package="2"
  2307. />
  2308. <otaLanguage
  2309. id="0"
  2310. name="Italian"
  2311. package="3"
  2312. />
  2313. <otaLanguage
  2314. id="0"
  2315. name="German"
  2316. package="4"
  2317. />
  2318. <otaLanguage
  2319. id="0"
  2320. name="Dutch"
  2321. package="5"
  2322. />
  2323. <otaLanguage
  2324. id="0"
  2325. name="Russian"
  2326. package="6"
  2327. />
  2328. <otaLanguage
  2329. id="0"
  2330. name="Chinese"
  2331. package="7"
  2332. />
  2333. <otaLanguage
  2334. id="0"
  2335. name="Korean"
  2336. package="8"
  2337. />
  2338. <otaLanguage
  2339. id="0"
  2340. name="Japanese"
  2341. package="9"
  2342. />
  2343. <otaLanguage
  2344. id="0"
  2345. name="Finnish"
  2346. package="10"
  2347. />
  2348. <otaLanguage
  2349. id="0"
  2350. name="Polish"
  2351. package="11"
  2352. />
  2353. </otaLanguages>
  2354. <otaPackages>
  2355. <package
  2356. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1.img"
  2357. size="5183988"
  2358. />
  2359. <package
  2360. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-fr-FR.img"
  2361. size="5183988"
  2362. />
  2363. <package
  2364. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-es-ES.img"
  2365. size="5183988"
  2366. />
  2367. <package
  2368. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-it-IT.img"
  2369. size="5183988"
  2370. />
  2371. <package
  2372. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-de-DE.img"
  2373. size="5183988"
  2374. />
  2375. <package
  2376. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-nl-NL.img"
  2377. size="5183988"
  2378. />
  2379. <package
  2380. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ru-RU.img"
  2381. size="5183988"
  2382. />
  2383. <package
  2384. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-cmn-CN.img"
  2385. size="5183988"
  2386. />
  2387. <package
  2388. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ko-KR.img"
  2389. size="5183988"
  2390. />
  2391. <package
  2392. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ja-JP.img"
  2393. size="5183988"
  2394. />
  2395. <package
  2396. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-fi-FI.img"
  2397. size="5183988"
  2398. />
  2399. <package
  2400. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-pl-PL.img"
  2401. size="5183988"
  2402. />
  2403. </otaPackages>
  2404. </productMenu>
  2405. <productMenu id="wa"
  2406. type="0" >
  2407. </productMenu>
  2408. <productMenu id="led"
  2409. type="5" >
  2410. </productMenu>
  2411. <productMenu id="led+"
  2412. type="2"
  2413. url="1" >
  2414. </productMenu>
  2415. <productMenu id="meshIntercom"
  2416. type="30" >
  2417. </productMenu>
  2418. <productMenu id="meshIntercom+"
  2419. type="3"
  2420. url="2" >
  2421. </productMenu>
  2422. <productMenu id="waveIntercom"
  2423. type="1" >
  2424. </productMenu>
  2425. <productMenu id="fmradio"
  2426. type="0" >
  2427. </productMenu>
  2428. <productMenu id="phone"
  2429. type="1" >
  2430. </productMenu>
  2431. <productMenu id="music"
  2432. type="1" >
  2433. </productMenu>
  2434. <productMenu id="musicSharing"
  2435. type="0" >
  2436. </productMenu>
  2437. <productMenu id="deviceSetting"
  2438. type="1"
  2439. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2440. <productMenuURL version="1.2.4"
  2441. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2442. />
  2443. <productMenuURL version="1.2.1"
  2444. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2445. />
  2446. </productMenu>
  2447. <productMenu id="quickGuide"
  2448. type="0"
  2449. url=""
  2450. size="1.12MB" >
  2451. </productMenu>
  2452. <productMenu id="userGuide"
  2453. type="1"
  2454. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2455. size="2.0MB" >
  2456. </productMenu>
  2457. <productMenu id="videoGuide"
  2458. type="0"
  2459. url=""
  2460. size="3.41MB" >
  2461. </productMenu>
  2462. <productMenu id="volume"
  2463. type="16" >
  2464. </productMenu>
  2465. <productMenu id="volume+"
  2466. type="2"
  2467. url="0x6004" >
  2468. </productMenu>
  2469. <productMenu id="battery"
  2470. type="1" >
  2471. </productMenu>
  2472. <productID id="6A0C"
  2473. />
  2474. <productGroupable type="0"
  2475. />
  2476. </product>
  2477. <product id="PHANTOMKV"
  2478. name="PHANTOM KV"
  2479. series="Helmet"
  2480. latestVersion="1.2.2"
  2481. latestVersionVoicePrompt="1.0"
  2482. show = "-1" >
  2483. <productMenu id="protocol"
  2484. type="2" >
  2485. </productMenu>
  2486. <productMenu id="ota"
  2487. type="0" >
  2488. <otaLanguages>
  2489. <otaLanguage
  2490. id="0"
  2491. name="English"
  2492. package="0"
  2493. />
  2494. <otaLanguage
  2495. id="0"
  2496. name="French"
  2497. package="1"
  2498. />
  2499. <otaLanguage
  2500. id="0"
  2501. name="Spanish"
  2502. package="2"
  2503. />
  2504. <otaLanguage
  2505. id="0"
  2506. name="Italian"
  2507. package="3"
  2508. />
  2509. <otaLanguage
  2510. id="0"
  2511. name="German"
  2512. package="4"
  2513. />
  2514. <otaLanguage
  2515. id="0"
  2516. name="Dutch"
  2517. package="5"
  2518. />
  2519. <otaLanguage
  2520. id="0"
  2521. name="Russian"
  2522. package="6"
  2523. />
  2524. <otaLanguage
  2525. id="0"
  2526. name="Chinese"
  2527. package="7"
  2528. />
  2529. <otaLanguage
  2530. id="0"
  2531. name="Korean"
  2532. package="8"
  2533. />
  2534. <otaLanguage
  2535. id="0"
  2536. name="Japanese"
  2537. package="9"
  2538. />
  2539. <otaLanguage
  2540. id="0"
  2541. name="Finnish"
  2542. package="10"
  2543. />
  2544. <otaLanguage
  2545. id="0"
  2546. name="Polish"
  2547. package="11"
  2548. />
  2549. </otaLanguages>
  2550. <otaPackages>
  2551. <package
  2552. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0.img"
  2553. size="5183988"
  2554. />
  2555. <package
  2556. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fr-FR.img"
  2557. size="5183988"
  2558. />
  2559. <package
  2560. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-es-ES.img"
  2561. size="5183988"
  2562. />
  2563. <package
  2564. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-it-IT.img"
  2565. size="5183988"
  2566. />
  2567. <package
  2568. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-de-DE.img"
  2569. size="5183988"
  2570. />
  2571. <package
  2572. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-nl-NL.img"
  2573. size="5183988"
  2574. />
  2575. <package
  2576. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ru-RU.img"
  2577. size="5183988"
  2578. />
  2579. <package
  2580. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-cmn-CN.img"
  2581. size="5183988"
  2582. />
  2583. <package
  2584. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ko-KR.img"
  2585. size="5183988"
  2586. />
  2587. <package
  2588. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ja-JP.img"
  2589. size="5183988"
  2590. />
  2591. <package
  2592. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fi-FI.img"
  2593. size="5183988"
  2594. />
  2595. <package
  2596. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-pl-PL.img"
  2597. size="5183988"
  2598. />
  2599. </otaPackages>
  2600. </productMenu>
  2601. <productMenu id="wa"
  2602. type="0" >
  2603. </productMenu>
  2604. <productMenu id="led"
  2605. type="5" >
  2606. </productMenu>
  2607. <productMenu id="led+"
  2608. type="2"
  2609. url="1" >
  2610. </productMenu>
  2611. <productMenu id="meshIntercom"
  2612. type="30" >
  2613. </productMenu>
  2614. <productMenu id="meshIntercom+"
  2615. type="3"
  2616. url="2" >
  2617. </productMenu>
  2618. <productMenu id="waveIntercom"
  2619. type="1" >
  2620. </productMenu>
  2621. <productMenu id="fmradio"
  2622. type="0" >
  2623. </productMenu>
  2624. <productMenu id="phone"
  2625. type="1" >
  2626. </productMenu>
  2627. <productMenu id="music"
  2628. type="1" >
  2629. </productMenu>
  2630. <productMenu id="musicSharing"
  2631. type="0" >
  2632. </productMenu>
  2633. <productMenu id="deviceSetting"
  2634. type="1"
  2635. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  2636. <productMenuURL version="1.2.4"
  2637. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2638. />
  2639. </productMenu>
  2640. <productMenu id="quickGuide"
  2641. type="0"
  2642. url=""
  2643. size="1.12MB" >
  2644. </productMenu>
  2645. <productMenu id="userGuide"
  2646. type="1"
  2647. url=""
  2648. size="2.0MB" >
  2649. </productMenu>
  2650. <productMenu id="videoGuide"
  2651. type="0"
  2652. url=""
  2653. size="3.41MB" >
  2654. </productMenu>
  2655. <productMenu id="volume"
  2656. type="16" >
  2657. </productMenu>
  2658. <productMenu id="volume+"
  2659. type="2"
  2660. url="0x6004" >
  2661. </productMenu>
  2662. <productMenu id="battery"
  2663. type="1" >
  2664. </productMenu>
  2665. <productID id="6A14"
  2666. />
  2667. <productGroupable type="0"
  2668. />
  2669. </product>
  2670. <product id="PHANTOMKV"
  2671. name="PHANTOM KV"
  2672. series="Helmet"
  2673. latestVersion="1.2.2"
  2674. latestVersionVoicePrompt="1.0"
  2675. show = "-1" >
  2676. <productMenu id="protocol"
  2677. type="2" >
  2678. </productMenu>
  2679. <productMenu id="ota"
  2680. type="0" >
  2681. <otaLanguages>
  2682. <otaLanguage
  2683. id="0"
  2684. name="English"
  2685. package="0"
  2686. />
  2687. <otaLanguage
  2688. id="0"
  2689. name="French"
  2690. package="1"
  2691. />
  2692. <otaLanguage
  2693. id="0"
  2694. name="Spanish"
  2695. package="2"
  2696. />
  2697. <otaLanguage
  2698. id="0"
  2699. name="Italian"
  2700. package="3"
  2701. />
  2702. <otaLanguage
  2703. id="0"
  2704. name="German"
  2705. package="4"
  2706. />
  2707. <otaLanguage
  2708. id="0"
  2709. name="Dutch"
  2710. package="5"
  2711. />
  2712. <otaLanguage
  2713. id="0"
  2714. name="Russian"
  2715. package="6"
  2716. />
  2717. <otaLanguage
  2718. id="0"
  2719. name="Chinese"
  2720. package="7"
  2721. />
  2722. <otaLanguage
  2723. id="0"
  2724. name="Korean"
  2725. package="8"
  2726. />
  2727. <otaLanguage
  2728. id="0"
  2729. name="Japanese"
  2730. package="9"
  2731. />
  2732. <otaLanguage
  2733. id="0"
  2734. name="Finnish"
  2735. package="10"
  2736. />
  2737. <otaLanguage
  2738. id="0"
  2739. name="Polish"
  2740. package="11"
  2741. />
  2742. </otaLanguages>
  2743. <otaPackages>
  2744. <package
  2745. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0.img"
  2746. size="5183988"
  2747. />
  2748. <package
  2749. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fr-FR.img"
  2750. size="5183988"
  2751. />
  2752. <package
  2753. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-es-ES.img"
  2754. size="5183988"
  2755. />
  2756. <package
  2757. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-it-IT.img"
  2758. size="5183988"
  2759. />
  2760. <package
  2761. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-de-DE.img"
  2762. size="5183988"
  2763. />
  2764. <package
  2765. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-nl-NL.img"
  2766. size="5183988"
  2767. />
  2768. <package
  2769. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ru-RU.img"
  2770. size="5183988"
  2771. />
  2772. <package
  2773. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-cmn-CN.img"
  2774. size="5183988"
  2775. />
  2776. <package
  2777. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ko-KR.img"
  2778. size="5183988"
  2779. />
  2780. <package
  2781. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ja-JP.img"
  2782. size="5183988"
  2783. />
  2784. <package
  2785. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fi-FI.img"
  2786. size="5183988"
  2787. />
  2788. <package
  2789. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-pl-PL.img"
  2790. size="5183988"
  2791. />
  2792. </otaPackages>
  2793. </productMenu>
  2794. <productMenu id="wa"
  2795. type="0" >
  2796. </productMenu>
  2797. <productMenu id="led"
  2798. type="5" >
  2799. </productMenu>
  2800. <productMenu id="led+"
  2801. type="2"
  2802. url="1" >
  2803. </productMenu>
  2804. <productMenu id="meshIntercom"
  2805. type="30" >
  2806. </productMenu>
  2807. <productMenu id="meshIntercom+"
  2808. type="3"
  2809. url="2" >
  2810. </productMenu>
  2811. <productMenu id="waveIntercom"
  2812. type="1" >
  2813. </productMenu>
  2814. <productMenu id="fmradio"
  2815. type="0" >
  2816. </productMenu>
  2817. <productMenu id="phone"
  2818. type="1" >
  2819. </productMenu>
  2820. <productMenu id="music"
  2821. type="1" >
  2822. </productMenu>
  2823. <productMenu id="musicSharing"
  2824. type="0" >
  2825. </productMenu>
  2826. <productMenu id="deviceSetting"
  2827. type="1"
  2828. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  2829. <productMenuURL version="1.2.4"
  2830. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2831. />
  2832. </productMenu>
  2833. <productMenu id="quickGuide"
  2834. type="0"
  2835. url=""
  2836. size="1.12MB" >
  2837. </productMenu>
  2838. <productMenu id="userGuide"
  2839. type="1"
  2840. url=""
  2841. size="2.0MB" >
  2842. </productMenu>
  2843. <productMenu id="videoGuide"
  2844. type="0"
  2845. url=""
  2846. size="3.41MB" >
  2847. </productMenu>
  2848. <productMenu id="volume"
  2849. type="16" >
  2850. </productMenu>
  2851. <productMenu id="volume+"
  2852. type="2"
  2853. url="0x6004" >
  2854. </productMenu>
  2855. <productMenu id="battery"
  2856. type="1" >
  2857. </productMenu>
  2858. <productID id="6A13"
  2859. />
  2860. <productGroupable type="0"
  2861. />
  2862. </product>
  2863. <product id="PHANTOMCamera"
  2864. name="PHANTOM Camera"
  2865. series="Helmet"
  2866. latestVersion="1.0.1"
  2867. latestVersionVoicePrompt="0.4"
  2868. show = "-1" >
  2869. <productMenu id="protocol"
  2870. type="2" >
  2871. </productMenu>
  2872. <productMenu id="ota"
  2873. type="3" >
  2874. <otaLanguages>
  2875. <otaLanguage
  2876. id="0"
  2877. name="English"
  2878. package="0"
  2879. />
  2880. <otaLanguage
  2881. id="0"
  2882. name="French"
  2883. package="1"
  2884. />
  2885. <otaLanguage
  2886. id="0"
  2887. name="Spanish"
  2888. package="2"
  2889. />
  2890. <otaLanguage
  2891. id="0"
  2892. name="Italian"
  2893. package="3"
  2894. />
  2895. <otaLanguage
  2896. id="0"
  2897. name="German"
  2898. package="4"
  2899. />
  2900. <otaLanguage
  2901. id="0"
  2902. name="Dutch"
  2903. package="5"
  2904. />
  2905. <otaLanguage
  2906. id="0"
  2907. name="Russian"
  2908. package="6"
  2909. />
  2910. <otaLanguage
  2911. id="0"
  2912. name="Chinese"
  2913. package="7"
  2914. />
  2915. <otaLanguage
  2916. id="0"
  2917. name="Korean"
  2918. package="8"
  2919. />
  2920. <otaLanguage
  2921. id="0"
  2922. name="Japanese"
  2923. package="9"
  2924. />
  2925. <otaLanguage
  2926. id="0"
  2927. name="Finnish"
  2928. package="10"
  2929. />
  2930. <otaLanguage
  2931. id="0"
  2932. name="Polish"
  2933. package="11"
  2934. />
  2935. </otaLanguages>
  2936. <otaPackages>
  2937. <package
  2938. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2939. size="5183988"
  2940. />
  2941. <package
  2942. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  2943. size="5183988"
  2944. />
  2945. <package
  2946. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  2947. size="5183988"
  2948. />
  2949. <package
  2950. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  2951. size="5183988"
  2952. />
  2953. <package
  2954. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  2955. size="5183988"
  2956. />
  2957. <package
  2958. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  2959. size="5183988"
  2960. />
  2961. <package
  2962. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  2963. size="5183988"
  2964. />
  2965. <package
  2966. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  2967. size="5183988"
  2968. />
  2969. <package
  2970. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  2971. size="5183988"
  2972. />
  2973. <package
  2974. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  2975. size="5183988"
  2976. />
  2977. <package
  2978. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  2979. size="5183988"
  2980. />
  2981. <package
  2982. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  2983. size="5183988"
  2984. />
  2985. </otaPackages>
  2986. </productMenu>
  2987. <productMenu id="wa"
  2988. type="0" >
  2989. </productMenu>
  2990. <productMenu id="led"
  2991. type="5" >
  2992. </productMenu>
  2993. <productMenu id="led+"
  2994. type="2"
  2995. url="1" >
  2996. </productMenu>
  2997. <productMenu id="meshIntercom"
  2998. type="30" >
  2999. </productMenu>
  3000. <productMenu id="meshIntercom+"
  3001. type="3"
  3002. url="2" >
  3003. </productMenu>
  3004. <productMenu id="waveIntercom"
  3005. type="1" >
  3006. </productMenu>
  3007. <productMenu id="fmradio"
  3008. type="0" >
  3009. </productMenu>
  3010. <productMenu id="phone"
  3011. type="1" >
  3012. </productMenu>
  3013. <productMenu id="music"
  3014. type="1" >
  3015. </productMenu>
  3016. <productMenu id="musicSharing"
  3017. type="0" >
  3018. </productMenu>
  3019. <productMenu id="deviceSetting"
  3020. type="1"
  3021. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3022. </productMenu>
  3023. <productMenu id="quickGuide"
  3024. type="0"
  3025. url=""
  3026. size="1.12MB" >
  3027. </productMenu>
  3028. <productMenu id="userGuide"
  3029. type="1"
  3030. url=""
  3031. size="2.0MB" >
  3032. </productMenu>
  3033. <productMenu id="videoGuide"
  3034. type="0"
  3035. url=""
  3036. size="3.41MB" >
  3037. </productMenu>
  3038. <productMenu id="volume"
  3039. type="16" >
  3040. </productMenu>
  3041. <productMenu id="battery"
  3042. type="1" >
  3043. </productMenu>
  3044. <productID id="6A10"
  3045. />
  3046. <productGroupable type="0"
  3047. />
  3048. </product>
  3049. <product id="PHANTOMCamera"
  3050. name="PHANTOM Camera"
  3051. series="Helmet"
  3052. latestVersion="1.0.1"
  3053. latestVersionVoicePrompt="0.4"
  3054. show = "-1" >
  3055. <productMenu id="protocol"
  3056. type="2" >
  3057. </productMenu>
  3058. <productMenu id="ota"
  3059. type="3" >
  3060. <otaLanguages>
  3061. <otaLanguage
  3062. id="0"
  3063. name="English"
  3064. package="0"
  3065. />
  3066. <otaLanguage
  3067. id="0"
  3068. name="French"
  3069. package="1"
  3070. />
  3071. <otaLanguage
  3072. id="0"
  3073. name="Spanish"
  3074. package="2"
  3075. />
  3076. <otaLanguage
  3077. id="0"
  3078. name="Italian"
  3079. package="3"
  3080. />
  3081. <otaLanguage
  3082. id="0"
  3083. name="German"
  3084. package="4"
  3085. />
  3086. <otaLanguage
  3087. id="0"
  3088. name="Dutch"
  3089. package="5"
  3090. />
  3091. <otaLanguage
  3092. id="0"
  3093. name="Russian"
  3094. package="6"
  3095. />
  3096. <otaLanguage
  3097. id="0"
  3098. name="Chinese"
  3099. package="7"
  3100. />
  3101. <otaLanguage
  3102. id="0"
  3103. name="Korean"
  3104. package="8"
  3105. />
  3106. <otaLanguage
  3107. id="0"
  3108. name="Japanese"
  3109. package="9"
  3110. />
  3111. <otaLanguage
  3112. id="0"
  3113. name="Finnish"
  3114. package="10"
  3115. />
  3116. <otaLanguage
  3117. id="0"
  3118. name="Polish"
  3119. package="11"
  3120. />
  3121. </otaLanguages>
  3122. <otaPackages>
  3123. <package
  3124. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  3125. size="5183988"
  3126. />
  3127. <package
  3128. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  3129. size="5183988"
  3130. />
  3131. <package
  3132. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  3133. size="5183988"
  3134. />
  3135. <package
  3136. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  3137. size="5183988"
  3138. />
  3139. <package
  3140. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  3141. size="5183988"
  3142. />
  3143. <package
  3144. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  3145. size="5183988"
  3146. />
  3147. <package
  3148. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  3149. size="5183988"
  3150. />
  3151. <package
  3152. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  3153. size="5183988"
  3154. />
  3155. <package
  3156. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  3157. size="5183988"
  3158. />
  3159. <package
  3160. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  3161. size="5183988"
  3162. />
  3163. <package
  3164. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  3165. size="5183988"
  3166. />
  3167. <package
  3168. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  3169. size="5183988"
  3170. />
  3171. </otaPackages>
  3172. </productMenu>
  3173. <productMenu id="wa"
  3174. type="0" >
  3175. </productMenu>
  3176. <productMenu id="led"
  3177. type="5" >
  3178. </productMenu>
  3179. <productMenu id="led+"
  3180. type="2"
  3181. url="1" >
  3182. </productMenu>
  3183. <productMenu id="meshIntercom"
  3184. type="30" >
  3185. </productMenu>
  3186. <productMenu id="meshIntercom+"
  3187. type="3"
  3188. url="2" >
  3189. </productMenu>
  3190. <productMenu id="waveIntercom"
  3191. type="1" >
  3192. </productMenu>
  3193. <productMenu id="fmradio"
  3194. type="0" >
  3195. </productMenu>
  3196. <productMenu id="phone"
  3197. type="1" >
  3198. </productMenu>
  3199. <productMenu id="music"
  3200. type="1" >
  3201. </productMenu>
  3202. <productMenu id="musicSharing"
  3203. type="0" >
  3204. </productMenu>
  3205. <productMenu id="deviceSetting"
  3206. type="1"
  3207. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3208. </productMenu>
  3209. <productMenu id="quickGuide"
  3210. type="0"
  3211. url=""
  3212. size="1.12MB" >
  3213. </productMenu>
  3214. <productMenu id="userGuide"
  3215. type="1"
  3216. url=""
  3217. size="2.0MB" >
  3218. </productMenu>
  3219. <productMenu id="videoGuide"
  3220. type="0"
  3221. url=""
  3222. size="3.41MB" >
  3223. </productMenu>
  3224. <productMenu id="volume"
  3225. type="16" >
  3226. </productMenu>
  3227. <productMenu id="battery"
  3228. type="1" >
  3229. </productMenu>
  3230. <productID id="6A09"
  3231. />
  3232. <productGroupable type="0"
  3233. />
  3234. </product>
  3235. <product id="PHANTOM"
  3236. name="PHANTOM ANC"
  3237. series="Helmet"
  3238. latestVersion="1.2.7"
  3239. latestVersionVoicePrompt="1.5"
  3240. show = "1" >
  3241. <productMenu id="protocol"
  3242. type="2" >
  3243. </productMenu>
  3244. <productMenu id="ota"
  3245. type="2" >
  3246. <productMenuType version="0.6.9"
  3247. type="0"
  3248. />
  3249. <otaLanguages>
  3250. <otaLanguage
  3251. id="0"
  3252. name="English"
  3253. package="0"
  3254. />
  3255. <otaLanguage
  3256. id="0"
  3257. name="French"
  3258. package="1"
  3259. />
  3260. <otaLanguage
  3261. id="0"
  3262. name="Spanish"
  3263. package="2"
  3264. />
  3265. <otaLanguage
  3266. id="0"
  3267. name="Italian"
  3268. package="3"
  3269. />
  3270. <otaLanguage
  3271. id="0"
  3272. name="German"
  3273. package="4"
  3274. />
  3275. <otaLanguage
  3276. id="0"
  3277. name="Dutch"
  3278. package="5"
  3279. />
  3280. <otaLanguage
  3281. id="0"
  3282. name="Russian"
  3283. package="6"
  3284. />
  3285. <otaLanguage
  3286. id="0"
  3287. name="Chinese"
  3288. package="7"
  3289. />
  3290. <otaLanguage
  3291. id="0"
  3292. name="Korean"
  3293. package="8"
  3294. />
  3295. <otaLanguage
  3296. id="0"
  3297. name="Japanese"
  3298. package="9"
  3299. />
  3300. <otaLanguage
  3301. id="0"
  3302. name="Finnish"
  3303. package="10"
  3304. />
  3305. <otaLanguage
  3306. id="0"
  3307. name="Polish"
  3308. package="11"
  3309. />
  3310. </otaLanguages>
  3311. <otaPackages>
  3312. <package
  3313. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1.img"
  3314. size="5183988"
  3315. />
  3316. <package
  3317. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-fr-FR.img"
  3318. size="5183988"
  3319. />
  3320. <package
  3321. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-es-ES.img"
  3322. size="5183988"
  3323. />
  3324. <package
  3325. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-it-IT.img"
  3326. size="5183988"
  3327. />
  3328. <package
  3329. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-de-DE.img"
  3330. size="5183988"
  3331. />
  3332. <package
  3333. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-nl-NL.img"
  3334. size="5183988"
  3335. />
  3336. <package
  3337. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ru-RU.img"
  3338. size="5183988"
  3339. />
  3340. <package
  3341. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-cmn-CN.img"
  3342. size="5183988"
  3343. />
  3344. <package
  3345. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ko-KR.img"
  3346. size="5183988"
  3347. />
  3348. <package
  3349. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ja-JP.img"
  3350. size="5183988"
  3351. />
  3352. <package
  3353. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-fi-FI.img"
  3354. size="5183988"
  3355. />
  3356. <package
  3357. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-pl-PL.img"
  3358. size="5183988"
  3359. />
  3360. </otaPackages>
  3361. </productMenu>
  3362. <productMenu id="wa"
  3363. type="0" >
  3364. </productMenu>
  3365. <productMenu id="led"
  3366. type="5" >
  3367. </productMenu>
  3368. <productMenu id="led+"
  3369. type="2"
  3370. url="1" >
  3371. </productMenu>
  3372. <productMenu id="meshIntercom"
  3373. type="30" >
  3374. </productMenu>
  3375. <productMenu id="meshIntercom+"
  3376. type="3"
  3377. url="2" >
  3378. <productMenuURL version="1.0.4"
  3379. url="10"
  3380. />
  3381. </productMenu>
  3382. <productMenu id="waveIntercom"
  3383. type="1" >
  3384. <productMenuType version="1.0.9"
  3385. type="0"
  3386. />
  3387. </productMenu>
  3388. <productMenu id="fmradio"
  3389. type="0" >
  3390. </productMenu>
  3391. <productMenu id="phone"
  3392. type="1" >
  3393. </productMenu>
  3394. <productMenu id="music"
  3395. type="1" >
  3396. </productMenu>
  3397. <productMenu id="musicSharing"
  3398. type="0" >
  3399. </productMenu>
  3400. <productMenu id="deviceSetting"
  3401. type="1"
  3402. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3403. <productMenuURL version="1.2.4"
  3404. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3405. />
  3406. <productMenuURL version="1.2.1"
  3407. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3408. />
  3409. <productMenuURL version="1.1.2"
  3410. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3411. />
  3412. <productMenuURL version="1.0.4"
  3413. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3414. />
  3415. </productMenu>
  3416. <productMenu id="quickGuide"
  3417. type="0"
  3418. url=""
  3419. size="1.12MB" >
  3420. </productMenu>
  3421. <productMenu id="userGuide"
  3422. type="1"
  3423. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3424. size="2.0MB" >
  3425. </productMenu>
  3426. <productMenu id="videoGuide"
  3427. type="0"
  3428. url=""
  3429. size="3.41MB" >
  3430. </productMenu>
  3431. <productMenu id="volume"
  3432. type="16" >
  3433. </productMenu>
  3434. <productMenu id="volume+"
  3435. type="2"
  3436. url="0x6004" >
  3437. </productMenu>
  3438. <productMenu id="soundMode"
  3439. type="1" >
  3440. <productMenuType version="0.9.11"
  3441. type="0"
  3442. />
  3443. </productMenu>
  3444. <productMenu id="battery"
  3445. type="1" >
  3446. </productMenu>
  3447. <productID id="6A01"
  3448. />
  3449. <productGroupable type="0"
  3450. />
  3451. </product>
  3452. <product id="PHANTOM"
  3453. name="PHANTOM ANC"
  3454. series="Helmet"
  3455. latestVersion="1.2.7"
  3456. latestVersionVoicePrompt="1.5"
  3457. show = "-1" >
  3458. <productMenu id="protocol"
  3459. type="2" >
  3460. </productMenu>
  3461. <productMenu id="ota"
  3462. type="2" >
  3463. <otaLanguages>
  3464. <otaLanguage
  3465. id="0"
  3466. name="English"
  3467. package="0"
  3468. />
  3469. <otaLanguage
  3470. id="0"
  3471. name="French"
  3472. package="1"
  3473. />
  3474. <otaLanguage
  3475. id="0"
  3476. name="Spanish"
  3477. package="2"
  3478. />
  3479. <otaLanguage
  3480. id="0"
  3481. name="Italian"
  3482. package="3"
  3483. />
  3484. <otaLanguage
  3485. id="0"
  3486. name="German"
  3487. package="4"
  3488. />
  3489. <otaLanguage
  3490. id="0"
  3491. name="Dutch"
  3492. package="5"
  3493. />
  3494. <otaLanguage
  3495. id="0"
  3496. name="Russian"
  3497. package="6"
  3498. />
  3499. <otaLanguage
  3500. id="0"
  3501. name="Chinese"
  3502. package="7"
  3503. />
  3504. <otaLanguage
  3505. id="0"
  3506. name="Korean"
  3507. package="8"
  3508. />
  3509. <otaLanguage
  3510. id="0"
  3511. name="Japanese"
  3512. package="9"
  3513. />
  3514. <otaLanguage
  3515. id="0"
  3516. name="Finnish"
  3517. package="10"
  3518. />
  3519. <otaLanguage
  3520. id="0"
  3521. name="Polish"
  3522. package="11"
  3523. />
  3524. </otaLanguages>
  3525. <otaPackages>
  3526. <package
  3527. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1.img"
  3528. size="5183988"
  3529. />
  3530. <package
  3531. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-fr-FR.img"
  3532. size="5183988"
  3533. />
  3534. <package
  3535. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-es-ES.img"
  3536. size="5183988"
  3537. />
  3538. <package
  3539. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-it-IT.img"
  3540. size="5183988"
  3541. />
  3542. <package
  3543. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-de-DE.img"
  3544. size="5183988"
  3545. />
  3546. <package
  3547. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-nl-NL.img"
  3548. size="5183988"
  3549. />
  3550. <package
  3551. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ru-RU.img"
  3552. size="5183988"
  3553. />
  3554. <package
  3555. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-cmn-CN.img"
  3556. size="5183988"
  3557. />
  3558. <package
  3559. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ko-KR.img"
  3560. size="5183988"
  3561. />
  3562. <package
  3563. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ja-JP.img"
  3564. size="5183988"
  3565. />
  3566. <package
  3567. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-fi-FI.img"
  3568. size="5183988"
  3569. />
  3570. <package
  3571. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-pl-PL.img"
  3572. size="5183988"
  3573. />
  3574. </otaPackages>
  3575. </productMenu>
  3576. <productMenu id="led"
  3577. type="5" >
  3578. </productMenu>
  3579. <productMenu id="led+"
  3580. type="2"
  3581. url="1" >
  3582. </productMenu>
  3583. <productMenu id="meshIntercom"
  3584. type="30" >
  3585. </productMenu>
  3586. <productMenu id="meshIntercom+"
  3587. type="3"
  3588. url="2" >
  3589. </productMenu>
  3590. <productMenu id="waveIntercom"
  3591. type="1" >
  3592. </productMenu>
  3593. <productMenu id="fmradio"
  3594. type="0" >
  3595. </productMenu>
  3596. <productMenu id="phone"
  3597. type="1" >
  3598. </productMenu>
  3599. <productMenu id="music"
  3600. type="1" >
  3601. </productMenu>
  3602. <productMenu id="musicSharing"
  3603. type="0" >
  3604. </productMenu>
  3605. <productMenu id="deviceSetting"
  3606. type="1"
  3607. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3608. <productMenuURL version="1.2.4"
  3609. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3610. />
  3611. </productMenu>
  3612. <productMenu id="quickGuide"
  3613. type="0"
  3614. url=""
  3615. size="1.12MB" >
  3616. </productMenu>
  3617. <productMenu id="userGuide"
  3618. type="1"
  3619. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3620. size="2.0MB" >
  3621. </productMenu>
  3622. <productMenu id="videoGuide"
  3623. type="0"
  3624. url=""
  3625. size="3.41MB" >
  3626. </productMenu>
  3627. <productMenu id="volume"
  3628. type="16" >
  3629. </productMenu>
  3630. <productMenu id="volume+"
  3631. type="2"
  3632. url="0x6004" >
  3633. </productMenu>
  3634. <productMenu id="soundMode"
  3635. type="1" >
  3636. </productMenu>
  3637. <productMenu id="battery"
  3638. type="1" >
  3639. </productMenu>
  3640. <productID id="6A19"
  3641. />
  3642. <productGroupable type="0"
  3643. />
  3644. </product>
  3645. <product id="PHANTOM"
  3646. name="PHANTOM"
  3647. series="Helmet"
  3648. latestVersion="1.2.7"
  3649. latestVersionVoicePrompt="1.5"
  3650. show = "-1" >
  3651. <productMenu id="protocol"
  3652. type="2" >
  3653. </productMenu>
  3654. <productMenu id="ota"
  3655. type="2" >
  3656. <otaLanguages>
  3657. <otaLanguage
  3658. id="0"
  3659. name="English"
  3660. package="0"
  3661. />
  3662. <otaLanguage
  3663. id="0"
  3664. name="French"
  3665. package="1"
  3666. />
  3667. <otaLanguage
  3668. id="0"
  3669. name="Spanish"
  3670. package="2"
  3671. />
  3672. <otaLanguage
  3673. id="0"
  3674. name="Italian"
  3675. package="3"
  3676. />
  3677. <otaLanguage
  3678. id="0"
  3679. name="German"
  3680. package="4"
  3681. />
  3682. <otaLanguage
  3683. id="0"
  3684. name="Dutch"
  3685. package="5"
  3686. />
  3687. <otaLanguage
  3688. id="0"
  3689. name="Russian"
  3690. package="6"
  3691. />
  3692. <otaLanguage
  3693. id="0"
  3694. name="Chinese"
  3695. package="7"
  3696. />
  3697. <otaLanguage
  3698. id="0"
  3699. name="Korean"
  3700. package="8"
  3701. />
  3702. <otaLanguage
  3703. id="0"
  3704. name="Japanese"
  3705. package="9"
  3706. />
  3707. <otaLanguage
  3708. id="0"
  3709. name="Finnish"
  3710. package="10"
  3711. />
  3712. <otaLanguage
  3713. id="0"
  3714. name="Polish"
  3715. package="11"
  3716. />
  3717. </otaLanguages>
  3718. <otaPackages>
  3719. <package
  3720. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1.img"
  3721. size="5183988"
  3722. />
  3723. <package
  3724. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-fr-FR.img"
  3725. size="5183988"
  3726. />
  3727. <package
  3728. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-es-ES.img"
  3729. size="5183988"
  3730. />
  3731. <package
  3732. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-it-IT.img"
  3733. size="5183988"
  3734. />
  3735. <package
  3736. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-de-DE.img"
  3737. size="5183988"
  3738. />
  3739. <package
  3740. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-nl-NL.img"
  3741. size="5183988"
  3742. />
  3743. <package
  3744. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ru-RU.img"
  3745. size="5183988"
  3746. />
  3747. <package
  3748. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-cmn-CN.img"
  3749. size="5183988"
  3750. />
  3751. <package
  3752. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ko-KR.img"
  3753. size="5183988"
  3754. />
  3755. <package
  3756. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ja-JP.img"
  3757. size="5183988"
  3758. />
  3759. <package
  3760. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-fi-FI.img"
  3761. size="5183988"
  3762. />
  3763. <package
  3764. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-pl-PL.img"
  3765. size="5183988"
  3766. />
  3767. </otaPackages>
  3768. </productMenu>
  3769. <productMenu id="wa"
  3770. type="0" >
  3771. </productMenu>
  3772. <productMenu id="led"
  3773. type="5" >
  3774. </productMenu>
  3775. <productMenu id="led+"
  3776. type="2"
  3777. url="1" >
  3778. </productMenu>
  3779. <productMenu id="meshIntercom"
  3780. type="30" >
  3781. </productMenu>
  3782. <productMenu id="meshIntercom+"
  3783. type="3"
  3784. url="2" >
  3785. </productMenu>
  3786. <productMenu id="waveIntercom"
  3787. type="1" >
  3788. </productMenu>
  3789. <productMenu id="fmradio"
  3790. type="0" >
  3791. </productMenu>
  3792. <productMenu id="phone"
  3793. type="1" >
  3794. </productMenu>
  3795. <productMenu id="music"
  3796. type="1" >
  3797. </productMenu>
  3798. <productMenu id="musicSharing"
  3799. type="0" >
  3800. </productMenu>
  3801. <productMenu id="deviceSetting"
  3802. type="1"
  3803. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3804. <productMenuURL version="1.2.4"
  3805. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3806. />
  3807. </productMenu>
  3808. <productMenu id="quickGuide"
  3809. type="0"
  3810. url=""
  3811. size="1.52MB" >
  3812. </productMenu>
  3813. <productMenu id="userGuide"
  3814. type="1"
  3815. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3816. size="2.01MB" >
  3817. </productMenu>
  3818. <productMenu id="videoGuide"
  3819. type="0"
  3820. url=""
  3821. size="3.46MB" >
  3822. </productMenu>
  3823. <productMenu id="connectGuide"
  3824. type="1"
  3825. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3826. size="1.1MB" >
  3827. </productMenu>
  3828. <productMenu id="volume"
  3829. type="16" >
  3830. </productMenu>
  3831. <productMenu id="volume+"
  3832. type="2"
  3833. url="0x6004" >
  3834. </productMenu>
  3835. <productMenu id="battery"
  3836. type="1" >
  3837. </productMenu>
  3838. <productID id="6A0E"
  3839. />
  3840. <productGroupable type="0"
  3841. />
  3842. </product>
  3843. <product id="PHANTOM"
  3844. name="PHANTOM"
  3845. series="Helmet"
  3846. latestVersion="1.2.7"
  3847. latestVersionVoicePrompt="1.5"
  3848. show = "1" >
  3849. <productMenu id="protocol"
  3850. type="2" >
  3851. </productMenu>
  3852. <productMenu id="ota"
  3853. type="2" >
  3854. <otaLanguages>
  3855. <otaLanguage
  3856. id="0"
  3857. name="English"
  3858. package="0"
  3859. />
  3860. <otaLanguage
  3861. id="0"
  3862. name="French"
  3863. package="1"
  3864. />
  3865. <otaLanguage
  3866. id="0"
  3867. name="Spanish"
  3868. package="2"
  3869. />
  3870. <otaLanguage
  3871. id="0"
  3872. name="Italian"
  3873. package="3"
  3874. />
  3875. <otaLanguage
  3876. id="0"
  3877. name="German"
  3878. package="4"
  3879. />
  3880. <otaLanguage
  3881. id="0"
  3882. name="Dutch"
  3883. package="5"
  3884. />
  3885. <otaLanguage
  3886. id="0"
  3887. name="Russian"
  3888. package="6"
  3889. />
  3890. <otaLanguage
  3891. id="0"
  3892. name="Chinese"
  3893. package="7"
  3894. />
  3895. <otaLanguage
  3896. id="0"
  3897. name="Korean"
  3898. package="8"
  3899. />
  3900. <otaLanguage
  3901. id="0"
  3902. name="Japanese"
  3903. package="9"
  3904. />
  3905. <otaLanguage
  3906. id="0"
  3907. name="Finnish"
  3908. package="10"
  3909. />
  3910. <otaLanguage
  3911. id="0"
  3912. name="Polish"
  3913. package="11"
  3914. />
  3915. </otaLanguages>
  3916. <otaPackages>
  3917. <package
  3918. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1.img"
  3919. size="5183988"
  3920. />
  3921. <package
  3922. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-fr-FR.img"
  3923. size="5183988"
  3924. />
  3925. <package
  3926. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-es-ES.img"
  3927. size="5183988"
  3928. />
  3929. <package
  3930. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-it-IT.img"
  3931. size="5183988"
  3932. />
  3933. <package
  3934. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-de-DE.img"
  3935. size="5183988"
  3936. />
  3937. <package
  3938. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-nl-NL.img"
  3939. size="5183988"
  3940. />
  3941. <package
  3942. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ru-RU.img"
  3943. size="5183988"
  3944. />
  3945. <package
  3946. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-cmn-CN.img"
  3947. size="5183988"
  3948. />
  3949. <package
  3950. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ko-KR.img"
  3951. size="5183988"
  3952. />
  3953. <package
  3954. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ja-JP.img"
  3955. size="5183988"
  3956. />
  3957. <package
  3958. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-fi-FI.img"
  3959. size="5183988"
  3960. />
  3961. <package
  3962. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-pl-PL.img"
  3963. size="5183988"
  3964. />
  3965. </otaPackages>
  3966. </productMenu>
  3967. <productMenu id="wa"
  3968. type="0" >
  3969. </productMenu>
  3970. <productMenu id="led"
  3971. type="5" >
  3972. <productMenuType version="1.0.1"
  3973. type="4"
  3974. />
  3975. </productMenu>
  3976. <productMenu id="led+"
  3977. type="2"
  3978. url="1" >
  3979. <productMenuType version="1.0.1"
  3980. type="-1"
  3981. />
  3982. </productMenu>
  3983. <productMenu id="meshIntercom"
  3984. type="30" >
  3985. </productMenu>
  3986. <productMenu id="meshIntercom+"
  3987. type="3"
  3988. url="2" >
  3989. <productMenuURL version="1.0.4"
  3990. url="10"
  3991. />
  3992. </productMenu>
  3993. <productMenu id="waveIntercom"
  3994. type="1" >
  3995. <productMenuType version="1.0.9"
  3996. type="0"
  3997. />
  3998. </productMenu>
  3999. <productMenu id="fmradio"
  4000. type="0" >
  4001. </productMenu>
  4002. <productMenu id="phone"
  4003. type="1" >
  4004. </productMenu>
  4005. <productMenu id="music"
  4006. type="1" >
  4007. </productMenu>
  4008. <productMenu id="musicSharing"
  4009. type="0" >
  4010. </productMenu>
  4011. <productMenu id="deviceSetting"
  4012. type="1"
  4013. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  4014. <productMenuURL version="1.2.4"
  4015. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4016. />
  4017. <productMenuURL version="1.2.1"
  4018. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4019. />
  4020. <productMenuURL version="1.0.4"
  4021. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4022. />
  4023. <productMenuURL version="1.0.1"
  4024. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4025. />
  4026. </productMenu>
  4027. <productMenu id="quickGuide"
  4028. type="0"
  4029. url=""
  4030. size="1.12MB" >
  4031. </productMenu>
  4032. <productMenu id="userGuide"
  4033. type="1"
  4034. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4035. size="2.0MB" >
  4036. </productMenu>
  4037. <productMenu id="videoGuide"
  4038. type="0"
  4039. url=""
  4040. size="3.41MB" >
  4041. </productMenu>
  4042. <productMenu id="connectGuide"
  4043. type="1"
  4044. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4045. size="1.12MB" >
  4046. </productMenu>
  4047. <productMenu id="volume"
  4048. type="16" >
  4049. <productMenuType version="1.0"
  4050. type="13"
  4051. />
  4052. </productMenu>
  4053. <productMenu id="volume+"
  4054. type="2"
  4055. url="0x6004" >
  4056. </productMenu>
  4057. <productMenu id="battery"
  4058. type="1" >
  4059. </productMenu>
  4060. <productID id="6A04"
  4061. />
  4062. <productGroupable type="0"
  4063. />
  4064. </product>
  4065. <product id="PHANTOMEasyLink"
  4066. name="PHANTOM EasyLink"
  4067. series="Helmet"
  4068. latestVersion="0.1"
  4069. latestVersionVoicePrompt="1.2"
  4070. show = "-1" >
  4071. <productMenu id="protocol"
  4072. type="2" >
  4073. </productMenu>
  4074. <productMenu id="ota"
  4075. type="0" >
  4076. <otaLanguages>
  4077. <otaLanguage
  4078. id="0"
  4079. name="English"
  4080. package="0"
  4081. />
  4082. <otaLanguage
  4083. id="0"
  4084. name="French"
  4085. package="1"
  4086. />
  4087. <otaLanguage
  4088. id="0"
  4089. name="Spanish"
  4090. package="2"
  4091. />
  4092. <otaLanguage
  4093. id="0"
  4094. name="Italian"
  4095. package="3"
  4096. />
  4097. <otaLanguage
  4098. id="0"
  4099. name="German"
  4100. package="4"
  4101. />
  4102. <otaLanguage
  4103. id="0"
  4104. name="Dutch"
  4105. package="5"
  4106. />
  4107. <otaLanguage
  4108. id="0"
  4109. name="Russian"
  4110. package="6"
  4111. />
  4112. <otaLanguage
  4113. id="0"
  4114. name="Chinese"
  4115. package="7"
  4116. />
  4117. <otaLanguage
  4118. id="0"
  4119. name="Korean"
  4120. package="8"
  4121. />
  4122. <otaLanguage
  4123. id="0"
  4124. name="Japanese"
  4125. package="9"
  4126. />
  4127. <otaLanguage
  4128. id="0"
  4129. name="Finnish"
  4130. package="10"
  4131. />
  4132. <otaLanguage
  4133. id="0"
  4134. name="Polish"
  4135. package="11"
  4136. />
  4137. </otaLanguages>
  4138. <otaPackages>
  4139. <package
  4140. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4141. size="5183988"
  4142. />
  4143. <package
  4144. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4145. size="5183988"
  4146. />
  4147. <package
  4148. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4149. size="5183988"
  4150. />
  4151. <package
  4152. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4153. size="5183988"
  4154. />
  4155. <package
  4156. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4157. size="5183988"
  4158. />
  4159. <package
  4160. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4161. size="5183988"
  4162. />
  4163. <package
  4164. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4165. size="5183988"
  4166. />
  4167. <package
  4168. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4169. size="5183988"
  4170. />
  4171. <package
  4172. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4173. size="5183988"
  4174. />
  4175. <package
  4176. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4177. size="5183988"
  4178. />
  4179. <package
  4180. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4181. size="5183988"
  4182. />
  4183. <package
  4184. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4185. size="5183988"
  4186. />
  4187. </otaPackages>
  4188. </productMenu>
  4189. <productMenu id="meshIntercom"
  4190. type="30" >
  4191. </productMenu>
  4192. <productMenu id="meshIntercom+"
  4193. type="3"
  4194. url="2" >
  4195. </productMenu>
  4196. <productMenu id="waveIntercom"
  4197. type="1" >
  4198. </productMenu>
  4199. <productMenu id="fmradio"
  4200. type="0" >
  4201. </productMenu>
  4202. <productMenu id="phone"
  4203. type="1" >
  4204. </productMenu>
  4205. <productMenu id="music"
  4206. type="1" >
  4207. </productMenu>
  4208. <productMenu id="musicSharing"
  4209. type="0" >
  4210. </productMenu>
  4211. <productMenu id="deviceSetting"
  4212. type="1"
  4213. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4214. </productMenu>
  4215. <productMenu id="quickGuide"
  4216. type="0"
  4217. url=""
  4218. size="1.12MB" >
  4219. </productMenu>
  4220. <productMenu id="userGuide"
  4221. type="1"
  4222. url=""
  4223. size="2.0MB" >
  4224. </productMenu>
  4225. <productMenu id="videoGuide"
  4226. type="0"
  4227. url=""
  4228. size="3.41MB" >
  4229. </productMenu>
  4230. <productMenu id="connectGuide"
  4231. type="0"
  4232. url=""
  4233. size="1.12MB" >
  4234. </productMenu>
  4235. <productMenu id="volume"
  4236. type="16" >
  4237. </productMenu>
  4238. <productMenu id="battery"
  4239. type="1" >
  4240. </productMenu>
  4241. <productID id="6A18"
  4242. />
  4243. <productGroupable type="0"
  4244. />
  4245. </product>
  4246. <product id="SPIDERXSlim"
  4247. name="SPIDER X Slim"
  4248. series="SPIDER"
  4249. latestVersion="0.9"
  4250. latestVersionVoicePrompt="1.2"
  4251. show = "-1" >
  4252. <productMenu id="protocol"
  4253. type="2" >
  4254. </productMenu>
  4255. <productMenu id="ota"
  4256. type="2" >
  4257. <otaLanguages>
  4258. <otaLanguage
  4259. id="0"
  4260. name="English"
  4261. package="0"
  4262. />
  4263. <otaLanguage
  4264. id="0"
  4265. name="French"
  4266. package="1"
  4267. />
  4268. <otaLanguage
  4269. id="0"
  4270. name="Spanish"
  4271. package="2"
  4272. />
  4273. <otaLanguage
  4274. id="0"
  4275. name="Italian"
  4276. package="3"
  4277. />
  4278. <otaLanguage
  4279. id="0"
  4280. name="German"
  4281. package="4"
  4282. />
  4283. <otaLanguage
  4284. id="0"
  4285. name="Dutch"
  4286. package="5"
  4287. />
  4288. <otaLanguage
  4289. id="0"
  4290. name="Russian"
  4291. package="6"
  4292. />
  4293. <otaLanguage
  4294. id="0"
  4295. name="Chinese"
  4296. package="7"
  4297. />
  4298. <otaLanguage
  4299. id="0"
  4300. name="Korean"
  4301. package="8"
  4302. />
  4303. <otaLanguage
  4304. id="0"
  4305. name="Japanese"
  4306. package="9"
  4307. />
  4308. <otaLanguage
  4309. id="0"
  4310. name="Finnish"
  4311. package="10"
  4312. />
  4313. <otaLanguage
  4314. id="0"
  4315. name="Polish"
  4316. package="11"
  4317. />
  4318. </otaLanguages>
  4319. <otaPackages>
  4320. <package
  4321. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0.img"
  4322. size="5183988"
  4323. />
  4324. <package
  4325. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-fr-FR.img"
  4326. size="5183988"
  4327. />
  4328. <package
  4329. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-es-ES.img"
  4330. size="5183988"
  4331. />
  4332. <package
  4333. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-it-IT.img"
  4334. size="5183988"
  4335. />
  4336. <package
  4337. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-de-DE.img"
  4338. size="5183988"
  4339. />
  4340. <package
  4341. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-nl-NL.img"
  4342. size="5183988"
  4343. />
  4344. <package
  4345. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ru-RU.img"
  4346. size="5183988"
  4347. />
  4348. <package
  4349. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-cmn-CN.img"
  4350. size="5183988"
  4351. />
  4352. <package
  4353. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ko-KR.img"
  4354. size="5183988"
  4355. />
  4356. <package
  4357. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ja-JP.img"
  4358. size="5183988"
  4359. />
  4360. <package
  4361. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-fi-FI.img"
  4362. size="5183988"
  4363. />
  4364. <package
  4365. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-pl-PL.img"
  4366. size="5183988"
  4367. />
  4368. </otaPackages>
  4369. </productMenu>
  4370. <productMenu id="meshIntercom"
  4371. type="30" >
  4372. </productMenu>
  4373. <productMenu id="meshIntercom+"
  4374. type="3"
  4375. url="2" >
  4376. </productMenu>
  4377. <productMenu id="waveIntercom"
  4378. type="1" >
  4379. </productMenu>
  4380. <productMenu id="fmradio"
  4381. type="1"
  4382. url="1" >
  4383. </productMenu>
  4384. <productMenu id="phone"
  4385. type="1" >
  4386. </productMenu>
  4387. <productMenu id="music"
  4388. type="1" >
  4389. </productMenu>
  4390. <productMenu id="musicSharing"
  4391. type="0" >
  4392. </productMenu>
  4393. <productMenu id="deviceSetting"
  4394. type="1"
  4395. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim.xml" >
  4396. </productMenu>
  4397. <productMenu id="quickGuide"
  4398. type="0"
  4399. url=""
  4400. size="1.12MB" >
  4401. </productMenu>
  4402. <productMenu id="userGuide"
  4403. type="1"
  4404. url=""
  4405. size="2.0MB" >
  4406. </productMenu>
  4407. <productMenu id="videoGuide"
  4408. type="0"
  4409. url=""
  4410. size="3.41MB" >
  4411. </productMenu>
  4412. <productMenu id="volume"
  4413. type="16" >
  4414. </productMenu>
  4415. <productMenu id="volume+"
  4416. type="2"
  4417. url="0x6004" >
  4418. </productMenu>
  4419. <productMenu id="battery"
  4420. type="1" >
  4421. </productMenu>
  4422. <productID id="6A07"
  4423. />
  4424. <productGroupable type="0"
  4425. />
  4426. </product>
  4427. <product id="XFITM"
  4428. name="X-FIT M"
  4429. series="SPIDER"
  4430. latestVersion="0.1.11"
  4431. latestVersionVoicePrompt="1.1"
  4432. show = "-1" >
  4433. <productMenu id="protocol"
  4434. type="2" >
  4435. </productMenu>
  4436. <productMenu id="ota"
  4437. type="0" >
  4438. <otaLanguages>
  4439. <otaLanguage
  4440. id="0"
  4441. name="English"
  4442. package="0"
  4443. />
  4444. <otaLanguage
  4445. id="0"
  4446. name="French"
  4447. package="1"
  4448. />
  4449. <otaLanguage
  4450. id="0"
  4451. name="Spanish"
  4452. package="2"
  4453. />
  4454. <otaLanguage
  4455. id="0"
  4456. name="Italian"
  4457. package="3"
  4458. />
  4459. <otaLanguage
  4460. id="0"
  4461. name="German"
  4462. package="4"
  4463. />
  4464. <otaLanguage
  4465. id="0"
  4466. name="Dutch"
  4467. package="5"
  4468. />
  4469. <otaLanguage
  4470. id="0"
  4471. name="Russian"
  4472. package="6"
  4473. />
  4474. <otaLanguage
  4475. id="0"
  4476. name="Chinese"
  4477. package="7"
  4478. />
  4479. <otaLanguage
  4480. id="0"
  4481. name="Korean"
  4482. package="8"
  4483. />
  4484. <otaLanguage
  4485. id="0"
  4486. name="Japanese"
  4487. package="9"
  4488. />
  4489. <otaLanguage
  4490. id="0"
  4491. name="Finnish"
  4492. package="10"
  4493. />
  4494. <otaLanguage
  4495. id="0"
  4496. name="Polish"
  4497. package="11"
  4498. />
  4499. </otaLanguages>
  4500. <otaPackages>
  4501. <package
  4502. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4503. size="5183988"
  4504. />
  4505. <package
  4506. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4507. size="5183988"
  4508. />
  4509. <package
  4510. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4511. size="5183988"
  4512. />
  4513. <package
  4514. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4515. size="5183988"
  4516. />
  4517. <package
  4518. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4519. size="5183988"
  4520. />
  4521. <package
  4522. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4523. size="5183988"
  4524. />
  4525. <package
  4526. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4527. size="5183988"
  4528. />
  4529. <package
  4530. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4531. size="5183988"
  4532. />
  4533. <package
  4534. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4535. size="5183988"
  4536. />
  4537. <package
  4538. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4539. size="5183988"
  4540. />
  4541. <package
  4542. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4543. size="5183988"
  4544. />
  4545. <package
  4546. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4547. size="5183988"
  4548. />
  4549. </otaPackages>
  4550. </productMenu>
  4551. <productMenu id="meshIntercom"
  4552. type="30" >
  4553. </productMenu>
  4554. <productMenu id="meshIntercom+"
  4555. type="3"
  4556. url="2" >
  4557. </productMenu>
  4558. <productMenu id="waveIntercom"
  4559. type="1" >
  4560. </productMenu>
  4561. <productMenu id="fmradio"
  4562. type="1"
  4563. url="1" >
  4564. </productMenu>
  4565. <productMenu id="phone"
  4566. type="1" >
  4567. </productMenu>
  4568. <productMenu id="music"
  4569. type="1" >
  4570. </productMenu>
  4571. <productMenu id="musicSharing"
  4572. type="0" >
  4573. </productMenu>
  4574. <productMenu id="deviceSetting"
  4575. type="1"
  4576. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim.xml" >
  4577. </productMenu>
  4578. <productMenu id="quickGuide"
  4579. type="0"
  4580. url=""
  4581. size="1.12MB" >
  4582. </productMenu>
  4583. <productMenu id="userGuide"
  4584. type="1"
  4585. url=""
  4586. size="2.0MB" >
  4587. </productMenu>
  4588. <productMenu id="videoGuide"
  4589. type="0"
  4590. url=""
  4591. size="3.41MB" >
  4592. </productMenu>
  4593. <productMenu id="volume"
  4594. type="16" >
  4595. </productMenu>
  4596. <productMenu id="volume+"
  4597. type="2"
  4598. url="0x6004" >
  4599. </productMenu>
  4600. <productMenu id="battery"
  4601. type="1" >
  4602. </productMenu>
  4603. <productID id="6A17"
  4604. />
  4605. <productGroupable type="0"
  4606. />
  4607. </product>
  4608. <product id="VORTEXMESH"
  4609. name="VORTEX MESH"
  4610. series="Helmet"
  4611. latestVersion="0.1.11"
  4612. latestVersionVoicePrompt="1.1"
  4613. show = "-1" >
  4614. <productMenu id="protocol"
  4615. type="2" >
  4616. </productMenu>
  4617. <productMenu id="ota"
  4618. type="0" >
  4619. <otaLanguages>
  4620. <otaLanguage
  4621. id="0"
  4622. name="English"
  4623. package="0"
  4624. />
  4625. <otaLanguage
  4626. id="0"
  4627. name="French"
  4628. package="1"
  4629. />
  4630. <otaLanguage
  4631. id="0"
  4632. name="Spanish"
  4633. package="2"
  4634. />
  4635. <otaLanguage
  4636. id="0"
  4637. name="Italian"
  4638. package="3"
  4639. />
  4640. <otaLanguage
  4641. id="0"
  4642. name="German"
  4643. package="4"
  4644. />
  4645. <otaLanguage
  4646. id="0"
  4647. name="Dutch"
  4648. package="5"
  4649. />
  4650. <otaLanguage
  4651. id="0"
  4652. name="Russian"
  4653. package="6"
  4654. />
  4655. <otaLanguage
  4656. id="0"
  4657. name="Chinese"
  4658. package="7"
  4659. />
  4660. <otaLanguage
  4661. id="0"
  4662. name="Korean"
  4663. package="8"
  4664. />
  4665. <otaLanguage
  4666. id="0"
  4667. name="Japanese"
  4668. package="9"
  4669. />
  4670. <otaLanguage
  4671. id="0"
  4672. name="Finnish"
  4673. package="10"
  4674. />
  4675. <otaLanguage
  4676. id="0"
  4677. name="Polish"
  4678. package="11"
  4679. />
  4680. </otaLanguages>
  4681. <otaPackages>
  4682. <package
  4683. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4684. size="5183988"
  4685. />
  4686. <package
  4687. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4688. size="5183988"
  4689. />
  4690. <package
  4691. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4692. size="5183988"
  4693. />
  4694. <package
  4695. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4696. size="5183988"
  4697. />
  4698. <package
  4699. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4700. size="5183988"
  4701. />
  4702. <package
  4703. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4704. size="5183988"
  4705. />
  4706. <package
  4707. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4708. size="5183988"
  4709. />
  4710. <package
  4711. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4712. size="5183988"
  4713. />
  4714. <package
  4715. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4716. size="5183988"
  4717. />
  4718. <package
  4719. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4720. size="5183988"
  4721. />
  4722. <package
  4723. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4724. size="5183988"
  4725. />
  4726. <package
  4727. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4728. size="5183988"
  4729. />
  4730. </otaPackages>
  4731. </productMenu>
  4732. <productMenu id="wa"
  4733. type="0" >
  4734. </productMenu>
  4735. <productMenu id="led"
  4736. type="5" >
  4737. </productMenu>
  4738. <productMenu id="led+"
  4739. type="2"
  4740. url="1" >
  4741. </productMenu>
  4742. <productMenu id="meshIntercom"
  4743. type="30" >
  4744. </productMenu>
  4745. <productMenu id="meshIntercom+"
  4746. type="3"
  4747. url="2" >
  4748. </productMenu>
  4749. <productMenu id="waveIntercom"
  4750. type="1" >
  4751. </productMenu>
  4752. <productMenu id="fmradio"
  4753. type="0" >
  4754. </productMenu>
  4755. <productMenu id="phone"
  4756. type="1" >
  4757. </productMenu>
  4758. <productMenu id="music"
  4759. type="1" >
  4760. </productMenu>
  4761. <productMenu id="musicSharing"
  4762. type="0" >
  4763. </productMenu>
  4764. <productMenu id="deviceSetting"
  4765. type="1"
  4766. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4767. </productMenu>
  4768. <productMenu id="quickGuide"
  4769. type="0"
  4770. url=""
  4771. size="1.12MB" >
  4772. </productMenu>
  4773. <productMenu id="userGuide"
  4774. type="1"
  4775. url=""
  4776. size="2.0MB" >
  4777. </productMenu>
  4778. <productMenu id="videoGuide"
  4779. type="0"
  4780. url=""
  4781. size="3.41MB" >
  4782. </productMenu>
  4783. <productMenu id="volume"
  4784. type="16" >
  4785. </productMenu>
  4786. <productMenu id="battery"
  4787. type="1" >
  4788. </productMenu>
  4789. <productID id="6A12"
  4790. />
  4791. <productGroupable type="0"
  4792. />
  4793. </product>
  4794. <product id="MeshOn"
  4795. name="Mesh ON"
  4796. series="60"
  4797. latestVersion="1.0.1"
  4798. latestVersionVoicePrompt="0.7"
  4799. show = "-1" >
  4800. <productMenu id="protocol"
  4801. type="2" >
  4802. </productMenu>
  4803. <productMenu id="ota"
  4804. type="2" >
  4805. <otaPackages>
  4806. <package
  4807. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4808. size="2945812"
  4809. />
  4810. </otaPackages>
  4811. </productMenu>
  4812. <productMenu id="meshIntercom+"
  4813. type="3"
  4814. url="4" >
  4815. </productMenu>
  4816. <productMenu id="waveIntercom"
  4817. type="0" >
  4818. </productMenu>
  4819. <productMenu id="phone"
  4820. type="0" >
  4821. </productMenu>
  4822. <productMenu id="music"
  4823. type="0" >
  4824. </productMenu>
  4825. <productMenu id="musicSharing"
  4826. type="0" >
  4827. </productMenu>
  4828. <productMenu id="deviceSetting"
  4829. type="1"
  4830. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4831. </productMenu>
  4832. <productMenu id="userGuide"
  4833. type="1"
  4834. url=""
  4835. size="2.0MB" >
  4836. </productMenu>
  4837. <productMenu id="bluetoothHeadset"
  4838. type="1"
  4839. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4840. </productMenu>
  4841. <productMenu id="volume"
  4842. type="0" >
  4843. </productMenu>
  4844. <productMenu id="battery"
  4845. type="1" >
  4846. </productMenu>
  4847. <productID id="684E"
  4848. />
  4849. <productGroupable type="0"
  4850. />
  4851. </product>
  4852. <product id="Impulse"
  4853. name="Impulse"
  4854. series="Helmet"
  4855. latestVersion="1.4.1"
  4856. show = "1" >
  4857. <productMenu id="protocol"
  4858. type="2" >
  4859. </productMenu>
  4860. <productMenu id="alexa"
  4861. type="0" >
  4862. </productMenu>
  4863. <productMenu id="ota"
  4864. type="0" >
  4865. </productMenu>
  4866. <productMenu id="wa"
  4867. type="24" >
  4868. </productMenu>
  4869. <productMenu id="manager"
  4870. type="0" >
  4871. </productMenu>
  4872. <productMenu id="sip"
  4873. type="1" >
  4874. </productMenu>
  4875. <productMenu id="led"
  4876. type="1" >
  4877. <productMenuType version="1.0.1"
  4878. type="2"
  4879. />
  4880. <productMenuType version="1.0"
  4881. type="1"
  4882. />
  4883. </productMenu>
  4884. <productMenu id="meshIntercom"
  4885. type="30" >
  4886. <productMenuType version="1.1.1"
  4887. type="20"
  4888. />
  4889. </productMenu>
  4890. <productMenu id="meshIntercom+"
  4891. type="3"
  4892. url="2" >
  4893. <productMenuType version="1.3.9"
  4894. type="2"
  4895. />
  4896. <productMenuURL version="1.1.1"
  4897. url="0"
  4898. />
  4899. </productMenu>
  4900. <productMenu id="waveIntercom"
  4901. type="1" >
  4902. <productMenuType version="1.3.9"
  4903. type="0"
  4904. />
  4905. </productMenu>
  4906. <productMenu id="bluetoothIntercom"
  4907. type="1" >
  4908. </productMenu>
  4909. <productMenu id="phone"
  4910. type="1" >
  4911. </productMenu>
  4912. <productMenu id="music"
  4913. type="1" >
  4914. </productMenu>
  4915. <productMenu id="fmradio"
  4916. type="1" >
  4917. </productMenu>
  4918. <productMenu id="deviceSetting"
  4919. type="1"
  4920. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4921. <productMenuURL version="1.3.9"
  4922. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4923. />
  4924. <productMenuURL version="1.1.1"
  4925. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4926. />
  4927. <productMenuURL version="1.0.4"
  4928. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4929. />
  4930. </productMenu>
  4931. <productMenu id="quickGuide"
  4932. type="0"
  4933. url=""
  4934. size="344KB" >
  4935. </productMenu>
  4936. <productMenu id="userGuide"
  4937. type="1"
  4938. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  4939. size="3.41MB" >
  4940. </productMenu>
  4941. <productMenu id="connectGuide"
  4942. type="1"
  4943. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4944. size="1.12MB" >
  4945. </productMenu>
  4946. <productMenu id="volume"
  4947. type="11" >
  4948. </productMenu>
  4949. <productMenu id="battery"
  4950. type="1" >
  4951. </productMenu>
  4952. <productID id="3148"
  4953. />
  4954. <productGroupable type="0"
  4955. />
  4956. </product>
  4957. <product id="Impulse"
  4958. name="Impulse"
  4959. series="Helmet"
  4960. latestVersion="2.0"
  4961. show = "-1" >
  4962. <productMenu id="protocol"
  4963. type="2" >
  4964. </productMenu>
  4965. <productMenu id="alexa"
  4966. type="0" >
  4967. </productMenu>
  4968. <productMenu id="ota"
  4969. type="0" >
  4970. </productMenu>
  4971. <productMenu id="wa"
  4972. type="8" >
  4973. </productMenu>
  4974. <productMenu id="manager"
  4975. type="0" >
  4976. </productMenu>
  4977. <productMenu id="sip"
  4978. type="1" >
  4979. </productMenu>
  4980. <productMenu id="led"
  4981. type="3" >
  4982. </productMenu>
  4983. <productMenu id="meshIntercom"
  4984. type="20" >
  4985. </productMenu>
  4986. <productMenu id="bluetoothIntercom"
  4987. type="1" >
  4988. </productMenu>
  4989. <productMenu id="phone"
  4990. type="1" >
  4991. </productMenu>
  4992. <productMenu id="music"
  4993. type="1" >
  4994. </productMenu>
  4995. <productMenu id="fmradio"
  4996. type="1" >
  4997. </productMenu>
  4998. <productMenu id="deviceSetting"
  4999. type="1"
  5000. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5001. </productMenu>
  5002. <productMenu id="quickGuide"
  5003. type="1"
  5004. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5005. size="344KB" >
  5006. </productMenu>
  5007. <productMenu id="userGuide"
  5008. type="1"
  5009. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5010. size="3.41MB" >
  5011. </productMenu>
  5012. <productMenu id="volume"
  5013. type="11" >
  5014. </productMenu>
  5015. <productMenu id="battery"
  5016. type="1" >
  5017. </productMenu>
  5018. <productID id="3221"
  5019. />
  5020. <productGroupable type="0"
  5021. />
  5022. </product>
  5023. <product id="Stryker"
  5024. name="Stryker"
  5025. series="Helmet"
  5026. latestVersion="1.4.1"
  5027. show = "1" >
  5028. <productMenu id="protocol"
  5029. type="2" >
  5030. </productMenu>
  5031. <productMenu id="alexa"
  5032. type="0" >
  5033. </productMenu>
  5034. <productMenu id="ota"
  5035. type="0" >
  5036. </productMenu>
  5037. <productMenu id="wa"
  5038. type="40" >
  5039. </productMenu>
  5040. <productMenu id="manager"
  5041. type="0" >
  5042. </productMenu>
  5043. <productMenu id="sip"
  5044. type="1" >
  5045. </productMenu>
  5046. <productMenu id="led"
  5047. type="1" >
  5048. <productMenuType version="1.0.1"
  5049. type="2"
  5050. />
  5051. <productMenuType version="1.0"
  5052. type="1"
  5053. />
  5054. </productMenu>
  5055. <productMenu id="meshIntercom"
  5056. type="30" >
  5057. <productMenuType version="1.1.1"
  5058. type="20"
  5059. />
  5060. </productMenu>
  5061. <productMenu id="meshIntercom+"
  5062. type="3"
  5063. url="2" >
  5064. <productMenuType version="1.3.9"
  5065. type="2"
  5066. />
  5067. <productMenuURL version="1.1.1"
  5068. url="0"
  5069. />
  5070. </productMenu>
  5071. <productMenu id="waveIntercom"
  5072. type="1" >
  5073. <productMenuType version="1.2.9"
  5074. type="0"
  5075. />
  5076. </productMenu>
  5077. <productMenu id="bluetoothIntercom"
  5078. type="1" >
  5079. </productMenu>
  5080. <productMenu id="phone"
  5081. type="1" >
  5082. </productMenu>
  5083. <productMenu id="music"
  5084. type="1" >
  5085. </productMenu>
  5086. <productMenu id="fmradio"
  5087. type="1" >
  5088. </productMenu>
  5089. <productMenu id="deviceSetting"
  5090. type="1"
  5091. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5092. <productMenuURL version="1.3.9"
  5093. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5094. />
  5095. <productMenuURL version="1.1.1"
  5096. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5097. />
  5098. <productMenuURL version="1.0.4"
  5099. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5100. />
  5101. </productMenu>
  5102. <productMenu id="quickGuide"
  5103. type="0"
  5104. url=""
  5105. size="344KB" >
  5106. </productMenu>
  5107. <productMenu id="userGuide"
  5108. type="1"
  5109. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5110. size="3.41MB" >
  5111. </productMenu>
  5112. <productMenu id="connectGuide"
  5113. type="1"
  5114. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5115. size="1.12MB" >
  5116. </productMenu>
  5117. <productMenu id="volume"
  5118. type="11" >
  5119. </productMenu>
  5120. <productMenu id="battery"
  5121. type="1" >
  5122. </productMenu>
  5123. <productID id="3154"
  5124. />
  5125. <productGroupable type="0"
  5126. />
  5127. </product>
  5128. <product id="SRL3Plus"
  5129. name="SRL3 Plus"
  5130. series="60"
  5131. latestVersion="0.9.5"
  5132. latestVersionMesh="0.19"
  5133. latestVersionVoicePrompt="1.2"
  5134. show = "-1" >
  5135. <productMenu id="protocol"
  5136. type="2" >
  5137. </productMenu>
  5138. <productMenu id="ota"
  5139. type="2" >
  5140. <otaLanguages>
  5141. <otaLanguage
  5142. id="0"
  5143. name="English"
  5144. package="0"
  5145. />
  5146. <otaLanguage
  5147. id="0"
  5148. name="French"
  5149. package="1"
  5150. />
  5151. <otaLanguage
  5152. id="0"
  5153. name="Spanish"
  5154. package="2"
  5155. />
  5156. <otaLanguage
  5157. id="0"
  5158. name="Italian"
  5159. package="3"
  5160. />
  5161. <otaLanguage
  5162. id="0"
  5163. name="German"
  5164. package="4"
  5165. />
  5166. <otaLanguage
  5167. id="0"
  5168. name="Dutch"
  5169. package="5"
  5170. />
  5171. <otaLanguage
  5172. id="0"
  5173. name="Russian"
  5174. package="6"
  5175. />
  5176. <otaLanguage
  5177. id="0"
  5178. name="Chinese"
  5179. package="7"
  5180. />
  5181. <otaLanguage
  5182. id="0"
  5183. name="Korean"
  5184. package="8"
  5185. />
  5186. <otaLanguage
  5187. id="0"
  5188. name="Japanese"
  5189. package="9"
  5190. />
  5191. <otaLanguage
  5192. id="0"
  5193. name="Finnish"
  5194. package="10"
  5195. />
  5196. </otaLanguages>
  5197. <otaPackages>
  5198. <package
  5199. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0.img"
  5200. size="5183988"
  5201. />
  5202. <package
  5203. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fr-FR.img"
  5204. size="5183988"
  5205. />
  5206. <package
  5207. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-es-ES.img"
  5208. size="5183988"
  5209. />
  5210. <package
  5211. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-it-IT.img"
  5212. size="5183988"
  5213. />
  5214. <package
  5215. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-de-DE.img"
  5216. size="5183988"
  5217. />
  5218. <package
  5219. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-nl-NL.img"
  5220. size="5183988"
  5221. />
  5222. <package
  5223. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ru-RU.img"
  5224. size="5183988"
  5225. />
  5226. <package
  5227. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-cmn-CN.img"
  5228. size="5183988"
  5229. />
  5230. <package
  5231. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ko-KR.img"
  5232. size="5183988"
  5233. />
  5234. <package
  5235. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ja-JP.img"
  5236. size="5183988"
  5237. />
  5238. <package
  5239. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fi-FI.img"
  5240. size="5183988"
  5241. />
  5242. </otaPackages>
  5243. </productMenu>
  5244. <productMenu id="sip"
  5245. type="1" >
  5246. </productMenu>
  5247. <productMenu id="illusion"
  5248. type="1" >
  5249. </productMenu>
  5250. <productMenu id="meshIntercom+"
  5251. type="3"
  5252. url="2" >
  5253. </productMenu>
  5254. <productMenu id="waveIntercom"
  5255. type="1" >
  5256. </productMenu>
  5257. <productMenu id="bluetoothIntercom"
  5258. type="1"
  5259. url="2" >
  5260. </productMenu>
  5261. <productMenu id="bluetoothIntercomGrouping"
  5262. type="0" >
  5263. </productMenu>
  5264. <productMenu id="fmradio"
  5265. type="1"
  5266. url="1" >
  5267. </productMenu>
  5268. <productMenu id="phone"
  5269. type="1" >
  5270. </productMenu>
  5271. <productMenu id="music"
  5272. type="1" >
  5273. </productMenu>
  5274. <productMenu id="musicSharing"
  5275. type="0" >
  5276. </productMenu>
  5277. <productMenu id="deviceSetting"
  5278. type="1"
  5279. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  5280. </productMenu>
  5281. <productMenu id="quickGuide"
  5282. type="0"
  5283. url=""
  5284. size="1.12MB" >
  5285. </productMenu>
  5286. <productMenu id="userGuide"
  5287. type="0"
  5288. url=""
  5289. size="2.0MB" >
  5290. </productMenu>
  5291. <productMenu id="videoGuide"
  5292. type="0"
  5293. url=""
  5294. size="3.41MB" >
  5295. </productMenu>
  5296. <productMenu id="volume"
  5297. type="16" >
  5298. </productMenu>
  5299. <productMenu id="soundMode"
  5300. type="1" >
  5301. </productMenu>
  5302. <productMenu id="battery"
  5303. type="1" >
  5304. </productMenu>
  5305. <productID id="6A08"
  5306. />
  5307. <productGroupable type="0"
  5308. />
  5309. </product>
  5310. <product id="SRL3"
  5311. name="SRL3"
  5312. series="SRL"
  5313. latestVersion="1.5"
  5314. show = "1" >
  5315. <productMenu id="protocol"
  5316. type="2" >
  5317. </productMenu>
  5318. <productMenu id="alexa"
  5319. type="0" >
  5320. </productMenu>
  5321. <productMenu id="ota"
  5322. type="0" >
  5323. </productMenu>
  5324. <productMenu id="wa"
  5325. type="1" >
  5326. </productMenu>
  5327. <productMenu id="sip"
  5328. type="1" >
  5329. </productMenu>
  5330. <productMenu id="meshIntercom"
  5331. type="30" >
  5332. </productMenu>
  5333. <productMenu id="meshIntercom+"
  5334. type="3"
  5335. url="2" >
  5336. <productMenuType version="1.3.9"
  5337. type="2"
  5338. />
  5339. </productMenu>
  5340. <productMenu id="waveIntercom"
  5341. type="1" >
  5342. <productMenuType version="1.4.9"
  5343. type="0"
  5344. />
  5345. </productMenu>
  5346. <productMenu id="bluetoothIntercom"
  5347. type="1" >
  5348. </productMenu>
  5349. <productMenu id="phone"
  5350. type="1" >
  5351. </productMenu>
  5352. <productMenu id="music"
  5353. type="1" >
  5354. </productMenu>
  5355. <productMenu id="fmradio"
  5356. type="1" >
  5357. </productMenu>
  5358. <productMenu id="deviceSetting"
  5359. type="1"
  5360. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5361. <productMenuURL version="1.3"
  5362. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5363. />
  5364. </productMenu>
  5365. <productMenu id="quickGuide"
  5366. type="0"
  5367. url=""
  5368. size="344KB" >
  5369. </productMenu>
  5370. <productMenu id="userGuide"
  5371. type="1"
  5372. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5373. size="3.41MB" >
  5374. </productMenu>
  5375. <productMenu id="connectGuide"
  5376. type="1"
  5377. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5378. size="1.12MB" >
  5379. </productMenu>
  5380. <productMenu id="volume"
  5381. type="11" >
  5382. </productMenu>
  5383. <productMenu id="battery"
  5384. type="1" >
  5385. </productMenu>
  5386. <productID id="3219"
  5387. />
  5388. <productGroupable type="0"
  5389. />
  5390. </product>
  5391. <product id="SRL_Mesh"
  5392. name="SRL-Mesh"
  5393. series="SRL"
  5394. latestVersion="1.7.1"
  5395. show = "1" >
  5396. <productMenu id="protocol"
  5397. type="2" >
  5398. </productMenu>
  5399. <productMenu id="alexa"
  5400. type="0" >
  5401. </productMenu>
  5402. <productMenu id="ota"
  5403. type="0" >
  5404. </productMenu>
  5405. <productMenu id="wa"
  5406. type="1" >
  5407. </productMenu>
  5408. <productMenu id="sip"
  5409. type="1" >
  5410. </productMenu>
  5411. <productMenu id="meshIntercom"
  5412. type="30" >
  5413. <productMenuType version="1.1.1"
  5414. type="20"
  5415. />
  5416. </productMenu>
  5417. <productMenu id="meshIntercom+"
  5418. type="3"
  5419. url="2" >
  5420. <productMenuType version="1.5.9"
  5421. type="2"
  5422. />
  5423. <productMenuURL version="1.1.1"
  5424. url="0"
  5425. />
  5426. </productMenu>
  5427. <productMenu id="waveIntercom"
  5428. type="1" >
  5429. <productMenuType version="1.6.9"
  5430. type="0"
  5431. />
  5432. </productMenu>
  5433. <productMenu id="bluetoothIntercom"
  5434. type="1" >
  5435. </productMenu>
  5436. <productMenu id="phone"
  5437. type="1" >
  5438. </productMenu>
  5439. <productMenu id="music"
  5440. type="1" >
  5441. </productMenu>
  5442. <productMenu id="fmradio"
  5443. type="1" >
  5444. </productMenu>
  5445. <productMenu id="deviceSetting"
  5446. type="1"
  5447. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5448. <productMenuURL version="1.5"
  5449. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5450. />
  5451. <productMenuURL version="1.1.1"
  5452. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5453. />
  5454. <productMenuURL version="1.0.3"
  5455. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5456. />
  5457. </productMenu>
  5458. <productMenu id="quickGuide"
  5459. type="0"
  5460. url=""
  5461. size="344KB" >
  5462. </productMenu>
  5463. <productMenu id="userGuide"
  5464. type="1"
  5465. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5466. size="3.41MB" >
  5467. </productMenu>
  5468. <productMenu id="connectGuide"
  5469. type="1"
  5470. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5471. size="1.12MB" >
  5472. </productMenu>
  5473. <productMenu id="volume"
  5474. type="11" >
  5475. </productMenu>
  5476. <productMenu id="battery"
  5477. type="1" >
  5478. </productMenu>
  5479. <productID id="3216"
  5480. />
  5481. <productGroupable type="0"
  5482. />
  5483. </product>
  5484. <product id="SRL_EXT"
  5485. name="SRL-EXT"
  5486. series="SRL"
  5487. latestVersion="1.7.1"
  5488. show = "1" >
  5489. <productMenu id="protocol"
  5490. type="2" >
  5491. </productMenu>
  5492. <productMenu id="alexa"
  5493. type="0" >
  5494. </productMenu>
  5495. <productMenu id="ota"
  5496. type="0" >
  5497. </productMenu>
  5498. <productMenu id="wa"
  5499. type="0" >
  5500. </productMenu>
  5501. <productMenu id="sip"
  5502. type="1" >
  5503. </productMenu>
  5504. <productMenu id="meshIntercom"
  5505. type="30" >
  5506. <productMenuType version="1.1.1"
  5507. type="20"
  5508. />
  5509. </productMenu>
  5510. <productMenu id="meshIntercom+"
  5511. type="3"
  5512. url="2" >
  5513. <productMenuType version="1.5.9"
  5514. type="2"
  5515. />
  5516. <productMenuURL version="1.1.1"
  5517. url="0"
  5518. />
  5519. </productMenu>
  5520. <productMenu id="waveIntercom"
  5521. type="1" >
  5522. <productMenuType version="1.6.9"
  5523. type="0"
  5524. />
  5525. </productMenu>
  5526. <productMenu id="bluetoothIntercom"
  5527. type="1" >
  5528. </productMenu>
  5529. <productMenu id="phone"
  5530. type="1" >
  5531. </productMenu>
  5532. <productMenu id="music"
  5533. type="1" >
  5534. </productMenu>
  5535. <productMenu id="fmradio"
  5536. type="1" >
  5537. </productMenu>
  5538. <productMenu id="deviceSetting"
  5539. type="1"
  5540. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5541. <productMenuURL version="1.5"
  5542. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5543. />
  5544. <productMenuURL version="1.1.1"
  5545. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5546. />
  5547. <productMenuURL version="1.0.3"
  5548. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5549. />
  5550. </productMenu>
  5551. <productMenu id="quickGuide"
  5552. type="0"
  5553. url=""
  5554. size="344KB" >
  5555. </productMenu>
  5556. <productMenu id="userGuide"
  5557. type="1"
  5558. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5559. size="3.41MB" >
  5560. </productMenu>
  5561. <productMenu id="connectGuide"
  5562. type="1"
  5563. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5564. size="1.12MB" >
  5565. </productMenu>
  5566. <productMenu id="volume"
  5567. type="11" >
  5568. </productMenu>
  5569. <productMenu id="battery"
  5570. type="1" >
  5571. </productMenu>
  5572. <productID id="3212"
  5573. />
  5574. <productGroupable type="0"
  5575. />
  5576. </product>
  5577. <product id="SRL2"
  5578. name="SRL2"
  5579. series="SRL"
  5580. latestVersion="1.0.9"
  5581. show = "1" >
  5582. <productMenu id="protocol"
  5583. type="0">
  5584. </productMenu>
  5585. <productMenu id="sip"
  5586. type="1" >
  5587. </productMenu>
  5588. <productMenu id="bluetoothIntercom"
  5589. type="1" >
  5590. </productMenu>
  5591. <productMenu id="intercomSetting"
  5592. type="1" >
  5593. </productMenu>
  5594. <productMenu id="phone"
  5595. type="2" >
  5596. </productMenu>
  5597. <productMenu id="fmradio"
  5598. type="3" >
  5599. </productMenu>
  5600. <productMenu id="deviceSetting"
  5601. type="1"
  5602. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5603. </productMenu>
  5604. <productMenu id="quickGuide"
  5605. type="1"
  5606. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5607. size="846KB" >
  5608. </productMenu>
  5609. <productMenu id="userGuide"
  5610. type="1"
  5611. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5612. size="1.18MB" >
  5613. </productMenu>
  5614. <productMenu id="connectGuide"
  5615. type="1"
  5616. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5617. size="1.12MB" >
  5618. </productMenu>
  5619. <productID id="4530"
  5620. />
  5621. <productGroupable type="1"
  5622. />
  5623. </product>
  5624. <product id="Neotec2"
  5625. name="SRL Neotec2"
  5626. series="SRL"
  5627. latestVersion="1.1.5"
  5628. show = "1" >
  5629. <productMenu id="protocol"
  5630. type="0">
  5631. </productMenu>
  5632. <productMenu id="sip"
  5633. type="1" >
  5634. </productMenu>
  5635. <productMenu id="bluetoothIntercom"
  5636. type="1" >
  5637. </productMenu>
  5638. <productMenu id="intercomSetting"
  5639. type="1" >
  5640. </productMenu>
  5641. <productMenu id="phone"
  5642. type="2" >
  5643. </productMenu>
  5644. <productMenu id="fmradio"
  5645. type="3" >
  5646. </productMenu>
  5647. <productMenu id="deviceSetting"
  5648. type="1"
  5649. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5650. </productMenu>
  5651. <productMenu id="quickGuide"
  5652. type="0"
  5653. url=""
  5654. size="796KB" >
  5655. </productMenu>
  5656. <productMenu id="userGuide"
  5657. type="1"
  5658. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5659. size="1.90MB" >
  5660. </productMenu>
  5661. <productMenu id="connectGuide"
  5662. type="1"
  5663. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5664. size="1.12MB" >
  5665. </productMenu>
  5666. <productID id="4510"
  5667. />
  5668. <productGroupable type="1"
  5669. />
  5670. </product>
  5671. <product id="SPIDERST2ANC"
  5672. name="SPIDER ST2 ANC"
  5673. series="SPIDER"
  5674. latestVersion="0.5.1"
  5675. latestVersionVoicePrompt="0.2"
  5676. latestVersionMesh="0.8"
  5677. show = "-1" >
  5678. <productMenu id="protocol"
  5679. type="2" >
  5680. </productMenu>
  5681. <productMenu id="ota"
  5682. type="0" >
  5683. <otaPackages>
  5684. <package
  5685. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5686. size="2945812"
  5687. />
  5688. </otaPackages>
  5689. </productMenu>
  5690. <productMenu id="wa"
  5691. type="0" >
  5692. </productMenu>
  5693. <productMenu id="led"
  5694. type="1" >
  5695. </productMenu>
  5696. <productMenu id="meshIntercom"
  5697. type="30" >
  5698. </productMenu>
  5699. <productMenu id="fmradio"
  5700. type="1" >
  5701. </productMenu>
  5702. <productMenu id="phone"
  5703. type="1" >
  5704. </productMenu>
  5705. <productMenu id="music"
  5706. type="1" >
  5707. </productMenu>
  5708. <productMenu id="musicSharing"
  5709. type="0" >
  5710. </productMenu>
  5711. <productMenu id="deviceSetting"
  5712. type="1"
  5713. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  5714. </productMenu>
  5715. <productMenu id="quickGuide"
  5716. type="1"
  5717. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5718. size="1.12MB" >
  5719. </productMenu>
  5720. <productMenu id="userGuide"
  5721. type="1"
  5722. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5723. size="2.0MB" >
  5724. </productMenu>
  5725. <productMenu id="videoGuide"
  5726. type="1"
  5727. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5728. size="3.41MB" >
  5729. </productMenu>
  5730. <productMenu id="volume"
  5731. type="12" >
  5732. </productMenu>
  5733. <productMenu id="battery"
  5734. type="1" >
  5735. </productMenu>
  5736. <productID id="6A00"
  5737. />
  5738. <productGroupable type="0"
  5739. />
  5740. </product>
  5741. <product id="SPIDER_ST1"
  5742. name="SPIDER ST1"
  5743. series="SPIDER"
  5744. latestVersion="2.5.2"
  5745. latestVersionVoicePrompt="1.6"
  5746. show = "1" >
  5747. <productMenu id="protocol"
  5748. type="2" >
  5749. </productMenu>
  5750. <productMenu id="alexa"
  5751. type="0" >
  5752. </productMenu>
  5753. <productMenu id="ota"
  5754. type="2" >
  5755. <productMenuType version="2.1.9"
  5756. type="0"
  5757. />
  5758. <otaPackages>
  5759. <package
  5760. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.2-build1.img"
  5761. size="2945812"
  5762. />
  5763. </otaPackages>
  5764. </productMenu>
  5765. <productMenu id="wa"
  5766. type="0" >
  5767. </productMenu>
  5768. <productMenu id="meshIntercom"
  5769. type="30" >
  5770. <productMenuType version="2.1.1"
  5771. type="20"
  5772. />
  5773. </productMenu>
  5774. <productMenu id="meshIntercom+"
  5775. type="3"
  5776. url="2" >
  5777. <productMenuType version="2.2.9"
  5778. type="2"
  5779. />
  5780. <productMenuURL version="2.1.1"
  5781. url="0"
  5782. />
  5783. </productMenu>
  5784. <productMenu id="waveIntercom"
  5785. type="1" >
  5786. <productMenuType version="2.3.9"
  5787. type="0"
  5788. />
  5789. </productMenu>
  5790. <productMenu id="phone"
  5791. type="1" >
  5792. </productMenu>
  5793. <productMenu id="music"
  5794. type="1" >
  5795. </productMenu>
  5796. <productMenu id="musicSharing"
  5797. type="0" >
  5798. </productMenu>
  5799. <productMenu id="deviceSetting"
  5800. type="1"
  5801. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5802. <productMenuURL version="2.4.9"
  5803. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5804. />
  5805. <productMenuURL version="2.2.2"
  5806. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5807. />
  5808. <productMenuURL version="2.1.1"
  5809. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5810. />
  5811. </productMenu>
  5812. <productMenu id="quickGuide"
  5813. type="0"
  5814. url=""
  5815. size="1.12MB" >
  5816. </productMenu>
  5817. <productMenu id="userGuide"
  5818. type="1"
  5819. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5820. size="2.0MB" >
  5821. </productMenu>
  5822. <productMenu id="videoGuide"
  5823. type="1"
  5824. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5825. size="3.41MB" >
  5826. </productMenu>
  5827. <productMenu id="connectGuide"
  5828. type="1"
  5829. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5830. size="1.12MB" >
  5831. </productMenu>
  5832. <productMenu id="volume"
  5833. type="12" >
  5834. </productMenu>
  5835. <productMenu id="battery"
  5836. type="1" >
  5837. </productMenu>
  5838. <productID id="6800"
  5839. />
  5840. <productGroupable type="0"
  5841. />
  5842. </product>
  5843. <product id="SPIDER_ST1"
  5844. name="SPIDER ST1"
  5845. series="SPIDER"
  5846. latestVersion="1.2.2"
  5847. show = "-1" >
  5848. <productMenu id="protocol"
  5849. type="2" >
  5850. </productMenu>
  5851. <productMenu id="alexa"
  5852. type="0" >
  5853. </productMenu>
  5854. <productMenu id="ota"
  5855. type="0" >
  5856. </productMenu>
  5857. <productMenu id="wa"
  5858. type="0" >
  5859. </productMenu>
  5860. <productMenu id="meshIntercom"
  5861. type="20" >
  5862. </productMenu>
  5863. <productMenu id="phone"
  5864. type="1" >
  5865. </productMenu>
  5866. <productMenu id="music"
  5867. type="1" >
  5868. </productMenu>
  5869. <productMenu id="deviceSetting"
  5870. type="1"
  5871. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5872. </productMenu>
  5873. <productMenu id="quickGuide"
  5874. type="0"
  5875. url=""
  5876. size="1.12MB" >
  5877. </productMenu>
  5878. <productMenu id="userGuide"
  5879. type="1"
  5880. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5881. size="2.0MB" >
  5882. </productMenu>
  5883. <productMenu id="videoGuide"
  5884. type="1"
  5885. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5886. size="3.41MB" >
  5887. </productMenu>
  5888. <productMenu id="volume"
  5889. type="13" >
  5890. <productMenuType version="1.1.6"
  5891. type="14"/>
  5892. </productMenu>
  5893. <productMenu id="battery"
  5894. type="1" >
  5895. </productMenu>
  5896. <productID id="6510"
  5897. />
  5898. <productGroupable type="0"
  5899. />
  5900. </product>
  5901. <product id="SPIDER_RT1"
  5902. name="SPIDER RT1"
  5903. series="SPIDER"
  5904. latestVersion="2.5.2"
  5905. latestVersionVoicePrompt="1.6"
  5906. show = "1" >
  5907. <productMenu id="protocol"
  5908. type="2" >
  5909. </productMenu>
  5910. <productMenu id="alexa"
  5911. type="0" >
  5912. </productMenu>
  5913. <productMenu id="ota"
  5914. type="2" >
  5915. <productMenuType version="2.1.9"
  5916. type="0"
  5917. />
  5918. <otaPackages>
  5919. <package
  5920. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.2-build1.img"
  5921. size="2945812"
  5922. />
  5923. </otaPackages>
  5924. </productMenu>
  5925. <productMenu id="wa"
  5926. type="0" >
  5927. </productMenu>
  5928. <productMenu id="meshIntercom"
  5929. type="30" >
  5930. <productMenuType version="2.1.1"
  5931. type="20"
  5932. />
  5933. </productMenu>
  5934. <productMenu id="meshIntercom+"
  5935. type="3"
  5936. url="2" >
  5937. <productMenuType version="2.2.9"
  5938. type="2"
  5939. />
  5940. <productMenuURL version="2.1.1"
  5941. url="0"
  5942. />
  5943. </productMenu>
  5944. <productMenu id="waveIntercom"
  5945. type="1" >
  5946. <productMenuType version="2.3.9"
  5947. type="0"
  5948. />
  5949. </productMenu>
  5950. <productMenu id="phone"
  5951. type="1" >
  5952. </productMenu>
  5953. <productMenu id="music"
  5954. type="1" >
  5955. </productMenu>
  5956. <productMenu id="musicSharing"
  5957. type="0" >
  5958. </productMenu>
  5959. <productMenu id="deviceSetting"
  5960. type="1"
  5961. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5962. <productMenuURL version="2.4.9"
  5963. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5964. />
  5965. <productMenuURL version="2.2.2"
  5966. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5967. />
  5968. <productMenuURL version="2.1.1"
  5969. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5970. />
  5971. </productMenu>
  5972. <productMenu id="quickGuide"
  5973. type="0"
  5974. url=""
  5975. size="1.12MB" >
  5976. </productMenu>
  5977. <productMenu id="userGuide"
  5978. type="1"
  5979. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  5980. size="2.0MB" >
  5981. </productMenu>
  5982. <productMenu id="videoGuide"
  5983. type="1"
  5984. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5985. size="3.41MB" >
  5986. </productMenu>
  5987. <productMenu id="connectGuide"
  5988. type="1"
  5989. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  5990. size="1.12MB" >
  5991. </productMenu>
  5992. <productMenu id="volume"
  5993. type="12" >
  5994. </productMenu>
  5995. <productMenu id="battery"
  5996. type="1" >
  5997. </productMenu>
  5998. <productID id="6810"
  5999. />
  6000. <productGroupable type="0"
  6001. />
  6002. </product>
  6003. <product id="SPIDER_RT1"
  6004. name="SPIDER RT1"
  6005. series="SPIDER"
  6006. latestVersion="1.2.2"
  6007. show = "-1" >
  6008. <productMenu id="protocol"
  6009. type="2" >
  6010. </productMenu>
  6011. <productMenu id="alexa"
  6012. type="0" >
  6013. </productMenu>
  6014. <productMenu id="ota"
  6015. type="0" >
  6016. </productMenu>
  6017. <productMenu id="wa"
  6018. type="0" >
  6019. </productMenu>
  6020. <productMenu id="meshIntercom"
  6021. type="20" >
  6022. </productMenu>
  6023. <productMenu id="phone"
  6024. type="1" >
  6025. </productMenu>
  6026. <productMenu id="music"
  6027. type="1" >
  6028. </productMenu>
  6029. <productMenu id="deviceSetting"
  6030. type="1"
  6031. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6032. </productMenu>
  6033. <productMenu id="quickGuide"
  6034. type="0"
  6035. url=""
  6036. size="1.32MB" >
  6037. </productMenu>
  6038. <productMenu id="userGuide"
  6039. type="1"
  6040. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6041. size="1.79MB" >
  6042. </productMenu>
  6043. <productMenu id="videoGuide"
  6044. type="1"
  6045. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6046. size="3.41MB" >
  6047. </productMenu>
  6048. <productMenu id="volume"
  6049. type="13" >
  6050. <productMenuType version="1.1.6"
  6051. type="14"/>
  6052. </productMenu>
  6053. <productMenu id="battery"
  6054. type="1" >
  6055. </productMenu>
  6056. <productID id="6500"
  6057. />
  6058. <productGroupable type="0"
  6059. />
  6060. </product>
  6061. <product id="30K"
  6062. name="30K"
  6063. series="30"
  6064. latestVersion="4.5.1"
  6065. show = "1" >
  6066. <productMenu id="protocol"
  6067. type="2" >
  6068. </productMenu>
  6069. <productMenu id="alexa"
  6070. type="0" >
  6071. </productMenu>
  6072. <productMenu id="wa"
  6073. type="1" >
  6074. </productMenu>
  6075. <productMenu id="sip"
  6076. type="1" >
  6077. </productMenu>
  6078. <productMenu id="meshIntercom"
  6079. type="30" >
  6080. <productMenuType version="4.0.4"
  6081. type="20"
  6082. />
  6083. </productMenu>
  6084. <productMenu id="meshIntercom+"
  6085. type="3"
  6086. url="2" >
  6087. <productMenuType version="4.3.9"
  6088. type="2"
  6089. />
  6090. <productMenuURL version="4.0.4"
  6091. url="0"
  6092. />
  6093. </productMenu>
  6094. <productMenu id="waveIntercom"
  6095. type="1" >
  6096. <productMenuType version="4.4.9"
  6097. type="0"
  6098. />
  6099. </productMenu>
  6100. <productMenu id="bluetoothIntercom"
  6101. type="1" >
  6102. </productMenu>
  6103. <productMenu id="phone"
  6104. type="1" >
  6105. </productMenu>
  6106. <productMenu id="music"
  6107. type="1" >
  6108. </productMenu>
  6109. <productMenu id="fmradio"
  6110. type="1" >
  6111. </productMenu>
  6112. <productMenu id="deviceSetting"
  6113. type="1"
  6114. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6115. <productMenuURL version="4.3"
  6116. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6117. />
  6118. <productMenuURL version="4.2"
  6119. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6120. />
  6121. <productMenuURL version="4.0.4"
  6122. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6123. />
  6124. </productMenu>
  6125. <productMenu id="quickGuide"
  6126. type="0"
  6127. url=""
  6128. size="934KB" >
  6129. </productMenu>
  6130. <productMenu id="userGuide"
  6131. type="1"
  6132. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6133. size="1.14MB" >
  6134. </productMenu>
  6135. <productMenu id="connectGuide"
  6136. type="1"
  6137. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6138. size="1.12MB" >
  6139. </productMenu>
  6140. <productMenu id="volume"
  6141. type="11" >
  6142. </productMenu>
  6143. <productMenu id="battery"
  6144. type="1" >
  6145. </productMenu>
  6146. <productID id="3211"
  6147. />
  6148. <productGroupable type="0"
  6149. />
  6150. </product>
  6151. <product id="30K"
  6152. name="30K"
  6153. series="30"
  6154. latestVersion="3.5"
  6155. show = "-1" >
  6156. <productMenu id="protocol"
  6157. type="1"
  6158. url="0">
  6159. </productMenu>
  6160. <productMenu id="wa"
  6161. type="7" >
  6162. </productMenu>
  6163. <productMenu id="sip"
  6164. type="1" >
  6165. </productMenu>
  6166. <productMenu id="meshIntercom"
  6167. type="20" >
  6168. <productMenuType version="2.9.9"
  6169. type="10"
  6170. />
  6171. </productMenu>
  6172. <productMenu id="meshIntercom+"
  6173. type="3"
  6174. url="2" >
  6175. <productMenuType version="3.4.9"
  6176. type="2"
  6177. />
  6178. <productMenuType version="2.9.9"
  6179. type="1"
  6180. />
  6181. <productMenuURL version="3.3.1"
  6182. url="0"
  6183. />
  6184. </productMenu>
  6185. <productMenu id="bluetoothIntercom"
  6186. type="1" >
  6187. </productMenu>
  6188. <productMenu id="phone"
  6189. type="1" >
  6190. </productMenu>
  6191. <productMenu id="music"
  6192. type="1" >
  6193. </productMenu>
  6194. <productMenu id="fmradio"
  6195. type="1" >
  6196. </productMenu>
  6197. <productMenu id="deviceSetting"
  6198. type="1"
  6199. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6200. <productMenuURL version="3.4.9"
  6201. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6202. />
  6203. <productMenuURL version="3.3.1"
  6204. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6205. />
  6206. <productMenuURL version="3.0.1"
  6207. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6208. />
  6209. <productMenuURL version="2.3.1"
  6210. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6211. />
  6212. <productMenuURL version="2.0"
  6213. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6214. />
  6215. <productMenuURL version="1.0.3"
  6216. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6217. />
  6218. </productMenu>
  6219. <productMenu id="quickGuide"
  6220. type="0"
  6221. url=""
  6222. size="1.06MB" >
  6223. </productMenu>
  6224. <productMenu id="userGuide"
  6225. type="1"
  6226. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6227. size="3.15MB" >
  6228. </productMenu>
  6229. <productMenu id="volume"
  6230. type="1" >
  6231. </productMenu>
  6232. <productID id="3110"
  6233. />
  6234. <productGroupable type="0"
  6235. />
  6236. </product>
  6237. <product id="FURY"
  6238. name="FURY"
  6239. series="Helmet"
  6240. latestVersion="1.0"
  6241. show = "-1" >
  6242. <productMenu id="protocol"
  6243. type="2" >
  6244. </productMenu>
  6245. <productMenu id="alexa"
  6246. type="0" >
  6247. </productMenu>
  6248. <productMenu id="ota"
  6249. type="0" >
  6250. </productMenu>
  6251. <productMenu id="wa"
  6252. type="0" >
  6253. </productMenu>
  6254. <productMenu id="meshIntercom"
  6255. type="20" >
  6256. </productMenu>
  6257. <productMenu id="phone"
  6258. type="1" >
  6259. </productMenu>
  6260. <productMenu id="music"
  6261. type="1" >
  6262. </productMenu>
  6263. <productMenu id="fmradio"
  6264. type="1" >
  6265. </productMenu>
  6266. <productMenu id="deviceSetting"
  6267. type="1"
  6268. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6269. </productMenu>
  6270. <productMenu id="quickGuide"
  6271. type="1"
  6272. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6273. size="1.12MB" >
  6274. </productMenu>
  6275. <productMenu id="userGuide"
  6276. type="1"
  6277. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6278. size="2.0MB" >
  6279. </productMenu>
  6280. <productMenu id="volume"
  6281. type="13" >
  6282. </productMenu>
  6283. <productMenu id="battery"
  6284. type="1" >
  6285. </productMenu>
  6286. <productID id="5552"
  6287. />
  6288. <productGroupable type="0"
  6289. />
  6290. </product>
  6291. <product id="MomentumM"
  6292. name="Momentum EVO"
  6293. series="Helmet"
  6294. latestVersion="2.1.2"
  6295. show = "1" >
  6296. <productMenu id="protocol"
  6297. type="1"
  6298. url="0">
  6299. </productMenu>
  6300. <productMenu id="wa"
  6301. type="3" >
  6302. </productMenu>
  6303. <productMenu id="sip"
  6304. type="1" >
  6305. </productMenu>
  6306. <productMenu id="meshIntercom"
  6307. type="20" >
  6308. <productMenuType version="1.9.9"
  6309. type="10"
  6310. />
  6311. </productMenu>
  6312. <productMenu id="bluetoothIntercom"
  6313. type="1" >
  6314. </productMenu>
  6315. <productMenu id="phone"
  6316. type="1" >
  6317. </productMenu>
  6318. <productMenu id="music"
  6319. type="1" >
  6320. </productMenu>
  6321. <productMenu id="fmradio"
  6322. type="1" >
  6323. </productMenu>
  6324. <productMenu id="deviceSetting"
  6325. type="1"
  6326. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6327. <productMenuURL version="1.0.1"
  6328. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6329. />
  6330. </productMenu>
  6331. <productMenu id="quickGuide"
  6332. type="1"
  6333. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6334. size="1.06MB" >
  6335. </productMenu>
  6336. <productMenu id="userGuide"
  6337. type="1"
  6338. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6339. size="3.15MB" >
  6340. </productMenu>
  6341. <productMenu id="connectGuide"
  6342. type="1"
  6343. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6344. size="1.12MB" >
  6345. </productMenu>
  6346. <productMenu id="volume"
  6347. type="2" >
  6348. </productMenu>
  6349. <productID id="3116"
  6350. />
  6351. <productGroupable type="0"
  6352. />
  6353. </product>
  6354. <product id="Momentum"
  6355. name="Momentum"
  6356. series="Helmet"
  6357. latestVersion="1.0.9"
  6358. show = "1" >
  6359. <productMenu id="protocol"
  6360. type="0">
  6361. </productMenu>
  6362. <productMenu id="sip"
  6363. type="1" >
  6364. </productMenu>
  6365. <productMenu id="bluetoothIntercom"
  6366. type="1" >
  6367. </productMenu>
  6368. <productMenu id="intercomSetting"
  6369. type="1" >
  6370. </productMenu>
  6371. <productMenu id="phone"
  6372. type="2" >
  6373. </productMenu>
  6374. <productMenu id="fmradio"
  6375. type="3" >
  6376. </productMenu>
  6377. <productMenu id="deviceSetting"
  6378. type="1"
  6379. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6380. </productMenu>
  6381. <productMenu id="quickGuide"
  6382. type="1"
  6383. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6384. size="796KB" >
  6385. </productMenu>
  6386. <productMenu id="userGuide"
  6387. type="1"
  6388. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6389. size="1.90MB" >
  6390. </productMenu>
  6391. <productMenu id="connectGuide"
  6392. type="1"
  6393. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6394. size="1.12MB" >
  6395. </productMenu>
  6396. <productID id="4310"
  6397. />
  6398. <productGroupable type="1"
  6399. />
  6400. </product>
  6401. <product id="Momentum_Pro"
  6402. name="Momentum Pro"
  6403. series="Helmet"
  6404. latestVersion="1.0.6"
  6405. show = "1" >
  6406. <productMenu id="protocol"
  6407. type="0">
  6408. </productMenu>
  6409. <productMenu id="sip"
  6410. type="1" >
  6411. </productMenu>
  6412. <productMenu id="bluetoothIntercom"
  6413. type="1" >
  6414. </productMenu>
  6415. <productMenu id="intercomSetting"
  6416. type="1" >
  6417. </productMenu>
  6418. <productMenu id="phone"
  6419. type="2" >
  6420. </productMenu>
  6421. <productMenu id="fmradio"
  6422. type="3" >
  6423. </productMenu>
  6424. <productMenu id="deviceSetting"
  6425. type="1"
  6426. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6427. </productMenu>
  6428. <productMenu id="quickGuide"
  6429. type="1"
  6430. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6431. size="796KB" >
  6432. </productMenu>
  6433. <productMenu id="userGuide"
  6434. type="1"
  6435. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6436. size="1.90MB" >
  6437. </productMenu>
  6438. <productMenu id="connectGuide"
  6439. type="1"
  6440. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6441. size="1.12MB" >
  6442. </productMenu>
  6443. <productID id="4330"
  6444. />
  6445. <productGroupable type="1"
  6446. />
  6447. </product>
  6448. <product id="Momentum_INC"
  6449. name="Momentum INC"
  6450. series="Helmet"
  6451. latestVersion="1.0.7"
  6452. show = "1" >
  6453. <productMenu id="protocol"
  6454. type="0">
  6455. </productMenu>
  6456. <productMenu id="sip"
  6457. type="1" >
  6458. </productMenu>
  6459. <productMenu id="bluetoothIntercom"
  6460. type="1" >
  6461. </productMenu>
  6462. <productMenu id="intercomSetting"
  6463. type="1" >
  6464. </productMenu>
  6465. <productMenu id="phone"
  6466. type="2" >
  6467. </productMenu>
  6468. <productMenu id="fmradio"
  6469. type="3" >
  6470. </productMenu>
  6471. <productMenu id="deviceSetting"
  6472. type="1"
  6473. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6474. </productMenu>
  6475. <productMenu id="quickGuide"
  6476. type="1"
  6477. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6478. size="794KB" >
  6479. </productMenu>
  6480. <productMenu id="userGuide"
  6481. type="1"
  6482. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6483. size="1.53MB" >
  6484. </productMenu>
  6485. <productMenu id="connectGuide"
  6486. type="1"
  6487. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6488. size="1.12MB" >
  6489. </productMenu>
  6490. <productID id="4410"
  6491. />
  6492. <productGroupable type="1"
  6493. />
  6494. </product>
  6495. <product id="Momentum_INCP"
  6496. name="Momentum INC Pro"
  6497. series="Helmet"
  6498. latestVersion="1.0.4"
  6499. show = "1" >
  6500. <productMenu id="protocol"
  6501. type="0">
  6502. </productMenu>
  6503. <productMenu id="sip"
  6504. type="1" >
  6505. </productMenu>
  6506. <productMenu id="bluetoothIntercom"
  6507. type="1" >
  6508. </productMenu>
  6509. <productMenu id="intercomSetting"
  6510. type="1" >
  6511. </productMenu>
  6512. <productMenu id="phone"
  6513. type="2" >
  6514. </productMenu>
  6515. <productMenu id="fmradio"
  6516. type="3" >
  6517. </productMenu>
  6518. <productMenu id="deviceSetting"
  6519. type="1"
  6520. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6521. </productMenu>
  6522. <productMenu id="quickGuide"
  6523. type="1"
  6524. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6525. size="794KB" >
  6526. </productMenu>
  6527. <productMenu id="userGuide"
  6528. type="1"
  6529. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6530. size="1.53MB" >
  6531. </productMenu>
  6532. <productMenu id="connectGuide"
  6533. type="1"
  6534. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6535. size="1.12MB" >
  6536. </productMenu>
  6537. <productID id="4430"
  6538. />
  6539. <productGroupable type="1"
  6540. />
  6541. </product>
  6542. <product id="Momentum_Lite"
  6543. name="Momentum Lite"
  6544. series="Helmet"
  6545. latestVersion="2.0.3"
  6546. show = "1" >
  6547. <productMenu id="protocol"
  6548. type="0">
  6549. </productMenu>
  6550. <productMenu id="sip"
  6551. type="1" >
  6552. </productMenu>
  6553. <productMenu id="bluetoothIntercom"
  6554. type="1" >
  6555. </productMenu>
  6556. <productMenu id="phone"
  6557. type="2" >
  6558. </productMenu>
  6559. <productMenu id="fmradio"
  6560. type="3" >
  6561. </productMenu>
  6562. <productMenu id="deviceSetting"
  6563. type="1"
  6564. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6565. <productMenuURL version="1.1"
  6566. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6567. />
  6568. </productMenu>
  6569. <productMenu id="quickGuide"
  6570. type="1"
  6571. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6572. size="790KB" >
  6573. </productMenu>
  6574. <productMenu id="userGuide"
  6575. type="1"
  6576. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6577. size="1.42MB" >
  6578. </productMenu>
  6579. <productMenu id="connectGuide"
  6580. type="1"
  6581. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6582. size="1.12MB" >
  6583. </productMenu>
  6584. <productID id="5526"
  6585. />
  6586. <productGroupable type="0"
  6587. />
  6588. </product>
  6589. <product id="OUTRUSHM"
  6590. name="OUTRUSH M"
  6591. series="Helmet"
  6592. latestVersion="1.0"
  6593. show = "-1" >
  6594. <productMenu id="protocol"
  6595. type="2" >
  6596. </productMenu>
  6597. <productMenu id="alexa"
  6598. type="0" >
  6599. </productMenu>
  6600. <productMenu id="ota"
  6601. type="0" >
  6602. </productMenu>
  6603. <productMenu id="wa"
  6604. type="0" >
  6605. </productMenu>
  6606. <productMenu id="meshIntercom"
  6607. type="30" >
  6608. </productMenu>
  6609. <productMenu id="phone"
  6610. type="1" >
  6611. </productMenu>
  6612. <productMenu id="music"
  6613. type="1" >
  6614. </productMenu>
  6615. <productMenu id="fmradio"
  6616. type="1" >
  6617. </productMenu>
  6618. <productMenu id="deviceSetting"
  6619. type="1"
  6620. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6621. </productMenu>
  6622. <productMenu id="quickGuide"
  6623. type="1"
  6624. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6625. size="1.12MB" >
  6626. </productMenu>
  6627. <productMenu id="userGuide"
  6628. type="1"
  6629. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6630. size="2.0MB" >
  6631. </productMenu>
  6632. <productMenu id="volume"
  6633. type="13" >
  6634. </productMenu>
  6635. <productMenu id="battery"
  6636. type="1" >
  6637. </productMenu>
  6638. <productID id="5600"
  6639. />
  6640. <productGroupable type="0"
  6641. />
  6642. </product>
  6643. <product id="ProRideEVO"
  6644. name="ProRide EVO"
  6645. series="Helmet"
  6646. latestVersion="1.1.2"
  6647. show = "1" >
  6648. <productMenu id="protocol"
  6649. type="0">
  6650. </productMenu>
  6651. <productMenu id="sip"
  6652. type="1" >
  6653. </productMenu>
  6654. <productMenu id="bluetoothIntercom"
  6655. type="1" >
  6656. </productMenu>
  6657. <productMenu id="phone"
  6658. type="2" >
  6659. </productMenu>
  6660. <productMenu id="fmradio"
  6661. type="3" >
  6662. </productMenu>
  6663. <productMenu id="deviceSetting"
  6664. type="1"
  6665. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6666. </productMenu>
  6667. <productMenu id="userGuide"
  6668. type="1"
  6669. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6670. size="778KB" >
  6671. </productMenu>
  6672. <productMenu id="connectGuide"
  6673. type="1"
  6674. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6675. size="1.12MB" >
  6676. </productMenu>
  6677. <productID id="5426"
  6678. />
  6679. <productGroupable type="0"
  6680. />
  6681. </product>
  6682. <product id="OUTRUSHR"
  6683. name="OUTRUSH R"
  6684. series="Helmet"
  6685. latestVersion="2.1"
  6686. show = "1" >
  6687. <productMenu id="protocol"
  6688. type="3" >
  6689. </productMenu>
  6690. <productMenu id="sip"
  6691. type="1" >
  6692. </productMenu>
  6693. <productMenu id="bluetoothIntercom"
  6694. type="1" >
  6695. </productMenu>
  6696. <productMenu id="phone"
  6697. type="1" >
  6698. </productMenu>
  6699. <productMenu id="fmradio"
  6700. type="0" >
  6701. </productMenu>
  6702. <productMenu id="deviceSetting"
  6703. type="1"
  6704. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6705. </productMenu>
  6706. <productMenu id="userGuide"
  6707. type="1"
  6708. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6709. size="1.14MB" >
  6710. </productMenu>
  6711. <productMenu id="connectGuide"
  6712. type="1"
  6713. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6714. size="1.12MB" >
  6715. </productMenu>
  6716. <productID id="5440"
  6717. />
  6718. <productGroupable type="0"
  6719. />
  6720. </product>
  6721. <product id="OUTRUSHR"
  6722. name="OUTRUSH R"
  6723. series="Helmet"
  6724. latestVersion="1.1.4"
  6725. show = "-1" >
  6726. <productMenu id="protocol"
  6727. type="0">
  6728. </productMenu>
  6729. <productMenu id="sip"
  6730. type="1" >
  6731. </productMenu>
  6732. <productMenu id="bluetoothIntercom"
  6733. type="1" >
  6734. </productMenu>
  6735. <productMenu id="phone"
  6736. type="2" >
  6737. </productMenu>
  6738. <productMenu id="fmradio"
  6739. type="3" >
  6740. </productMenu>
  6741. <productMenu id="deviceSetting"
  6742. type="1"
  6743. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6744. </productMenu>
  6745. <productMenu id="userGuide"
  6746. type="1"
  6747. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6748. size="660KB" >
  6749. </productMenu>
  6750. <productMenu id="connectGuide"
  6751. type="1"
  6752. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6753. size="1.12MB" >
  6754. </productMenu>
  6755. <productID id="5424"
  6756. />
  6757. <productGroupable type="0"
  6758. />
  6759. </product>
  6760. <product id="OUTSTARS"
  6761. name="OUTSTAR S"
  6762. series="Helmet"
  6763. latestVersion="2.0.1"
  6764. show = "-1" >
  6765. <productMenu id="protocol"
  6766. type="3" >
  6767. </productMenu>
  6768. <productMenu id="sip"
  6769. type="1" >
  6770. </productMenu>
  6771. <productMenu id="bluetoothIntercom"
  6772. type="1" >
  6773. </productMenu>
  6774. <productMenu id="phone"
  6775. type="1" >
  6776. </productMenu>
  6777. <productMenu id="fmradio"
  6778. type="0" >
  6779. </productMenu>
  6780. <productMenu id="deviceSetting"
  6781. type="1"
  6782. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6783. </productMenu>
  6784. <productMenu id="userGuide"
  6785. type="0"
  6786. url=""
  6787. size="1.14MB" >
  6788. </productMenu>
  6789. <productID id="5443"
  6790. />
  6791. <productGroupable type="0"
  6792. />
  6793. </product>
  6794. <product id="OUTSTARS"
  6795. name="OUTSTAR S"
  6796. series="Helmet"
  6797. latestVersion="1.1.4"
  6798. show = "1" >
  6799. <productMenu id="protocol"
  6800. type="0">
  6801. </productMenu>
  6802. <productMenu id="sip"
  6803. type="1" >
  6804. </productMenu>
  6805. <productMenu id="bluetoothIntercom"
  6806. type="1" >
  6807. </productMenu>
  6808. <productMenu id="phone"
  6809. type="2" >
  6810. </productMenu>
  6811. <productMenu id="fmradio"
  6812. type="3" >
  6813. </productMenu>
  6814. <productMenu id="deviceSetting"
  6815. type="1"
  6816. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6817. </productMenu>
  6818. <productMenu id="quickGuide"
  6819. type="1"
  6820. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6821. size="643KB" >
  6822. </productMenu>
  6823. <productMenu id="userGuide"
  6824. type="1"
  6825. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6826. size="1.15MB" >
  6827. </productMenu>
  6828. <productMenu id="connectGuide"
  6829. type="1"
  6830. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6831. size="1.12MB" >
  6832. </productMenu>
  6833. <productID id="5428"
  6834. />
  6835. <productGroupable type="0"
  6836. />
  6837. </product>
  6838. <product id="OUTRIDE"
  6839. name="OUTRIDE"
  6840. series="Helmet"
  6841. latestVersion="1.0.1"
  6842. show = "1" >
  6843. <productMenu id="protocol"
  6844. type="0">
  6845. </productMenu>
  6846. <productMenu id="sip"
  6847. type="1" >
  6848. </productMenu>
  6849. <productMenu id="bluetoothIntercom"
  6850. type="1" >
  6851. </productMenu>
  6852. <productMenu id="phone"
  6853. type="2" >
  6854. </productMenu>
  6855. <productMenu id="fmradio"
  6856. type="3" >
  6857. </productMenu>
  6858. <productMenu id="deviceSetting"
  6859. type="1"
  6860. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6861. </productMenu>
  6862. <productMenu id="quickGuide"
  6863. type="1"
  6864. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6865. size="643KB" >
  6866. </productMenu>
  6867. <productMenu id="userGuide"
  6868. type="1"
  6869. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6870. size="660KB" >
  6871. </productMenu>
  6872. <productMenu id="connectGuide"
  6873. type="1"
  6874. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6875. size="1.12MB" >
  6876. </productMenu>
  6877. <productID id="5432"
  6878. />
  6879. <productGroupable type="0"
  6880. />
  6881. </product>
  6882. <product id="OUTFORCE"
  6883. name="OUTFORCE"
  6884. series="Helmet"
  6885. latestVersion="1.0.1"
  6886. show = "1" >
  6887. <productMenu id="protocol"
  6888. type="0">
  6889. </productMenu>
  6890. <productMenu id="sip"
  6891. type="1" >
  6892. </productMenu>
  6893. <productMenu id="bluetoothIntercom"
  6894. type="1" >
  6895. </productMenu>
  6896. <productMenu id="phone"
  6897. type="2" >
  6898. </productMenu>
  6899. <productMenu id="fmradio"
  6900. type="3" >
  6901. </productMenu>
  6902. <productMenu id="deviceSetting"
  6903. type="1"
  6904. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6905. </productMenu>
  6906. <productMenu id="quickGuide"
  6907. type="1"
  6908. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6909. size="643KB" >
  6910. </productMenu>
  6911. <productMenu id="userGuide"
  6912. type="1"
  6913. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6914. size="660KB" >
  6915. </productMenu>
  6916. <productMenu id="connectGuide"
  6917. type="1"
  6918. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6919. size="1.12MB" >
  6920. </productMenu>
  6921. <productID id="5430"
  6922. />
  6923. <productGroupable type="0"
  6924. />
  6925. </product>
  6926. <product id="Rumba"
  6927. name="Rumba"
  6928. series="30"
  6929. latestVersion="2.0"
  6930. show = "-1" >
  6931. <productMenu id="protocol"
  6932. type="3" >
  6933. </productMenu>
  6934. <productMenu id="sip"
  6935. type="1" >
  6936. </productMenu>
  6937. <productMenu id="bluetoothIntercom"
  6938. type="1" >
  6939. </productMenu>
  6940. <productMenu id="deviceSetting"
  6941. type="1"
  6942. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  6943. </productMenu>
  6944. <productMenu id="quickGuide"
  6945. type="1"
  6946. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  6947. size="344KB" >
  6948. </productMenu>
  6949. <productMenu id="userGuide"
  6950. type="1"
  6951. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  6952. size="1.14MB" >
  6953. </productMenu>
  6954. <productID id="6322"
  6955. />
  6956. <productGroupable type="0"
  6957. />
  6958. </product>
  6959. <product id="Savage"
  6960. name="Savage"
  6961. series="Helmet"
  6962. latestVersion="1.2.2"
  6963. show = "1" >
  6964. <productMenu id="protocol"
  6965. type="0">
  6966. </productMenu>
  6967. <productMenu id="sip"
  6968. type="1" >
  6969. </productMenu>
  6970. <productMenu id="bluetoothIntercom"
  6971. type="1" >
  6972. </productMenu>
  6973. <productMenu id="phone"
  6974. type="2" >
  6975. </productMenu>
  6976. <productMenu id="fmradio"
  6977. type="3" >
  6978. </productMenu>
  6979. <productMenu id="deviceSetting"
  6980. type="1"
  6981. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  6982. <productMenuURL version="1.9"
  6983. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  6984. />
  6985. <productMenuURL version="1.1"
  6986. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  6987. />
  6988. </productMenu>
  6989. <productMenu id="quickGuide"
  6990. type="1"
  6991. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  6992. size="796KB" >
  6993. </productMenu>
  6994. <productMenu id="userGuide"
  6995. type="1"
  6996. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  6997. size="910KB" >
  6998. </productMenu>
  6999. <productMenu id="connectGuide"
  7000. type="1"
  7001. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7002. size="1.12MB" >
  7003. </productMenu>
  7004. <productID id="5550"
  7005. />
  7006. <productGroupable type="0"
  7007. />
  7008. </product>
  7009. <product id="SPECTER"
  7010. name="SPECTER"
  7011. series="Helmet"
  7012. latestVersion="1.0.7"
  7013. latestVersionVoicePrompt="1.5"
  7014. show = "1" >
  7015. <productMenu id="protocol"
  7016. type="2" >
  7017. </productMenu>
  7018. <productMenu id="ota"
  7019. type="2" >
  7020. <otaLanguages>
  7021. <otaLanguage
  7022. id="0"
  7023. name="English"
  7024. package="0"
  7025. />
  7026. <otaLanguage
  7027. id="0"
  7028. name="French"
  7029. package="1"
  7030. />
  7031. <otaLanguage
  7032. id="0"
  7033. name="Spanish"
  7034. package="2"
  7035. />
  7036. <otaLanguage
  7037. id="0"
  7038. name="Italian"
  7039. package="3"
  7040. />
  7041. <otaLanguage
  7042. id="0"
  7043. name="German"
  7044. package="4"
  7045. />
  7046. <otaLanguage
  7047. id="0"
  7048. name="Dutch"
  7049. package="5"
  7050. />
  7051. <otaLanguage
  7052. id="0"
  7053. name="Russian"
  7054. package="6"
  7055. />
  7056. <otaLanguage
  7057. id="0"
  7058. name="Chinese"
  7059. package="7"
  7060. />
  7061. <otaLanguage
  7062. id="0"
  7063. name="Korean"
  7064. package="8"
  7065. />
  7066. <otaLanguage
  7067. id="0"
  7068. name="Japanese"
  7069. package="9"
  7070. />
  7071. <otaLanguage
  7072. id="0"
  7073. name="Finnish"
  7074. package="10"
  7075. />
  7076. <otaLanguage
  7077. id="0"
  7078. name="Polish"
  7079. package="11"
  7080. />
  7081. </otaLanguages>
  7082. <otaPackages>
  7083. <package
  7084. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1.img"
  7085. size="5183988"
  7086. />
  7087. <package
  7088. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-fr-FR.img"
  7089. size="5183988"
  7090. />
  7091. <package
  7092. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-es-ES.img"
  7093. size="5183988"
  7094. />
  7095. <package
  7096. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-it-IT.img"
  7097. size="5183988"
  7098. />
  7099. <package
  7100. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-de-DE.img"
  7101. size="5183988"
  7102. />
  7103. <package
  7104. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-nl-NL.img"
  7105. size="5183988"
  7106. />
  7107. <package
  7108. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ru-RU.img"
  7109. size="5183988"
  7110. />
  7111. <package
  7112. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-cmn-CN.img"
  7113. size="5183988"
  7114. />
  7115. <package
  7116. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ko-KR.img"
  7117. size="5183988"
  7118. />
  7119. <package
  7120. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ja-JP.img"
  7121. size="5183988"
  7122. />
  7123. <package
  7124. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-fi-FI.img"
  7125. size="5183988"
  7126. />
  7127. <package
  7128. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-pl-PL.img"
  7129. size="5183988"
  7130. />
  7131. </otaPackages>
  7132. </productMenu>
  7133. <productMenu id="wa"
  7134. type="0" >
  7135. </productMenu>
  7136. <productMenu id="led"
  7137. type="5" >
  7138. </productMenu>
  7139. <productMenu id="led+"
  7140. type="2"
  7141. url="1" >
  7142. </productMenu>
  7143. <productMenu id="meshIntercom+"
  7144. type="3"
  7145. url="2" >
  7146. </productMenu>
  7147. <productMenu id="waveIntercom"
  7148. type="1" >
  7149. </productMenu>
  7150. <productMenu id="fmradio"
  7151. type="0" >
  7152. </productMenu>
  7153. <productMenu id="phone"
  7154. type="1" >
  7155. </productMenu>
  7156. <productMenu id="music"
  7157. type="1" >
  7158. </productMenu>
  7159. <productMenu id="musicSharing"
  7160. type="0" >
  7161. </productMenu>
  7162. <productMenu id="deviceSetting"
  7163. type="1"
  7164. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7165. <productMenuURL version="1.0.4"
  7166. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7167. />
  7168. </productMenu>
  7169. <productMenu id="quickGuide"
  7170. type="0"
  7171. url=""
  7172. size="1.12MB" >
  7173. </productMenu>
  7174. <productMenu id="userGuide"
  7175. type="1"
  7176. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7177. size="2.0MB" >
  7178. </productMenu>
  7179. <productMenu id="videoGuide"
  7180. type="0"
  7181. url=""
  7182. size="3.41MB" >
  7183. </productMenu>
  7184. <productMenu id="volume"
  7185. type="16" >
  7186. </productMenu>
  7187. <productMenu id="volume+"
  7188. type="2"
  7189. url="0x6004" >
  7190. </productMenu>
  7191. <productMenu id="battery"
  7192. type="1" >
  7193. </productMenu>
  7194. <productID id="6A11"
  7195. />
  7196. <productGroupable type="0"
  7197. />
  7198. </product>
  7199. <product id="SPECTER"
  7200. name="SPECTER"
  7201. series="Helmet"
  7202. latestVersion="1.0.7"
  7203. latestVersionVoicePrompt="1.5"
  7204. show = "-1" >
  7205. <productMenu id="protocol"
  7206. type="2" >
  7207. </productMenu>
  7208. <productMenu id="ota"
  7209. type="2" >
  7210. <otaLanguages>
  7211. <otaLanguage
  7212. id="0"
  7213. name="English"
  7214. package="0"
  7215. />
  7216. <otaLanguage
  7217. id="0"
  7218. name="French"
  7219. package="1"
  7220. />
  7221. <otaLanguage
  7222. id="0"
  7223. name="Spanish"
  7224. package="2"
  7225. />
  7226. <otaLanguage
  7227. id="0"
  7228. name="Italian"
  7229. package="3"
  7230. />
  7231. <otaLanguage
  7232. id="0"
  7233. name="German"
  7234. package="4"
  7235. />
  7236. <otaLanguage
  7237. id="0"
  7238. name="Dutch"
  7239. package="5"
  7240. />
  7241. <otaLanguage
  7242. id="0"
  7243. name="Russian"
  7244. package="6"
  7245. />
  7246. <otaLanguage
  7247. id="0"
  7248. name="Chinese"
  7249. package="7"
  7250. />
  7251. <otaLanguage
  7252. id="0"
  7253. name="Korean"
  7254. package="8"
  7255. />
  7256. <otaLanguage
  7257. id="0"
  7258. name="Japanese"
  7259. package="9"
  7260. />
  7261. <otaLanguage
  7262. id="0"
  7263. name="Finnish"
  7264. package="10"
  7265. />
  7266. <otaLanguage
  7267. id="0"
  7268. name="Polish"
  7269. package="11"
  7270. />
  7271. </otaLanguages>
  7272. <otaPackages>
  7273. <package
  7274. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1.img"
  7275. size="5183988"
  7276. />
  7277. <package
  7278. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-fr-FR.img"
  7279. size="5183988"
  7280. />
  7281. <package
  7282. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-es-ES.img"
  7283. size="5183988"
  7284. />
  7285. <package
  7286. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-it-IT.img"
  7287. size="5183988"
  7288. />
  7289. <package
  7290. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-de-DE.img"
  7291. size="5183988"
  7292. />
  7293. <package
  7294. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-nl-NL.img"
  7295. size="5183988"
  7296. />
  7297. <package
  7298. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ru-RU.img"
  7299. size="5183988"
  7300. />
  7301. <package
  7302. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-cmn-CN.img"
  7303. size="5183988"
  7304. />
  7305. <package
  7306. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ko-KR.img"
  7307. size="5183988"
  7308. />
  7309. <package
  7310. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ja-JP.img"
  7311. size="5183988"
  7312. />
  7313. <package
  7314. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-fi-FI.img"
  7315. size="5183988"
  7316. />
  7317. <package
  7318. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-pl-PL.img"
  7319. size="5183988"
  7320. />
  7321. </otaPackages>
  7322. </productMenu>
  7323. <productMenu id="wa"
  7324. type="0" >
  7325. </productMenu>
  7326. <productMenu id="led"
  7327. type="5" >
  7328. </productMenu>
  7329. <productMenu id="led+"
  7330. type="2"
  7331. url="1" >
  7332. </productMenu>
  7333. <productMenu id="meshIntercom+"
  7334. type="3"
  7335. url="2" >
  7336. </productMenu>
  7337. <productMenu id="waveIntercom"
  7338. type="1" >
  7339. </productMenu>
  7340. <productMenu id="fmradio"
  7341. type="0" >
  7342. </productMenu>
  7343. <productMenu id="phone"
  7344. type="1" >
  7345. </productMenu>
  7346. <productMenu id="music"
  7347. type="1" >
  7348. </productMenu>
  7349. <productMenu id="musicSharing"
  7350. type="0" >
  7351. </productMenu>
  7352. <productMenu id="deviceSetting"
  7353. type="1"
  7354. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7355. <productMenuURL version="1.0.4"
  7356. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7357. />
  7358. <productMenuURL version="1.0"
  7359. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7360. />
  7361. </productMenu>
  7362. <productMenu id="quickGuide"
  7363. type="0"
  7364. url=""
  7365. size="1.12MB" >
  7366. </productMenu>
  7367. <productMenu id="userGuide"
  7368. type="1"
  7369. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7370. size="2.0MB" >
  7371. </productMenu>
  7372. <productMenu id="videoGuide"
  7373. type="0"
  7374. url=""
  7375. size="3.41MB" >
  7376. </productMenu>
  7377. <productMenu id="volume"
  7378. type="16" >
  7379. </productMenu>
  7380. <productMenu id="volume+"
  7381. type="2"
  7382. url="0x6004" >
  7383. </productMenu>
  7384. <productMenu id="battery"
  7385. type="1" >
  7386. </productMenu>
  7387. <productID id="6A0A"
  7388. />
  7389. <productGroupable type="0"
  7390. />
  7391. </product>
  7392. <product id="OUTLANDER"
  7393. name="OUTLANDER"
  7394. series="Helmet"
  7395. latestVersion="1.0.7"
  7396. latestVersionVoicePrompt="1.5"
  7397. show = "1" >
  7398. <productMenu id="protocol"
  7399. type="2" >
  7400. </productMenu>
  7401. <productMenu id="ota"
  7402. type="2" >
  7403. <otaLanguages>
  7404. <otaLanguage
  7405. id="0"
  7406. name="English"
  7407. package="0"
  7408. />
  7409. <otaLanguage
  7410. id="0"
  7411. name="French"
  7412. package="1"
  7413. />
  7414. <otaLanguage
  7415. id="0"
  7416. name="Spanish"
  7417. package="2"
  7418. />
  7419. <otaLanguage
  7420. id="0"
  7421. name="Italian"
  7422. package="3"
  7423. />
  7424. <otaLanguage
  7425. id="0"
  7426. name="German"
  7427. package="4"
  7428. />
  7429. <otaLanguage
  7430. id="0"
  7431. name="Dutch"
  7432. package="5"
  7433. />
  7434. <otaLanguage
  7435. id="0"
  7436. name="Russian"
  7437. package="6"
  7438. />
  7439. <otaLanguage
  7440. id="0"
  7441. name="Chinese"
  7442. package="7"
  7443. />
  7444. <otaLanguage
  7445. id="0"
  7446. name="Korean"
  7447. package="8"
  7448. />
  7449. <otaLanguage
  7450. id="0"
  7451. name="Japanese"
  7452. package="9"
  7453. />
  7454. <otaLanguage
  7455. id="0"
  7456. name="Finnish"
  7457. package="10"
  7458. />
  7459. <otaLanguage
  7460. id="0"
  7461. name="Polish"
  7462. package="11"
  7463. />
  7464. </otaLanguages>
  7465. <otaPackages>
  7466. <package
  7467. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1.img"
  7468. size="5183988"
  7469. />
  7470. <package
  7471. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-fr-FR.img"
  7472. size="5183988"
  7473. />
  7474. <package
  7475. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-es-ES.img"
  7476. size="5183988"
  7477. />
  7478. <package
  7479. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-it-IT.img"
  7480. size="5183988"
  7481. />
  7482. <package
  7483. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-de-DE.img"
  7484. size="5183988"
  7485. />
  7486. <package
  7487. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-nl-NL.img"
  7488. size="5183988"
  7489. />
  7490. <package
  7491. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ru-RU.img"
  7492. size="5183988"
  7493. />
  7494. <package
  7495. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-cmn-CN.img"
  7496. size="5183988"
  7497. />
  7498. <package
  7499. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ko-KR.img"
  7500. size="5183988"
  7501. />
  7502. <package
  7503. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ja-JP.img"
  7504. size="5183988"
  7505. />
  7506. <package
  7507. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-fi-FI.img"
  7508. size="5183988"
  7509. />
  7510. <package
  7511. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-pl-PL.img"
  7512. size="5183988"
  7513. />
  7514. </otaPackages>
  7515. </productMenu>
  7516. <productMenu id="wa"
  7517. type="0" >
  7518. </productMenu>
  7519. <productMenu id="led"
  7520. type="5" >
  7521. </productMenu>
  7522. <productMenu id="led+"
  7523. type="2"
  7524. url="1" >
  7525. </productMenu>
  7526. <productMenu id="meshIntercom+"
  7527. type="3"
  7528. url="2" >
  7529. </productMenu>
  7530. <productMenu id="waveIntercom"
  7531. type="1" >
  7532. </productMenu>
  7533. <productMenu id="fmradio"
  7534. type="0" >
  7535. </productMenu>
  7536. <productMenu id="phone"
  7537. type="1" >
  7538. </productMenu>
  7539. <productMenu id="music"
  7540. type="1" >
  7541. </productMenu>
  7542. <productMenu id="musicSharing"
  7543. type="0" >
  7544. </productMenu>
  7545. <productMenu id="deviceSetting"
  7546. type="1"
  7547. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml" >
  7548. <productMenuURL version="1.0.4"
  7549. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7550. />
  7551. </productMenu>
  7552. <productMenu id="quickGuide"
  7553. type="0"
  7554. url=""
  7555. size="1.12MB" >
  7556. </productMenu>
  7557. <productMenu id="userGuide"
  7558. type="1"
  7559. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7560. size="2.0MB" >
  7561. </productMenu>
  7562. <productMenu id="videoGuide"
  7563. type="0"
  7564. url=""
  7565. size="3.41MB" >
  7566. </productMenu>
  7567. <productMenu id="volume"
  7568. type="16" >
  7569. </productMenu>
  7570. <productMenu id="volume+"
  7571. type="2"
  7572. url="0x6004" >
  7573. </productMenu>
  7574. <productMenu id="battery"
  7575. type="1" >
  7576. </productMenu>
  7577. <productID id="6A05"
  7578. />
  7579. <productGroupable type="0"
  7580. />
  7581. </product>
  7582. <product id="OUTRUSH2"
  7583. name="OUTRUSH 2"
  7584. series="Helmet"
  7585. latestVersion="1.0.2"
  7586. latestVersionVoicePrompt="1.1"
  7587. show = "1" >
  7588. <productMenu id="protocol"
  7589. type="2" >
  7590. </productMenu>
  7591. <productMenu id="alexa"
  7592. type="0" >
  7593. </productMenu>
  7594. <productMenu id="ota"
  7595. type="2" >
  7596. <otaPackages>
  7597. <package
  7598. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  7599. size="2945812"
  7600. />
  7601. </otaPackages>
  7602. </productMenu>
  7603. <productMenu id="meshIntercom+"
  7604. type="3"
  7605. url="2" >
  7606. </productMenu>
  7607. <productMenu id="waveIntercom"
  7608. type="1" >
  7609. </productMenu>
  7610. <productMenu id="phone"
  7611. type="1" >
  7612. </productMenu>
  7613. <productMenu id="music"
  7614. type="1" >
  7615. </productMenu>
  7616. <productMenu id="musicSharing"
  7617. type="0" >
  7618. </productMenu>
  7619. <productMenu id="deviceSetting"
  7620. type="1"
  7621. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7622. <productMenuURL version="1.0"
  7623. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  7624. />
  7625. </productMenu>
  7626. <productMenu id="quickGuide"
  7627. type="0"
  7628. url=""
  7629. size="1.12MB" >
  7630. </productMenu>
  7631. <productMenu id="userGuide"
  7632. type="1"
  7633. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  7634. size="2.0MB" >
  7635. </productMenu>
  7636. <productMenu id="volume"
  7637. type="12" >
  7638. </productMenu>
  7639. <productMenu id="battery"
  7640. type="1" >
  7641. </productMenu>
  7642. <productID id="684A"
  7643. />
  7644. <productGroupable type="0"
  7645. />
  7646. </product>
  7647. <product id="OUTSTAR2"
  7648. name="OUTSTAR 2"
  7649. series="Helmet"
  7650. latestVersion="1.0.1"
  7651. latestVersionVoicePrompt="1.1"
  7652. show = "1" >
  7653. <productMenu id="protocol"
  7654. type="2" >
  7655. </productMenu>
  7656. <productMenu id="alexa"
  7657. type="0" >
  7658. </productMenu>
  7659. <productMenu id="ota"
  7660. type="2" >
  7661. <otaPackages>
  7662. <package
  7663. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.1-build0.img"
  7664. size="2945812"
  7665. />
  7666. </otaPackages>
  7667. </productMenu>
  7668. <productMenu id="meshIntercom+"
  7669. type="3"
  7670. url="2" >
  7671. </productMenu>
  7672. <productMenu id="waveIntercom"
  7673. type="1" >
  7674. </productMenu>
  7675. <productMenu id="phone"
  7676. type="1" >
  7677. </productMenu>
  7678. <productMenu id="music"
  7679. type="1" >
  7680. </productMenu>
  7681. <productMenu id="musicSharing"
  7682. type="0" >
  7683. </productMenu>
  7684. <productMenu id="deviceSetting"
  7685. type="1"
  7686. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7687. </productMenu>
  7688. <productMenu id="quickGuide"
  7689. type="0"
  7690. url=""
  7691. size="1.12MB" >
  7692. </productMenu>
  7693. <productMenu id="userGuide"
  7694. type="1"
  7695. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  7696. size="2.0MB" >
  7697. </productMenu>
  7698. <productMenu id="volume"
  7699. type="12" >
  7700. </productMenu>
  7701. <productMenu id="battery"
  7702. type="1" >
  7703. </productMenu>
  7704. <productID id="684B"
  7705. />
  7706. <productGroupable type="0"
  7707. />
  7708. </product>
  7709. <product id="SURGE"
  7710. name="SURGE"
  7711. series="Helmet"
  7712. latestVersion="1.2"
  7713. latestVersionVoicePrompt="1.3"
  7714. show = "1" >
  7715. <productMenu id="protocol"
  7716. type="2" >
  7717. </productMenu>
  7718. <productMenu id="alexa"
  7719. type="0" >
  7720. </productMenu>
  7721. <productMenu id="ota"
  7722. type="2" >
  7723. <otaPackages>
  7724. <package
  7725. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  7726. size="2945812"
  7727. />
  7728. </otaPackages>
  7729. </productMenu>
  7730. <productMenu id="meshIntercom"
  7731. type="30" >
  7732. </productMenu>
  7733. <productMenu id="meshIntercom+"
  7734. type="3"
  7735. url="2" >
  7736. <productMenuType version="1.0.1"
  7737. type="2"
  7738. />
  7739. </productMenu>
  7740. <productMenu id="waveIntercom"
  7741. type="1" >
  7742. <productMenuType version="1.0.9"
  7743. type="0"
  7744. />
  7745. </productMenu>
  7746. <productMenu id="phone"
  7747. type="1" >
  7748. </productMenu>
  7749. <productMenu id="music"
  7750. type="1" >
  7751. </productMenu>
  7752. <productMenu id="musicSharing"
  7753. type="0" >
  7754. </productMenu>
  7755. <productMenu id="deviceSetting"
  7756. type="1"
  7757. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  7758. <productMenuURL version="1.1.9"
  7759. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  7760. />
  7761. <productMenuURL version="1.0.1"
  7762. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  7763. />
  7764. </productMenu>
  7765. <productMenu id="quickGuide"
  7766. type="0"
  7767. url=""
  7768. size="1.12MB" >
  7769. </productMenu>
  7770. <productMenu id="userGuide"
  7771. type="1"
  7772. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  7773. size="2.0MB" >
  7774. </productMenu>
  7775. <productMenu id="volume"
  7776. type="12" >
  7777. </productMenu>
  7778. <productMenu id="battery"
  7779. type="1" >
  7780. </productMenu>
  7781. <productID id="6840"
  7782. />
  7783. <productGroupable type="0"
  7784. />
  7785. </product>
  7786. <product id="Cavalry2"
  7787. name="Cavalry 2"
  7788. series="Helmet"
  7789. latestVersion="1.2"
  7790. latestVersionVoicePrompt="1.3"
  7791. show = "1" >
  7792. <productMenu id="protocol"
  7793. type="2" >
  7794. </productMenu>
  7795. <productMenu id="alexa"
  7796. type="0" >
  7797. </productMenu>
  7798. <productMenu id="ota"
  7799. type="2" >
  7800. <otaPackages>
  7801. <package
  7802. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  7803. size="3144148"
  7804. />
  7805. </otaPackages>
  7806. </productMenu>
  7807. <productMenu id="wa"
  7808. type="0" >
  7809. </productMenu>
  7810. <productMenu id="meshIntercom"
  7811. type="30" >
  7812. </productMenu>
  7813. <productMenu id="meshIntercom+"
  7814. type="3"
  7815. url="2" >
  7816. <productMenuType version="1.0"
  7817. type="2"
  7818. />
  7819. </productMenu>
  7820. <productMenu id="waveIntercom"
  7821. type="1" >
  7822. <productMenuType version="1.0.9"
  7823. type="0"
  7824. />
  7825. </productMenu>
  7826. <productMenu id="phone"
  7827. type="1" >
  7828. </productMenu>
  7829. <productMenu id="music"
  7830. type="1" >
  7831. </productMenu>
  7832. <productMenu id="musicSharing"
  7833. type="0" >
  7834. </productMenu>
  7835. <productMenu id="deviceSetting"
  7836. type="1"
  7837. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  7838. <productMenuURL version="1.1.9"
  7839. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  7840. />
  7841. <productMenuURL version="1.0"
  7842. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  7843. />
  7844. </productMenu>
  7845. <productMenu id="quickGuide"
  7846. type="0"
  7847. url=""
  7848. size="1.12MB" >
  7849. </productMenu>
  7850. <productMenu id="userGuide"
  7851. type="1"
  7852. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  7853. size="2.0MB" >
  7854. </productMenu>
  7855. <productMenu id="connectGuide"
  7856. type="1"
  7857. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  7858. size="1.12MB" >
  7859. </productMenu>
  7860. <productMenu id="volume"
  7861. type="12" >
  7862. </productMenu>
  7863. <productMenu id="battery"
  7864. type="1" >
  7865. </productMenu>
  7866. <productID id="6839"
  7867. />
  7868. <productGroupable type="0"
  7869. />
  7870. </product>
  7871. <product id="Cavalry"
  7872. name="Cavalry"
  7873. series="Helmet"
  7874. latestVersion="1.2.2"
  7875. show = "1" >
  7876. <productMenu id="protocol"
  7877. type="0">
  7878. </productMenu>
  7879. <productMenu id="sip"
  7880. type="1" >
  7881. </productMenu>
  7882. <productMenu id="bluetoothIntercom"
  7883. type="1" >
  7884. </productMenu>
  7885. <productMenu id="phone"
  7886. type="2" >
  7887. </productMenu>
  7888. <productMenu id="fmradio"
  7889. type="3" >
  7890. </productMenu>
  7891. <productMenu id="deviceSetting"
  7892. type="1"
  7893. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  7894. <productMenuURL version="1.9"
  7895. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  7896. />
  7897. <productMenuURL version="1.0.1"
  7898. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  7899. />
  7900. </productMenu>
  7901. <productMenu id="quickGuide"
  7902. type="1"
  7903. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  7904. size="795KB" >
  7905. </productMenu>
  7906. <productMenu id="userGuide"
  7907. type="1"
  7908. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  7909. size="1.87MB" >
  7910. </productMenu>
  7911. <productMenu id="connectGuide"
  7912. type="1"
  7913. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7914. size="1.12MB" >
  7915. </productMenu>
  7916. <productID id="5524"
  7917. />
  7918. <productGroupable type="0"
  7919. />
  7920. </product>
  7921. <product id="Cavalry_Lite"
  7922. name="Cavalry Lite"
  7923. series="Helmet"
  7924. latestVersion="1.0.2"
  7925. show = "1" >
  7926. <productMenu id="protocol"
  7927. type="0">
  7928. </productMenu>
  7929. <productMenu id="sip"
  7930. type="1" >
  7931. </productMenu>
  7932. <productMenu id="bluetoothIntercom"
  7933. type="1" >
  7934. </productMenu>
  7935. <productMenu id="phone"
  7936. type="2" >
  7937. </productMenu>
  7938. <productMenu id="fmradio"
  7939. type="3" >
  7940. </productMenu>
  7941. <productMenu id="deviceSetting"
  7942. type="1"
  7943. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7944. </productMenu>
  7945. <productMenu id="userGuide"
  7946. type="1"
  7947. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  7948. size="1.74MB" >
  7949. </productMenu>
  7950. <productMenu id="connectGuide"
  7951. type="1"
  7952. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7953. size="1.12MB" >
  7954. </productMenu>
  7955. <productID id="5536"
  7956. />
  7957. <productGroupable type="0"
  7958. />
  7959. </product>
  7960. <product id="VORTEX"
  7961. name="VORTEX"
  7962. series="VORTEX"
  7963. latestVersion="1.0"
  7964. latestVersionVoicePrompt="1.0"
  7965. show = "-1" >
  7966. <productMenu id="protocol"
  7967. type="2" >
  7968. </productMenu>
  7969. <productMenu id="ota"
  7970. type="2" >
  7971. <otaLanguages>
  7972. <otaLanguage
  7973. id="0"
  7974. name="English"
  7975. package="0"
  7976. />
  7977. <otaLanguage
  7978. id="0"
  7979. name="French"
  7980. package="1"
  7981. />
  7982. <otaLanguage
  7983. id="0"
  7984. name="Spanish"
  7985. package="2"
  7986. />
  7987. <otaLanguage
  7988. id="0"
  7989. name="Italian"
  7990. package="3"
  7991. />
  7992. <otaLanguage
  7993. id="0"
  7994. name="German"
  7995. package="4"
  7996. />
  7997. <otaLanguage
  7998. id="0"
  7999. name="Dutch"
  8000. package="5"
  8001. />
  8002. <otaLanguage
  8003. id="0"
  8004. name="Russian"
  8005. package="6"
  8006. />
  8007. <otaLanguage
  8008. id="0"
  8009. name="Chinese"
  8010. package="7"
  8011. />
  8012. <otaLanguage
  8013. id="0"
  8014. name="Korean"
  8015. package="8"
  8016. />
  8017. <otaLanguage
  8018. id="0"
  8019. name="Japanese"
  8020. package="9"
  8021. />
  8022. <otaLanguage
  8023. id="0"
  8024. name="Finnish"
  8025. package="10"
  8026. />
  8027. <otaLanguage
  8028. id="0"
  8029. name="Polish"
  8030. package="11"
  8031. />
  8032. </otaLanguages>
  8033. <otaPackages>
  8034. <package
  8035. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4.img"
  8036. size="5183988"
  8037. />
  8038. <package
  8039. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fr-FR.img"
  8040. size="5183988"
  8041. />
  8042. <package
  8043. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-es-ES.img"
  8044. size="5183988"
  8045. />
  8046. <package
  8047. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-it-IT.img"
  8048. size="5183988"
  8049. />
  8050. <package
  8051. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-de-DE.img"
  8052. size="5183988"
  8053. />
  8054. <package
  8055. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-nl-NL.img"
  8056. size="5183988"
  8057. />
  8058. <package
  8059. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ru-RU.img"
  8060. size="5183988"
  8061. />
  8062. <package
  8063. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-cmn-CN.img"
  8064. size="5183988"
  8065. />
  8066. <package
  8067. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ko-KR.img"
  8068. size="5183988"
  8069. />
  8070. <package
  8071. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ja-JP.img"
  8072. size="5183988"
  8073. />
  8074. <package
  8075. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fi-FI.img"
  8076. size="5183988"
  8077. />
  8078. <package
  8079. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-pl-PL.img"
  8080. size="5183988"
  8081. />
  8082. </otaPackages>
  8083. </productMenu>
  8084. <productMenu id="sip"
  8085. type="1" >
  8086. </productMenu>
  8087. <productMenu id="bluetoothIntercom"
  8088. type="1" >
  8089. </productMenu>
  8090. <productMenu id="phone"
  8091. type="1" >
  8092. </productMenu>
  8093. <productMenu id="music"
  8094. type="1" >
  8095. </productMenu>
  8096. <productMenu id="fmradio"
  8097. type="1"
  8098. url="1" >
  8099. </productMenu>
  8100. <productMenu id="deviceSetting"
  8101. type="1"
  8102. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8103. </productMenu>
  8104. <productMenu id="quickGuide"
  8105. type="0"
  8106. url=""
  8107. size="934KB" >
  8108. </productMenu>
  8109. <productMenu id="userGuide"
  8110. type="1"
  8111. url=""
  8112. size="1.14MB" >
  8113. </productMenu>
  8114. <productMenu id="connectGuide"
  8115. type="0"
  8116. url=""
  8117. size="1.12MB" >
  8118. </productMenu>
  8119. <productMenu id="volume"
  8120. type="15" >
  8121. </productMenu>
  8122. <productID id="3451"
  8123. />
  8124. <productGroupable type="0"
  8125. />
  8126. </product>
  8127. <product id="SF4"
  8128. name="SF4"
  8129. series="SF"
  8130. latestVersion="1.1.5"
  8131. show = "-1" >
  8132. <productMenu id="protocol"
  8133. type="1"
  8134. url="3">
  8135. </productMenu>
  8136. <productMenu id="sip"
  8137. type="1" >
  8138. </productMenu>
  8139. <productMenu id="bluetoothIntercom"
  8140. type="1" >
  8141. </productMenu>
  8142. <productMenu id="phone"
  8143. type="1" >
  8144. </productMenu>
  8145. <productMenu id="music"
  8146. type="1" >
  8147. </productMenu>
  8148. <productMenu id="fmradio"
  8149. type="1" >
  8150. </productMenu>
  8151. <productMenu id="deviceSetting"
  8152. type="1"
  8153. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8154. <productMenuURL version="1.0.1"
  8155. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8156. />
  8157. </productMenu>
  8158. <productMenu id="quickGuide"
  8159. type="1"
  8160. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8161. size="607KB" >
  8162. </productMenu>
  8163. <productMenu id="userGuide"
  8164. type="1"
  8165. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8166. size="1.91MB" >
  8167. </productMenu>
  8168. <productMenu id="volume"
  8169. type="4" >
  8170. </productMenu>
  8171. <productID id="5414"
  8172. />
  8173. <productGroupable type="0"
  8174. />
  8175. </product>
  8176. <product id="SF4"
  8177. name="SF4"
  8178. series="SF"
  8179. latestVersion="3.4.4"
  8180. show = "1" >
  8181. <productMenu id="protocol"
  8182. type="2" >
  8183. </productMenu>
  8184. <productMenu id="sip"
  8185. type="1" >
  8186. </productMenu>
  8187. <productMenu id="bluetoothIntercom"
  8188. type="1" >
  8189. </productMenu>
  8190. <productMenu id="phone"
  8191. type="1" >
  8192. </productMenu>
  8193. <productMenu id="music"
  8194. type="1" >
  8195. </productMenu>
  8196. <productMenu id="fmradio"
  8197. type="1" >
  8198. </productMenu>
  8199. <productMenu id="deviceSetting"
  8200. type="1"
  8201. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8202. <productMenuURL version="3.0"
  8203. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8204. />
  8205. </productMenu>
  8206. <productMenu id="quickGuide"
  8207. type="0"
  8208. url=""
  8209. size="934KB" >
  8210. </productMenu>
  8211. <productMenu id="userGuide"
  8212. type="1"
  8213. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8214. size="1.14MB" >
  8215. </productMenu>
  8216. <productMenu id="connectGuide"
  8217. type="1"
  8218. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8219. size="1.12MB" >
  8220. </productMenu>
  8221. <productMenu id="volume"
  8222. type="15" >
  8223. </productMenu>
  8224. <productID id="3370"
  8225. />
  8226. <productGroupable type="0"
  8227. />
  8228. </product>
  8229. <product id="SF2"
  8230. name="SF2"
  8231. series="SF"
  8232. latestVersion="1.2.1"
  8233. show = "-1" >
  8234. <productMenu id="protocol"
  8235. type="1"
  8236. url="2">
  8237. </productMenu>
  8238. <productMenu id="sip"
  8239. type="1" >
  8240. </productMenu>
  8241. <productMenu id="bluetoothIntercom"
  8242. type="1" >
  8243. </productMenu>
  8244. <productMenu id="phone"
  8245. type="1" >
  8246. </productMenu>
  8247. <productMenu id="music"
  8248. type="1" >
  8249. </productMenu>
  8250. <productMenu id="fmradio"
  8251. type="1" >
  8252. </productMenu>
  8253. <productMenu id="deviceSetting"
  8254. type="1"
  8255. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8256. <productMenuURL version="1.0.1"
  8257. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8258. />
  8259. </productMenu>
  8260. <productMenu id="quickGuide"
  8261. type="1"
  8262. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8263. size="607KB" >
  8264. </productMenu>
  8265. <productMenu id="userGuide"
  8266. type="1"
  8267. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8268. size="1.91MB" >
  8269. </productMenu>
  8270. <productMenu id="volume"
  8271. type="4" >
  8272. </productMenu>
  8273. <productID id="5412"
  8274. />
  8275. <productGroupable type="0"
  8276. />
  8277. </product>
  8278. <product id="SF2"
  8279. name="SF2"
  8280. series="SF"
  8281. latestVersion="3.3.4"
  8282. show = "1" >
  8283. <productMenu id="protocol"
  8284. type="2" >
  8285. </productMenu>
  8286. <productMenu id="sip"
  8287. type="1" >
  8288. </productMenu>
  8289. <productMenu id="bluetoothIntercom"
  8290. type="1" >
  8291. </productMenu>
  8292. <productMenu id="phone"
  8293. type="1" >
  8294. </productMenu>
  8295. <productMenu id="music"
  8296. type="1" >
  8297. </productMenu>
  8298. <productMenu id="fmradio"
  8299. type="0" >
  8300. </productMenu>
  8301. <productMenu id="deviceSetting"
  8302. type="1"
  8303. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8304. <productMenuURL version="3.0"
  8305. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8306. />
  8307. </productMenu>
  8308. <productMenu id="quickGuide"
  8309. type="0"
  8310. url=""
  8311. size="934KB" >
  8312. </productMenu>
  8313. <productMenu id="userGuide"
  8314. type="1"
  8315. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8316. size="1.14MB" >
  8317. </productMenu>
  8318. <productMenu id="connectGuide"
  8319. type="1"
  8320. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8321. size="1.12MB" >
  8322. </productMenu>
  8323. <productMenu id="volume"
  8324. type="15" >
  8325. </productMenu>
  8326. <productID id="3360"
  8327. />
  8328. <productGroupable type="0"
  8329. />
  8330. </product>
  8331. <product id="SF1"
  8332. name="SF1"
  8333. series="SF"
  8334. latestVersion="2.0.5"
  8335. show = "-1" >
  8336. <productMenu id="protocol"
  8337. type="1"
  8338. url="1">
  8339. </productMenu>
  8340. <productMenu id="sip"
  8341. type="1" >
  8342. </productMenu>
  8343. <productMenu id="bluetoothIntercom"
  8344. type="1" >
  8345. <productMenuType version="1.1"
  8346. type="0"
  8347. />
  8348. </productMenu>
  8349. <productMenu id="phone"
  8350. type="1" >
  8351. </productMenu>
  8352. <productMenu id="music"
  8353. type="1" >
  8354. </productMenu>
  8355. <productMenu id="deviceSetting"
  8356. type="1"
  8357. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8358. <productMenuURL version="1.1"
  8359. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8360. />
  8361. <productMenuURL version="1.0"
  8362. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8363. />
  8364. </productMenu>
  8365. <productMenu id="quickGuide"
  8366. type="1"
  8367. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8368. size="401KB" >
  8369. </productMenu>
  8370. <productMenu id="userGuide"
  8371. type="1"
  8372. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8373. size="1.91MB" >
  8374. </productMenu>
  8375. <productMenu id="volume"
  8376. type="3" >
  8377. </productMenu>
  8378. <productID id="5410"
  8379. />
  8380. <productGroupable type="0"
  8381. />
  8382. </product>
  8383. <product id="SF1"
  8384. name="SF1"
  8385. series="SF"
  8386. latestVersion="3.3.4"
  8387. show = "1" >
  8388. <productMenu id="protocol"
  8389. type="2" >
  8390. </productMenu>
  8391. <productMenu id="sip"
  8392. type="1" >
  8393. </productMenu>
  8394. <productMenu id="bluetoothIntercom"
  8395. type="1" >
  8396. </productMenu>
  8397. <productMenu id="phone"
  8398. type="1" >
  8399. </productMenu>
  8400. <productMenu id="music"
  8401. type="1" >
  8402. </productMenu>
  8403. <productMenu id="fmradio"
  8404. type="0" >
  8405. </productMenu>
  8406. <productMenu id="deviceSetting"
  8407. type="1"
  8408. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8409. <productMenuURL version="3.0"
  8410. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8411. />
  8412. </productMenu>
  8413. <productMenu id="quickGuide"
  8414. type="0"
  8415. url=""
  8416. size="934KB" >
  8417. </productMenu>
  8418. <productMenu id="userGuide"
  8419. type="1"
  8420. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8421. size="1.14MB" >
  8422. </productMenu>
  8423. <productMenu id="connectGuide"
  8424. type="1"
  8425. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8426. size="1.12MB" >
  8427. </productMenu>
  8428. <productMenu id="volume"
  8429. type="15" >
  8430. </productMenu>
  8431. <productID id="3350"
  8432. />
  8433. <productGroupable type="0"
  8434. />
  8435. </product>
  8436. <product id="SFR"
  8437. name="SFR"
  8438. series="SF"
  8439. latestVersion="1.1.1"
  8440. show = "1" >
  8441. <productMenu id="protocol"
  8442. type="1"
  8443. url="3">
  8444. </productMenu>
  8445. <productMenu id="sip"
  8446. type="1" >
  8447. </productMenu>
  8448. <productMenu id="bluetoothIntercom"
  8449. type="1" >
  8450. </productMenu>
  8451. <productMenu id="phone"
  8452. type="1" >
  8453. </productMenu>
  8454. <productMenu id="music"
  8455. type="1" >
  8456. </productMenu>
  8457. <productMenu id="fmradio"
  8458. type="1" >
  8459. </productMenu>
  8460. <productMenu id="deviceSetting"
  8461. type="1"
  8462. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8463. </productMenu>
  8464. <productMenu id="quickGuide"
  8465. type="1"
  8466. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8467. size="607KB" >
  8468. </productMenu>
  8469. <productMenu id="userGuide"
  8470. type="1"
  8471. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8472. size="1.91MB" >
  8473. </productMenu>
  8474. <productMenu id="volume"
  8475. type="4" >
  8476. </productMenu>
  8477. <productID id="5418"
  8478. />
  8479. <productGroupable type="0"
  8480. />
  8481. </product>
  8482. <product id="20S"
  8483. name="20S"
  8484. series="20"
  8485. latestVersion="2.2.3"
  8486. show = "1" >
  8487. <productMenu id="protocol"
  8488. type="0">
  8489. </productMenu>
  8490. <productMenu id="wa"
  8491. type="5" >
  8492. </productMenu>
  8493. <productMenu id="sip"
  8494. type="1" >
  8495. <productMenuType version="1.0"
  8496. type="0"
  8497. />
  8498. </productMenu>
  8499. <productMenu id="bluetoothIntercom"
  8500. type="1" >
  8501. <productMenuType version="1.0"
  8502. type="0"
  8503. />
  8504. </productMenu>
  8505. <productMenu id="intercomSetting"
  8506. type="1" >
  8507. </productMenu>
  8508. <productMenu id="phone"
  8509. type="2" >
  8510. </productMenu>
  8511. <productMenu id="fmradio"
  8512. type="3" >
  8513. </productMenu>
  8514. <productMenu id="deviceSetting"
  8515. type="1"
  8516. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8517. <productMenuURL version="2.0.2"
  8518. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8519. />
  8520. <productMenuURL version="1.5"
  8521. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8522. />
  8523. <productMenuURL version="1.4.1"
  8524. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8525. />
  8526. <productMenuURL version="1.1"
  8527. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8528. />
  8529. <productMenuURL version="1.0"
  8530. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8531. />
  8532. </productMenu>
  8533. <productMenu id="quickGuide"
  8534. type="0"
  8535. url=""
  8536. size="264KB" >
  8537. </productMenu>
  8538. <productMenu id="userGuide"
  8539. type="1"
  8540. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8541. size="3.09MB" >
  8542. </productMenu>
  8543. <productMenu id="connectGuide"
  8544. type="1"
  8545. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8546. size="1.12MB" >
  8547. </productMenu>
  8548. <productID id="4210"
  8549. />
  8550. <productGroupable type="1"
  8551. />
  8552. </product>
  8553. <product id="20S_EVO"
  8554. name="20S EVO"
  8555. series="20"
  8556. latestVersion="2.2.3"
  8557. show = "1" >
  8558. <productMenu id="protocol"
  8559. type="0">
  8560. </productMenu>
  8561. <productMenu id="wa"
  8562. type="5" >
  8563. </productMenu>
  8564. <productMenu id="sip"
  8565. type="1" >
  8566. <productMenuType version="1.0"
  8567. type="0"
  8568. />
  8569. </productMenu>
  8570. <productMenu id="bluetoothIntercom"
  8571. type="1" >
  8572. <productMenuType version="1.0"
  8573. type="0"
  8574. />
  8575. </productMenu>
  8576. <productMenu id="intercomSetting"
  8577. type="1" >
  8578. </productMenu>
  8579. <productMenu id="phone"
  8580. type="2" >
  8581. </productMenu>
  8582. <productMenu id="fmradio"
  8583. type="3" >
  8584. </productMenu>
  8585. <productMenu id="deviceSetting"
  8586. type="1"
  8587. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8588. <productMenuURL version="2.0.2"
  8589. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8590. />
  8591. <productMenuURL version="1.5"
  8592. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8593. />
  8594. <productMenuURL version="1.4.1"
  8595. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8596. />
  8597. <productMenuURL version="1.1"
  8598. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8599. />
  8600. <productMenuURL version="1.0"
  8601. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8602. />
  8603. </productMenu>
  8604. <productMenu id="quickGuide"
  8605. type="0"
  8606. url=""
  8607. size="264KB" >
  8608. </productMenu>
  8609. <productMenu id="userGuide"
  8610. type="1"
  8611. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8612. size="3.09MB" >
  8613. </productMenu>
  8614. <productMenu id="connectGuide"
  8615. type="1"
  8616. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8617. size="1.12MB" >
  8618. </productMenu>
  8619. <productID id="4210"
  8620. />
  8621. <productProductKey key="16"
  8622. />
  8623. <productGroupable type="1"
  8624. />
  8625. </product>
  8626. <product id="10S"
  8627. name="10S"
  8628. series="10"
  8629. latestVersion="3.0.2"
  8630. show = "1" >
  8631. <productMenu id="protocol"
  8632. type="3" >
  8633. </productMenu>
  8634. <productMenu id="sip"
  8635. type="1" >
  8636. </productMenu>
  8637. <productMenu id="bluetoothIntercom"
  8638. type="1" >
  8639. </productMenu>
  8640. <productMenu id="phone"
  8641. type="1" >
  8642. </productMenu>
  8643. <productMenu id="deviceSetting"
  8644. type="1"
  8645. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  8646. </productMenu>
  8647. <productMenu id="quickGuide"
  8648. type="1"
  8649. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  8650. size="934KB" >
  8651. </productMenu>
  8652. <productMenu id="userGuide"
  8653. type="1"
  8654. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  8655. size="1.14MB" >
  8656. </productMenu>
  8657. <productMenu id="connectGuide"
  8658. type="1"
  8659. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  8660. size="1.12MB" >
  8661. </productMenu>
  8662. <productID id="3380"
  8663. />
  8664. <productGroupable type="0"
  8665. />
  8666. </product>
  8667. <product id="10S"
  8668. name="10S"
  8669. series="10"
  8670. latestVersion="2.1.1"
  8671. show = "-1" >
  8672. <productMenu id="protocol"
  8673. type="0">
  8674. </productMenu>
  8675. <productMenu id="sip"
  8676. type="1" >
  8677. </productMenu>
  8678. <productMenu id="bluetoothIntercom"
  8679. type="1" >
  8680. </productMenu>
  8681. <productMenu id="phone"
  8682. type="2" >
  8683. </productMenu>
  8684. <productMenu id="fmradio"
  8685. type="3" >
  8686. </productMenu>
  8687. <productMenu id="deviceSetting"
  8688. type="1"
  8689. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  8690. <productMenuURL version="1.5"
  8691. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  8692. />
  8693. <productMenuURL version="1.3.1"
  8694. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  8695. />
  8696. </productMenu>
  8697. <productMenu id="quickGuide"
  8698. type="1"
  8699. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  8700. size="310KB" >
  8701. </productMenu>
  8702. <productMenu id="userGuide"
  8703. type="1"
  8704. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  8705. size="1.57MB" >
  8706. </productMenu>
  8707. <productID id="5530"
  8708. />
  8709. <productGroupable type="0"
  8710. />
  8711. </product>
  8712. <product id="Apex"
  8713. name="Apex"
  8714. series="Apex"
  8715. latestVersion="1.0"
  8716. latestVersionVoicePrompt="1.0"
  8717. show = "-1" >
  8718. <productMenu id="protocol"
  8719. type="2" >
  8720. </productMenu>
  8721. <productMenu id="serialNumber"
  8722. type="1" >
  8723. </productMenu>
  8724. <productMenu id="ota"
  8725. type="0" >
  8726. <otaLanguages>
  8727. <otaLanguage
  8728. id="0"
  8729. name="English"
  8730. package="0"
  8731. />
  8732. <otaLanguage
  8733. id="0"
  8734. name="French"
  8735. package="1"
  8736. />
  8737. <otaLanguage
  8738. id="0"
  8739. name="Spanish"
  8740. package="2"
  8741. />
  8742. <otaLanguage
  8743. id="0"
  8744. name="Italian"
  8745. package="3"
  8746. />
  8747. <otaLanguage
  8748. id="0"
  8749. name="German"
  8750. package="4"
  8751. />
  8752. <otaLanguage
  8753. id="0"
  8754. name="Dutch"
  8755. package="5"
  8756. />
  8757. <otaLanguage
  8758. id="0"
  8759. name="Russian"
  8760. package="6"
  8761. />
  8762. <otaLanguage
  8763. id="0"
  8764. name="Chinese"
  8765. package="7"
  8766. />
  8767. <otaLanguage
  8768. id="0"
  8769. name="Korean"
  8770. package="8"
  8771. />
  8772. <otaLanguage
  8773. id="0"
  8774. name="Japanese"
  8775. package="9"
  8776. />
  8777. <otaLanguage
  8778. id="0"
  8779. name="Finnish"
  8780. package="10"
  8781. />
  8782. <otaLanguage
  8783. id="0"
  8784. name="Polish"
  8785. package="11"
  8786. />
  8787. </otaLanguages>
  8788. <otaPackages>
  8789. <package
  8790. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0.img"
  8791. size="5183988"
  8792. />
  8793. <package
  8794. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fr-FR.img"
  8795. size="5183988"
  8796. />
  8797. <package
  8798. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-es-ES.img"
  8799. size="5183988"
  8800. />
  8801. <package
  8802. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-it-IT.img"
  8803. size="5183988"
  8804. />
  8805. <package
  8806. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-de-DE.img"
  8807. size="5183988"
  8808. />
  8809. <package
  8810. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-nl-NL.img"
  8811. size="5183988"
  8812. />
  8813. <package
  8814. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ru-RU.img"
  8815. size="5183988"
  8816. />
  8817. <package
  8818. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-cmn-CN.img"
  8819. size="5183988"
  8820. />
  8821. <package
  8822. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ko-KR.img"
  8823. size="5183988"
  8824. />
  8825. <package
  8826. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ja-JP.img"
  8827. size="5183988"
  8828. />
  8829. <package
  8830. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fi-FI.img"
  8831. size="5183988"
  8832. />
  8833. <package
  8834. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-pl-PL.img"
  8835. size="5183988"
  8836. />
  8837. </otaPackages>
  8838. </productMenu>
  8839. <productMenu id="sip"
  8840. type="1" >
  8841. </productMenu>
  8842. <productMenu id="bluetoothIntercom"
  8843. type="1" >
  8844. </productMenu>
  8845. <productMenu id="phone"
  8846. type="1" >
  8847. </productMenu>
  8848. <productMenu id="music"
  8849. type="1" >
  8850. </productMenu>
  8851. <productMenu id="fmradio"
  8852. type="1"
  8853. url="1" >
  8854. </productMenu>
  8855. <productMenu id="deviceSetting"
  8856. type="1"
  8857. url="https://api.sena.com/support/test/xml/NS_Apex_test.xml" >
  8858. </productMenu>
  8859. <productMenu id="quickGuide"
  8860. type="0"
  8861. url=""
  8862. size="934KB" >
  8863. </productMenu>
  8864. <productMenu id="userGuide"
  8865. type="1"
  8866. url=""
  8867. size="1.14MB" >
  8868. </productMenu>
  8869. <productMenu id="volume"
  8870. type="15" >
  8871. </productMenu>
  8872. <productID id="3452"
  8873. />
  8874. <productGroupable type="0"
  8875. />
  8876. </product>
  8877. <product id="ApexPlus"
  8878. name="Apex Plus"
  8879. series="Apex"
  8880. latestVersion="1.0"
  8881. latestVersionVoicePrompt="1.0"
  8882. show = "-1" >
  8883. <productMenu id="protocol"
  8884. type="2" >
  8885. </productMenu>
  8886. <productMenu id="serialNumber"
  8887. type="1" >
  8888. </productMenu>
  8889. <productMenu id="ota"
  8890. type="0" >
  8891. <otaLanguages>
  8892. <otaLanguage
  8893. id="0"
  8894. name="English"
  8895. package="0"
  8896. />
  8897. <otaLanguage
  8898. id="0"
  8899. name="French"
  8900. package="1"
  8901. />
  8902. <otaLanguage
  8903. id="0"
  8904. name="Spanish"
  8905. package="2"
  8906. />
  8907. <otaLanguage
  8908. id="0"
  8909. name="Italian"
  8910. package="3"
  8911. />
  8912. <otaLanguage
  8913. id="0"
  8914. name="German"
  8915. package="4"
  8916. />
  8917. <otaLanguage
  8918. id="0"
  8919. name="Dutch"
  8920. package="5"
  8921. />
  8922. <otaLanguage
  8923. id="0"
  8924. name="Russian"
  8925. package="6"
  8926. />
  8927. <otaLanguage
  8928. id="0"
  8929. name="Chinese"
  8930. package="7"
  8931. />
  8932. <otaLanguage
  8933. id="0"
  8934. name="Korean"
  8935. package="8"
  8936. />
  8937. <otaLanguage
  8938. id="0"
  8939. name="Japanese"
  8940. package="9"
  8941. />
  8942. <otaLanguage
  8943. id="0"
  8944. name="Finnish"
  8945. package="10"
  8946. />
  8947. <otaLanguage
  8948. id="0"
  8949. name="Polish"
  8950. package="11"
  8951. />
  8952. </otaLanguages>
  8953. <otaPackages>
  8954. <package
  8955. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0.img"
  8956. size="5183988"
  8957. />
  8958. <package
  8959. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fr-FR.img"
  8960. size="5183988"
  8961. />
  8962. <package
  8963. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-es-ES.img"
  8964. size="5183988"
  8965. />
  8966. <package
  8967. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-it-IT.img"
  8968. size="5183988"
  8969. />
  8970. <package
  8971. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-de-DE.img"
  8972. size="5183988"
  8973. />
  8974. <package
  8975. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-nl-NL.img"
  8976. size="5183988"
  8977. />
  8978. <package
  8979. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ru-RU.img"
  8980. size="5183988"
  8981. />
  8982. <package
  8983. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-cmn-CN.img"
  8984. size="5183988"
  8985. />
  8986. <package
  8987. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ko-KR.img"
  8988. size="5183988"
  8989. />
  8990. <package
  8991. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ja-JP.img"
  8992. size="5183988"
  8993. />
  8994. <package
  8995. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fi-FI.img"
  8996. size="5183988"
  8997. />
  8998. <package
  8999. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-pl-PL.img"
  9000. size="5183988"
  9001. />
  9002. </otaPackages>
  9003. </productMenu>
  9004. <productMenu id="sip"
  9005. type="1" >
  9006. </productMenu>
  9007. <productMenu id="bluetoothIntercom"
  9008. type="1" >
  9009. </productMenu>
  9010. <productMenu id="phone"
  9011. type="1" >
  9012. </productMenu>
  9013. <productMenu id="music"
  9014. type="1" >
  9015. </productMenu>
  9016. <productMenu id="fmradio"
  9017. type="1"
  9018. url="1" >
  9019. </productMenu>
  9020. <productMenu id="deviceSetting"
  9021. type="1"
  9022. url="https://api.sena.com/support/test/xml/NS_Apex_test.xml" >
  9023. </productMenu>
  9024. <productMenu id="quickGuide"
  9025. type="0"
  9026. url=""
  9027. size="934KB" >
  9028. </productMenu>
  9029. <productMenu id="userGuide"
  9030. type="1"
  9031. url=""
  9032. size="1.14MB" >
  9033. </productMenu>
  9034. <productMenu id="volume"
  9035. type="15" >
  9036. </productMenu>
  9037. <productID id="3453"
  9038. />
  9039. <productGroupable type="0"
  9040. />
  9041. </product>
  9042. <product id="10R2"
  9043. name="10R 2"
  9044. series="10"
  9045. latestVersion="0.9"
  9046. latestVersionVoicePrompt="1.1"
  9047. show = "-1" >
  9048. <productMenu id="protocol"
  9049. type="2" >
  9050. </productMenu>
  9051. <productMenu id="ota"
  9052. type="2" >
  9053. <otaPackages>
  9054. <package
  9055. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9056. size="2945812"
  9057. />
  9058. </otaPackages>
  9059. </productMenu>
  9060. <productMenu id="sip"
  9061. type="1" >
  9062. </productMenu>
  9063. <productMenu id="bluetoothIntercom"
  9064. type="1" >
  9065. </productMenu>
  9066. <productMenu id="phone"
  9067. type="1" >
  9068. </productMenu>
  9069. <productMenu id="music"
  9070. type="1" >
  9071. </productMenu>
  9072. <productMenu id="fmradio"
  9073. type="1"
  9074. url="1" >
  9075. </productMenu>
  9076. <productMenu id="deviceSetting"
  9077. type="1"
  9078. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9079. </productMenu>
  9080. <productMenu id="quickGuide"
  9081. type="1"
  9082. url=""
  9083. size="934KB" >
  9084. </productMenu>
  9085. <productMenu id="userGuide"
  9086. type="0"
  9087. url=""
  9088. size="1.14MB" >
  9089. </productMenu>
  9090. <productMenu id="volume"
  9091. type="15" >
  9092. </productMenu>
  9093. <productID id="4000"
  9094. />
  9095. <productGroupable type="0"
  9096. />
  9097. </product>
  9098. <product id="10R"
  9099. name="10R"
  9100. series="10"
  9101. latestVersion="2.1.1"
  9102. show = "1" >
  9103. <productMenu id="protocol"
  9104. type="0">
  9105. </productMenu>
  9106. <productMenu id="sip"
  9107. type="1" >
  9108. <productMenuType version="1.0.2"
  9109. type="0"
  9110. />
  9111. </productMenu>
  9112. <productMenu id="bluetoothIntercom"
  9113. type="1" >
  9114. <productMenuType version="1.0.2"
  9115. type="0"
  9116. />
  9117. </productMenu>
  9118. <productMenu id="phone"
  9119. type="2" >
  9120. </productMenu>
  9121. <productMenu id="fmradio"
  9122. type="3" >
  9123. </productMenu>
  9124. <productMenu id="deviceSetting"
  9125. type="1"
  9126. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9127. <productMenuURL version="1.4"
  9128. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9129. />
  9130. <productMenuURL version="1.2.1"
  9131. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9132. />
  9133. <productMenuURL version="1.0.2"
  9134. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9135. />
  9136. <productMenuURL version="1.0"
  9137. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9138. />
  9139. </productMenu>
  9140. <productMenu id="quickGuide"
  9141. type="1"
  9142. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9143. size="400KB" >
  9144. </productMenu>
  9145. <productMenu id="userGuide"
  9146. type="1"
  9147. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9148. size="2.75MB" >
  9149. </productMenu>
  9150. <productMenu id="connectGuide"
  9151. type="1"
  9152. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9153. size="1.12MB" >
  9154. </productMenu>
  9155. <productID id="5520"
  9156. />
  9157. <productGroupable type="0"
  9158. />
  9159. </product>
  9160. <product id="10C_EVO"
  9161. name="10C EVO"
  9162. series="10"
  9163. latestVersion="1.7"
  9164. show = "1" >
  9165. <productMenu id="protocol"
  9166. type="0">
  9167. </productMenu>
  9168. <productMenu id="sip"
  9169. type="1" >
  9170. </productMenu>
  9171. <productMenu id="bluetoothIntercom"
  9172. type="1" >
  9173. </productMenu>
  9174. <productMenu id="phone"
  9175. type="2" >
  9176. </productMenu>
  9177. <productMenu id="fmradio"
  9178. type="3" >
  9179. </productMenu>
  9180. <productMenu id="deviceSetting"
  9181. type="1"
  9182. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9183. <productMenuURL version="1.3.1"
  9184. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9185. />
  9186. </productMenu>
  9187. <productMenu id="quickGuide"
  9188. type="1"
  9189. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9190. size="1.32MB" >
  9191. </productMenu>
  9192. <productMenu id="userGuide"
  9193. type="1"
  9194. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9195. size="1.68MB" >
  9196. </productMenu>
  9197. <productMenu id="connectGuide"
  9198. type="1"
  9199. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9200. size="1.12MB" >
  9201. </productMenu>
  9202. <productID id="5570"
  9203. />
  9204. <productGroupable type="0"
  9205. />
  9206. </product>
  9207. <product id="10C_Pro"
  9208. name="10C Pro"
  9209. series="10"
  9210. latestVersion="2.7.1"
  9211. show = "1" >
  9212. <productMenu id="protocol"
  9213. type="0">
  9214. </productMenu>
  9215. <productMenu id="sip"
  9216. type="1" >
  9217. </productMenu>
  9218. <productMenu id="bluetoothIntercom"
  9219. type="1" >
  9220. </productMenu>
  9221. <productMenu id="phone"
  9222. type="2" >
  9223. </productMenu>
  9224. <productMenu id="fmradio"
  9225. type="3" >
  9226. </productMenu>
  9227. <productMenu id="deviceSetting"
  9228. type="1"
  9229. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9230. <productMenuURL version="2.5.1"
  9231. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9232. />
  9233. <productMenuURL version="1.0"
  9234. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9235. />
  9236. </productMenu>
  9237. <productMenu id="quickGuide"
  9238. type="1"
  9239. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9240. size="651KB" >
  9241. </productMenu>
  9242. <productMenu id="userGuide"
  9243. type="1"
  9244. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9245. size="2.34MB" >
  9246. </productMenu>
  9247. <productMenu id="connectGuide"
  9248. type="1"
  9249. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9250. size="1.12MB" >
  9251. </productMenu>
  9252. <productID id="5580"
  9253. />
  9254. <productGroupable type="0"
  9255. />
  9256. </product>
  9257. <product id="10C"
  9258. name="10C"
  9259. series="10"
  9260. latestVersion="3.0.4"
  9261. show = "1" >
  9262. <productMenu id="protocol"
  9263. type="0">
  9264. </productMenu>
  9265. <productMenu id="sip"
  9266. type="1" >
  9267. <productMenuType version="1.0.4"
  9268. type="0"
  9269. />
  9270. </productMenu>
  9271. <productMenu id="bluetoothIntercom"
  9272. type="1" >
  9273. <productMenuType version="1.0.4"
  9274. type="0"
  9275. />
  9276. </productMenu>
  9277. <productMenu id="phone"
  9278. type="2" >
  9279. </productMenu>
  9280. <productMenu id="fmradio"
  9281. type="3" >
  9282. </productMenu>
  9283. <productMenu id="deviceSetting"
  9284. type="1"
  9285. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9286. <productMenuURL version="2.3"
  9287. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9288. />
  9289. <productMenuURL version="2.1.1"
  9290. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9291. />
  9292. <productMenuURL version="1.0.4"
  9293. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9294. />
  9295. <productMenuURL version="1.0.2"
  9296. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9297. />
  9298. </productMenu>
  9299. <productMenu id="quickGuide"
  9300. type="1"
  9301. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9302. size="935KB" >
  9303. </productMenu>
  9304. <productMenu id="userGuide"
  9305. type="1"
  9306. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9307. size="2.82MB" >
  9308. </productMenu>
  9309. <productMenu id="connectGuide"
  9310. type="1"
  9311. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9312. size="1.12MB" >
  9313. </productMenu>
  9314. <productID id="5510"
  9315. />
  9316. <productGroupable type="0"
  9317. />
  9318. </product>
  9319. <product id="10U_GT_AIR"
  9320. name="10U GT-Air"
  9321. series="10"
  9322. latestVersion="2.0.4"
  9323. show = "1" >
  9324. <productMenu id="protocol"
  9325. type="0">
  9326. </productMenu>
  9327. <productMenu id="sip"
  9328. type="1" >
  9329. <productMenuType version="1.0.2"
  9330. type="0"
  9331. />
  9332. </productMenu>
  9333. <productMenu id="bluetoothIntercom"
  9334. type="1" >
  9335. <productMenuType version="1.0.2"
  9336. type="0"
  9337. />
  9338. </productMenu>
  9339. <productMenu id="phone"
  9340. type="2" >
  9341. </productMenu>
  9342. <productMenu id="fmradio"
  9343. type="3" >
  9344. </productMenu>
  9345. <productMenu id="deviceSetting"
  9346. type="1"
  9347. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9348. <productMenuURL version="1.3.2"
  9349. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9350. />
  9351. <productMenuURL version="1.0.2"
  9352. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9353. />
  9354. </productMenu>
  9355. <productMenu id="quickGuide"
  9356. type="1"
  9357. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9358. size="685KB" >
  9359. </productMenu>
  9360. <productMenu id="userGuide"
  9361. type="1"
  9362. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9363. size="684KB" >
  9364. </productMenu>
  9365. <productMenu id="connectGuide"
  9366. type="1"
  9367. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9368. size="1.12MB" >
  9369. </productMenu>
  9370. <productID id="5610"
  9371. />
  9372. <productGroupable type="0"
  9373. />
  9374. </product>
  9375. <product id="10U_NEOTEC"
  9376. name="10U Neotec"
  9377. series="10"
  9378. latestVersion="2.0.4"
  9379. show = "1" >
  9380. <productMenu id="protocol"
  9381. type="0">
  9382. </productMenu>
  9383. <productMenu id="sip"
  9384. type="1" >
  9385. <productMenuType version="1.0.2"
  9386. type="0"
  9387. />
  9388. </productMenu>
  9389. <productMenu id="bluetoothIntercom"
  9390. type="1" >
  9391. <productMenuType version="1.0.2"
  9392. type="0"
  9393. />
  9394. </productMenu>
  9395. <productMenu id="phone"
  9396. type="2" >
  9397. </productMenu>
  9398. <productMenu id="fmradio"
  9399. type="3" >
  9400. </productMenu>
  9401. <productMenu id="deviceSetting"
  9402. type="1"
  9403. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9404. <productMenuURL version="1.3.2"
  9405. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9406. />
  9407. <productMenuURL version="1.0.2"
  9408. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9409. />
  9410. </productMenu>
  9411. <productMenu id="quickGuide"
  9412. type="1"
  9413. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9414. size="689KB" >
  9415. </productMenu>
  9416. <productMenu id="userGuide"
  9417. type="1"
  9418. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9419. size="684KB" >
  9420. </productMenu>
  9421. <productMenu id="connectGuide"
  9422. type="1"
  9423. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9424. size="1.12MB" >
  9425. </productMenu>
  9426. <productID id="5611"
  9427. />
  9428. <productGroupable type="0"
  9429. />
  9430. </product>
  9431. <product id="10U_J_CRUISE"
  9432. name="10U J-Cruise"
  9433. series="10"
  9434. latestVersion="2.0.4"
  9435. show = "1" >
  9436. <productMenu id="protocol"
  9437. type="0">
  9438. </productMenu>
  9439. <productMenu id="sip"
  9440. type="1" >
  9441. <productMenuType version="1.0.2"
  9442. type="0"
  9443. />
  9444. </productMenu>
  9445. <productMenu id="bluetoothIntercom"
  9446. type="1" >
  9447. <productMenuType version="1.0.2"
  9448. type="0"
  9449. />
  9450. </productMenu>
  9451. <productMenu id="phone"
  9452. type="2" >
  9453. </productMenu>
  9454. <productMenu id="fmradio"
  9455. type="3" >
  9456. </productMenu>
  9457. <productMenu id="deviceSetting"
  9458. type="1"
  9459. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9460. <productMenuURL version="1.3.2"
  9461. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9462. />
  9463. <productMenuURL version="1.0.2"
  9464. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9465. />
  9466. </productMenu>
  9467. <productMenu id="quickGuide"
  9468. type="1"
  9469. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9470. size="686KB" >
  9471. </productMenu>
  9472. <productMenu id="userGuide"
  9473. type="1"
  9474. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9475. size="684KB" >
  9476. </productMenu>
  9477. <productMenu id="connectGuide"
  9478. type="1"
  9479. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9480. size="1.12MB" >
  9481. </productMenu>
  9482. <productID id="5612"
  9483. />
  9484. <productGroupable type="0"
  9485. />
  9486. </product>
  9487. <product id="10U_C3"
  9488. name="10U C3/C3Pro"
  9489. series="10"
  9490. latestVersion="2.0.4"
  9491. show = "1" >
  9492. <productMenu id="protocol"
  9493. type="0">
  9494. </productMenu>
  9495. <productMenu id="sip"
  9496. type="1" >
  9497. <productMenuType version="1.0.2"
  9498. type="0"
  9499. />
  9500. </productMenu>
  9501. <productMenu id="bluetoothIntercom"
  9502. type="1" >
  9503. <productMenuType version="1.0.2"
  9504. type="0"
  9505. />
  9506. </productMenu>
  9507. <productMenu id="phone"
  9508. type="2" >
  9509. </productMenu>
  9510. <productMenu id="fmradio"
  9511. type="3" >
  9512. </productMenu>
  9513. <productMenu id="deviceSetting"
  9514. type="1"
  9515. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9516. <productMenuURL version="1.3.2"
  9517. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9518. />
  9519. <productMenuURL version="1.0.2"
  9520. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9521. />
  9522. </productMenu>
  9523. <productMenu id="quickGuide"
  9524. type="1"
  9525. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9526. size="199KB" >
  9527. </productMenu>
  9528. <productMenu id="userGuide"
  9529. type="1"
  9530. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9531. size="684KB" >
  9532. </productMenu>
  9533. <productMenu id="connectGuide"
  9534. type="1"
  9535. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9536. size="1.12MB" >
  9537. </productMenu>
  9538. <productID id="5620"
  9539. />
  9540. <productGroupable type="0"
  9541. />
  9542. </product>
  9543. <product id="10U_ARAI"
  9544. name="10U Arai"
  9545. series="10"
  9546. latestVersion="2.0.4"
  9547. show = "1" >
  9548. <productMenu id="protocol"
  9549. type="0">
  9550. </productMenu>
  9551. <productMenu id="sip"
  9552. type="1" >
  9553. <productMenuType version="1.0.2"
  9554. type="0"
  9555. />
  9556. </productMenu>
  9557. <productMenu id="bluetoothIntercom"
  9558. type="1" >
  9559. <productMenuType version="1.0.2"
  9560. type="0"
  9561. />
  9562. </productMenu>
  9563. <productMenu id="phone"
  9564. type="2" >
  9565. </productMenu>
  9566. <productMenu id="fmradio"
  9567. type="3" >
  9568. </productMenu>
  9569. <productMenu id="deviceSetting"
  9570. type="1"
  9571. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9572. <productMenuURL version="1.3.2"
  9573. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9574. />
  9575. <productMenuURL version="1.0.2"
  9576. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9577. />
  9578. </productMenu>
  9579. <productMenu id="quickGuide"
  9580. type="1"
  9581. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  9582. size="689KB" >
  9583. </productMenu>
  9584. <productMenu id="userGuide"
  9585. type="1"
  9586. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9587. size="684KB" >
  9588. </productMenu>
  9589. <productMenu id="connectGuide"
  9590. type="1"
  9591. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9592. size="1.12MB" >
  9593. </productMenu>
  9594. <productID id="5621"
  9595. />
  9596. <productGroupable type="0"
  9597. />
  9598. </product>
  9599. <product id="10Upad"
  9600. name="10Upad"
  9601. series="10"
  9602. latestVersion="2.0.3"
  9603. show = "1" >
  9604. <productMenu id="protocol"
  9605. type="0">
  9606. </productMenu>
  9607. <productMenu id="sip"
  9608. type="1" >
  9609. </productMenu>
  9610. <productMenu id="bluetoothIntercom"
  9611. type="1" >
  9612. </productMenu>
  9613. <productMenu id="phone"
  9614. type="2" >
  9615. </productMenu>
  9616. <productMenu id="fmradio"
  9617. type="3" >
  9618. </productMenu>
  9619. <productMenu id="deviceSetting"
  9620. type="1"
  9621. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  9622. <productMenuURL version="1.0.3"
  9623. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  9624. />
  9625. </productMenu>
  9626. <productMenu id="quickGuide"
  9627. type="1"
  9628. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  9629. size="615KB" >
  9630. </productMenu>
  9631. <productMenu id="userGuide"
  9632. type="1"
  9633. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  9634. size="0.99MB" >
  9635. </productMenu>
  9636. <productMenu id="connectGuide"
  9637. type="1"
  9638. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9639. size="1.12MB" >
  9640. </productMenu>
  9641. <productID id="6210"
  9642. />
  9643. <productGroupable type="0"
  9644. />
  9645. </product>
  9646. <product id="5S"
  9647. name="5S"
  9648. series="5"
  9649. latestVersion="2.3.1"
  9650. show = "1" >
  9651. <productMenu id="protocol"
  9652. type="3" >
  9653. </productMenu>
  9654. <productMenu id="sip"
  9655. type="1" >
  9656. </productMenu>
  9657. <productMenu id="bluetoothIntercom"
  9658. type="1" >
  9659. </productMenu>
  9660. <productMenu id="phone"
  9661. type="1" >
  9662. </productMenu>
  9663. <productMenu id="fmradio"
  9664. type="0" >
  9665. </productMenu>
  9666. <productMenu id="deviceSetting"
  9667. type="1"
  9668. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9669. </productMenu>
  9670. <productMenu id="quickGuide"
  9671. type="0"
  9672. url=""
  9673. size="934KB" >
  9674. </productMenu>
  9675. <productMenu id="userGuide"
  9676. type="1"
  9677. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  9678. size="1.14MB" >
  9679. </productMenu>
  9680. <productMenu id="connectGuide"
  9681. type="1"
  9682. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  9683. size="1.12MB" >
  9684. </productMenu>
  9685. <productID id="5590"
  9686. />
  9687. <productGroupable type="0"
  9688. />
  9689. </product>
  9690. <product id="5S"
  9691. name="5S"
  9692. series="5"
  9693. latestVersion="1.2"
  9694. show = "-1" >
  9695. <productMenu id="protocol"
  9696. type="0">
  9697. </productMenu>
  9698. <productMenu id="sip"
  9699. type="1" >
  9700. </productMenu>
  9701. <productMenu id="bluetoothIntercom"
  9702. type="1" >
  9703. </productMenu>
  9704. <productMenu id="phone"
  9705. type="2" >
  9706. </productMenu>
  9707. <productMenu id="fmradio"
  9708. type="3" >
  9709. </productMenu>
  9710. <productMenu id="deviceSetting"
  9711. type="1"
  9712. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  9713. </productMenu>
  9714. <productMenu id="quickGuide"
  9715. type="0"
  9716. url=""
  9717. size="970KB" >
  9718. </productMenu>
  9719. <productMenu id="userGuide"
  9720. type="1"
  9721. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  9722. size="1.26MB" >
  9723. </productMenu>
  9724. <productID id="5534"
  9725. />
  9726. <productGroupable type="0"
  9727. />
  9728. </product>
  9729. <product id="5S"
  9730. name="5S"
  9731. series="5"
  9732. latestVersion="3.0.1"
  9733. show = "-1" >
  9734. <productMenu id="protocol"
  9735. type="0">
  9736. </productMenu>
  9737. <productMenu id="sip"
  9738. type="1" >
  9739. </productMenu>
  9740. <productMenu id="bluetoothIntercom"
  9741. type="1" >
  9742. </productMenu>
  9743. <productMenu id="phone"
  9744. type="2" >
  9745. </productMenu>
  9746. <productMenu id="fmradio"
  9747. type="0" >
  9748. </productMenu>
  9749. <productMenu id="deviceSetting"
  9750. type="1"
  9751. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  9752. </productMenu>
  9753. <productMenu id="quickGuide"
  9754. type="0"
  9755. url=""
  9756. size="970KB" >
  9757. </productMenu>
  9758. <productMenu id="userGuide"
  9759. type="1"
  9760. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  9761. size="1.26MB" >
  9762. </productMenu>
  9763. <productID id="5538"
  9764. />
  9765. <productGroupable type="0"
  9766. />
  9767. </product>
  9768. <product id="3SPLUS"
  9769. name="3S PLUS"
  9770. series="3"
  9771. latestVersion="2.2"
  9772. show = "1" >
  9773. <productMenu id="protocol"
  9774. type="3" >
  9775. </productMenu>
  9776. <productMenu id="sip"
  9777. type="1" >
  9778. </productMenu>
  9779. <productMenu id="bluetoothIntercom"
  9780. type="1" >
  9781. </productMenu>
  9782. <productMenu id="deviceSetting"
  9783. type="1"
  9784. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  9785. <productMenuURL version="2.2.1"
  9786. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  9787. />
  9788. </productMenu>
  9789. <productMenu id="quickGuide"
  9790. type="1"
  9791. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9792. size="344KB" >
  9793. </productMenu>
  9794. <productMenu id="userGuide"
  9795. type="1"
  9796. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  9797. size="1.14MB" >
  9798. </productMenu>
  9799. <productMenu id="connectGuide"
  9800. type="1"
  9801. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  9802. size="1.12MB" >
  9803. </productMenu>
  9804. <productID id="4023"
  9805. />
  9806. <productGroupable type="0"
  9807. />
  9808. </product>
  9809. <product id="3SPLUS"
  9810. name="3S PLUS"
  9811. series="3"
  9812. latestVersion="1.1"
  9813. show = "-1" >
  9814. <productMenu id="protocol"
  9815. type="0">
  9816. </productMenu>
  9817. <productMenu id="sip"
  9818. type="1" >
  9819. </productMenu>
  9820. <productMenu id="bluetoothIntercom"
  9821. type="1" >
  9822. </productMenu>
  9823. <productMenu id="deviceSetting"
  9824. type="1"
  9825. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  9826. </productMenu>
  9827. <productMenu id="quickGuide"
  9828. type="1"
  9829. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9830. size="842KB" >
  9831. </productMenu>
  9832. <productMenu id="userGuide"
  9833. type="1"
  9834. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  9835. size="1.02MB" >
  9836. </productMenu>
  9837. <productID id="6320"
  9838. />
  9839. <productGroupable type="0"
  9840. />
  9841. </product>
  9842. <product id="AConnect"
  9843. name="Alpinestars A-Connect"
  9844. series="60"
  9845. latestVersion="1.0.2"
  9846. latestVersionMesh="0.19"
  9847. latestVersionVoicePrompt="1.6"
  9848. show = "-1" >
  9849. <productMenu id="protocol"
  9850. type="2" >
  9851. </productMenu>
  9852. <productMenu id="ota"
  9853. type="2" >
  9854. <otaLanguages>
  9855. <otaLanguage
  9856. id="0"
  9857. name="English"
  9858. package="0"
  9859. />
  9860. <otaLanguage
  9861. id="0"
  9862. name="French"
  9863. package="1"
  9864. />
  9865. <otaLanguage
  9866. id="0"
  9867. name="Spanish"
  9868. package="2"
  9869. />
  9870. <otaLanguage
  9871. id="0"
  9872. name="Italian"
  9873. package="3"
  9874. />
  9875. <otaLanguage
  9876. id="0"
  9877. name="German"
  9878. package="4"
  9879. />
  9880. <otaLanguage
  9881. id="0"
  9882. name="Dutch"
  9883. package="5"
  9884. />
  9885. <otaLanguage
  9886. id="0"
  9887. name="Russian"
  9888. package="6"
  9889. />
  9890. <otaLanguage
  9891. id="0"
  9892. name="Chinese"
  9893. package="7"
  9894. />
  9895. <otaLanguage
  9896. id="0"
  9897. name="Korean"
  9898. package="8"
  9899. />
  9900. <otaLanguage
  9901. id="0"
  9902. name="Japanese"
  9903. package="9"
  9904. />
  9905. <otaLanguage
  9906. id="0"
  9907. name="Finnish"
  9908. package="10"
  9909. />
  9910. <otaLanguage
  9911. id="0"
  9912. name="Polish"
  9913. package="11"
  9914. />
  9915. </otaLanguages>
  9916. <otaPackages>
  9917. <package
  9918. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  9919. size="5183988"
  9920. />
  9921. <package
  9922. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  9923. size="5183988"
  9924. />
  9925. <package
  9926. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  9927. size="5183988"
  9928. />
  9929. <package
  9930. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  9931. size="5183988"
  9932. />
  9933. <package
  9934. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  9935. size="5183988"
  9936. />
  9937. <package
  9938. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  9939. size="5183988"
  9940. />
  9941. <package
  9942. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  9943. size="5183988"
  9944. />
  9945. <package
  9946. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  9947. size="5183988"
  9948. />
  9949. <package
  9950. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  9951. size="5183988"
  9952. />
  9953. <package
  9954. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  9955. size="5183988"
  9956. />
  9957. <package
  9958. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  9959. size="5183988"
  9960. />
  9961. <package
  9962. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  9963. size="5183988"
  9964. />
  9965. </otaPackages>
  9966. </productMenu>
  9967. <productMenu id="sip"
  9968. type="1" >
  9969. </productMenu>
  9970. <productMenu id="illusion"
  9971. type="0" >
  9972. </productMenu>
  9973. <productMenu id="meshIntercom+"
  9974. type="3"
  9975. url="2" >
  9976. </productMenu>
  9977. <productMenu id="waveIntercom"
  9978. type="1" >
  9979. </productMenu>
  9980. <productMenu id="bluetoothIntercom"
  9981. type="1"
  9982. url="2" >
  9983. </productMenu>
  9984. <productMenu id="bluetoothIntercomGrouping"
  9985. type="0" >
  9986. </productMenu>
  9987. <productMenu id="fmradio"
  9988. type="1"
  9989. url="1" >
  9990. </productMenu>
  9991. <productMenu id="phone"
  9992. type="1" >
  9993. </productMenu>
  9994. <productMenu id="music"
  9995. type="1" >
  9996. </productMenu>
  9997. <productMenu id="musicSharing"
  9998. type="0" >
  9999. </productMenu>
  10000. <productMenu id="deviceSetting"
  10001. type="1"
  10002. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  10003. </productMenu>
  10004. <productMenu id="quickGuide"
  10005. type="0"
  10006. url=""
  10007. size="1.12MB" >
  10008. </productMenu>
  10009. <productMenu id="userGuide"
  10010. type="0"
  10011. url=""
  10012. size="2.0MB" >
  10013. </productMenu>
  10014. <productMenu id="videoGuide"
  10015. type="0"
  10016. url=""
  10017. size="3.41MB" >
  10018. </productMenu>
  10019. <productMenu id="volume"
  10020. type="16" >
  10021. </productMenu>
  10022. <productMenu id="volume+"
  10023. type="2"
  10024. url="0x6004" >
  10025. </productMenu>
  10026. <productMenu id="soundMode"
  10027. type="0" >
  10028. </productMenu>
  10029. <productMenu id="battery"
  10030. type="1" >
  10031. </productMenu>
  10032. <productID id="6A82"
  10033. />
  10034. <productGroupable type="0"
  10035. />
  10036. </product>
  10037. <product id="iCon"
  10038. name="iCon"
  10039. series="50"
  10040. latestVersion="1.2"
  10041. show = "0" >
  10042. <productMenu id="protocol"
  10043. type="2" >
  10044. </productMenu>
  10045. <productMenu id="alexa"
  10046. type="0" >
  10047. </productMenu>
  10048. <productMenu id="wa"
  10049. type="0" >
  10050. </productMenu>
  10051. <productMenu id="sip"
  10052. type="1" >
  10053. </productMenu>
  10054. <productMenu id="led"
  10055. type="3" >
  10056. </productMenu>
  10057. <productMenu id="meshIntercom"
  10058. type="20" >
  10059. </productMenu>
  10060. <productMenu id="meshIntercom+"
  10061. type="3"
  10062. url="0" >
  10063. <productMenuType version="1.0.9"
  10064. type="2"
  10065. />
  10066. </productMenu>
  10067. <productMenu id="bluetoothIntercom"
  10068. type="1" >
  10069. </productMenu>
  10070. <productMenu id="phone"
  10071. type="1" >
  10072. </productMenu>
  10073. <productMenu id="music"
  10074. type="1" >
  10075. </productMenu>
  10076. <productMenu id="fmradio"
  10077. type="1" >
  10078. </productMenu>
  10079. <productMenu id="deviceSetting"
  10080. type="1"
  10081. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10082. <productMenuURL version="1.0.9"
  10083. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10084. />
  10085. </productMenu>
  10086. <productMenu id="quickGuide"
  10087. type="1"
  10088. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10089. size="344KB" >
  10090. </productMenu>
  10091. <productMenu id="userGuide"
  10092. type="1"
  10093. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10094. size="3.41MB" >
  10095. </productMenu>
  10096. <productMenu id="volume"
  10097. type="11" >
  10098. </productMenu>
  10099. <productMenu id="battery"
  10100. type="1" >
  10101. </productMenu>
  10102. <productID id="3900"
  10103. />
  10104. <productGroupable type="0"
  10105. />
  10106. </product>
  10107. <product id="ICONHelmLinkSL"
  10108. name="ICON HelmLink SL"
  10109. series="50"
  10110. latestVersion="1.0"
  10111. latestVersionVoicePrompt="1.6"
  10112. show = "-1" >
  10113. <productMenu id="protocol"
  10114. type="2" >
  10115. </productMenu>
  10116. <productMenu id="alexa"
  10117. type="0" >
  10118. </productMenu>
  10119. <productMenu id="ota"
  10120. type="0" >
  10121. <otaPackages>
  10122. <package
  10123. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/ICON_HELMLINK_SL-v0.9-build0.img"
  10124. size="2945812"
  10125. />
  10126. </otaPackages>
  10127. </productMenu>
  10128. <productMenu id="wa"
  10129. type="0" >
  10130. </productMenu>
  10131. <productMenu id="meshIntercom"
  10132. type="30" >
  10133. </productMenu>
  10134. <productMenu id="meshIntercom+"
  10135. type="3"
  10136. url="2" >
  10137. </productMenu>
  10138. <productMenu id="waveIntercom"
  10139. type="1" >
  10140. </productMenu>
  10141. <productMenu id="phone"
  10142. type="1" >
  10143. </productMenu>
  10144. <productMenu id="music"
  10145. type="1" >
  10146. </productMenu>
  10147. <productMenu id="musicSharing"
  10148. type="0" >
  10149. </productMenu>
  10150. <productMenu id="deviceSetting"
  10151. type="1"
  10152. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10153. </productMenu>
  10154. <productMenu id="quickGuide"
  10155. type="0"
  10156. url=""
  10157. size="1.12MB" >
  10158. </productMenu>
  10159. <productMenu id="userGuide"
  10160. type="1"
  10161. url=""
  10162. size="2.0MB" >
  10163. </productMenu>
  10164. <productMenu id="volume"
  10165. type="12" >
  10166. </productMenu>
  10167. <productMenu id="battery"
  10168. type="1" >
  10169. </productMenu>
  10170. <productID id="6842"
  10171. />
  10172. <productGroupable type="0"
  10173. />
  10174. </product>
  10175. <product id="HD50S"
  10176. name="H-D Audio 50S"
  10177. series="50"
  10178. latestVersion="1.0.1"
  10179. show = "-1" >
  10180. <productMenu id="protocol"
  10181. type="2" >
  10182. </productMenu>
  10183. <productMenu id="alexa"
  10184. type="0" >
  10185. </productMenu>
  10186. <productMenu id="ota"
  10187. type="0"
  10188. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10189. size="1150234" >
  10190. </productMenu>
  10191. <productMenu id="wa"
  10192. type="1" >
  10193. </productMenu>
  10194. <productMenu id="sip"
  10195. type="1" >
  10196. </productMenu>
  10197. <productMenu id="meshIntercom"
  10198. type="20" >
  10199. </productMenu>
  10200. <productMenu id="meshIntercom+"
  10201. type="3"
  10202. url="0" >
  10203. <productMenuType version="1.0.9"
  10204. type="2"
  10205. />
  10206. </productMenu>
  10207. <productMenu id="bluetoothIntercom"
  10208. type="1" >
  10209. </productMenu>
  10210. <productMenu id="phone"
  10211. type="1" >
  10212. </productMenu>
  10213. <productMenu id="music"
  10214. type="1" >
  10215. </productMenu>
  10216. <productMenu id="fmradio"
  10217. type="1" >
  10218. </productMenu>
  10219. <productMenu id="deviceSetting"
  10220. type="1"
  10221. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10222. <productMenuURL version="1.0.9"
  10223. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10224. />
  10225. </productMenu>
  10226. <productMenu id="quickGuide"
  10227. type="1"
  10228. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10229. size="934KB" >
  10230. </productMenu>
  10231. <productMenu id="userGuide"
  10232. type="1"
  10233. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10234. size="1.14MB" >
  10235. </productMenu>
  10236. <productMenu id="volume"
  10237. type="11" >
  10238. </productMenu>
  10239. <productMenu id="battery"
  10240. type="1" >
  10241. </productMenu>
  10242. <productID id="3156"
  10243. />
  10244. <productGroupable type="0"
  10245. />
  10246. </product>
  10247. <product id="HD50S"
  10248. name="H-D Audio 50S"
  10249. series="50"
  10250. latestVersion="2.0.2"
  10251. show = "0" >
  10252. <productMenu id="protocol"
  10253. type="2" >
  10254. </productMenu>
  10255. <productMenu id="alexa"
  10256. type="0" >
  10257. </productMenu>
  10258. <productMenu id="ota"
  10259. type="0"
  10260. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10261. size="1150234" >
  10262. </productMenu>
  10263. <productMenu id="wa"
  10264. type="1" >
  10265. </productMenu>
  10266. <productMenu id="sip"
  10267. type="1" >
  10268. </productMenu>
  10269. <productMenu id="meshIntercom"
  10270. type="20" >
  10271. </productMenu>
  10272. <productMenu id="meshIntercom+"
  10273. type="3"
  10274. url="0" >
  10275. <productMenuType version="2.0.9"
  10276. type="2"
  10277. />
  10278. </productMenu>
  10279. <productMenu id="bluetoothIntercom"
  10280. type="1" >
  10281. </productMenu>
  10282. <productMenu id="phone"
  10283. type="1" >
  10284. </productMenu>
  10285. <productMenu id="music"
  10286. type="1" >
  10287. </productMenu>
  10288. <productMenu id="fmradio"
  10289. type="1" >
  10290. </productMenu>
  10291. <productMenu id="deviceSetting"
  10292. type="1"
  10293. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10294. <productMenuURL version="2.0.9"
  10295. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10296. />
  10297. </productMenu>
  10298. <productMenu id="quickGuide"
  10299. type="1"
  10300. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10301. size="934KB" >
  10302. </productMenu>
  10303. <productMenu id="userGuide"
  10304. type="1"
  10305. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10306. size="1.14MB" >
  10307. </productMenu>
  10308. <productMenu id="volume"
  10309. type="11" >
  10310. </productMenu>
  10311. <productMenu id="battery"
  10312. type="1" >
  10313. </productMenu>
  10314. <productID id="3213"
  10315. />
  10316. <productGroupable type="0"
  10317. />
  10318. </product>
  10319. <product id="HD50C"
  10320. name="H-D Audio 50C"
  10321. series="50"
  10322. latestVersion="1.0.1"
  10323. show = "0" >
  10324. <productMenu id="protocol"
  10325. type="2" >
  10326. </productMenu>
  10327. <productMenu id="ota"
  10328. type="0" >
  10329. </productMenu>
  10330. <productMenu id="wa"
  10331. type="1" >
  10332. </productMenu>
  10333. <productMenu id="sip"
  10334. type="1" >
  10335. </productMenu>
  10336. <productMenu id="meshIntercom"
  10337. type="20" >
  10338. </productMenu>
  10339. <productMenu id="meshIntercom+"
  10340. type="3"
  10341. url="0" >
  10342. <productMenuType version="1.0.9"
  10343. type="2"
  10344. />
  10345. </productMenu>
  10346. <productMenu id="bluetoothIntercom"
  10347. type="1" >
  10348. </productMenu>
  10349. <productMenu id="phone"
  10350. type="1" >
  10351. </productMenu>
  10352. <productMenu id="music"
  10353. type="1" >
  10354. </productMenu>
  10355. <productMenu id="fmradio"
  10356. type="1" >
  10357. </productMenu>
  10358. <productMenu id="deviceSetting"
  10359. type="1"
  10360. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10361. <productMenuURL version="1.0.9"
  10362. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10363. />
  10364. </productMenu>
  10365. <productMenu id="quickGuide"
  10366. type="1"
  10367. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10368. size="344KB" >
  10369. </productMenu>
  10370. <productMenu id="userGuide"
  10371. type="1"
  10372. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10373. size="3.41MB" >
  10374. </productMenu>
  10375. <productMenu id="volume"
  10376. type="11" >
  10377. </productMenu>
  10378. <productMenu id="battery"
  10379. type="1" >
  10380. </productMenu>
  10381. <productID id="3240"
  10382. />
  10383. <productGroupable type="0"
  10384. />
  10385. </product>
  10386. <product id="HD50S"
  10387. name="FURY N04"
  10388. series="Helmet"
  10389. latestVersion="1.0"
  10390. show = "0" >
  10391. <productMenu id="protocol"
  10392. type="2" >
  10393. </productMenu>
  10394. <productMenu id="alexa"
  10395. type="0" >
  10396. </productMenu>
  10397. <productMenu id="ota"
  10398. type="0" >
  10399. </productMenu>
  10400. <productMenu id="wa"
  10401. type="0" >
  10402. </productMenu>
  10403. <productMenu id="meshIntercom"
  10404. type="20" >
  10405. </productMenu>
  10406. <productMenu id="meshIntercom+"
  10407. type="3"
  10408. url="0" >
  10409. <productMenuType version="1.0.9"
  10410. type="2"
  10411. />
  10412. </productMenu>
  10413. <productMenu id="phone"
  10414. type="1" >
  10415. </productMenu>
  10416. <productMenu id="music"
  10417. type="1" >
  10418. </productMenu>
  10419. <productMenu id="fmradio"
  10420. type="1" >
  10421. </productMenu>
  10422. <productMenu id="deviceSetting"
  10423. type="1"
  10424. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10425. <productMenuURL version="1.0.9"
  10426. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10427. />
  10428. </productMenu>
  10429. <productMenu id="quickGuide"
  10430. type="1"
  10431. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10432. size="1.12MB" >
  10433. </productMenu>
  10434. <productMenu id="userGuide"
  10435. type="1"
  10436. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10437. size="2.0MB" >
  10438. </productMenu>
  10439. <productMenu id="volume"
  10440. type="13" >
  10441. </productMenu>
  10442. <productMenu id="battery"
  10443. type="1" >
  10444. </productMenu>
  10445. <productID id="5553"
  10446. />
  10447. <productGroupable type="0"
  10448. />
  10449. </product>
  10450. <product id="XCOM3Pro"
  10451. name="X-COM3 Pro"
  10452. series="50"
  10453. latestVersion="1.1"
  10454. show = "0" >
  10455. <productMenu id="protocol"
  10456. type="2" >
  10457. </productMenu>
  10458. <productMenu id="alexa"
  10459. type="0" >
  10460. </productMenu>
  10461. <productMenu id="ota"
  10462. type="0" >
  10463. </productMenu>
  10464. <productMenu id="wa"
  10465. type="0" >
  10466. </productMenu>
  10467. <productMenu id="sip"
  10468. type="1" >
  10469. </productMenu>
  10470. <productMenu id="meshIntercom"
  10471. type="30" >
  10472. </productMenu>
  10473. <productMenu id="meshIntercom+"
  10474. type="3"
  10475. url="2" >
  10476. <productMenuType version="1.1"
  10477. type="2"
  10478. />
  10479. </productMenu>
  10480. <productMenu id="waveIntercom"
  10481. type="1" >
  10482. <productMenuType version="1.1"
  10483. type="0"
  10484. />
  10485. </productMenu>
  10486. <productMenu id="bluetoothIntercom"
  10487. type="1" >
  10488. </productMenu>
  10489. <productMenu id="phone"
  10490. type="1" >
  10491. </productMenu>
  10492. <productMenu id="music"
  10493. type="1" >
  10494. </productMenu>
  10495. <productMenu id="fmradio"
  10496. type="1" >
  10497. </productMenu>
  10498. <productMenu id="deviceSetting"
  10499. type="1"
  10500. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10501. <productMenuURL version="1.1"
  10502. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10503. />
  10504. </productMenu>
  10505. <productMenu id="quickGuide"
  10506. type="0"
  10507. url=""
  10508. size="344KB" >
  10509. </productMenu>
  10510. <productMenu id="userGuide"
  10511. type="1"
  10512. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10513. size="3.41MB" >
  10514. </productMenu>
  10515. <productMenu id="volume"
  10516. type="11" >
  10517. </productMenu>
  10518. <productMenu id="battery"
  10519. type="1" >
  10520. </productMenu>
  10521. <productID id="321A"
  10522. />
  10523. <productGroupable type="0"
  10524. />
  10525. </product>
  10526. <product id="XCOM3"
  10527. name="X-COM3"
  10528. series="20"
  10529. latestVersion="1.0"
  10530. show = "0" >
  10531. <productMenu id="protocol"
  10532. type="2" >
  10533. </productMenu>
  10534. <productMenu id="sip"
  10535. type="1" >
  10536. </productMenu>
  10537. <productMenu id="bluetoothIntercom"
  10538. type="1" >
  10539. </productMenu>
  10540. <productMenu id="phone"
  10541. type="1" >
  10542. </productMenu>
  10543. <productMenu id="music"
  10544. type="1" >
  10545. </productMenu>
  10546. <productMenu id="fmradio"
  10547. type="1" >
  10548. </productMenu>
  10549. <productMenu id="deviceSetting"
  10550. type="1"
  10551. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10552. </productMenu>
  10553. <productMenu id="quickGuide"
  10554. type="0"
  10555. url=""
  10556. size="934KB" >
  10557. </productMenu>
  10558. <productMenu id="userGuide"
  10559. type="1"
  10560. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  10561. size="1.14MB" >
  10562. </productMenu>
  10563. <productMenu id="volume"
  10564. type="15" >
  10565. </productMenu>
  10566. <productID id="3410"
  10567. />
  10568. <productGroupable type="0"
  10569. />
  10570. </product>
  10571. <product id="X-COM2"
  10572. name="X-COM2"
  10573. series="20"
  10574. latestVersion="1.0.5"
  10575. show = "0" >
  10576. <productMenu id="protocol"
  10577. type="0">
  10578. </productMenu>
  10579. <productMenu id="sip"
  10580. type="1" >
  10581. </productMenu>
  10582. <productMenu id="bluetoothIntercom"
  10583. type="1" >
  10584. </productMenu>
  10585. <productMenu id="intercomSetting"
  10586. type="1" >
  10587. </productMenu>
  10588. <productMenu id="phone"
  10589. type="2" >
  10590. </productMenu>
  10591. <productMenu id="fmradio"
  10592. type="3" >
  10593. </productMenu>
  10594. <productMenu id="deviceSetting"
  10595. type="1"
  10596. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  10597. </productMenu>
  10598. <productMenu id="quickGuide"
  10599. type="1"
  10600. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  10601. size="796KB" >
  10602. </productMenu>
  10603. <productMenu id="userGuide"
  10604. type="1"
  10605. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  10606. size="1.90MB" >
  10607. </productMenu>
  10608. <productID id="2030"
  10609. />
  10610. <productGroupable type="1"
  10611. />
  10612. </product>
  10613. <product id="AVAABC"
  10614. name="AVA ABC"
  10615. series="SPIDER"
  10616. latestVersion="1.1"
  10617. show = "0" >
  10618. <productMenu id="protocol"
  10619. type="2" >
  10620. </productMenu>
  10621. <productMenu id="alexa"
  10622. type="0" >
  10623. </productMenu>
  10624. <productMenu id="ota"
  10625. type="0" >
  10626. <productMenuType version="1.0"
  10627. type="0"
  10628. />
  10629. <otaPackages>
  10630. <package
  10631. url="https://api.sena.com/support/OTA/"
  10632. size="2945812"
  10633. />
  10634. </otaPackages>
  10635. </productMenu>
  10636. <productMenu id="wa"
  10637. type="0" >
  10638. </productMenu>
  10639. <productMenu id="meshIntercom"
  10640. type="30" >
  10641. <productMenuType version="1.0"
  10642. type="20"
  10643. />
  10644. </productMenu>
  10645. <productMenu id="meshIntercom+"
  10646. type="3"
  10647. url="2" >
  10648. <productMenuType version="1.0"
  10649. type="2"
  10650. />
  10651. <productMenuURL version="1.0"
  10652. url="0"
  10653. />
  10654. </productMenu>
  10655. <productMenu id="waveIntercom"
  10656. type="1" >
  10657. <productMenuType version="1.0"
  10658. type="0"
  10659. />
  10660. </productMenu>
  10661. <productMenu id="phone"
  10662. type="1" >
  10663. </productMenu>
  10664. <productMenu id="music"
  10665. type="1" >
  10666. </productMenu>
  10667. <productMenu id="musicSharing"
  10668. type="0" >
  10669. </productMenu>
  10670. <productMenu id="deviceSetting"
  10671. type="1"
  10672. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  10673. <productMenuURL version="1.0"
  10674. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  10675. />
  10676. </productMenu>
  10677. <productMenu id="quickGuide"
  10678. type="1"
  10679. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  10680. size="1.12MB" >
  10681. </productMenu>
  10682. <productMenu id="userGuide"
  10683. type="1"
  10684. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  10685. size="2.0MB" >
  10686. </productMenu>
  10687. <productMenu id="volume"
  10688. type="12" >
  10689. </productMenu>
  10690. <productMenu id="battery"
  10691. type="1" >
  10692. </productMenu>
  10693. <productID id="6808"
  10694. />
  10695. <productGroupable type="0"
  10696. />
  10697. </product>
  10698. <product id="ADVANCEProCOM2"
  10699. name="ADVANCE ProCOM 2"
  10700. series="Helmet"
  10701. latestVersion="0.5"
  10702. latestVersionVoicePrompt="0.3"
  10703. show = "-1" >
  10704. <productMenu id="protocol"
  10705. type="2" >
  10706. </productMenu>
  10707. <productMenu id="ota"
  10708. type="2" >
  10709. <otaLanguages>
  10710. <otaLanguage
  10711. id="0"
  10712. name="English"
  10713. package="0"
  10714. />
  10715. <otaLanguage
  10716. id="0"
  10717. name="French"
  10718. package="1"
  10719. />
  10720. <otaLanguage
  10721. id="0"
  10722. name="Spanish"
  10723. package="2"
  10724. />
  10725. <otaLanguage
  10726. id="0"
  10727. name="Italian"
  10728. package="3"
  10729. />
  10730. <otaLanguage
  10731. id="0"
  10732. name="German"
  10733. package="4"
  10734. />
  10735. <otaLanguage
  10736. id="0"
  10737. name="Dutch"
  10738. package="5"
  10739. />
  10740. <otaLanguage
  10741. id="0"
  10742. name="Russian"
  10743. package="6"
  10744. />
  10745. <otaLanguage
  10746. id="0"
  10747. name="Chinese"
  10748. package="7"
  10749. />
  10750. <otaLanguage
  10751. id="0"
  10752. name="Korean"
  10753. package="8"
  10754. />
  10755. <otaLanguage
  10756. id="0"
  10757. name="Japanese"
  10758. package="9"
  10759. />
  10760. <otaLanguage
  10761. id="0"
  10762. name="Finnish"
  10763. package="10"
  10764. />
  10765. <otaLanguage
  10766. id="0"
  10767. name="Polish"
  10768. package="11"
  10769. />
  10770. </otaLanguages>
  10771. <otaPackages>
  10772. <package
  10773. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  10774. size="5183988"
  10775. />
  10776. <package
  10777. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  10778. size="5183988"
  10779. />
  10780. <package
  10781. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  10782. size="5183988"
  10783. />
  10784. <package
  10785. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  10786. size="5183988"
  10787. />
  10788. <package
  10789. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  10790. size="5183988"
  10791. />
  10792. <package
  10793. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  10794. size="5183988"
  10795. />
  10796. <package
  10797. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  10798. size="5183988"
  10799. />
  10800. <package
  10801. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  10802. size="5183988"
  10803. />
  10804. <package
  10805. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  10806. size="5183988"
  10807. />
  10808. <package
  10809. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  10810. size="5183988"
  10811. />
  10812. <package
  10813. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  10814. size="5183988"
  10815. />
  10816. <package
  10817. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  10818. size="5183988"
  10819. />
  10820. </otaPackages>
  10821. </productMenu>
  10822. <productMenu id="wa"
  10823. type="0" >
  10824. </productMenu>
  10825. <productMenu id="meshIntercom"
  10826. type="30" >
  10827. </productMenu>
  10828. <productMenu id="meshIntercom+"
  10829. type="3"
  10830. url="2" >
  10831. </productMenu>
  10832. <productMenu id="waveIntercom"
  10833. type="1" >
  10834. </productMenu>
  10835. <productMenu id="fmradio"
  10836. type="1" >
  10837. </productMenu>
  10838. <productMenu id="phone"
  10839. type="0" >
  10840. </productMenu>
  10841. <productMenu id="music"
  10842. type="1" >
  10843. </productMenu>
  10844. <productMenu id="musicSharing"
  10845. type="0" >
  10846. </productMenu>
  10847. <productMenu id="deviceSetting"
  10848. type="1"
  10849. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  10850. </productMenu>
  10851. <productMenu id="quickGuide"
  10852. type="0"
  10853. url=""
  10854. size="1.12MB" >
  10855. </productMenu>
  10856. <productMenu id="userGuide"
  10857. type="1"
  10858. url=""
  10859. size="2.0MB" >
  10860. </productMenu>
  10861. <productMenu id="videoGuide"
  10862. type="0"
  10863. url=""
  10864. size="3.41MB" >
  10865. </productMenu>
  10866. <productMenu id="connectGuide"
  10867. type="1"
  10868. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  10869. size="1.12MB" >
  10870. </productMenu>
  10871. <productMenu id="volume"
  10872. type="16" >
  10873. </productMenu>
  10874. <productMenu id="battery"
  10875. type="1" >
  10876. </productMenu>
  10877. <productID id="6A85"
  10878. />
  10879. <productGroupable type="0"
  10880. />
  10881. </product>
  10882. <product id="Triumph_50S"
  10883. name="Triumph 50S"
  10884. series="50"
  10885. latestVersion="1.5"
  10886. show = "0" >
  10887. <productMenu id="protocol"
  10888. type="2" >
  10889. </productMenu>
  10890. <productMenu id="alexa"
  10891. type="0" >
  10892. </productMenu>
  10893. <productMenu id="ota"
  10894. type="0"
  10895. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10896. size="1150234" >
  10897. </productMenu>
  10898. <productMenu id="wa"
  10899. type="1" >
  10900. </productMenu>
  10901. <productMenu id="sip"
  10902. type="1" >
  10903. </productMenu>
  10904. <productMenu id="meshIntercom"
  10905. type="20" >
  10906. </productMenu>
  10907. <productMenu id="bluetoothIntercom"
  10908. type="1" >
  10909. </productMenu>
  10910. <productMenu id="meshIntercom+"
  10911. type="3"
  10912. url="2" >
  10913. <productMenuType version="1.2.9"
  10914. type="2"
  10915. />
  10916. <productMenuURL version="1.2.9"
  10917. url="0"
  10918. />
  10919. </productMenu>
  10920. <productMenu id="waveIntercom"
  10921. type="1" >
  10922. <productMenuType version="1.2.9"
  10923. type="0"
  10924. />
  10925. </productMenu>
  10926. <productMenu id="phone"
  10927. type="1" >
  10928. </productMenu>
  10929. <productMenu id="music"
  10930. type="1" >
  10931. </productMenu>
  10932. <productMenu id="fmradio"
  10933. type="1" >
  10934. </productMenu>
  10935. <productMenu id="deviceSetting"
  10936. type="1"
  10937. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  10938. <productMenuURL version="1.2.9"
  10939. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  10940. />
  10941. <productMenuURL version="1.0"
  10942. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10943. />
  10944. </productMenu>
  10945. <productMenu id="quickGuide"
  10946. type="1"
  10947. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  10948. size="934KB" >
  10949. </productMenu>
  10950. <productMenu id="userGuide"
  10951. type="1"
  10952. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  10953. size="1.14MB" >
  10954. </productMenu>
  10955. <productMenu id="volume"
  10956. type="11" >
  10957. </productMenu>
  10958. <productMenu id="battery"
  10959. type="1" >
  10960. </productMenu>
  10961. <productID id="3264"
  10962. />
  10963. <productGroupable type="0"
  10964. />
  10965. </product>
  10966. <product id="RE50S"
  10967. name="RE 50S"
  10968. series="50"
  10969. latestVersion="2.7"
  10970. show = "0" >
  10971. <productMenu id="protocol"
  10972. type="2" >
  10973. </productMenu>
  10974. <productMenu id="alexa"
  10975. type="0" >
  10976. </productMenu>
  10977. <productMenu id="ota"
  10978. type="0"
  10979. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10980. size="1150234" >
  10981. </productMenu>
  10982. <productMenu id="wa"
  10983. type="1" >
  10984. </productMenu>
  10985. <productMenu id="sip"
  10986. type="1" >
  10987. </productMenu>
  10988. <productMenu id="meshIntercom"
  10989. type="30" >
  10990. </productMenu>
  10991. <productMenu id="meshIntercom+"
  10992. type="3"
  10993. url="2" >
  10994. <productMenuType version="2.5"
  10995. type="2"
  10996. />
  10997. </productMenu>
  10998. <productMenu id="waveIntercom"
  10999. type="1" >
  11000. <productMenuType version="2.5"
  11001. type="0"
  11002. />
  11003. </productMenu>
  11004. <productMenu id="bluetoothIntercom"
  11005. type="1" >
  11006. </productMenu>
  11007. <productMenu id="phone"
  11008. type="1" >
  11009. </productMenu>
  11010. <productMenu id="music"
  11011. type="1" >
  11012. </productMenu>
  11013. <productMenu id="fmradio"
  11014. type="1" >
  11015. </productMenu>
  11016. <productMenu id="deviceSetting"
  11017. type="1"
  11018. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11019. <productMenuURL version="2.5.9"
  11020. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11021. />
  11022. </productMenu>
  11023. <productMenu id="quickGuide"
  11024. type="1"
  11025. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11026. size="934KB" >
  11027. </productMenu>
  11028. <productMenu id="userGuide"
  11029. type="1"
  11030. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11031. size="1.14MB" >
  11032. </productMenu>
  11033. <productMenu id="videoGuide"
  11034. type="0"
  11035. url=""
  11036. size="3.41MB" >
  11037. </productMenu>
  11038. <productMenu id="volume"
  11039. type="11" >
  11040. </productMenu>
  11041. <productMenu id="battery"
  11042. type="1" >
  11043. </productMenu>
  11044. <productID id="321C"
  11045. />
  11046. <productGroupable type="0"
  11047. />
  11048. </product>
  11049. <product id="BMW_HELMET_II_U1"
  11050. name="BMW HELMET II U1"
  11051. series="50"
  11052. latestVersion="1.0"
  11053. show = "0" >
  11054. <productMenu id="protocol"
  11055. type="2" >
  11056. </productMenu>
  11057. <productMenu id="alexa"
  11058. type="0" >
  11059. </productMenu>
  11060. <productMenu id="sip"
  11061. type="1" >
  11062. </productMenu>
  11063. <productMenu id="meshIntercom"
  11064. type="20" >
  11065. </productMenu>
  11066. <productMenu id="bluetoothIntercom"
  11067. type="1" >
  11068. </productMenu>
  11069. <productMenu id="bluetoothIntercom2"
  11070. type="1" >
  11071. </productMenu>
  11072. <productMenu id="phone"
  11073. type="1" >
  11074. </productMenu>
  11075. <productMenu id="music"
  11076. type="1" >
  11077. </productMenu>
  11078. <productMenu id="fmradio"
  11079. type="1" >
  11080. </productMenu>
  11081. <productMenu id="deviceSetting"
  11082. type="1"
  11083. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11084. </productMenu>
  11085. <productMenu id="quickGuide"
  11086. type="1"
  11087. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11088. size="934KB" >
  11089. </productMenu>
  11090. <productMenu id="userGuide"
  11091. type="1"
  11092. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11093. size="1.14MB" >
  11094. </productMenu>
  11095. <productMenu id="volume"
  11096. type="11" >
  11097. </productMenu>
  11098. <productMenu id="battery"
  11099. type="1" >
  11100. </productMenu>
  11101. <productID id="3260"
  11102. />
  11103. <productGroupable type="0"
  11104. />
  11105. </product>
  11106. <product id="OUTRUSHR"
  11107. name="CX935"
  11108. series="Helmet"
  11109. latestVersion="2.1"
  11110. show = "-1" >
  11111. <productMenu id="protocol"
  11112. type="3">
  11113. </productMenu>
  11114. <productMenu id="sip"
  11115. type="1" >
  11116. </productMenu>
  11117. <productMenu id="bluetoothIntercom"
  11118. type="1" >
  11119. </productMenu>
  11120. <productMenu id="phone"
  11121. type="1" >
  11122. </productMenu>
  11123. <productMenu id="fmradio"
  11124. type="0" >
  11125. </productMenu>
  11126. <productMenu id="deviceSetting"
  11127. type="1"
  11128. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11129. </productMenu>
  11130. <productMenu id="userGuide"
  11131. type="1"
  11132. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11133. size="660KB" >
  11134. </productMenu>
  11135. <productID id="5446"
  11136. />
  11137. <productGroupable type="0"
  11138. />
  11139. </product>
  11140. <product id="LSE_01"
  11141. name="LSE-01"
  11142. series="SF"
  11143. latestVersion="1.2.3"
  11144. show = "0" >
  11145. <productMenu id="protocol"
  11146. type="1"
  11147. url="3">
  11148. </productMenu>
  11149. <productMenu id="sip"
  11150. type="1" >
  11151. </productMenu>
  11152. <productMenu id="bluetoothIntercom"
  11153. type="1" >
  11154. </productMenu>
  11155. <productMenu id="phone"
  11156. type="1" >
  11157. </productMenu>
  11158. <productMenu id="music"
  11159. type="1" >
  11160. </productMenu>
  11161. <productMenu id="fmradio"
  11162. type="1" >
  11163. </productMenu>
  11164. <productMenu id="deviceSetting"
  11165. type="1"
  11166. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11167. <productMenuURL version="1.1"
  11168. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11169. />
  11170. <productMenuURL version="1.0"
  11171. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11172. />
  11173. </productMenu>
  11174. <productMenu id="quickGuide"
  11175. type="1"
  11176. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11177. size="607KB" >
  11178. </productMenu>
  11179. <productMenu id="userGuide"
  11180. type="1"
  11181. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11182. size="1.91MB" >
  11183. </productMenu>
  11184. <productMenu id="volume"
  11185. type="4" >
  11186. </productMenu>
  11187. <productID id="5416"
  11188. />
  11189. <productGroupable type="0"
  11190. />
  11191. </product>
  11192. <product id="AGV_ARK"
  11193. name="AGV ARK"
  11194. series="SF"
  11195. latestVersion="1.0.3"
  11196. show = "0" >
  11197. <productMenu id="protocol"
  11198. type="1"
  11199. url="3">
  11200. </productMenu>
  11201. <productMenu id="sip"
  11202. type="1" >
  11203. </productMenu>
  11204. <productMenu id="bluetoothIntercom"
  11205. type="1" >
  11206. </productMenu>
  11207. <productMenu id="phone"
  11208. type="1" >
  11209. </productMenu>
  11210. <productMenu id="music"
  11211. type="1" >
  11212. </productMenu>
  11213. <productMenu id="fmradio"
  11214. type="1" >
  11215. </productMenu>
  11216. <productMenu id="deviceSetting"
  11217. type="1"
  11218. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11219. </productMenu>
  11220. <productMenu id="quickGuide"
  11221. type="1"
  11222. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11223. size="607KB" >
  11224. </productMenu>
  11225. <productMenu id="userGuide"
  11226. type="1"
  11227. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11228. size="1.91MB" >
  11229. </productMenu>
  11230. <productMenu id="volume"
  11231. type="4" >
  11232. </productMenu>
  11233. <productID id="5420"
  11234. />
  11235. <productGroupable type="0"
  11236. />
  11237. </product>
  11238. <product id="KLIM_KRIOS"
  11239. name="KLIM Krios"
  11240. series="10"
  11241. latestVersion="1.1.2"
  11242. show = "0" >
  11243. <productMenu id="protocol"
  11244. type="0">
  11245. </productMenu>
  11246. <productMenu id="sip"
  11247. type="1" >
  11248. </productMenu>
  11249. <productMenu id="bluetoothIntercom"
  11250. type="1" >
  11251. </productMenu>
  11252. <productMenu id="phone"
  11253. type="2" >
  11254. </productMenu>
  11255. <productMenu id="fmradio"
  11256. type="3" >
  11257. </productMenu>
  11258. <productMenu id="deviceSetting"
  11259. type="1"
  11260. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11261. <productMenuURL version="1.0"
  11262. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11263. />
  11264. </productMenu>
  11265. <productMenu id="quickGuide"
  11266. type="1"
  11267. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11268. size="649KB" >
  11269. </productMenu>
  11270. <productMenu id="userGuide"
  11271. type="1"
  11272. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11273. size="1.43MB" >
  11274. </productMenu>
  11275. <productID id="5910"
  11276. />
  11277. <productGroupable type="0"
  11278. />
  11279. </product>
  11280. <product id="POLARIS_SLINGSHOT"
  11281. name="Polaris Slingshot"
  11282. series="10"
  11283. latestVersion="1.1.2"
  11284. show = "0" >
  11285. <productMenu id="protocol"
  11286. type="0">
  11287. </productMenu>
  11288. <productMenu id="sip"
  11289. type="1" >
  11290. </productMenu>
  11291. <productMenu id="bluetoothIntercom"
  11292. type="1" >
  11293. </productMenu>
  11294. <productMenu id="phone"
  11295. type="2" >
  11296. </productMenu>
  11297. <productMenu id="fmradio"
  11298. type="3" >
  11299. </productMenu>
  11300. <productMenu id="deviceSetting"
  11301. type="1"
  11302. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11303. <productMenuURL version="1.0"
  11304. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11305. />
  11306. </productMenu>
  11307. <productMenu id="quickGuide"
  11308. type="1"
  11309. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11310. size="689KB" >
  11311. </productMenu>
  11312. <productMenu id="userGuide"
  11313. type="1"
  11314. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11315. size="1.43MB" >
  11316. </productMenu>
  11317. <productID id="5920"
  11318. />
  11319. <productGroupable type="0"
  11320. />
  11321. </product>
  11322. <product id="DWO6"
  11323. name="SEDICI DWO6-PRO"
  11324. series="10"
  11325. latestVersion="1.0.2"
  11326. show = "0" >
  11327. <productMenu id="protocol"
  11328. type="0">
  11329. </productMenu>
  11330. <productMenu id="sip"
  11331. type="1" >
  11332. </productMenu>
  11333. <productMenu id="bluetoothIntercom"
  11334. type="1" >
  11335. </productMenu>
  11336. <productMenu id="phone"
  11337. type="2" >
  11338. </productMenu>
  11339. <productMenu id="fmradio"
  11340. type="3" >
  11341. </productMenu>
  11342. <productMenu id="deviceSetting"
  11343. type="1"
  11344. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  11345. </productMenu>
  11346. <productMenu id="quickGuide"
  11347. type="1"
  11348. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11349. size="529KB" >
  11350. </productMenu>
  11351. <productMenu id="userGuide"
  11352. type="1"
  11353. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11354. size="4.09MB" >
  11355. </productMenu>
  11356. <productID id="6112"
  11357. />
  11358. <productGroupable type="0"
  11359. />
  11360. </product>
  11361. <product id="DWO6A"
  11362. name="SEDICI DWO-6"
  11363. series="10"
  11364. latestVersion="1.0.2"
  11365. show = "0" >
  11366. <productMenu id="protocol"
  11367. type="0">
  11368. </productMenu>
  11369. <productMenu id="sip"
  11370. type="1" >
  11371. </productMenu>
  11372. <productMenu id="bluetoothIntercom"
  11373. type="1" >
  11374. </productMenu>
  11375. <productMenu id="phone"
  11376. type="2" >
  11377. </productMenu>
  11378. <productMenu id="fmradio"
  11379. type="3" >
  11380. </productMenu>
  11381. <productMenu id="deviceSetting"
  11382. type="1"
  11383. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  11384. </productMenu>
  11385. <productMenu id="quickGuide"
  11386. type="1"
  11387. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  11388. size="522KB" >
  11389. </productMenu>
  11390. <productMenu id="userGuide"
  11391. type="1"
  11392. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  11393. size="2.71MB" >
  11394. </productMenu>
  11395. <productID id="6114"
  11396. />
  11397. <productGroupable type="0"
  11398. />
  11399. </product>
  11400. <product id="3SPLUS"
  11401. name="ZILL"
  11402. series="3"
  11403. latestVersion="1.0.4"
  11404. show = "0" >
  11405. <productMenu id="protocol"
  11406. type="0">
  11407. </productMenu>
  11408. <productMenu id="sip"
  11409. type="1" >
  11410. </productMenu>
  11411. <productMenu id="bluetoothIntercom"
  11412. type="1" >
  11413. </productMenu>
  11414. <productMenu id="deviceSetting"
  11415. type="1"
  11416. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  11417. </productMenu>
  11418. <productMenu id="quickGuide"
  11419. type="1"
  11420. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11421. size="842KB" >
  11422. </productMenu>
  11423. <productMenu id="userGuide"
  11424. type="1"
  11425. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  11426. size="1.02MB" >
  11427. </productMenu>
  11428. <productID id="6335"
  11429. />
  11430. <productGroupable type="0"
  11431. />
  11432. </product>
  11433. <product id="HD50S"
  11434. name="Boom! Audio 30K"
  11435. series="30"
  11436. latestVersion="3.4"
  11437. show = "0" >
  11438. <productMenu id="protocol"
  11439. type="1"
  11440. url="0">
  11441. </productMenu>
  11442. <productMenu id="wa"
  11443. type="0" >
  11444. </productMenu>
  11445. <productMenu id="sip"
  11446. type="1" >
  11447. </productMenu>
  11448. <productMenu id="meshIntercom"
  11449. type="20" >
  11450. <productMenuType version="2.9.9"
  11451. type="10"
  11452. />
  11453. </productMenu>
  11454. <productMenu id="bluetoothIntercom"
  11455. type="1" >
  11456. </productMenu>
  11457. <productMenu id="phone"
  11458. type="1" >
  11459. </productMenu>
  11460. <productMenu id="music"
  11461. type="1" >
  11462. </productMenu>
  11463. <productMenu id="fmradio"
  11464. type="1" >
  11465. </productMenu>
  11466. <productMenu id="deviceSetting"
  11467. type="1"
  11468. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  11469. <productMenuURL version="3.2"
  11470. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  11471. />
  11472. <productMenuURL version="3.0"
  11473. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  11474. />
  11475. <productMenuURL version="2.2"
  11476. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11477. />
  11478. </productMenu>
  11479. <productMenu id="quickGuide"
  11480. type="1"
  11481. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11482. size="1.06MB" >
  11483. </productMenu>
  11484. <productMenu id="userGuide"
  11485. type="1"
  11486. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11487. size="3.15MB" >
  11488. </productMenu>
  11489. <productMenu id="volume"
  11490. type="1" >
  11491. </productMenu>
  11492. <productID id="3112"
  11493. />
  11494. <productGroupable type="0"
  11495. />
  11496. </product>
  11497. <product id="HD50S"
  11498. name="Boom! Audio N02"
  11499. series="30"
  11500. latestVersion="3.1"
  11501. show = "0" >
  11502. <productMenu id="protocol"
  11503. type="1"
  11504. url="0">
  11505. </productMenu>
  11506. <productMenu id="wa"
  11507. type="2" >
  11508. </productMenu>
  11509. <productMenu id="sip"
  11510. type="1" >
  11511. </productMenu>
  11512. <productMenu id="meshIntercom"
  11513. type="20" >
  11514. <productMenuType version="2.9.9"
  11515. type="10"
  11516. />
  11517. </productMenu>
  11518. <productMenu id="bluetoothIntercom"
  11519. type="1" >
  11520. </productMenu>
  11521. <productMenu id="phone"
  11522. type="1" >
  11523. </productMenu>
  11524. <productMenu id="music"
  11525. type="1" >
  11526. </productMenu>
  11527. <productMenu id="fmradio"
  11528. type="1" >
  11529. </productMenu>
  11530. <productMenu id="deviceSetting"
  11531. type="1"
  11532. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  11533. <productMenuURL version="2.2"
  11534. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11535. />
  11536. </productMenu>
  11537. <productMenu id="quickGuide"
  11538. type="1"
  11539. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  11540. size="1.06MB" >
  11541. </productMenu>
  11542. <productMenu id="userGuide"
  11543. type="1"
  11544. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  11545. size="3.15MB" >
  11546. </productMenu>
  11547. <productMenu id="volume"
  11548. type="2" >
  11549. </productMenu>
  11550. <productID id="3114"
  11551. />
  11552. <productGroupable type="0"
  11553. />
  11554. </product>
  11555. <product id="HD50S"
  11556. name="Boom Audio 20S"
  11557. series="50"
  11558. latestVersion="2.5.2"
  11559. show = "0" >
  11560. <productMenu id="protocol"
  11561. type="0">
  11562. </productMenu>
  11563. <productMenu id="sip"
  11564. type="1" >
  11565. <productMenuType version="1.0"
  11566. type="0"
  11567. />
  11568. </productMenu>
  11569. <productMenu id="bluetoothIntercom"
  11570. type="1" >
  11571. <productMenuType version="1.0"
  11572. type="0"
  11573. />
  11574. </productMenu>
  11575. <productMenu id="intercomSetting"
  11576. type="1" >
  11577. </productMenu>
  11578. <productMenu id="phone"
  11579. type="2" >
  11580. </productMenu>
  11581. <productMenu id="fmradio"
  11582. type="3" >
  11583. </productMenu>
  11584. <productMenu id="deviceSetting"
  11585. type="1"
  11586. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11587. <productMenuURL version="2.4"
  11588. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11589. />
  11590. <productMenuURL version="1.5"
  11591. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11592. />
  11593. <productMenuURL version="1.4.1"
  11594. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11595. />
  11596. <productMenuURL version="1.1"
  11597. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11598. />
  11599. <productMenuURL version="1.0"
  11600. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11601. />
  11602. </productMenu>
  11603. <productMenu id="quickGuide"
  11604. type="1"
  11605. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11606. size="264KB" >
  11607. </productMenu>
  11608. <productMenu id="userGuide"
  11609. type="1"
  11610. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11611. size="3.09MB" >
  11612. </productMenu>
  11613. <productMenu id="connectGuide"
  11614. type="1"
  11615. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  11616. size="1.12MB" >
  11617. </productMenu>
  11618. <productID id="4210"
  11619. />
  11620. <productProductKey key="11"
  11621. />
  11622. <productID id="4230"
  11623. />
  11624. <productProductKey key="11"
  11625. />
  11626. <productGroupable type="1"
  11627. />
  11628. </product>
  11629. <product id="HD50S"
  11630. name="Boom Audio 20S EVO"
  11631. series="50"
  11632. latestVersion="2.5.2"
  11633. show = "0" >
  11634. <productMenu id="protocol"
  11635. type="0">
  11636. </productMenu>
  11637. <productMenu id="sip"
  11638. type="1" >
  11639. <productMenuType version="1.0"
  11640. type="0"
  11641. />
  11642. </productMenu>
  11643. <productMenu id="bluetoothIntercom"
  11644. type="1" >
  11645. <productMenuType version="1.0"
  11646. type="0"
  11647. />
  11648. </productMenu>
  11649. <productMenu id="intercomSetting"
  11650. type="1" >
  11651. </productMenu>
  11652. <productMenu id="phone"
  11653. type="2" >
  11654. </productMenu>
  11655. <productMenu id="fmradio"
  11656. type="3" >
  11657. </productMenu>
  11658. <productMenu id="deviceSetting"
  11659. type="1"
  11660. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11661. <productMenuURL version="2.4"
  11662. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11663. />
  11664. <productMenuURL version="1.5"
  11665. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11666. />
  11667. <productMenuURL version="1.4.1"
  11668. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11669. />
  11670. <productMenuURL version="1.1"
  11671. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11672. />
  11673. <productMenuURL version="1.0"
  11674. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11675. />
  11676. </productMenu>
  11677. <productMenu id="quickGuide"
  11678. type="1"
  11679. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11680. size="321KB" >
  11681. </productMenu>
  11682. <productMenu id="userGuide"
  11683. type="1"
  11684. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11685. size="2.46MB" >
  11686. </productMenu>
  11687. <productID id="4230"
  11688. />
  11689. <productProductKey key="27"
  11690. />
  11691. <productGroupable type="1"
  11692. />
  11693. </product>
  11694. <product id="HD50S"
  11695. name="Boom! Audio 10S"
  11696. series="50"
  11697. latestVersion="1.1.3"
  11698. show = "0" >
  11699. <productMenu id="protocol"
  11700. type="0">
  11701. </productMenu>
  11702. <productMenu id="sip"
  11703. type="1" >
  11704. </productMenu>
  11705. <productMenu id="bluetoothIntercom"
  11706. type="1" >
  11707. </productMenu>
  11708. <productMenu id="phone"
  11709. type="2" >
  11710. </productMenu>
  11711. <productMenu id="fmradio"
  11712. type="3" >
  11713. </productMenu>
  11714. <productMenu id="deviceSetting"
  11715. type="1"
  11716. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  11717. </productMenu>
  11718. <productMenu id="quickGuide"
  11719. type="1"
  11720. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11721. size="538KB" >
  11722. </productMenu>
  11723. <productMenu id="userGuide"
  11724. type="1"
  11725. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11726. size="1.55MB" >
  11727. </productMenu>
  11728. <productID id="5532"
  11729. />
  11730. <productGroupable type="0"
  11731. />
  11732. </product>
  11733. <product id="HD50S"
  11734. name="Boom! Audio N01 10R"
  11735. series="50"
  11736. latestVersion="1.1.3"
  11737. show = "0" >
  11738. <productMenu id="protocol"
  11739. type="0">
  11740. </productMenu>
  11741. <productMenu id="sip"
  11742. type="1" >
  11743. </productMenu>
  11744. <productMenu id="bluetoothIntercom"
  11745. type="1" >
  11746. </productMenu>
  11747. <productMenu id="phone"
  11748. type="2" >
  11749. </productMenu>
  11750. <productMenu id="fmradio"
  11751. type="3" >
  11752. </productMenu>
  11753. <productMenu id="deviceSetting"
  11754. type="1"
  11755. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  11756. </productMenu>
  11757. <productMenu id="quickGuide"
  11758. type="1"
  11759. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  11760. size="766KB" >
  11761. </productMenu>
  11762. <productMenu id="userGuide"
  11763. type="1"
  11764. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  11765. size="1.45MB" >
  11766. </productMenu>
  11767. <productID id="5522"
  11768. />
  11769. <productGroupable type="0"
  11770. />
  11771. </product>
  11772. <product id="HD50S"
  11773. name="OUTRUSH-R N03"
  11774. series="50"
  11775. latestVersion="1.2.1"
  11776. show = "-1" >
  11777. <productMenu id="protocol"
  11778. type="0">
  11779. </productMenu>
  11780. <productMenu id="sip"
  11781. type="1" >
  11782. </productMenu>
  11783. <productMenu id="bluetoothIntercom"
  11784. type="1" >
  11785. </productMenu>
  11786. <productMenu id="phone"
  11787. type="2" >
  11788. </productMenu>
  11789. <productMenu id="fmradio"
  11790. type="3" >
  11791. </productMenu>
  11792. <productMenu id="deviceSetting"
  11793. type="1"
  11794. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  11795. </productMenu>
  11796. <productMenu id="userGuide"
  11797. type="1"
  11798. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  11799. size="660KB" >
  11800. </productMenu>
  11801. <productID id="5434"
  11802. />
  11803. <productGroupable type="0"
  11804. />
  11805. </product>
  11806. <product id="HD50S"
  11807. name="OUTRUSH-R N03"
  11808. series="50"
  11809. latestVersion="2.0"
  11810. show = "0" >
  11811. <productMenu id="protocol"
  11812. type="3" >
  11813. </productMenu>
  11814. <productMenu id="sip"
  11815. type="1" >
  11816. </productMenu>
  11817. <productMenu id="bluetoothIntercom"
  11818. type="1" >
  11819. </productMenu>
  11820. <productMenu id="phone"
  11821. type="1" >
  11822. </productMenu>
  11823. <productMenu id="fmradio"
  11824. type="1" >
  11825. </productMenu>
  11826. <productMenu id="deviceSetting"
  11827. type="1"
  11828. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  11829. </productMenu>
  11830. <productMenu id="userGuide"
  11831. type="1"
  11832. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  11833. size="1.14MB" >
  11834. </productMenu>
  11835. <productID id="5441"
  11836. />
  11837. <productGroupable type="0"
  11838. />
  11839. </product>
  11840. <product id="5R"
  11841. name="5R"
  11842. series="5"
  11843. latestVersion="1.0.1"
  11844. show = "1" >
  11845. <productMenu id="protocol"
  11846. type="3" >
  11847. </productMenu>
  11848. <productMenu id="sip"
  11849. type="1" >
  11850. </productMenu>
  11851. <productMenu id="bluetoothIntercom"
  11852. type="1" >
  11853. </productMenu>
  11854. <productMenu id="phone"
  11855. type="1" >
  11856. </productMenu>
  11857. <productMenu id="fmradio"
  11858. type="1" >
  11859. </productMenu>
  11860. <productMenu id="deviceSetting"
  11861. type="1"
  11862. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11863. </productMenu>
  11864. <productMenu id="quickGuide"
  11865. type="0"
  11866. url=""
  11867. size="934KB" >
  11868. </productMenu>
  11869. <productMenu id="userGuide"
  11870. type="1"
  11871. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  11872. size="1.14MB" >
  11873. </productMenu>
  11874. <productMenu id="connectGuide"
  11875. type="1"
  11876. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  11877. size="1.12MB" >
  11878. </productMenu>
  11879. <productID id="5591"
  11880. />
  11881. <productGroupable type="0"
  11882. />
  11883. </product>
  11884. <product id="5R"
  11885. name="5R LITE"
  11886. series="5"
  11887. latestVersion="1.0.1"
  11888. show = "1" >
  11889. <productMenu id="protocol"
  11890. type="3" >
  11891. </productMenu>
  11892. <productMenu id="sip"
  11893. type="1" >
  11894. </productMenu>
  11895. <productMenu id="bluetoothIntercom"
  11896. type="1" >
  11897. </productMenu>
  11898. <productMenu id="phone"
  11899. type="1" >
  11900. </productMenu>
  11901. <productMenu id="fmradio"
  11902. type="1" >
  11903. </productMenu>
  11904. <productMenu id="deviceSetting"
  11905. type="1"
  11906. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  11907. </productMenu>
  11908. <productMenu id="quickGuide"
  11909. type="0"
  11910. url=""
  11911. size="934KB" >
  11912. </productMenu>
  11913. <productMenu id="userGuide"
  11914. type="1"
  11915. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  11916. size="1.14MB" >
  11917. </productMenu>
  11918. <productMenu id="connectGuide"
  11919. type="1"
  11920. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  11921. size="1.12MB" >
  11922. </productMenu>
  11923. <productID id="5592"
  11924. />
  11925. <productGroupable type="0"
  11926. />
  11927. </product>
  11928. <product id="50RLE"
  11929. name="50R LE"
  11930. series="50"
  11931. latestVersion="1.1"
  11932. show = "0" >
  11933. <productMenu id="protocol"
  11934. type="2" >
  11935. </productMenu>
  11936. <productMenu id="alexa"
  11937. type="0" >
  11938. </productMenu>
  11939. <productMenu id="sip"
  11940. type="1" >
  11941. </productMenu>
  11942. <productMenu id="meshIntercom"
  11943. type="30" >
  11944. </productMenu>
  11945. <productMenu id="meshIntercom+"
  11946. type="3"
  11947. url="2" >
  11948. <productMenuType version="1.0.9"
  11949. type="2"
  11950. />
  11951. </productMenu>
  11952. <productMenu id="waveIntercom"
  11953. type="1" >
  11954. <productMenuType version="1.0.9"
  11955. type="0"
  11956. />
  11957. </productMenu>
  11958. <productMenu id="bluetoothIntercom"
  11959. type="1" >
  11960. </productMenu>
  11961. <productMenu id="phone"
  11962. type="1" >
  11963. </productMenu>
  11964. <productMenu id="music"
  11965. type="1" >
  11966. </productMenu>
  11967. <productMenu id="fmradio"
  11968. type="0" >
  11969. </productMenu>
  11970. <productMenu id="deviceSetting"
  11971. type="1"
  11972. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  11973. <productMenuURL version="1.0.9"
  11974. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  11975. />
  11976. </productMenu>
  11977. <productMenu id="quickGuide"
  11978. type="0"
  11979. url=""
  11980. size="344KB" >
  11981. </productMenu>
  11982. <productMenu id="userGuide"
  11983. type="0"
  11984. url=""
  11985. size="3.41MB" >
  11986. </productMenu>
  11987. <productMenu id="volume"
  11988. type="11" >
  11989. </productMenu>
  11990. <productMenu id="battery"
  11991. type="1" >
  11992. </productMenu>
  11993. <productID id="3223"
  11994. />
  11995. <productGroupable type="0"
  11996. />
  11997. </product>
  11998. <product id="5RLOUIS"
  11999. name="5R LOUIS EDITION"
  12000. series="5"
  12001. latestVersion="1.0"
  12002. show = "-1" >
  12003. <productMenu id="protocol"
  12004. type="3" >
  12005. </productMenu>
  12006. <productMenu id="sip"
  12007. type="1" >
  12008. </productMenu>
  12009. <productMenu id="bluetoothIntercom"
  12010. type="1" >
  12011. </productMenu>
  12012. <productMenu id="phone"
  12013. type="1" >
  12014. </productMenu>
  12015. <productMenu id="fmradio"
  12016. type="1" >
  12017. </productMenu>
  12018. <productMenu id="deviceSetting"
  12019. type="1"
  12020. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12021. </productMenu>
  12022. <productMenu id="quickGuide"
  12023. type="0"
  12024. url=""
  12025. size="934KB" >
  12026. </productMenu>
  12027. <productMenu id="userGuide"
  12028. type="0"
  12029. url=""
  12030. size="1.14MB" >
  12031. </productMenu>
  12032. <productID id="5597"
  12033. />
  12034. <productGroupable type="0"
  12035. />
  12036. </product>
  12037. <product id="5S"
  12038. name="Ridekont 5S"
  12039. series="5"
  12040. latestVersion="2.3"
  12041. show = "-1" >
  12042. <productMenu id="protocol"
  12043. type="3" >
  12044. </productMenu>
  12045. <productMenu id="sip"
  12046. type="1" >
  12047. </productMenu>
  12048. <productMenu id="bluetoothIntercom"
  12049. type="1" >
  12050. </productMenu>
  12051. <productMenu id="phone"
  12052. type="1" >
  12053. </productMenu>
  12054. <productMenu id="fmradio"
  12055. type="0" >
  12056. </productMenu>
  12057. <productMenu id="deviceSetting"
  12058. type="1"
  12059. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12060. </productMenu>
  12061. <productMenu id="quickGuide"
  12062. type="0"
  12063. url=""
  12064. size="934KB" >
  12065. </productMenu>
  12066. <productMenu id="userGuide"
  12067. type="1"
  12068. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12069. size="1.14MB" >
  12070. </productMenu>
  12071. <productID id="5589"
  12072. />
  12073. <productGroupable type="0"
  12074. />
  12075. </product>
  12076. <product id="5R"
  12077. name="Ridekont 5R"
  12078. series="5"
  12079. latestVersion="1.0"
  12080. show = "0" >
  12081. <productMenu id="protocol"
  12082. type="3" >
  12083. </productMenu>
  12084. <productMenu id="sip"
  12085. type="1" >
  12086. </productMenu>
  12087. <productMenu id="bluetoothIntercom"
  12088. type="1" >
  12089. </productMenu>
  12090. <productMenu id="phone"
  12091. type="1" >
  12092. </productMenu>
  12093. <productMenu id="fmradio"
  12094. type="1" >
  12095. </productMenu>
  12096. <productMenu id="deviceSetting"
  12097. type="1"
  12098. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12099. </productMenu>
  12100. <productMenu id="quickGuide"
  12101. type="1"
  12102. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12103. size="934KB" >
  12104. </productMenu>
  12105. <productMenu id="userGuide"
  12106. type="1"
  12107. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12108. size="1.14MB" >
  12109. </productMenu>
  12110. <productID id="5593"
  12111. />
  12112. <productGroupable type="0"
  12113. />
  12114. </product>
  12115. <product id="5R"
  12116. name="Ridekont 5R LITE"
  12117. series="5"
  12118. latestVersion="1.0"
  12119. show = "0" >
  12120. <productMenu id="protocol"
  12121. type="3" >
  12122. </productMenu>
  12123. <productMenu id="sip"
  12124. type="1" >
  12125. </productMenu>
  12126. <productMenu id="bluetoothIntercom"
  12127. type="1" >
  12128. </productMenu>
  12129. <productMenu id="phone"
  12130. type="1" >
  12131. </productMenu>
  12132. <productMenu id="fmradio"
  12133. type="1" >
  12134. </productMenu>
  12135. <productMenu id="deviceSetting"
  12136. type="1"
  12137. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12138. </productMenu>
  12139. <productMenu id="quickGuide"
  12140. type="0"
  12141. url=""
  12142. size="934KB" >
  12143. </productMenu>
  12144. <productMenu id="userGuide"
  12145. type="1"
  12146. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12147. size="1.14MB" >
  12148. </productMenu>
  12149. <productID id="5594"
  12150. />
  12151. <productGroupable type="0"
  12152. />
  12153. </product>
  12154. <product id="SA30"
  12155. name="SA30"
  12156. series="SA"
  12157. latestVersion="1.0.1"
  12158. latestVersionVoicePrompt="0.15"
  12159. show = "-1" >
  12160. <productMenu id="protocol"
  12161. type="2" >
  12162. </productMenu>
  12163. <productMenu id="ota"
  12164. type="2" >
  12165. <otaPackages>
  12166. <package
  12167. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.1-build0.img"
  12168. size="3144148"
  12169. />
  12170. </otaPackages>
  12171. </productMenu>
  12172. <productMenu id="meshIntercom"
  12173. type="30" >
  12174. </productMenu>
  12175. <productMenu id="meshIntercom+"
  12176. type="3"
  12177. url="2" >
  12178. </productMenu>
  12179. <productMenu id="phone"
  12180. type="1" >
  12181. </productMenu>
  12182. <productMenu id="music"
  12183. type="1" >
  12184. </productMenu>
  12185. <productMenu id="musicSharing"
  12186. type="0" >
  12187. </productMenu>
  12188. <productMenu id="deviceSetting"
  12189. type="1"
  12190. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12191. </productMenu>
  12192. <productMenu id="quickGuide"
  12193. type="0"
  12194. url=""
  12195. size="1.12MB" >
  12196. </productMenu>
  12197. <productMenu id="userGuide"
  12198. type="1"
  12199. url=""
  12200. size="2.0MB" >
  12201. </productMenu>
  12202. <productMenu id="videoGuide"
  12203. type="0"
  12204. url=""
  12205. size="3.41MB" >
  12206. </productMenu>
  12207. <productMenu id="volume"
  12208. type="12" >
  12209. </productMenu>
  12210. <productMenu id="battery"
  12211. type="1" >
  12212. </productMenu>
  12213. <productID id="6852"
  12214. />
  12215. <productGroupable type="0"
  12216. />
  12217. </product>
  12218. <product id="I30"
  12219. name="I30"
  12220. series="I"
  12221. latestVersion="1.0.1"
  12222. latestVersionVoicePrompt="0.2"
  12223. show = "-1" >
  12224. <productMenu id="protocol"
  12225. type="2" >
  12226. </productMenu>
  12227. <productMenu id="ota"
  12228. type="2" >
  12229. <otaPackages>
  12230. <package
  12231. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.1-build0.img"
  12232. size="3144148"
  12233. />
  12234. </otaPackages>
  12235. </productMenu>
  12236. <productMenu id="meshIntercom"
  12237. type="30" >
  12238. </productMenu>
  12239. <productMenu id="meshIntercom+"
  12240. type="3"
  12241. url="2" >
  12242. </productMenu>
  12243. <productMenu id="phone"
  12244. type="1" >
  12245. </productMenu>
  12246. <productMenu id="music"
  12247. type="1" >
  12248. </productMenu>
  12249. <productMenu id="musicSharing"
  12250. type="0" >
  12251. </productMenu>
  12252. <productMenu id="deviceSetting"
  12253. type="1"
  12254. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12255. </productMenu>
  12256. <productMenu id="quickGuide"
  12257. type="0"
  12258. url=""
  12259. size="1.12MB" >
  12260. </productMenu>
  12261. <productMenu id="userGuide"
  12262. type="1"
  12263. url=""
  12264. size="2.10MB" >
  12265. </productMenu>
  12266. <productMenu id="videoGuide"
  12267. type="0"
  12268. url=""
  12269. size="3.11MB" >
  12270. </productMenu>
  12271. <productMenu id="volume"
  12272. type="12" >
  12273. </productMenu>
  12274. <productMenu id="battery"
  12275. type="1" >
  12276. </productMenu>
  12277. <productID id="6853"
  12278. />
  12279. <productGroupable type="0"
  12280. />
  12281. </product>
  12282. <product id="C30"
  12283. name="SENA C30"
  12284. series="C"
  12285. latestVersion="1.2.2"
  12286. latestVersionVoicePrompt="0.13"
  12287. show = "1" >
  12288. <productMenu id="protocol"
  12289. type="2" >
  12290. </productMenu>
  12291. <productMenu id="alexa"
  12292. type="0" >
  12293. </productMenu>
  12294. <productMenu id="ota"
  12295. type="2" >
  12296. <otaPackages>
  12297. <package
  12298. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.2-build0.img"
  12299. size="3144148"
  12300. />
  12301. </otaPackages>
  12302. </productMenu>
  12303. <productMenu id="wa"
  12304. type="0" >
  12305. </productMenu>
  12306. <productMenu id="meshIntercom"
  12307. type="30" >
  12308. </productMenu>
  12309. <productMenu id="meshIntercom+"
  12310. type="3"
  12311. url="2" >
  12312. <productMenuType version="1.0.9"
  12313. type="2"
  12314. />
  12315. </productMenu>
  12316. <productMenu id="waveIntercom"
  12317. type="1" >
  12318. <productMenuType version="1.1.9"
  12319. type="0"
  12320. />
  12321. </productMenu>
  12322. <productMenu id="phone"
  12323. type="1" >
  12324. </productMenu>
  12325. <productMenu id="music"
  12326. type="1" >
  12327. </productMenu>
  12328. <productMenu id="musicSharing"
  12329. type="0" >
  12330. </productMenu>
  12331. <productMenu id="deviceSetting"
  12332. type="1"
  12333. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  12334. <productMenuURL version="1.1.3"
  12335. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  12336. />
  12337. <productMenuURL version="1.0.9"
  12338. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  12339. />
  12340. </productMenu>
  12341. <productMenu id="quickGuide"
  12342. type="1"
  12343. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  12344. size="1.12MB" >
  12345. </productMenu>
  12346. <productMenu id="userGuide"
  12347. type="0"
  12348. url=""
  12349. size="2.0MB" >
  12350. </productMenu>
  12351. <productMenu id="videoGuide"
  12352. type="0"
  12353. url=""
  12354. size="3.41MB" >
  12355. </productMenu>
  12356. <productMenu id="volume"
  12357. type="12" >
  12358. </productMenu>
  12359. <productMenu id="battery"
  12360. type="1" >
  12361. </productMenu>
  12362. <productID id="683A"
  12363. />
  12364. <productGroupable type="0"
  12365. />
  12366. </product>
  12367. <product id="C20"
  12368. name="C20"
  12369. series="C"
  12370. latestVersion="1.0"
  12371. show = "1" >
  12372. <productMenu id="protocol"
  12373. type="3" >
  12374. </productMenu>
  12375. <productMenu id="sip"
  12376. type="1" >
  12377. </productMenu>
  12378. <productMenu id="bluetoothIntercom"
  12379. type="1" >
  12380. </productMenu>
  12381. <productMenu id="phone"
  12382. type="1" >
  12383. </productMenu>
  12384. <productMenu id="deviceSetting"
  12385. type="1"
  12386. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  12387. </productMenu>
  12388. <productMenu id="quickGuide"
  12389. type="1"
  12390. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  12391. size="934KB" >
  12392. </productMenu>
  12393. <productMenu id="userGuide"
  12394. type="1"
  12395. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  12396. size="1.14MB" >
  12397. </productMenu>
  12398. <productID id="3701"
  12399. />
  12400. <productGroupable type="0"
  12401. />
  12402. </product>
  12403. <product id="C10"
  12404. name="C10"
  12405. series="C"
  12406. latestVersion="1.4.4"
  12407. show = "1" >
  12408. <productMenu id="protocol"
  12409. type="3" >
  12410. </productMenu>
  12411. <productMenu id="sip"
  12412. type="1" >
  12413. </productMenu>
  12414. <productMenu id="bluetoothIntercom"
  12415. type="1" >
  12416. </productMenu>
  12417. <productMenu id="phone"
  12418. type="1" >
  12419. </productMenu>
  12420. <productMenu id="fmradio"
  12421. type="0" >
  12422. </productMenu>
  12423. <productMenu id="deviceSetting"
  12424. type="1"
  12425. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12426. </productMenu>
  12427. <productMenu id="userGuide"
  12428. type="1"
  12429. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  12430. size="1.14MB" >
  12431. </productMenu>
  12432. <productID id="5595"
  12433. />
  12434. <productGroupable type="0"
  12435. />
  12436. </product>
  12437. <product id="J30"
  12438. name="J30"
  12439. series="J"
  12440. latestVersion="1.2.2"
  12441. latestVersionVoicePrompt="0.14"
  12442. show = "0" >
  12443. <productMenu id="protocol"
  12444. type="2" >
  12445. </productMenu>
  12446. <productMenu id="alexa"
  12447. type="0" >
  12448. </productMenu>
  12449. <productMenu id="ota"
  12450. type="2" >
  12451. <otaPackages>
  12452. <package
  12453. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.2-build1.img"
  12454. size="3144148"
  12455. />
  12456. </otaPackages>
  12457. </productMenu>
  12458. <productMenu id="wa"
  12459. type="0" >
  12460. </productMenu>
  12461. <productMenu id="meshIntercom"
  12462. type="30" >
  12463. </productMenu>
  12464. <productMenu id="meshIntercom+"
  12465. type="3"
  12466. url="2" >
  12467. <productMenuType version="1.0.9"
  12468. type="2"
  12469. />
  12470. </productMenu>
  12471. <productMenu id="waveIntercom"
  12472. type="1" >
  12473. <productMenuType version="1.1.9"
  12474. type="0"
  12475. />
  12476. </productMenu>
  12477. <productMenu id="phone"
  12478. type="1" >
  12479. </productMenu>
  12480. <productMenu id="music"
  12481. type="1" >
  12482. </productMenu>
  12483. <productMenu id="musicSharing"
  12484. type="0" >
  12485. </productMenu>
  12486. <productMenu id="deviceSetting"
  12487. type="1"
  12488. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  12489. <productMenuURL version="1.0.9"
  12490. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  12491. />
  12492. </productMenu>
  12493. <productMenu id="quickGuide"
  12494. type="0"
  12495. url=""
  12496. size="1.12MB" >
  12497. </productMenu>
  12498. <productMenu id="userGuide"
  12499. type="1"
  12500. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  12501. size="2.0MB" >
  12502. </productMenu>
  12503. <productMenu id="videoGuide"
  12504. type="0"
  12505. url=""
  12506. size="3.41MB" >
  12507. </productMenu>
  12508. <productMenu id="volume"
  12509. type="12" >
  12510. </productMenu>
  12511. <productMenu id="battery"
  12512. type="1" >
  12513. </productMenu>
  12514. <productID id="6848"
  12515. />
  12516. <productGroupable type="0"
  12517. />
  12518. </product>
  12519. <product id="J10"
  12520. name="J10"
  12521. series="5"
  12522. latestVersion="1.1.4"
  12523. show = "0" >
  12524. <productMenu id="protocol"
  12525. type="3" >
  12526. </productMenu>
  12527. <productMenu id="sip"
  12528. type="1" >
  12529. </productMenu>
  12530. <productMenu id="bluetoothIntercom"
  12531. type="1" >
  12532. </productMenu>
  12533. <productMenu id="phone"
  12534. type="1" >
  12535. </productMenu>
  12536. <productMenu id="fmradio"
  12537. type="0" >
  12538. </productMenu>
  12539. <productMenu id="deviceSetting"
  12540. type="1"
  12541. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12542. </productMenu>
  12543. <productMenu id="userGuide"
  12544. type="1"
  12545. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  12546. size="1.14MB" >
  12547. </productMenu>
  12548. <productID id="5598"
  12549. />
  12550. <productGroupable type="0"
  12551. />
  12552. </product>
  12553. <product id="B20"
  12554. name="B20"
  12555. series="B"
  12556. latestVersion="1.1.2"
  12557. latestVersionVoicePrompt="0.14"
  12558. show = "0" >
  12559. <productMenu id="protocol"
  12560. type="2" >
  12561. </productMenu>
  12562. <productMenu id="alexa"
  12563. type="0" >
  12564. </productMenu>
  12565. <productMenu id="ota"
  12566. type="2" >
  12567. <otaPackages>
  12568. <package
  12569. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.2-build1.img"
  12570. size="3144148"
  12571. />
  12572. </otaPackages>
  12573. </productMenu>
  12574. <productMenu id="wa"
  12575. type="0" >
  12576. </productMenu>
  12577. <productMenu id="meshIntercom"
  12578. type="30" >
  12579. </productMenu>
  12580. <productMenu id="phone"
  12581. type="1" >
  12582. </productMenu>
  12583. <productMenu id="music"
  12584. type="1" >
  12585. </productMenu>
  12586. <productMenu id="musicSharing"
  12587. type="0" >
  12588. </productMenu>
  12589. <productMenu id="deviceSetting"
  12590. type="1"
  12591. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  12592. <productMenuURL version="1.0.9"
  12593. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  12594. />
  12595. </productMenu>
  12596. <productMenu id="quickGuide"
  12597. type="0"
  12598. url=""
  12599. size="1.12MB" >
  12600. </productMenu>
  12601. <productMenu id="userGuide"
  12602. type="1"
  12603. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  12604. size="2.0MB" >
  12605. </productMenu>
  12606. <productMenu id="videoGuide"
  12607. type="0"
  12608. url=""
  12609. size="3.41MB" >
  12610. </productMenu>
  12611. <productMenu id="volume"
  12612. type="12" >
  12613. </productMenu>
  12614. <productMenu id="battery"
  12615. type="1" >
  12616. </productMenu>
  12617. <productID id="6847"
  12618. />
  12619. <productGroupable type="0"
  12620. />
  12621. </product>
  12622. <product id="B10"
  12623. name="B10"
  12624. series="5"
  12625. latestVersion="1.2.4"
  12626. show = "0" >
  12627. <productMenu id="protocol"
  12628. type="3" >
  12629. </productMenu>
  12630. <productMenu id="sip"
  12631. type="1" >
  12632. </productMenu>
  12633. <productMenu id="bluetoothIntercom"
  12634. type="1" >
  12635. </productMenu>
  12636. <productMenu id="phone"
  12637. type="1" >
  12638. </productMenu>
  12639. <productMenu id="fmradio"
  12640. type="0" >
  12641. </productMenu>
  12642. <productMenu id="deviceSetting"
  12643. type="1"
  12644. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  12645. </productMenu>
  12646. <productMenu id="userGuide"
  12647. type="1"
  12648. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  12649. size="1.14MB" >
  12650. </productMenu>
  12651. <productID id="5596"
  12652. />
  12653. <productGroupable type="0"
  12654. />
  12655. </product>
  12656. <product id="E30"
  12657. name="E30"
  12658. series="E"
  12659. latestVersion="1.1.2"
  12660. latestVersionVoicePrompt="0.14"
  12661. show = "0" >
  12662. <productMenu id="protocol"
  12663. type="2" >
  12664. </productMenu>
  12665. <productMenu id="alexa"
  12666. type="0" >
  12667. </productMenu>
  12668. <productMenu id="ota"
  12669. type="2" >
  12670. <otaPackages>
  12671. <package
  12672. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.2-build1.img"
  12673. size="3144148"
  12674. />
  12675. </otaPackages>
  12676. </productMenu>
  12677. <productMenu id="wa"
  12678. type="0" >
  12679. </productMenu>
  12680. <productMenu id="meshIntercom"
  12681. type="30" >
  12682. </productMenu>
  12683. <productMenu id="meshIntercom+"
  12684. type="3"
  12685. url="2" >
  12686. </productMenu>
  12687. <productMenu id="waveIntercom"
  12688. type="1" >
  12689. <productMenuType version="1.0.9"
  12690. type="0"
  12691. />
  12692. </productMenu>
  12693. <productMenu id="phone"
  12694. type="1" >
  12695. </productMenu>
  12696. <productMenu id="music"
  12697. type="1" >
  12698. </productMenu>
  12699. <productMenu id="musicSharing"
  12700. type="0" >
  12701. </productMenu>
  12702. <productMenu id="deviceSetting"
  12703. type="1"
  12704. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  12705. </productMenu>
  12706. <productMenu id="quickGuide"
  12707. type="0"
  12708. url=""
  12709. size="1.12MB" >
  12710. </productMenu>
  12711. <productMenu id="userGuide"
  12712. type="1"
  12713. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  12714. size="2.0MB" >
  12715. </productMenu>
  12716. <productMenu id="videoGuide"
  12717. type="0"
  12718. url=""
  12719. size="3.41MB" >
  12720. </productMenu>
  12721. <productMenu id="volume"
  12722. type="12" >
  12723. </productMenu>
  12724. <productMenu id="battery"
  12725. type="1" >
  12726. </productMenu>
  12727. <productID id="6846"
  12728. />
  12729. <productGroupable type="0"
  12730. />
  12731. </product>
  12732. <product id="ACSRAM"
  12733. name="ACS-RAM"
  12734. series="ACS"
  12735. latestVersion="1.0.5"
  12736. show = "1" >
  12737. <productMenu id="protocol"
  12738. type="3" >
  12739. </productMenu>
  12740. <productMenu id="sip"
  12741. type="1" >
  12742. </productMenu>
  12743. <productMenu id="bluetoothIntercom"
  12744. type="1" >
  12745. </productMenu>
  12746. <productMenu id="deviceSetting"
  12747. type="1"
  12748. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  12749. </productMenu>
  12750. <productMenu id="quickGuide"
  12751. type="1"
  12752. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  12753. size="344KB" >
  12754. </productMenu>
  12755. <productMenu id="userGuide"
  12756. type="1"
  12757. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  12758. size="1.14MB" >
  12759. </productMenu>
  12760. <productMenu id="connectGuide"
  12761. type="1"
  12762. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  12763. size="1.12MB" >
  12764. </productMenu>
  12765. <productID id="3400"
  12766. />
  12767. <productGroupable type="0"
  12768. />
  12769. </product>
  12770. <product id="ACS10"
  12771. name="ACS10"
  12772. series="ACS"
  12773. latestVersion="1.0.2"
  12774. show = "1" >
  12775. <productMenu id="protocol"
  12776. type="0">
  12777. </productMenu>
  12778. <productMenu id="sip"
  12779. type="1" >
  12780. </productMenu>
  12781. <productMenu id="bluetoothIntercom"
  12782. type="1" >
  12783. </productMenu>
  12784. <productMenu id="phone"
  12785. type="2" >
  12786. </productMenu>
  12787. <productMenu id="deviceSetting"
  12788. type="1"
  12789. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  12790. </productMenu>
  12791. <productMenu id="quickGuide"
  12792. type="1"
  12793. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  12794. size="970KB" >
  12795. </productMenu>
  12796. <productMenu id="userGuide"
  12797. type="1"
  12798. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  12799. size="1.26MB" >
  12800. </productMenu>
  12801. <productMenu id="connectGuide"
  12802. type="1"
  12803. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  12804. size="1.12MB" >
  12805. </productMenu>
  12806. <productID id="3300"
  12807. />
  12808. <productGroupable type="0"
  12809. />
  12810. </product>
  12811. <product id="DWO7ProMesh"
  12812. name="DWO 7 Pro Mesh"
  12813. series="50"
  12814. latestVersion="1.1"
  12815. latestVersionVoicePrompt="0.9"
  12816. show = "0" >
  12817. <productMenu id="protocol"
  12818. type="2" >
  12819. </productMenu>
  12820. <productMenu id="alexa"
  12821. type="0" >
  12822. </productMenu>
  12823. <productMenu id="ota"
  12824. type="2" >
  12825. <otaPackages>
  12826. <package
  12827. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  12828. size="2945812"
  12829. />
  12830. </otaPackages>
  12831. </productMenu>
  12832. <productMenu id="wa"
  12833. type="0" >
  12834. </productMenu>
  12835. <productMenu id="meshIntercom"
  12836. type="20" >
  12837. </productMenu>
  12838. <productMenu id="meshIntercom+"
  12839. type="3"
  12840. url="2" >
  12841. <productMenuType version="1.0.9"
  12842. type="2"
  12843. />
  12844. <productMenuURL version="2.1.1"
  12845. url="0"
  12846. />
  12847. </productMenu>
  12848. <productMenu id="waveIntercom"
  12849. type="1" >
  12850. <productMenuType version="1.0.9"
  12851. type="0"
  12852. />
  12853. </productMenu>
  12854. <productMenu id="phone"
  12855. type="1" >
  12856. </productMenu>
  12857. <productMenu id="music"
  12858. type="1" >
  12859. </productMenu>
  12860. <productMenu id="fmradio"
  12861. type="1" >
  12862. </productMenu>
  12863. <productMenu id="musicSharing"
  12864. type="0" >
  12865. </productMenu>
  12866. <productMenu id="deviceSetting"
  12867. type="1"
  12868. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  12869. <productMenuURL version="1.0.9"
  12870. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  12871. />
  12872. </productMenu>
  12873. <productMenu id="quickGuide"
  12874. type="1"
  12875. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  12876. size="1.12MB" >
  12877. </productMenu>
  12878. <productMenu id="userGuide"
  12879. type="1"
  12880. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  12881. size="2.0MB" >
  12882. </productMenu>
  12883. <productMenu id="volume"
  12884. type="12" >
  12885. </productMenu>
  12886. <productMenu id="battery"
  12887. type="1" >
  12888. </productMenu>
  12889. <productID id="6806"
  12890. />
  12891. <productGroupable type="0"
  12892. />
  12893. </product>
  12894. <product id="ERA1X"
  12895. name="ERA 1 X"
  12896. series="UCOM"
  12897. latestVersion="0.2.1"
  12898. latestVersionMesh="0.19"
  12899. latestVersionVoicePrompt="1.2"
  12900. show = "-1" >
  12901. <productMenu id="protocol"
  12902. type="2" >
  12903. </productMenu>
  12904. <productMenu id="ota"
  12905. type="2" >
  12906. <otaLanguages>
  12907. <otaLanguage
  12908. id="0"
  12909. name="English"
  12910. package="0"
  12911. />
  12912. <otaLanguage
  12913. id="0"
  12914. name="French"
  12915. package="1"
  12916. />
  12917. <otaLanguage
  12918. id="0"
  12919. name="Spanish"
  12920. package="2"
  12921. />
  12922. <otaLanguage
  12923. id="0"
  12924. name="Italian"
  12925. package="3"
  12926. />
  12927. <otaLanguage
  12928. id="0"
  12929. name="German"
  12930. package="4"
  12931. />
  12932. <otaLanguage
  12933. id="0"
  12934. name="Dutch"
  12935. package="5"
  12936. />
  12937. <otaLanguage
  12938. id="0"
  12939. name="Russian"
  12940. package="6"
  12941. />
  12942. <otaLanguage
  12943. id="0"
  12944. name="Chinese"
  12945. package="7"
  12946. />
  12947. <otaLanguage
  12948. id="0"
  12949. name="Korean"
  12950. package="8"
  12951. />
  12952. <otaLanguage
  12953. id="0"
  12954. name="Japanese"
  12955. package="9"
  12956. />
  12957. <otaLanguage
  12958. id="0"
  12959. name="Finnish"
  12960. package="10"
  12961. />
  12962. <otaLanguage
  12963. id="0"
  12964. name="Polish"
  12965. package="11"
  12966. />
  12967. <otaLanguage
  12968. id="0"
  12969. name="Czech"
  12970. package="12"
  12971. />
  12972. <otaLanguage
  12973. id="0"
  12974. name="Danish"
  12975. package="13"
  12976. />
  12977. <otaLanguage
  12978. id="0"
  12979. name="Norwegian"
  12980. package="14"
  12981. />
  12982. <otaLanguage
  12983. id="0"
  12984. name="Swedish"
  12985. package="15"
  12986. />
  12987. <otaLanguage
  12988. id="0"
  12989. name="Turkish"
  12990. package="16"
  12991. />
  12992. <otaLanguage
  12993. id="0"
  12994. name="Hungarian"
  12995. package="17"
  12996. />
  12997. <otaLanguage
  12998. id="0"
  12999. name="Portuguese"
  13000. package="18"
  13001. />
  13002. <otaLanguage
  13003. id="0"
  13004. name="Hebrew"
  13005. package="19"
  13006. />
  13007. <otaLanguage
  13008. id="0"
  13009. name="Greek"
  13010. package="20"
  13011. />
  13012. </otaLanguages>
  13013. <otaPackages>
  13014. <package
  13015. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13016. size="5183988"
  13017. />
  13018. <package
  13019. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13020. size="5183988"
  13021. />
  13022. <package
  13023. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13024. size="5183988"
  13025. />
  13026. <package
  13027. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13028. size="5183988"
  13029. />
  13030. <package
  13031. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13032. size="5183988"
  13033. />
  13034. <package
  13035. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13036. size="5183988"
  13037. />
  13038. <package
  13039. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13040. size="5183988"
  13041. />
  13042. <package
  13043. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13044. size="5183988"
  13045. />
  13046. <package
  13047. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13048. size="5183988"
  13049. />
  13050. <package
  13051. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13052. size="5183988"
  13053. />
  13054. <package
  13055. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13056. size="5183988"
  13057. />
  13058. <package
  13059. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13060. size="5183988"
  13061. />
  13062. <package
  13063. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13064. size="5183988"
  13065. />
  13066. <package
  13067. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13068. size="5183988"
  13069. />
  13070. <package
  13071. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13072. size="5183988"
  13073. />
  13074. <package
  13075. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13076. size="5183988"
  13077. />
  13078. <package
  13079. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13080. size="5183988"
  13081. />
  13082. <package
  13083. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13084. size="5183988"
  13085. />
  13086. <package
  13087. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13088. size="5183988"
  13089. />
  13090. <package
  13091. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13092. size="5183988"
  13093. />
  13094. <package
  13095. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13096. size="5183988"
  13097. />
  13098. </otaPackages>
  13099. </productMenu>
  13100. <productMenu id="wa"
  13101. type="0" >
  13102. </productMenu>
  13103. <productMenu id="sip"
  13104. type="1" >
  13105. </productMenu>
  13106. <productMenu id="led"
  13107. type="0" >
  13108. </productMenu>
  13109. <productMenu id="illusion"
  13110. type="1" >
  13111. </productMenu>
  13112. <productMenu id="meshIntercom"
  13113. type="30" >
  13114. </productMenu>
  13115. <productMenu id="meshIntercom+"
  13116. type="3"
  13117. url="2" >
  13118. </productMenu>
  13119. <productMenu id="waveIntercom"
  13120. type="0" >
  13121. </productMenu>
  13122. <productMenu id="bluetoothIntercom"
  13123. type="1" >
  13124. </productMenu>
  13125. <productMenu id="bluetoothIntercomGrouping"
  13126. type="0" >
  13127. </productMenu>
  13128. <productMenu id="fmradio"
  13129. type="1"
  13130. url="1" >
  13131. </productMenu>
  13132. <productMenu id="phone"
  13133. type="1" >
  13134. </productMenu>
  13135. <productMenu id="music"
  13136. type="1" >
  13137. </productMenu>
  13138. <productMenu id="musicSharing"
  13139. type="0" >
  13140. </productMenu>
  13141. <productMenu id="deviceSetting"
  13142. type="1"
  13143. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  13144. </productMenu>
  13145. <productMenu id="quickGuide"
  13146. type="0"
  13147. url=""
  13148. size="1.12MB" >
  13149. </productMenu>
  13150. <productMenu id="userGuide"
  13151. type="1"
  13152. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  13153. size="2.0MB" >
  13154. </productMenu>
  13155. <productMenu id="videoGuide"
  13156. type="0"
  13157. url=""
  13158. size="3.41MB" >
  13159. </productMenu>
  13160. <productMenu id="volume"
  13161. type="16" >
  13162. </productMenu>
  13163. <productMenu id="soundMode"
  13164. type="1" >
  13165. </productMenu>
  13166. <productMenu id="battery"
  13167. type="1" >
  13168. </productMenu>
  13169. <productID id="6A83"
  13170. />
  13171. <productGroupable type="0"
  13172. />
  13173. </product>
  13174. <product id="MeshStation"
  13175. name="Mesh Station"
  13176. series="50"
  13177. latestVersion="0.9"
  13178. show = "-1" >
  13179. <productMenu id="protocol"
  13180. type="2" >
  13181. </productMenu>
  13182. <productMenu id="meshIntercom"
  13183. type="20"
  13184. url="99" >
  13185. </productMenu>
  13186. <productID id="3161"
  13187. />
  13188. <productGroupable type="0"
  13189. />
  13190. </product>
  13191. </products>
  13192. </sna>