snm.xml 446 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260045" appVer="2.14" iosAppVer="2.14" central="1" withoutPhone="1">
  3. <tu url="https://www.sena.com/terms-of-use/"
  4. />
  5. <pp url="https://www.sena.com/privacy"
  6. />
  7. <profile url="https://www.sena.com/subscribe/"
  8. />
  9. <wa url="https://firmware.sena.com/senabluetoothmanager/UserGuide_WiFi_Charging_Cable_1.0.2_en_250212.pdf"
  10. />
  11. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  12. />
  13. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  14. />
  15. <wim url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_Firmware_Update_1.0.0_en_250212.pdf"
  16. />
  17. <wst url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_Firmware_Update_1.0.0_en_250211.pdf"
  18. />
  19. <support url="https://www.sena.com/support"
  20. />
  21. <forum url="https://community.sena.com/hc/en-us"
  22. />
  23. <sip url="https://community.sena.com/hc/en-us"
  24. />
  25. <productKeys>
  26. <productKey id="4210"
  27. userPSKey="5"
  28. valueLength="1"
  29. />
  30. <productKey id="4230"
  31. userPSKey="5"
  32. valueLength="1"
  33. />
  34. </productKeys>
  35. <!--
  36. <menus>
  37. <menu id="protocol" />
  38. <menu id="alexa" />
  39. <menu id="ota" />
  40. <menu id="wa" />
  41. <menu id="manager" />
  42. <menu id="sip" />
  43. <menu id="meshIntercom" />
  44. <menu id="bluetoothIntercom" />
  45. <menu id="music" />
  46. <menu id="musicSharing" />
  47. <menu id="fmradio" />
  48. <menu id="phone" />
  49. <menu id="led" />
  50. <menu id="volume" />
  51. <menu id="battery" />
  52. <menu id="deviceSetting" />
  53. <menu id="quickGuide" />
  54. <menu id="userGuide" />
  55. </menus>
  56. -->
  57. <serieses>
  58. <series id="60"
  59. name="60 Series"
  60. show="1"
  61. />
  62. <series id="50"
  63. name="50 Series"
  64. show="1"
  65. />
  66. <series id="Helmet"
  67. name="Smart Helmet"
  68. show="1"
  69. />
  70. <series id="30"
  71. name="30 Series"
  72. show="1"
  73. />
  74. <series id="SF"
  75. name="SF Series"
  76. show="1"
  77. />
  78. <series id="SPIDER"
  79. name="SPIDER Series"
  80. show="1"
  81. />
  82. <series id="20"
  83. name="20 Series"
  84. show="1"
  85. />
  86. <series id="SRL"
  87. name="SRL Series"
  88. show="1"
  89. />
  90. <series id="ACS"
  91. name="ACS Series"
  92. show="1"
  93. />
  94. <series id="10"
  95. name="10 Series"
  96. show="1"
  97. />
  98. <series id="5"
  99. name="5 Series"
  100. show="1"
  101. />
  102. <series id="3"
  103. name="3 Series"
  104. show="1"
  105. />
  106. <series id="C"
  107. name="C Series"
  108. show="1"
  109. />
  110. <!--
  111. <series id="smh"
  112. name="SMH"
  113. />
  114. <series id="cavalry"
  115. name="CAVALRY"
  116. show="0"
  117. />
  118. -->
  119. </serieses>
  120. <products>
  121. <product id="60SPRO"
  122. name="60S PRO"
  123. series="60"
  124. latestVersion="0.1"
  125. latestVersionMesh="0.19"
  126. latestVersionVoicePrompt="1.2"
  127. show = "-1" >
  128. <productMenu id="protocol"
  129. type="2" >
  130. </productMenu>
  131. <productMenu id="ota"
  132. type="0" >
  133. <otaLanguages>
  134. <otaLanguage
  135. id="0"
  136. name="English"
  137. package="0"
  138. />
  139. <otaLanguage
  140. id="0"
  141. name="French"
  142. package="1"
  143. />
  144. <otaLanguage
  145. id="0"
  146. name="Spanish"
  147. package="2"
  148. />
  149. <otaLanguage
  150. id="0"
  151. name="Italian"
  152. package="3"
  153. />
  154. <otaLanguage
  155. id="0"
  156. name="German"
  157. package="4"
  158. />
  159. <otaLanguage
  160. id="0"
  161. name="Dutch"
  162. package="5"
  163. />
  164. <otaLanguage
  165. id="0"
  166. name="Russian"
  167. package="6"
  168. />
  169. <otaLanguage
  170. id="0"
  171. name="Chinese"
  172. package="7"
  173. />
  174. <otaLanguage
  175. id="0"
  176. name="Korean"
  177. package="8"
  178. />
  179. <otaLanguage
  180. id="0"
  181. name="Japanese"
  182. package="9"
  183. />
  184. <otaLanguage
  185. id="0"
  186. name="Finnish"
  187. package="10"
  188. />
  189. <otaLanguage
  190. id="0"
  191. name="Polish"
  192. package="11"
  193. />
  194. </otaLanguages>
  195. <otaPackages>
  196. <package
  197. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  198. size="5183988"
  199. />
  200. <package
  201. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  202. size="5183988"
  203. />
  204. <package
  205. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  206. size="5183988"
  207. />
  208. <package
  209. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  210. size="5183988"
  211. />
  212. <package
  213. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  214. size="5183988"
  215. />
  216. <package
  217. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  218. size="5183988"
  219. />
  220. <package
  221. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  222. size="5183988"
  223. />
  224. <package
  225. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  226. size="5183988"
  227. />
  228. <package
  229. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  230. size="5183988"
  231. />
  232. <package
  233. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  234. size="5183988"
  235. />
  236. <package
  237. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  238. size="5183988"
  239. />
  240. <package
  241. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  242. size="5183988"
  243. />
  244. </otaPackages>
  245. </productMenu>
  246. <productMenu id="sip"
  247. type="1" >
  248. </productMenu>
  249. <productMenu id="illusion"
  250. type="1" >
  251. </productMenu>
  252. <productMenu id="meshIntercom"
  253. type="30" >
  254. </productMenu>
  255. <productMenu id="meshIntercom+"
  256. type="3"
  257. url="2" >
  258. </productMenu>
  259. <productMenu id="waveIntercom"
  260. type="1" >
  261. </productMenu>
  262. <productMenu id="bluetoothIntercom"
  263. type="1"
  264. url="2" >
  265. </productMenu>
  266. <productMenu id="bluetoothIntercomGrouping"
  267. type="0" >
  268. </productMenu>
  269. <productMenu id="fmradio"
  270. type="1"
  271. url="1" >
  272. </productMenu>
  273. <productMenu id="phone"
  274. type="1" >
  275. </productMenu>
  276. <productMenu id="music"
  277. type="1" >
  278. </productMenu>
  279. <productMenu id="musicSharing"
  280. type="0" >
  281. </productMenu>
  282. <productMenu id="deviceSetting"
  283. type="1"
  284. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  285. </productMenu>
  286. <productMenu id="quickGuide"
  287. type="0"
  288. url=""
  289. size="1.12MB" >
  290. </productMenu>
  291. <productMenu id="userGuide"
  292. type="1"
  293. url=""
  294. size="2.0MB" >
  295. </productMenu>
  296. <productMenu id="videoGuide"
  297. type="0"
  298. url=""
  299. size="3.41MB" >
  300. </productMenu>
  301. <productMenu id="connectGuide"
  302. type="0"
  303. url=""
  304. size="1.12MB" >
  305. </productMenu>
  306. <productMenu id="volume"
  307. type="16" >
  308. </productMenu>
  309. <productMenu id="soundMode"
  310. type="1" >
  311. </productMenu>
  312. <productMenu id="battery"
  313. type="1" >
  314. </productMenu>
  315. <productID id="6A1A"
  316. />
  317. <productGroupable type="0"
  318. />
  319. </product>
  320. <product id="60SEVO"
  321. name="60S EVO"
  322. series="60"
  323. latestVersion="1.0"
  324. latestVersionMesh="0.19"
  325. latestVersionVoicePrompt="1.5"
  326. show = "-1" >
  327. <productMenu id="protocol"
  328. type="2" >
  329. </productMenu>
  330. <productMenu id="ota"
  331. type="0" >
  332. <otaLanguages>
  333. <otaLanguage
  334. id="0"
  335. name="English"
  336. package="0"
  337. />
  338. <otaLanguage
  339. id="0"
  340. name="French"
  341. package="1"
  342. />
  343. <otaLanguage
  344. id="0"
  345. name="Spanish"
  346. package="2"
  347. />
  348. <otaLanguage
  349. id="0"
  350. name="Italian"
  351. package="3"
  352. />
  353. <otaLanguage
  354. id="0"
  355. name="German"
  356. package="4"
  357. />
  358. <otaLanguage
  359. id="0"
  360. name="Dutch"
  361. package="5"
  362. />
  363. <otaLanguage
  364. id="0"
  365. name="Russian"
  366. package="6"
  367. />
  368. <otaLanguage
  369. id="0"
  370. name="Chinese"
  371. package="7"
  372. />
  373. <otaLanguage
  374. id="0"
  375. name="Korean"
  376. package="8"
  377. />
  378. <otaLanguage
  379. id="0"
  380. name="Japanese"
  381. package="9"
  382. />
  383. <otaLanguage
  384. id="0"
  385. name="Finnish"
  386. package="10"
  387. />
  388. <otaLanguage
  389. id="0"
  390. name="Polish"
  391. package="11"
  392. />
  393. </otaLanguages>
  394. <otaPackages>
  395. <package
  396. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1.img"
  397. size="5183988"
  398. />
  399. <package
  400. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-fr-FR.img"
  401. size="5183988"
  402. />
  403. <package
  404. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-es-ES.img"
  405. size="5183988"
  406. />
  407. <package
  408. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-it-IT.img"
  409. size="5183988"
  410. />
  411. <package
  412. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-de-DE.img"
  413. size="5183988"
  414. />
  415. <package
  416. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-nl-NL.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-ru-RU.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-cmn-CN.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-ko-KR.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-ja-JP.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-fi-FI.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-pl-PL.img"
  441. size="5183988"
  442. />
  443. </otaPackages>
  444. </productMenu>
  445. <productMenu id="sip"
  446. type="1" >
  447. </productMenu>
  448. <productMenu id="illusion"
  449. type="1" >
  450. </productMenu>
  451. <productMenu id="meshIntercom"
  452. type="30" >
  453. </productMenu>
  454. <productMenu id="meshIntercom+"
  455. type="3"
  456. url="2" >
  457. </productMenu>
  458. <productMenu id="waveIntercom"
  459. type="1" >
  460. </productMenu>
  461. <productMenu id="bluetoothIntercom"
  462. type="1"
  463. url="2" >
  464. </productMenu>
  465. <productMenu id="bluetoothIntercomGrouping"
  466. type="0" >
  467. </productMenu>
  468. <productMenu id="fmradio"
  469. type="1"
  470. url="1" >
  471. </productMenu>
  472. <productMenu id="phone"
  473. type="1" >
  474. </productMenu>
  475. <productMenu id="music"
  476. type="1" >
  477. </productMenu>
  478. <productMenu id="musicSharing"
  479. type="0" >
  480. </productMenu>
  481. <productMenu id="deviceSetting"
  482. type="1"
  483. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_05_Auto.xml" >
  484. </productMenu>
  485. <productMenu id="quickGuide"
  486. type="0"
  487. url=""
  488. size="1.12MB" >
  489. </productMenu>
  490. <productMenu id="userGuide"
  491. type="1"
  492. url=""
  493. size="2.0MB" >
  494. </productMenu>
  495. <productMenu id="videoGuide"
  496. type="0"
  497. url=""
  498. size="3.41MB" >
  499. </productMenu>
  500. <productMenu id="connectGuide"
  501. type="0"
  502. url=""
  503. size="1.12MB" >
  504. </productMenu>
  505. <productMenu id="volume"
  506. type="16" >
  507. </productMenu>
  508. <productMenu id="soundMode"
  509. type="1" >
  510. </productMenu>
  511. <productMenu id="battery"
  512. type="1" >
  513. </productMenu>
  514. <productID id="6A15"
  515. />
  516. <productGroupable type="0"
  517. />
  518. </product>
  519. <product id="60S"
  520. name="60S"
  521. series="60"
  522. latestVersion="1.2.7"
  523. latestVersionMesh="1.2"
  524. latestVersionVoicePrompt="1.5"
  525. show = "1" >
  526. <productMenu id="protocol"
  527. type="2" >
  528. </productMenu>
  529. <productMenu id="ota"
  530. type="2" >
  531. <otaLanguages>
  532. <otaLanguage
  533. id="0"
  534. name="English"
  535. package="0"
  536. />
  537. <otaLanguage
  538. id="0"
  539. name="French"
  540. package="1"
  541. />
  542. <otaLanguage
  543. id="0"
  544. name="Spanish"
  545. package="2"
  546. />
  547. <otaLanguage
  548. id="0"
  549. name="Italian"
  550. package="3"
  551. />
  552. <otaLanguage
  553. id="0"
  554. name="German"
  555. package="4"
  556. />
  557. <otaLanguage
  558. id="0"
  559. name="Dutch"
  560. package="5"
  561. />
  562. <otaLanguage
  563. id="0"
  564. name="Russian"
  565. package="6"
  566. />
  567. <otaLanguage
  568. id="0"
  569. name="Chinese"
  570. package="7"
  571. />
  572. <otaLanguage
  573. id="0"
  574. name="Korean"
  575. package="8"
  576. />
  577. <otaLanguage
  578. id="0"
  579. name="Japanese"
  580. package="9"
  581. />
  582. <otaLanguage
  583. id="0"
  584. name="Finnish"
  585. package="10"
  586. />
  587. <otaLanguage
  588. id="0"
  589. name="Polish"
  590. package="11"
  591. />
  592. </otaLanguages>
  593. <otaPackages>
  594. <package
  595. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.7-build1.img"
  596. size="5183988"
  597. />
  598. <package
  599. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.7-build1-fr-FR.img"
  600. size="5183988"
  601. />
  602. <package
  603. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.7-build1-es-ES.img"
  604. size="5183988"
  605. />
  606. <package
  607. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.7-build1-it-IT.img"
  608. size="5183988"
  609. />
  610. <package
  611. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.7-build1-de-DE.img"
  612. size="5183988"
  613. />
  614. <package
  615. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.7-build1-nl-NL.img"
  616. size="5183988"
  617. />
  618. <package
  619. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.7-build1-ru-RU.img"
  620. size="5183988"
  621. />
  622. <package
  623. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.7-build1-cmn-CN.img"
  624. size="5183988"
  625. />
  626. <package
  627. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.7-build1-ko-KR.img"
  628. size="5183988"
  629. />
  630. <package
  631. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.7-build1-ja-JP.img"
  632. size="5183988"
  633. />
  634. <package
  635. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.7-build1-fi-FI.img"
  636. size="5183988"
  637. />
  638. <package
  639. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.7-build1-pl-PL.img"
  640. size="5183988"
  641. />
  642. </otaPackages>
  643. </productMenu>
  644. <productMenu id="sip"
  645. type="1" >
  646. </productMenu>
  647. <productMenu id="illusion"
  648. type="1" >
  649. </productMenu>
  650. <productMenu id="meshIntercom"
  651. type="30" >
  652. </productMenu>
  653. <productMenu id="meshIntercom+"
  654. type="3"
  655. url="2" >
  656. </productMenu>
  657. <productMenu id="waveIntercom"
  658. type="1" >
  659. </productMenu>
  660. <productMenu id="bluetoothIntercom"
  661. type="1"
  662. url="2" >
  663. </productMenu>
  664. <productMenu id="bluetoothIntercomGrouping"
  665. type="0" >
  666. </productMenu>
  667. <productMenu id="fmradio"
  668. type="1"
  669. url="1" >
  670. </productMenu>
  671. <productMenu id="phone"
  672. type="1" >
  673. </productMenu>
  674. <productMenu id="music"
  675. type="1" >
  676. </productMenu>
  677. <productMenu id="musicSharing"
  678. type="0" >
  679. </productMenu>
  680. <productMenu id="deviceSetting"
  681. type="1"
  682. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml" > <!--NS_60_09-->
  683. <productMenuURL version="1.2.6"
  684. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  685. />
  686. <productMenuURL version="1.2.3"
  687. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  688. />
  689. </productMenu>
  690. <productMenu id="quickGuide"
  691. type="0"
  692. url=""
  693. size="1.12MB" >
  694. </productMenu>
  695. <productMenu id="userGuide"
  696. type="1"
  697. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  698. size="2.0MB" >
  699. </productMenu>
  700. <productMenu id="videoGuide"
  701. type="0"
  702. url=""
  703. size="3.41MB" >
  704. </productMenu>
  705. <productMenu id="connectGuide"
  706. type="1"
  707. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  708. size="1.12MB" >
  709. </productMenu>
  710. <productMenu id="volume"
  711. type="16" >
  712. </productMenu>
  713. <productMenu id="volume+"
  714. type="2"
  715. url="0x6004" >
  716. <productMenuURL version="1.2.3"
  717. url="0x6004"
  718. />
  719. </productMenu>
  720. <productMenu id="soundMode"
  721. type="0" >
  722. </productMenu>
  723. <productMenu id="battery"
  724. type="1" >
  725. </productMenu>
  726. <productID id="6A0D"
  727. />
  728. <productGroupable type="0"
  729. />
  730. </product>
  731. <product id="60S"
  732. name="60S"
  733. series="60"
  734. latestVersion="1.2.7"
  735. latestVersionMesh="1.2"
  736. latestVersionVoicePrompt="1.5"
  737. show = "-1" >
  738. <productMenu id="protocol"
  739. type="2" >
  740. </productMenu>
  741. <productMenu id="ota"
  742. type="2" >
  743. <otaLanguages>
  744. <otaLanguage
  745. id="0"
  746. name="English"
  747. package="0"
  748. />
  749. <otaLanguage
  750. id="0"
  751. name="French"
  752. package="1"
  753. />
  754. <otaLanguage
  755. id="0"
  756. name="Spanish"
  757. package="2"
  758. />
  759. <otaLanguage
  760. id="0"
  761. name="Italian"
  762. package="3"
  763. />
  764. <otaLanguage
  765. id="0"
  766. name="German"
  767. package="4"
  768. />
  769. <otaLanguage
  770. id="0"
  771. name="Dutch"
  772. package="5"
  773. />
  774. <otaLanguage
  775. id="0"
  776. name="Russian"
  777. package="6"
  778. />
  779. <otaLanguage
  780. id="0"
  781. name="Chinese"
  782. package="7"
  783. />
  784. <otaLanguage
  785. id="0"
  786. name="Korean"
  787. package="8"
  788. />
  789. <otaLanguage
  790. id="0"
  791. name="Japanese"
  792. package="9"
  793. />
  794. <otaLanguage
  795. id="0"
  796. name="Finnish"
  797. package="10"
  798. />
  799. <otaLanguage
  800. id="0"
  801. name="Polish"
  802. package="11"
  803. />
  804. </otaLanguages>
  805. <otaPackages>
  806. <package
  807. url="https://api.sena.com/support/OTA/60S/60S-v1.2.7-build1.img"
  808. size="5183988"
  809. />
  810. <package
  811. url="https://api.sena.com/support/OTA/60S/60S-v1.2.7-build1-fr-FR.img"
  812. size="5183988"
  813. />
  814. <package
  815. url="https://api.sena.com/support/OTA/60S/60S-v1.2.7-build1-es-ES.img"
  816. size="5183988"
  817. />
  818. <package
  819. url="https://api.sena.com/support/OTA/60S/60S-v1.2.7-build1-it-IT.img"
  820. size="5183988"
  821. />
  822. <package
  823. url="https://api.sena.com/support/OTA/60S/60S-v1.2.7-build1-de-DE.img"
  824. size="5183988"
  825. />
  826. <package
  827. url="https://api.sena.com/support/OTA/60S/60S-v1.2.7-build1-nl-NL.img"
  828. size="5183988"
  829. />
  830. <package
  831. url="https://api.sena.com/support/OTA/60S/60S-v1.2.7-build1-ru-RU.img"
  832. size="5183988"
  833. />
  834. <package
  835. url="https://api.sena.com/support/OTA/60S/60S-v1.2.7-build1-cmn-CN.img"
  836. size="5183988"
  837. />
  838. <package
  839. url="https://api.sena.com/support/OTA/60S/60S-v1.2.7-build1-ko-KR.img"
  840. size="5183988"
  841. />
  842. <package
  843. url="https://api.sena.com/support/OTA/60S/60S-v1.2.7-build1-ja-JP.img"
  844. size="5183988"
  845. />
  846. <package
  847. url="https://api.sena.com/support/OTA/60S/60S-v1.2.7-build1-fi-FI.img"
  848. size="5183988"
  849. />
  850. <package
  851. url="https://api.sena.com/support/OTA/60S/60S-v1.2.7-build1-pl-PL.img"
  852. size="5183988"
  853. />
  854. </otaPackages>
  855. </productMenu>
  856. <productMenu id="wa"
  857. type="0" >
  858. </productMenu>
  859. <productMenu id="sip"
  860. type="1" >
  861. </productMenu>
  862. <productMenu id="led"
  863. type="0" >
  864. </productMenu>
  865. <productMenu id="illusion"
  866. type="1" >
  867. </productMenu>
  868. <productMenu id="meshIntercom"
  869. type="30" >
  870. </productMenu>
  871. <productMenu id="meshIntercom+"
  872. type="3"
  873. url="2" >
  874. <productMenuURL version="1.0.2"
  875. url="10"
  876. />
  877. </productMenu>
  878. <productMenu id="waveIntercom"
  879. type="1" >
  880. <productMenuType version="1.0.9"
  881. type="0"
  882. />
  883. </productMenu>
  884. <productMenu id="bluetoothIntercom"
  885. type="1"
  886. url="2" >
  887. </productMenu>
  888. <productMenu id="bluetoothIntercomGrouping"
  889. type="0" >
  890. </productMenu>
  891. <productMenu id="fmradio"
  892. type="1"
  893. url="1" >
  894. </productMenu>
  895. <productMenu id="phone"
  896. type="1" >
  897. </productMenu>
  898. <productMenu id="music"
  899. type="1" >
  900. </productMenu>
  901. <productMenu id="musicSharing"
  902. type="0" >
  903. </productMenu>
  904. <productMenu id="deviceSetting"
  905. type="1"
  906. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml" ><!--NS_60_09-->
  907. <productMenuURL version="1.2.6"
  908. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  909. />
  910. <productMenuURL version="1.2.3"
  911. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  912. />
  913. <productMenuURL version="1.0.2"
  914. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  915. />
  916. <productMenuURL version="1.0"
  917. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  918. />
  919. <productMenuURL version="0.9.11"
  920. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  921. />
  922. </productMenu>
  923. <productMenu id="quickGuide"
  924. type="0"
  925. url=""
  926. size="1.12MB" >
  927. </productMenu>
  928. <productMenu id="userGuide"
  929. type="1"
  930. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  931. size="2.0MB" >
  932. </productMenu>
  933. <productMenu id="videoGuide"
  934. type="0"
  935. url=""
  936. size="3.41MB" >
  937. </productMenu>
  938. <productMenu id="connectGuide"
  939. type="1"
  940. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  941. size="1.12MB" >
  942. </productMenu>
  943. <productMenu id="volume"
  944. type="16" >
  945. <productMenuType version="0.9.11"
  946. type="13"
  947. />
  948. </productMenu>
  949. <productMenu id="volume+"
  950. type="2"
  951. url="0x6004" >
  952. <productMenuURL version="1.2.3"
  953. url="0x6004"
  954. />
  955. </productMenu>
  956. <productMenu id="soundMode"
  957. type="0" >
  958. <productMenuType version="0.9.11"
  959. type="0"
  960. />
  961. </productMenu>
  962. <productMenu id="battery"
  963. type="1" >
  964. </productMenu>
  965. <productID id="6A02"
  966. />
  967. <productGroupable type="0"
  968. />
  969. </product>
  970. <product id="60X"
  971. name="60X"
  972. series="60"
  973. latestVersion="0.9.2"
  974. latestVersionMesh="0.19"
  975. latestVersionVoicePrompt="1.5"
  976. show = "-1" >
  977. <productMenu id="protocol"
  978. type="2" >
  979. </productMenu>
  980. <productMenu id="ota"
  981. type="2" >
  982. <otaLanguages>
  983. <otaLanguage
  984. id="0"
  985. name="English"
  986. package="0"
  987. />
  988. <otaLanguage
  989. id="0"
  990. name="French"
  991. package="1"
  992. />
  993. <otaLanguage
  994. id="0"
  995. name="Spanish"
  996. package="2"
  997. />
  998. <otaLanguage
  999. id="0"
  1000. name="Italian"
  1001. package="3"
  1002. />
  1003. <otaLanguage
  1004. id="0"
  1005. name="German"
  1006. package="4"
  1007. />
  1008. <otaLanguage
  1009. id="0"
  1010. name="Dutch"
  1011. package="5"
  1012. />
  1013. <otaLanguage
  1014. id="0"
  1015. name="Russian"
  1016. package="6"
  1017. />
  1018. <otaLanguage
  1019. id="0"
  1020. name="Chinese"
  1021. package="7"
  1022. />
  1023. <otaLanguage
  1024. id="0"
  1025. name="Korean"
  1026. package="8"
  1027. />
  1028. <otaLanguage
  1029. id="0"
  1030. name="Japanese"
  1031. package="9"
  1032. />
  1033. <otaLanguage
  1034. id="0"
  1035. name="Finnish"
  1036. package="10"
  1037. />
  1038. <otaLanguage
  1039. id="0"
  1040. name="Polish"
  1041. package="11"
  1042. />
  1043. </otaLanguages>
  1044. <otaPackages>
  1045. <package
  1046. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0.img"
  1047. size="5183988"
  1048. />
  1049. <package
  1050. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-fr-FR.img"
  1051. size="5183988"
  1052. />
  1053. <package
  1054. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-es-ES.img"
  1055. size="5183988"
  1056. />
  1057. <package
  1058. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-it-IT.img"
  1059. size="5183988"
  1060. />
  1061. <package
  1062. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-de-DE.img"
  1063. size="5183988"
  1064. />
  1065. <package
  1066. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-nl-NL.img"
  1067. size="5183988"
  1068. />
  1069. <package
  1070. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-ru-RU.img"
  1071. size="5183988"
  1072. />
  1073. <package
  1074. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-cmn-CN.img"
  1075. size="5183988"
  1076. />
  1077. <package
  1078. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-ko-KR.img"
  1079. size="5183988"
  1080. />
  1081. <package
  1082. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-ja-JP.img"
  1083. size="5183988"
  1084. />
  1085. <package
  1086. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-fi-FI.img"
  1087. size="5183988"
  1088. />
  1089. <package
  1090. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-pl-PL.img"
  1091. size="5183988"
  1092. />
  1093. </otaPackages>
  1094. </productMenu>
  1095. <productMenu id="wa"
  1096. type="0" >
  1097. </productMenu>
  1098. <productMenu id="sip"
  1099. type="1" >
  1100. </productMenu>
  1101. <productMenu id="led"
  1102. type="1" >
  1103. </productMenu>
  1104. <productMenu id="illusion"
  1105. type="1" >
  1106. </productMenu>
  1107. <productMenu id="meshIntercom"
  1108. type="30" >
  1109. </productMenu>
  1110. <productMenu id="meshIntercom+"
  1111. type="3"
  1112. url="2" >
  1113. </productMenu>
  1114. <productMenu id="bluetoothIntercom"
  1115. type="1" >
  1116. </productMenu>
  1117. <productMenu id="fmradio"
  1118. type="1"
  1119. url="1" >
  1120. </productMenu>
  1121. <productMenu id="phone"
  1122. type="1" >
  1123. </productMenu>
  1124. <productMenu id="music"
  1125. type="1" >
  1126. </productMenu>
  1127. <productMenu id="musicSharing"
  1128. type="0" >
  1129. </productMenu>
  1130. <productMenu id="deviceSetting"
  1131. type="1"
  1132. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  1133. </productMenu>
  1134. <productMenu id="quickGuide"
  1135. type="0"
  1136. url=""
  1137. size="1.12MB" >
  1138. </productMenu>
  1139. <productMenu id="userGuide"
  1140. type="0"
  1141. url=""
  1142. size="2.0MB" >
  1143. </productMenu>
  1144. <productMenu id="videoGuide"
  1145. type="0"
  1146. url=""
  1147. size="3.41MB" >
  1148. </productMenu>
  1149. <productMenu id="volume"
  1150. type="13" >
  1151. </productMenu>
  1152. <productMenu id="battery"
  1153. type="1" >
  1154. </productMenu>
  1155. <productID id="6A03"
  1156. />
  1157. <productGroupable type="0"
  1158. />
  1159. </product>
  1160. <product id="R35"
  1161. name="R35"
  1162. series="R"
  1163. latestVersion="1.1"
  1164. latestVersionVoicePrompt="1.5"
  1165. show = "-1" >
  1166. <productMenu id="protocol"
  1167. type="2" >
  1168. </productMenu>
  1169. <productMenu id="ota"
  1170. type="2" >
  1171. <otaLanguages>
  1172. <otaLanguage
  1173. id="0"
  1174. name="English"
  1175. package="0"
  1176. />
  1177. <otaLanguage
  1178. id="0"
  1179. name="Chinese"
  1180. package="1"
  1181. />
  1182. <otaLanguage
  1183. id="0"
  1184. name="Chinese Singapore"
  1185. package="2"
  1186. />
  1187. <otaLanguage
  1188. id="0"
  1189. name="Filipino"
  1190. package="3"
  1191. />
  1192. <otaLanguage
  1193. id="0"
  1194. name="Hebrew"
  1195. package="4"
  1196. />
  1197. <otaLanguage
  1198. id="0"
  1199. name="Hindi"
  1200. package="5"
  1201. />
  1202. <otaLanguage
  1203. id="0"
  1204. name="Indonesian"
  1205. package="6"
  1206. />
  1207. <otaLanguage
  1208. id="0"
  1209. name="Japanese"
  1210. package="7"
  1211. />
  1212. <otaLanguage
  1213. id="0"
  1214. name="Korean"
  1215. package="8"
  1216. />
  1217. <otaLanguage
  1218. id="0"
  1219. name="Malay"
  1220. package="9"
  1221. />
  1222. <otaLanguage
  1223. id="0"
  1224. name="Modern Standard Arabic"
  1225. package="10"
  1226. />
  1227. <otaLanguage
  1228. id="0"
  1229. name="Taiwanese"
  1230. package="11"
  1231. />
  1232. <otaLanguage
  1233. id="0"
  1234. name="Tamil"
  1235. package="12"
  1236. />
  1237. <otaLanguage
  1238. id="0"
  1239. name="Thai"
  1240. package="13"
  1241. />
  1242. <otaLanguage
  1243. id="0"
  1244. name="东北话"
  1245. package="14"
  1246. />
  1247. <otaLanguage
  1248. id="0"
  1249. name="广东话"
  1250. package="15"
  1251. />
  1252. <otaLanguage
  1253. id="0"
  1254. name="江浙沪"
  1255. package="16"
  1256. />
  1257. <otaLanguage
  1258. id="0"
  1259. name="四川话"
  1260. package="17"
  1261. />
  1262. <otaLanguage
  1263. id="0"
  1264. name="陕西话"
  1265. package="18"
  1266. />
  1267. </otaLanguages>
  1268. <otaPackages>
  1269. <package
  1270. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0.img"
  1271. size="5183988"
  1272. />
  1273. <package
  1274. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-cmn-CN.img"
  1275. size="5183988"
  1276. />
  1277. <package
  1278. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-cmn-SG.img"
  1279. size="5183988"
  1280. />
  1281. <package
  1282. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-tl-PH.img"
  1283. size="5183988"
  1284. />
  1285. <package
  1286. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-he-IL.img"
  1287. size="5183988"
  1288. />
  1289. <package
  1290. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-hi-IN.img"
  1291. size="5183988"
  1292. />
  1293. <package
  1294. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-id-ID.img"
  1295. size="5183988"
  1296. />
  1297. <package
  1298. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ja-JP.img"
  1299. size="5183988"
  1300. />
  1301. <package
  1302. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ko-KR.img"
  1303. size="5183988"
  1304. />
  1305. <package
  1306. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ms-MY.img"
  1307. size="5183988"
  1308. />
  1309. <package
  1310. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ar-XA.img"
  1311. size="5183988"
  1312. />
  1313. <package
  1314. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-nan-TW.img"
  1315. size="5183988"
  1316. />
  1317. <package
  1318. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ta-IN.img"
  1319. size="5183988"
  1320. />
  1321. <package
  1322. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-th-TH.img"
  1323. size="5183988"
  1324. />
  1325. <package
  1326. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zdb-CN.img"
  1327. size="5183988"
  1328. />
  1329. <package
  1330. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-yue-CN.img"
  1331. size="5183988"
  1332. />
  1333. <package
  1334. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-wuu-CN.img"
  1335. size="5183988"
  1336. />
  1337. <package
  1338. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zsc-CN.img"
  1339. size="5183988"
  1340. />
  1341. <package
  1342. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zsn-CN.img"
  1343. size="5183988"
  1344. />
  1345. </otaPackages>
  1346. </productMenu>
  1347. <productMenu id="sip"
  1348. type="1" >
  1349. </productMenu>
  1350. <productMenu id="illusion"
  1351. type="1" >
  1352. </productMenu>
  1353. <productMenu id="meshIntercom"
  1354. type="30" >
  1355. </productMenu>
  1356. <productMenu id="meshIntercom+"
  1357. type="3"
  1358. url="2" >
  1359. </productMenu>
  1360. <productMenu id="waveIntercom"
  1361. type="1" >
  1362. </productMenu>
  1363. <productMenu id="phone"
  1364. type="1" >
  1365. </productMenu>
  1366. <productMenu id="music"
  1367. type="1" >
  1368. </productMenu>
  1369. <productMenu id="musicSharing"
  1370. type="0" >
  1371. </productMenu>
  1372. <productMenu id="deviceSetting"
  1373. type="1"
  1374. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml" > <!--NS_R35_01-->
  1375. <productMenuURL version="1.0.3"
  1376. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1377. />
  1378. </productMenu>
  1379. <productMenu id="quickGuide"
  1380. type="0"
  1381. url=""
  1382. size="1.12MB" >
  1383. </productMenu>
  1384. <productMenu id="userGuide"
  1385. type="1"
  1386. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1387. size="2.0MB" >
  1388. </productMenu>
  1389. <productMenu id="videoGuide"
  1390. type="0"
  1391. url=""
  1392. size="3.41MB" >
  1393. </productMenu>
  1394. <productMenu id="connectGuide"
  1395. type="0"
  1396. url=""
  1397. size="1.12MB" >
  1398. </productMenu>
  1399. <productMenu id="volume"
  1400. type="16" >
  1401. </productMenu>
  1402. <productMenu id="volume+"
  1403. type="2"
  1404. url="0x6004" >
  1405. </productMenu>
  1406. <productMenu id="soundMode"
  1407. type="0" >
  1408. </productMenu>
  1409. <productMenu id="battery"
  1410. type="1" >
  1411. </productMenu>
  1412. <productID id="6A06"
  1413. />
  1414. <productGroupable type="0"
  1415. />
  1416. </product>
  1417. <product id="COMP1"
  1418. name="BMW COM P1"
  1419. series="60"
  1420. latestVersion="1.0.6"
  1421. latestVersionMesh="0.19"
  1422. latestVersionVoicePrompt="1.0"
  1423. show = "-1" >
  1424. <productMenu id="protocol"
  1425. type="2" >
  1426. </productMenu>
  1427. <productMenu id="ota"
  1428. type="2" >
  1429. <otaLanguages>
  1430. <otaLanguage
  1431. id="0"
  1432. name="English"
  1433. package="0"
  1434. />
  1435. <otaLanguage
  1436. id="0"
  1437. name="French"
  1438. package="1"
  1439. />
  1440. <otaLanguage
  1441. id="0"
  1442. name="Spanish"
  1443. package="2"
  1444. />
  1445. <otaLanguage
  1446. id="0"
  1447. name="Italian"
  1448. package="3"
  1449. />
  1450. <otaLanguage
  1451. id="0"
  1452. name="German"
  1453. package="4"
  1454. />
  1455. <otaLanguage
  1456. id="0"
  1457. name="Dutch"
  1458. package="5"
  1459. />
  1460. <otaLanguage
  1461. id="0"
  1462. name="Russian"
  1463. package="6"
  1464. />
  1465. <otaLanguage
  1466. id="0"
  1467. name="Chinese"
  1468. package="7"
  1469. />
  1470. <otaLanguage
  1471. id="0"
  1472. name="Korean"
  1473. package="8"
  1474. />
  1475. <otaLanguage
  1476. id="0"
  1477. name="Japanese"
  1478. package="9"
  1479. />
  1480. <otaLanguage
  1481. id="0"
  1482. name="Finnish"
  1483. package="10"
  1484. />
  1485. </otaLanguages>
  1486. <otaPackages>
  1487. <package
  1488. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0.img"
  1489. size="5183988"
  1490. />
  1491. <package
  1492. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fr-FR.img"
  1493. size="5183988"
  1494. />
  1495. <package
  1496. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-es-ES.img"
  1497. size="5183988"
  1498. />
  1499. <package
  1500. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-it-IT.img"
  1501. size="5183988"
  1502. />
  1503. <package
  1504. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-de-DE.img"
  1505. size="5183988"
  1506. />
  1507. <package
  1508. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-nl-NL.img"
  1509. size="5183988"
  1510. />
  1511. <package
  1512. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ru-RU.img"
  1513. size="5183988"
  1514. />
  1515. <package
  1516. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-cmn-CN.img"
  1517. size="5183988"
  1518. />
  1519. <package
  1520. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ko-KR.img"
  1521. size="5183988"
  1522. />
  1523. <package
  1524. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ja-JP.img"
  1525. size="5183988"
  1526. />
  1527. <package
  1528. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fi-FI.img"
  1529. size="5183988"
  1530. />
  1531. </otaPackages>
  1532. </productMenu>
  1533. <productMenu id="wa"
  1534. type="0" >
  1535. </productMenu>
  1536. <productMenu id="sip"
  1537. type="1" >
  1538. </productMenu>
  1539. <productMenu id="led"
  1540. type="0" >
  1541. </productMenu>
  1542. <productMenu id="illusion"
  1543. type="0" >
  1544. </productMenu>
  1545. <productMenu id="meshIntercom"
  1546. type="30" >
  1547. </productMenu>
  1548. <productMenu id="bluetoothIntercom"
  1549. type="1" >
  1550. </productMenu>
  1551. <productMenu id="bluetoothIntercomGrouping"
  1552. type="0" >
  1553. </productMenu>
  1554. <productMenu id="fmradio"
  1555. type="0" >
  1556. </productMenu>
  1557. <productMenu id="phone"
  1558. type="1" >
  1559. </productMenu>
  1560. <productMenu id="music"
  1561. type="1" >
  1562. </productMenu>
  1563. <productMenu id="musicSharing"
  1564. type="0" >
  1565. </productMenu>
  1566. <productMenu id="deviceSetting"
  1567. type="1"
  1568. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1569. </productMenu>
  1570. <productMenu id="quickGuide"
  1571. type="0"
  1572. url=""
  1573. size="1.12MB" >
  1574. </productMenu>
  1575. <productMenu id="userGuide"
  1576. type="0"
  1577. url=""
  1578. size="2.0MB" >
  1579. </productMenu>
  1580. <productMenu id="videoGuide"
  1581. type="0"
  1582. url=""
  1583. size="3.41MB" >
  1584. </productMenu>
  1585. <productMenu id="volume"
  1586. type="16" >
  1587. </productMenu>
  1588. <productMenu id="battery"
  1589. type="1" >
  1590. </productMenu>
  1591. <productID id="6A80"
  1592. />
  1593. <productGroupable type="0"
  1594. />
  1595. </product>
  1596. <product id="50S"
  1597. name="50S"
  1598. series="50"
  1599. latestVersion="2.7.1"
  1600. show = "1" >
  1601. <productMenu id="protocol"
  1602. type="2" >
  1603. </productMenu>
  1604. <productMenu id="alexa"
  1605. type="0" >
  1606. </productMenu>
  1607. <productMenu id="ota"
  1608. type="0"
  1609. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1610. size="1150234" >
  1611. </productMenu>
  1612. <productMenu id="wa"
  1613. type="1" >
  1614. </productMenu>
  1615. <productMenu id="sip"
  1616. type="1" >
  1617. </productMenu>
  1618. <productMenu id="meshIntercom"
  1619. type="30" >
  1620. <productMenuType version="2.1.1"
  1621. type="20"
  1622. />
  1623. </productMenu>
  1624. <productMenu id="meshIntercom+"
  1625. type="3"
  1626. url="2" >
  1627. <productMenuType version="2.5.9"
  1628. type="2"
  1629. />
  1630. <productMenuURL version="2.1.1"
  1631. url="0"
  1632. />
  1633. </productMenu>
  1634. <productMenu id="waveIntercom"
  1635. type="1" >
  1636. <productMenuType version="2.6"
  1637. type="0"
  1638. />
  1639. </productMenu>
  1640. <productMenu id="bluetoothIntercom"
  1641. type="1" >
  1642. </productMenu>
  1643. <productMenu id="phone"
  1644. type="1" >
  1645. </productMenu>
  1646. <productMenu id="music"
  1647. type="1" >
  1648. </productMenu>
  1649. <productMenu id="fmradio"
  1650. type="1" >
  1651. </productMenu>
  1652. <productMenu id="deviceSetting"
  1653. type="1"
  1654. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1655. <productMenuURL version="2.5.9"
  1656. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1657. />
  1658. <productMenuURL version="2.1.1"
  1659. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1660. />
  1661. <productMenuURL version="2.0.3"
  1662. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1663. />
  1664. </productMenu>
  1665. <productMenu id="quickGuide"
  1666. type="0"
  1667. url=""
  1668. size="934KB" >
  1669. </productMenu>
  1670. <productMenu id="userGuide"
  1671. type="1"
  1672. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1673. size="1.14MB" >
  1674. </productMenu>
  1675. <productMenu id="videoGuide"
  1676. type="1"
  1677. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1678. size="3.41MB" >
  1679. </productMenu>
  1680. <productMenu id="connectGuide"
  1681. type="1"
  1682. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1683. size="1.12MB" >
  1684. </productMenu>
  1685. <productMenu id="volume"
  1686. type="11" >
  1687. </productMenu>
  1688. <productMenu id="battery"
  1689. type="1" >
  1690. </productMenu>
  1691. <productID id="3210"
  1692. />
  1693. <productGroupable type="0"
  1694. />
  1695. </product>
  1696. <product id="50S"
  1697. name="50S"
  1698. series="50"
  1699. latestVersion="1.5.1"
  1700. show = "-1" >
  1701. <productMenu id="protocol"
  1702. type="2" >
  1703. </productMenu>
  1704. <productMenu id="alexa"
  1705. type="0" >
  1706. </productMenu>
  1707. <productMenu id="wa"
  1708. type="1" >
  1709. </productMenu>
  1710. <productMenu id="sip"
  1711. type="1" >
  1712. </productMenu>
  1713. <productMenu id="meshIntercom"
  1714. type="30" >
  1715. <productMenuType version="1.2.2"
  1716. type="20"
  1717. />
  1718. </productMenu>
  1719. <productMenu id="meshIntercom+"
  1720. type="3"
  1721. url="2" >
  1722. <productMenuType version="1.4.9"
  1723. type="2"
  1724. />
  1725. <productMenuURL version="1.2.2"
  1726. url="0"
  1727. />
  1728. </productMenu>
  1729. <productMenu id="waveIntercom"
  1730. type="1" >
  1731. <productMenuType version="1.3.9"
  1732. type="0"
  1733. />
  1734. </productMenu>
  1735. <productMenu id="bluetoothIntercom"
  1736. type="1" >
  1737. </productMenu>
  1738. <productMenu id="phone"
  1739. type="1" >
  1740. </productMenu>
  1741. <productMenu id="music"
  1742. type="1" >
  1743. </productMenu>
  1744. <productMenu id="fmradio"
  1745. type="1" >
  1746. </productMenu>
  1747. <productMenu id="deviceSetting"
  1748. type="1"
  1749. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1750. <productMenuURL version="1.4.9"
  1751. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1752. />
  1753. <productMenuURL version="1.3.9"
  1754. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1755. />
  1756. <productMenuURL version="1.2.2"
  1757. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1758. />
  1759. <productMenuURL version="1.1.1"
  1760. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1761. />
  1762. </productMenu>
  1763. <productMenu id="quickGuide"
  1764. type="0"
  1765. url=""
  1766. size="934KB" >
  1767. </productMenu>
  1768. <productMenu id="userGuide"
  1769. type="1"
  1770. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  1771. size="1.14MB" >
  1772. </productMenu>
  1773. <productMenu id="videoGuide"
  1774. type="1"
  1775. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1776. size="3.41MB" >
  1777. </productMenu>
  1778. <productMenu id="volume"
  1779. type="11" >
  1780. </productMenu>
  1781. <productMenu id="battery"
  1782. type="1" >
  1783. </productMenu>
  1784. <productID id="3132"
  1785. />
  1786. <productGroupable type="0"
  1787. />
  1788. </product>
  1789. <product id="50R"
  1790. name="50R"
  1791. series="50"
  1792. latestVersion="2.7"
  1793. show = "1" >
  1794. <productMenu id="protocol"
  1795. type="2" >
  1796. </productMenu>
  1797. <productMenu id="alexa"
  1798. type="0" >
  1799. </productMenu>
  1800. <productMenu id="ota"
  1801. type="0"
  1802. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1803. size="1150234" >
  1804. </productMenu>
  1805. <productMenu id="wa"
  1806. type="1" >
  1807. </productMenu>
  1808. <productMenu id="sip"
  1809. type="1" >
  1810. </productMenu>
  1811. <productMenu id="meshIntercom"
  1812. type="30" >
  1813. <productMenuType version="2.1.1"
  1814. type="20"
  1815. />
  1816. </productMenu>
  1817. <productMenu id="meshIntercom+"
  1818. type="3"
  1819. url="2" >
  1820. <productMenuType version="2.5.9"
  1821. type="2"
  1822. />
  1823. <productMenuURL version="2.1.1"
  1824. url="0"
  1825. />
  1826. </productMenu>
  1827. <productMenu id="waveIntercom"
  1828. type="1" >
  1829. <productMenuType version="2.6"
  1830. type="0"
  1831. />
  1832. </productMenu>
  1833. <productMenu id="bluetoothIntercom"
  1834. type="1" >
  1835. </productMenu>
  1836. <productMenu id="phone"
  1837. type="1" >
  1838. </productMenu>
  1839. <productMenu id="music"
  1840. type="1" >
  1841. </productMenu>
  1842. <productMenu id="fmradio"
  1843. type="1" >
  1844. </productMenu>
  1845. <productMenu id="deviceSetting"
  1846. type="1"
  1847. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1848. <productMenuURL version="2.5.9"
  1849. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1850. />
  1851. <productMenuURL version="2.1.1"
  1852. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1853. />
  1854. <productMenuURL version="2.0"
  1855. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1856. />
  1857. </productMenu>
  1858. <productMenu id="quickGuide"
  1859. type="0"
  1860. url=""
  1861. size="344KB" >
  1862. </productMenu>
  1863. <productMenu id="userGuide"
  1864. type="1"
  1865. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  1866. size="3.41MB" >
  1867. </productMenu>
  1868. <productMenu id="videoGuide"
  1869. type="1"
  1870. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1871. size="3.41MB" >
  1872. </productMenu>
  1873. <productMenu id="connectGuide"
  1874. type="1"
  1875. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  1876. size="1.12MB" >
  1877. </productMenu>
  1878. <productMenu id="volume"
  1879. type="11" >
  1880. </productMenu>
  1881. <productMenu id="battery"
  1882. type="1" >
  1883. </productMenu>
  1884. <productID id="3218"
  1885. />
  1886. <productGroupable type="0"
  1887. />
  1888. </product>
  1889. <product id="50R"
  1890. name="50R"
  1891. series="50"
  1892. latestVersion="1.5.1"
  1893. show = "-1" >
  1894. <productMenu id="protocol"
  1895. type="2" >
  1896. </productMenu>
  1897. <productMenu id="alexa"
  1898. type="0" >
  1899. </productMenu>
  1900. <productMenu id="wa"
  1901. type="1" >
  1902. </productMenu>
  1903. <productMenu id="sip"
  1904. type="1" >
  1905. </productMenu>
  1906. <productMenu id="meshIntercom"
  1907. type="30" >
  1908. <productMenuType version="1.2.2"
  1909. type="20"
  1910. />
  1911. </productMenu>
  1912. <productMenu id="meshIntercom+"
  1913. type="3"
  1914. url="2" >
  1915. <productMenuType version="1.4.9"
  1916. type="2"
  1917. />
  1918. <productMenuURL version="1.2.2"
  1919. url="0"
  1920. />
  1921. </productMenu>
  1922. <productMenu id="waveIntercom"
  1923. type="1" >
  1924. <productMenuType version="1.3.9"
  1925. type="0"
  1926. />
  1927. </productMenu>
  1928. <productMenu id="bluetoothIntercom"
  1929. type="1" >
  1930. </productMenu>
  1931. <productMenu id="phone"
  1932. type="1" >
  1933. </productMenu>
  1934. <productMenu id="music"
  1935. type="1" >
  1936. </productMenu>
  1937. <productMenu id="fmradio"
  1938. type="1" >
  1939. </productMenu>
  1940. <productMenu id="deviceSetting"
  1941. type="1"
  1942. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1943. <productMenuURL version="1.4.9"
  1944. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1945. />
  1946. <productMenuURL version="1.3.9"
  1947. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1948. />
  1949. <productMenuURL version="1.2.2"
  1950. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1951. />
  1952. <productMenuURL version="1.1.1"
  1953. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1954. />
  1955. </productMenu>
  1956. <productMenu id="quickGuide"
  1957. type="0"
  1958. url=""
  1959. size="344KB" >
  1960. </productMenu>
  1961. <productMenu id="userGuide"
  1962. type="1"
  1963. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  1964. size="3.41MB" >
  1965. </productMenu>
  1966. <productMenu id="videoGuide"
  1967. type="1"
  1968. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1969. size="3.41MB" >
  1970. </productMenu>
  1971. <productMenu id="volume"
  1972. type="11" >
  1973. </productMenu>
  1974. <productMenu id="battery"
  1975. type="1" >
  1976. </productMenu>
  1977. <productID id="3134"
  1978. />
  1979. <productGroupable type="0"
  1980. />
  1981. </product>
  1982. <product id="50C"
  1983. name="50C"
  1984. series="50"
  1985. latestVersion="1.4.3"
  1986. show = "1" >
  1987. <productMenu id="protocol"
  1988. type="2" >
  1989. </productMenu>
  1990. <productMenu id="ota"
  1991. type="0" >
  1992. </productMenu>
  1993. <productMenu id="wa"
  1994. type="1" >
  1995. </productMenu>
  1996. <productMenu id="sip"
  1997. type="1" >
  1998. </productMenu>
  1999. <productMenu id="meshIntercom"
  2000. type="30" >
  2001. <productMenuType version="1.1.1"
  2002. type="20"
  2003. />
  2004. </productMenu>
  2005. <productMenu id="meshIntercom+"
  2006. type="3"
  2007. url="2" >
  2008. <productMenuType version="1.3.9"
  2009. type="2"
  2010. />
  2011. <productMenuURL version="1.1.1"
  2012. url="0"
  2013. />
  2014. </productMenu>
  2015. <productMenu id="waveIntercom"
  2016. type="1" >
  2017. <productMenuType version="1.2.9"
  2018. type="0"
  2019. />
  2020. </productMenu>
  2021. <productMenu id="bluetoothIntercom"
  2022. type="1" >
  2023. </productMenu>
  2024. <productMenu id="phone"
  2025. type="1" >
  2026. </productMenu>
  2027. <productMenu id="music"
  2028. type="1" >
  2029. </productMenu>
  2030. <productMenu id="fmradio"
  2031. type="1" >
  2032. </productMenu>
  2033. <productMenu id="deviceSetting"
  2034. type="1"
  2035. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2036. <productMenuURL version="1.3.9"
  2037. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2038. />
  2039. <productMenuURL version="1.1.1"
  2040. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2041. />
  2042. <productMenuURL version="1.0.1"
  2043. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2044. />
  2045. </productMenu>
  2046. <productMenu id="quickGuide"
  2047. type="0"
  2048. url=""
  2049. size="344KB" >
  2050. </productMenu>
  2051. <productMenu id="userGuide"
  2052. type="1"
  2053. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2054. size="3.41MB" >
  2055. </productMenu>
  2056. <productMenu id="connectGuide"
  2057. type="1"
  2058. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2059. size="1.12MB" >
  2060. </productMenu>
  2061. <productMenu id="volume"
  2062. type="11" >
  2063. </productMenu>
  2064. <productMenu id="battery"
  2065. type="1" >
  2066. </productMenu>
  2067. <productID id="3232"
  2068. />
  2069. <productGroupable type="0"
  2070. />
  2071. </product>
  2072. <product id="PHANTOMXB"
  2073. name="PHANTOM XB"
  2074. series="Helmet"
  2075. latestVersion="1.2.7"
  2076. latestVersionVoicePrompt="1.5"
  2077. show = "-1" >
  2078. <productMenu id="protocol"
  2079. type="2" >
  2080. </productMenu>
  2081. <productMenu id="ota"
  2082. type="2" >
  2083. <otaLanguages>
  2084. <otaLanguage
  2085. id="0"
  2086. name="English"
  2087. package="0"
  2088. />
  2089. <otaLanguage
  2090. id="0"
  2091. name="French"
  2092. package="1"
  2093. />
  2094. <otaLanguage
  2095. id="0"
  2096. name="Spanish"
  2097. package="2"
  2098. />
  2099. <otaLanguage
  2100. id="0"
  2101. name="Italian"
  2102. package="3"
  2103. />
  2104. <otaLanguage
  2105. id="0"
  2106. name="German"
  2107. package="4"
  2108. />
  2109. <otaLanguage
  2110. id="0"
  2111. name="Dutch"
  2112. package="5"
  2113. />
  2114. <otaLanguage
  2115. id="0"
  2116. name="Russian"
  2117. package="6"
  2118. />
  2119. <otaLanguage
  2120. id="0"
  2121. name="Chinese"
  2122. package="7"
  2123. />
  2124. <otaLanguage
  2125. id="0"
  2126. name="Korean"
  2127. package="8"
  2128. />
  2129. <otaLanguage
  2130. id="0"
  2131. name="Japanese"
  2132. package="9"
  2133. />
  2134. <otaLanguage
  2135. id="0"
  2136. name="Finnish"
  2137. package="10"
  2138. />
  2139. <otaLanguage
  2140. id="0"
  2141. name="Polish"
  2142. package="11"
  2143. />
  2144. </otaLanguages>
  2145. <otaPackages>
  2146. <package
  2147. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1.img"
  2148. size="5183988"
  2149. />
  2150. <package
  2151. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-fr-FR.img"
  2152. size="5183988"
  2153. />
  2154. <package
  2155. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-es-ES.img"
  2156. size="5183988"
  2157. />
  2158. <package
  2159. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-it-IT.img"
  2160. size="5183988"
  2161. />
  2162. <package
  2163. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-de-DE.img"
  2164. size="5183988"
  2165. />
  2166. <package
  2167. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-nl-NL.img"
  2168. size="5183988"
  2169. />
  2170. <package
  2171. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ru-RU.img"
  2172. size="5183988"
  2173. />
  2174. <package
  2175. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-cmn-CN.img"
  2176. size="5183988"
  2177. />
  2178. <package
  2179. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ko-KR.img"
  2180. size="5183988"
  2181. />
  2182. <package
  2183. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ja-JP.img"
  2184. size="5183988"
  2185. />
  2186. <package
  2187. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-fi-FI.img"
  2188. size="5183988"
  2189. />
  2190. <package
  2191. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-pl-PL.img"
  2192. size="5183988"
  2193. />
  2194. </otaPackages>
  2195. </productMenu>
  2196. <productMenu id="wa"
  2197. type="0" >
  2198. </productMenu>
  2199. <productMenu id="led"
  2200. type="5" >
  2201. </productMenu>
  2202. <productMenu id="led+"
  2203. type="2"
  2204. url="1" >
  2205. </productMenu>
  2206. <productMenu id="meshIntercom"
  2207. type="30" >
  2208. </productMenu>
  2209. <productMenu id="meshIntercom+"
  2210. type="3"
  2211. url="2" >
  2212. </productMenu>
  2213. <productMenu id="waveIntercom"
  2214. type="1" >
  2215. </productMenu>
  2216. <productMenu id="fmradio"
  2217. type="0" >
  2218. </productMenu>
  2219. <productMenu id="phone"
  2220. type="1" >
  2221. </productMenu>
  2222. <productMenu id="music"
  2223. type="1" >
  2224. </productMenu>
  2225. <productMenu id="musicSharing"
  2226. type="0" >
  2227. </productMenu>
  2228. <productMenu id="deviceSetting"
  2229. type="1"
  2230. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" ><!--NS_PHANTOM_11-->
  2231. <productMenuURL version="1.2.4"
  2232. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2233. />
  2234. </productMenu>
  2235. <productMenu id="quickGuide"
  2236. type="0"
  2237. url=""
  2238. size="1.12MB" >
  2239. </productMenu>
  2240. <productMenu id="userGuide"
  2241. type="1"
  2242. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2243. size="2.0MB" >
  2244. </productMenu>
  2245. <productMenu id="videoGuide"
  2246. type="0"
  2247. url=""
  2248. size="3.41MB" >
  2249. </productMenu>
  2250. <productMenu id="volume"
  2251. type="16" >
  2252. </productMenu>
  2253. <productMenu id="volume+"
  2254. type="2"
  2255. url="0x6004" >
  2256. </productMenu>
  2257. <productMenu id="battery"
  2258. type="1" >
  2259. </productMenu>
  2260. <productID id="6A0F"
  2261. />
  2262. <productGroupable type="0"
  2263. />
  2264. </product>
  2265. <product id="PHANTOMXB"
  2266. name="PHANTOM XB"
  2267. series="Helmet"
  2268. latestVersion="1.2.7"
  2269. latestVersionVoicePrompt="1.5"
  2270. show = "-1" >
  2271. <productMenu id="protocol"
  2272. type="2" >
  2273. </productMenu>
  2274. <productMenu id="ota"
  2275. type="2" >
  2276. <otaLanguages>
  2277. <otaLanguage
  2278. id="0"
  2279. name="English"
  2280. package="0"
  2281. />
  2282. <otaLanguage
  2283. id="0"
  2284. name="French"
  2285. package="1"
  2286. />
  2287. <otaLanguage
  2288. id="0"
  2289. name="Spanish"
  2290. package="2"
  2291. />
  2292. <otaLanguage
  2293. id="0"
  2294. name="Italian"
  2295. package="3"
  2296. />
  2297. <otaLanguage
  2298. id="0"
  2299. name="German"
  2300. package="4"
  2301. />
  2302. <otaLanguage
  2303. id="0"
  2304. name="Dutch"
  2305. package="5"
  2306. />
  2307. <otaLanguage
  2308. id="0"
  2309. name="Russian"
  2310. package="6"
  2311. />
  2312. <otaLanguage
  2313. id="0"
  2314. name="Chinese"
  2315. package="7"
  2316. />
  2317. <otaLanguage
  2318. id="0"
  2319. name="Korean"
  2320. package="8"
  2321. />
  2322. <otaLanguage
  2323. id="0"
  2324. name="Japanese"
  2325. package="9"
  2326. />
  2327. <otaLanguage
  2328. id="0"
  2329. name="Finnish"
  2330. package="10"
  2331. />
  2332. <otaLanguage
  2333. id="0"
  2334. name="Polish"
  2335. package="11"
  2336. />
  2337. </otaLanguages>
  2338. <otaPackages>
  2339. <package
  2340. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1.img"
  2341. size="5183988"
  2342. />
  2343. <package
  2344. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-fr-FR.img"
  2345. size="5183988"
  2346. />
  2347. <package
  2348. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-es-ES.img"
  2349. size="5183988"
  2350. />
  2351. <package
  2352. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-it-IT.img"
  2353. size="5183988"
  2354. />
  2355. <package
  2356. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-de-DE.img"
  2357. size="5183988"
  2358. />
  2359. <package
  2360. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-nl-NL.img"
  2361. size="5183988"
  2362. />
  2363. <package
  2364. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ru-RU.img"
  2365. size="5183988"
  2366. />
  2367. <package
  2368. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-cmn-CN.img"
  2369. size="5183988"
  2370. />
  2371. <package
  2372. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ko-KR.img"
  2373. size="5183988"
  2374. />
  2375. <package
  2376. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ja-JP.img"
  2377. size="5183988"
  2378. />
  2379. <package
  2380. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-fi-FI.img"
  2381. size="5183988"
  2382. />
  2383. <package
  2384. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-pl-PL.img"
  2385. size="5183988"
  2386. />
  2387. </otaPackages>
  2388. </productMenu>
  2389. <productMenu id="wa"
  2390. type="0" >
  2391. </productMenu>
  2392. <productMenu id="led"
  2393. type="5" >
  2394. </productMenu>
  2395. <productMenu id="led+"
  2396. type="2"
  2397. url="1" >
  2398. </productMenu>
  2399. <productMenu id="meshIntercom"
  2400. type="30" >
  2401. </productMenu>
  2402. <productMenu id="meshIntercom+"
  2403. type="3"
  2404. url="2" >
  2405. </productMenu>
  2406. <productMenu id="waveIntercom"
  2407. type="1" >
  2408. </productMenu>
  2409. <productMenu id="fmradio"
  2410. type="0" >
  2411. </productMenu>
  2412. <productMenu id="phone"
  2413. type="1" >
  2414. </productMenu>
  2415. <productMenu id="music"
  2416. type="1" >
  2417. </productMenu>
  2418. <productMenu id="musicSharing"
  2419. type="0" >
  2420. </productMenu>
  2421. <productMenu id="deviceSetting"
  2422. type="1"
  2423. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" ><!--NS_PHANTOM_11-->
  2424. <productMenuURL version="1.2.4"
  2425. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2426. />
  2427. <productMenuURL version="1.2.1"
  2428. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2429. />
  2430. </productMenu>
  2431. <productMenu id="quickGuide"
  2432. type="0"
  2433. url=""
  2434. size="1.12MB" >
  2435. </productMenu>
  2436. <productMenu id="userGuide"
  2437. type="1"
  2438. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2439. size="2.0MB" >
  2440. </productMenu>
  2441. <productMenu id="videoGuide"
  2442. type="0"
  2443. url=""
  2444. size="3.41MB" >
  2445. </productMenu>
  2446. <productMenu id="volume"
  2447. type="16" >
  2448. </productMenu>
  2449. <productMenu id="volume+"
  2450. type="2"
  2451. url="0x6004" >
  2452. </productMenu>
  2453. <productMenu id="battery"
  2454. type="1" >
  2455. </productMenu>
  2456. <productID id="6A0C"
  2457. />
  2458. <productGroupable type="0"
  2459. />
  2460. </product>
  2461. <product id="PHANTOMKV"
  2462. name="PHANTOM KV"
  2463. series="Helmet"
  2464. latestVersion="1.2.2"
  2465. latestVersionVoicePrompt="1.0"
  2466. show = "-1" >
  2467. <productMenu id="protocol"
  2468. type="2" >
  2469. </productMenu>
  2470. <productMenu id="ota"
  2471. type="0" >
  2472. <otaLanguages>
  2473. <otaLanguage
  2474. id="0"
  2475. name="English"
  2476. package="0"
  2477. />
  2478. <otaLanguage
  2479. id="0"
  2480. name="French"
  2481. package="1"
  2482. />
  2483. <otaLanguage
  2484. id="0"
  2485. name="Spanish"
  2486. package="2"
  2487. />
  2488. <otaLanguage
  2489. id="0"
  2490. name="Italian"
  2491. package="3"
  2492. />
  2493. <otaLanguage
  2494. id="0"
  2495. name="German"
  2496. package="4"
  2497. />
  2498. <otaLanguage
  2499. id="0"
  2500. name="Dutch"
  2501. package="5"
  2502. />
  2503. <otaLanguage
  2504. id="0"
  2505. name="Russian"
  2506. package="6"
  2507. />
  2508. <otaLanguage
  2509. id="0"
  2510. name="Chinese"
  2511. package="7"
  2512. />
  2513. <otaLanguage
  2514. id="0"
  2515. name="Korean"
  2516. package="8"
  2517. />
  2518. <otaLanguage
  2519. id="0"
  2520. name="Japanese"
  2521. package="9"
  2522. />
  2523. <otaLanguage
  2524. id="0"
  2525. name="Finnish"
  2526. package="10"
  2527. />
  2528. <otaLanguage
  2529. id="0"
  2530. name="Polish"
  2531. package="11"
  2532. />
  2533. </otaLanguages>
  2534. <otaPackages>
  2535. <package
  2536. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0.img"
  2537. size="5183988"
  2538. />
  2539. <package
  2540. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fr-FR.img"
  2541. size="5183988"
  2542. />
  2543. <package
  2544. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-es-ES.img"
  2545. size="5183988"
  2546. />
  2547. <package
  2548. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-it-IT.img"
  2549. size="5183988"
  2550. />
  2551. <package
  2552. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-de-DE.img"
  2553. size="5183988"
  2554. />
  2555. <package
  2556. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-nl-NL.img"
  2557. size="5183988"
  2558. />
  2559. <package
  2560. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ru-RU.img"
  2561. size="5183988"
  2562. />
  2563. <package
  2564. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-cmn-CN.img"
  2565. size="5183988"
  2566. />
  2567. <package
  2568. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ko-KR.img"
  2569. size="5183988"
  2570. />
  2571. <package
  2572. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ja-JP.img"
  2573. size="5183988"
  2574. />
  2575. <package
  2576. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fi-FI.img"
  2577. size="5183988"
  2578. />
  2579. <package
  2580. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-pl-PL.img"
  2581. size="5183988"
  2582. />
  2583. </otaPackages>
  2584. </productMenu>
  2585. <productMenu id="wa"
  2586. type="0" >
  2587. </productMenu>
  2588. <productMenu id="led"
  2589. type="5" >
  2590. </productMenu>
  2591. <productMenu id="led+"
  2592. type="2"
  2593. url="1" >
  2594. </productMenu>
  2595. <productMenu id="meshIntercom"
  2596. type="30" >
  2597. </productMenu>
  2598. <productMenu id="meshIntercom+"
  2599. type="3"
  2600. url="2" >
  2601. </productMenu>
  2602. <productMenu id="waveIntercom"
  2603. type="1" >
  2604. </productMenu>
  2605. <productMenu id="fmradio"
  2606. type="0" >
  2607. </productMenu>
  2608. <productMenu id="phone"
  2609. type="1" >
  2610. </productMenu>
  2611. <productMenu id="music"
  2612. type="1" >
  2613. </productMenu>
  2614. <productMenu id="musicSharing"
  2615. type="0" >
  2616. </productMenu>
  2617. <productMenu id="deviceSetting"
  2618. type="1"
  2619. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  2620. <productMenuURL version="1.2.4"
  2621. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2622. />
  2623. </productMenu>
  2624. <productMenu id="quickGuide"
  2625. type="0"
  2626. url=""
  2627. size="1.12MB" >
  2628. </productMenu>
  2629. <productMenu id="userGuide"
  2630. type="1"
  2631. url=""
  2632. size="2.0MB" >
  2633. </productMenu>
  2634. <productMenu id="videoGuide"
  2635. type="0"
  2636. url=""
  2637. size="3.41MB" >
  2638. </productMenu>
  2639. <productMenu id="volume"
  2640. type="16" >
  2641. </productMenu>
  2642. <productMenu id="volume+"
  2643. type="2"
  2644. url="0x6004" >
  2645. </productMenu>
  2646. <productMenu id="battery"
  2647. type="1" >
  2648. </productMenu>
  2649. <productID id="6A14"
  2650. />
  2651. <productGroupable type="0"
  2652. />
  2653. </product>
  2654. <product id="PHANTOMKV"
  2655. name="PHANTOM KV"
  2656. series="Helmet"
  2657. latestVersion="1.2.2"
  2658. latestVersionVoicePrompt="1.0"
  2659. show = "-1" >
  2660. <productMenu id="protocol"
  2661. type="2" >
  2662. </productMenu>
  2663. <productMenu id="ota"
  2664. type="0" >
  2665. <otaLanguages>
  2666. <otaLanguage
  2667. id="0"
  2668. name="English"
  2669. package="0"
  2670. />
  2671. <otaLanguage
  2672. id="0"
  2673. name="French"
  2674. package="1"
  2675. />
  2676. <otaLanguage
  2677. id="0"
  2678. name="Spanish"
  2679. package="2"
  2680. />
  2681. <otaLanguage
  2682. id="0"
  2683. name="Italian"
  2684. package="3"
  2685. />
  2686. <otaLanguage
  2687. id="0"
  2688. name="German"
  2689. package="4"
  2690. />
  2691. <otaLanguage
  2692. id="0"
  2693. name="Dutch"
  2694. package="5"
  2695. />
  2696. <otaLanguage
  2697. id="0"
  2698. name="Russian"
  2699. package="6"
  2700. />
  2701. <otaLanguage
  2702. id="0"
  2703. name="Chinese"
  2704. package="7"
  2705. />
  2706. <otaLanguage
  2707. id="0"
  2708. name="Korean"
  2709. package="8"
  2710. />
  2711. <otaLanguage
  2712. id="0"
  2713. name="Japanese"
  2714. package="9"
  2715. />
  2716. <otaLanguage
  2717. id="0"
  2718. name="Finnish"
  2719. package="10"
  2720. />
  2721. <otaLanguage
  2722. id="0"
  2723. name="Polish"
  2724. package="11"
  2725. />
  2726. </otaLanguages>
  2727. <otaPackages>
  2728. <package
  2729. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0.img"
  2730. size="5183988"
  2731. />
  2732. <package
  2733. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fr-FR.img"
  2734. size="5183988"
  2735. />
  2736. <package
  2737. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-es-ES.img"
  2738. size="5183988"
  2739. />
  2740. <package
  2741. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-it-IT.img"
  2742. size="5183988"
  2743. />
  2744. <package
  2745. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-de-DE.img"
  2746. size="5183988"
  2747. />
  2748. <package
  2749. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-nl-NL.img"
  2750. size="5183988"
  2751. />
  2752. <package
  2753. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ru-RU.img"
  2754. size="5183988"
  2755. />
  2756. <package
  2757. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-cmn-CN.img"
  2758. size="5183988"
  2759. />
  2760. <package
  2761. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ko-KR.img"
  2762. size="5183988"
  2763. />
  2764. <package
  2765. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ja-JP.img"
  2766. size="5183988"
  2767. />
  2768. <package
  2769. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fi-FI.img"
  2770. size="5183988"
  2771. />
  2772. <package
  2773. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-pl-PL.img"
  2774. size="5183988"
  2775. />
  2776. </otaPackages>
  2777. </productMenu>
  2778. <productMenu id="wa"
  2779. type="0" >
  2780. </productMenu>
  2781. <productMenu id="led"
  2782. type="5" >
  2783. </productMenu>
  2784. <productMenu id="led+"
  2785. type="2"
  2786. url="1" >
  2787. </productMenu>
  2788. <productMenu id="meshIntercom"
  2789. type="30" >
  2790. </productMenu>
  2791. <productMenu id="meshIntercom+"
  2792. type="3"
  2793. url="2" >
  2794. </productMenu>
  2795. <productMenu id="waveIntercom"
  2796. type="1" >
  2797. </productMenu>
  2798. <productMenu id="fmradio"
  2799. type="0" >
  2800. </productMenu>
  2801. <productMenu id="phone"
  2802. type="1" >
  2803. </productMenu>
  2804. <productMenu id="music"
  2805. type="1" >
  2806. </productMenu>
  2807. <productMenu id="musicSharing"
  2808. type="0" >
  2809. </productMenu>
  2810. <productMenu id="deviceSetting"
  2811. type="1"
  2812. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  2813. <productMenuURL version="1.2.4"
  2814. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2815. />
  2816. </productMenu>
  2817. <productMenu id="quickGuide"
  2818. type="0"
  2819. url=""
  2820. size="1.12MB" >
  2821. </productMenu>
  2822. <productMenu id="userGuide"
  2823. type="1"
  2824. url=""
  2825. size="2.0MB" >
  2826. </productMenu>
  2827. <productMenu id="videoGuide"
  2828. type="0"
  2829. url=""
  2830. size="3.41MB" >
  2831. </productMenu>
  2832. <productMenu id="volume"
  2833. type="16" >
  2834. </productMenu>
  2835. <productMenu id="volume+"
  2836. type="2"
  2837. url="0x6004" >
  2838. </productMenu>
  2839. <productMenu id="battery"
  2840. type="1" >
  2841. </productMenu>
  2842. <productID id="6A13"
  2843. />
  2844. <productGroupable type="0"
  2845. />
  2846. </product>
  2847. <product id="PHANTOMCamera"
  2848. name="PHANTOM Camera"
  2849. series="Helmet"
  2850. latestVersion="1.0.1"
  2851. latestVersionVoicePrompt="0.4"
  2852. show = "-1" >
  2853. <productMenu id="protocol"
  2854. type="2" >
  2855. </productMenu>
  2856. <productMenu id="ota"
  2857. type="3" >
  2858. <otaLanguages>
  2859. <otaLanguage
  2860. id="0"
  2861. name="English"
  2862. package="0"
  2863. />
  2864. <otaLanguage
  2865. id="0"
  2866. name="French"
  2867. package="1"
  2868. />
  2869. <otaLanguage
  2870. id="0"
  2871. name="Spanish"
  2872. package="2"
  2873. />
  2874. <otaLanguage
  2875. id="0"
  2876. name="Italian"
  2877. package="3"
  2878. />
  2879. <otaLanguage
  2880. id="0"
  2881. name="German"
  2882. package="4"
  2883. />
  2884. <otaLanguage
  2885. id="0"
  2886. name="Dutch"
  2887. package="5"
  2888. />
  2889. <otaLanguage
  2890. id="0"
  2891. name="Russian"
  2892. package="6"
  2893. />
  2894. <otaLanguage
  2895. id="0"
  2896. name="Chinese"
  2897. package="7"
  2898. />
  2899. <otaLanguage
  2900. id="0"
  2901. name="Korean"
  2902. package="8"
  2903. />
  2904. <otaLanguage
  2905. id="0"
  2906. name="Japanese"
  2907. package="9"
  2908. />
  2909. <otaLanguage
  2910. id="0"
  2911. name="Finnish"
  2912. package="10"
  2913. />
  2914. <otaLanguage
  2915. id="0"
  2916. name="Polish"
  2917. package="11"
  2918. />
  2919. </otaLanguages>
  2920. <otaPackages>
  2921. <package
  2922. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2923. size="5183988"
  2924. />
  2925. <package
  2926. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  2927. size="5183988"
  2928. />
  2929. <package
  2930. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  2931. size="5183988"
  2932. />
  2933. <package
  2934. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  2935. size="5183988"
  2936. />
  2937. <package
  2938. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  2939. size="5183988"
  2940. />
  2941. <package
  2942. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  2943. size="5183988"
  2944. />
  2945. <package
  2946. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  2947. size="5183988"
  2948. />
  2949. <package
  2950. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  2951. size="5183988"
  2952. />
  2953. <package
  2954. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  2955. size="5183988"
  2956. />
  2957. <package
  2958. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  2959. size="5183988"
  2960. />
  2961. <package
  2962. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  2963. size="5183988"
  2964. />
  2965. <package
  2966. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  2967. size="5183988"
  2968. />
  2969. </otaPackages>
  2970. </productMenu>
  2971. <productMenu id="wa"
  2972. type="0" >
  2973. </productMenu>
  2974. <productMenu id="led"
  2975. type="5" >
  2976. </productMenu>
  2977. <productMenu id="led+"
  2978. type="2"
  2979. url="1" >
  2980. </productMenu>
  2981. <productMenu id="meshIntercom"
  2982. type="30" >
  2983. </productMenu>
  2984. <productMenu id="meshIntercom+"
  2985. type="3"
  2986. url="2" >
  2987. </productMenu>
  2988. <productMenu id="waveIntercom"
  2989. type="1" >
  2990. </productMenu>
  2991. <productMenu id="fmradio"
  2992. type="0" >
  2993. </productMenu>
  2994. <productMenu id="phone"
  2995. type="1" >
  2996. </productMenu>
  2997. <productMenu id="music"
  2998. type="1" >
  2999. </productMenu>
  3000. <productMenu id="musicSharing"
  3001. type="0" >
  3002. </productMenu>
  3003. <productMenu id="deviceSetting"
  3004. type="1"
  3005. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3006. </productMenu>
  3007. <productMenu id="quickGuide"
  3008. type="0"
  3009. url=""
  3010. size="1.12MB" >
  3011. </productMenu>
  3012. <productMenu id="userGuide"
  3013. type="1"
  3014. url=""
  3015. size="2.0MB" >
  3016. </productMenu>
  3017. <productMenu id="videoGuide"
  3018. type="0"
  3019. url=""
  3020. size="3.41MB" >
  3021. </productMenu>
  3022. <productMenu id="volume"
  3023. type="16" >
  3024. </productMenu>
  3025. <productMenu id="battery"
  3026. type="1" >
  3027. </productMenu>
  3028. <productID id="6A10"
  3029. />
  3030. <productGroupable type="0"
  3031. />
  3032. </product>
  3033. <product id="PHANTOMCamera"
  3034. name="PHANTOM Camera"
  3035. series="Helmet"
  3036. latestVersion="1.0.1"
  3037. latestVersionVoicePrompt="0.4"
  3038. show = "-1" >
  3039. <productMenu id="protocol"
  3040. type="2" >
  3041. </productMenu>
  3042. <productMenu id="ota"
  3043. type="3" >
  3044. <otaLanguages>
  3045. <otaLanguage
  3046. id="0"
  3047. name="English"
  3048. package="0"
  3049. />
  3050. <otaLanguage
  3051. id="0"
  3052. name="French"
  3053. package="1"
  3054. />
  3055. <otaLanguage
  3056. id="0"
  3057. name="Spanish"
  3058. package="2"
  3059. />
  3060. <otaLanguage
  3061. id="0"
  3062. name="Italian"
  3063. package="3"
  3064. />
  3065. <otaLanguage
  3066. id="0"
  3067. name="German"
  3068. package="4"
  3069. />
  3070. <otaLanguage
  3071. id="0"
  3072. name="Dutch"
  3073. package="5"
  3074. />
  3075. <otaLanguage
  3076. id="0"
  3077. name="Russian"
  3078. package="6"
  3079. />
  3080. <otaLanguage
  3081. id="0"
  3082. name="Chinese"
  3083. package="7"
  3084. />
  3085. <otaLanguage
  3086. id="0"
  3087. name="Korean"
  3088. package="8"
  3089. />
  3090. <otaLanguage
  3091. id="0"
  3092. name="Japanese"
  3093. package="9"
  3094. />
  3095. <otaLanguage
  3096. id="0"
  3097. name="Finnish"
  3098. package="10"
  3099. />
  3100. <otaLanguage
  3101. id="0"
  3102. name="Polish"
  3103. package="11"
  3104. />
  3105. </otaLanguages>
  3106. <otaPackages>
  3107. <package
  3108. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  3109. size="5183988"
  3110. />
  3111. <package
  3112. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  3113. size="5183988"
  3114. />
  3115. <package
  3116. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  3117. size="5183988"
  3118. />
  3119. <package
  3120. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  3121. size="5183988"
  3122. />
  3123. <package
  3124. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  3125. size="5183988"
  3126. />
  3127. <package
  3128. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  3129. size="5183988"
  3130. />
  3131. <package
  3132. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  3133. size="5183988"
  3134. />
  3135. <package
  3136. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  3137. size="5183988"
  3138. />
  3139. <package
  3140. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  3141. size="5183988"
  3142. />
  3143. <package
  3144. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  3145. size="5183988"
  3146. />
  3147. <package
  3148. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  3149. size="5183988"
  3150. />
  3151. <package
  3152. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  3153. size="5183988"
  3154. />
  3155. </otaPackages>
  3156. </productMenu>
  3157. <productMenu id="wa"
  3158. type="0" >
  3159. </productMenu>
  3160. <productMenu id="led"
  3161. type="5" >
  3162. </productMenu>
  3163. <productMenu id="led+"
  3164. type="2"
  3165. url="1" >
  3166. </productMenu>
  3167. <productMenu id="meshIntercom"
  3168. type="30" >
  3169. </productMenu>
  3170. <productMenu id="meshIntercom+"
  3171. type="3"
  3172. url="2" >
  3173. </productMenu>
  3174. <productMenu id="waveIntercom"
  3175. type="1" >
  3176. </productMenu>
  3177. <productMenu id="fmradio"
  3178. type="0" >
  3179. </productMenu>
  3180. <productMenu id="phone"
  3181. type="1" >
  3182. </productMenu>
  3183. <productMenu id="music"
  3184. type="1" >
  3185. </productMenu>
  3186. <productMenu id="musicSharing"
  3187. type="0" >
  3188. </productMenu>
  3189. <productMenu id="deviceSetting"
  3190. type="1"
  3191. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3192. </productMenu>
  3193. <productMenu id="quickGuide"
  3194. type="0"
  3195. url=""
  3196. size="1.12MB" >
  3197. </productMenu>
  3198. <productMenu id="userGuide"
  3199. type="1"
  3200. url=""
  3201. size="2.0MB" >
  3202. </productMenu>
  3203. <productMenu id="videoGuide"
  3204. type="0"
  3205. url=""
  3206. size="3.41MB" >
  3207. </productMenu>
  3208. <productMenu id="volume"
  3209. type="16" >
  3210. </productMenu>
  3211. <productMenu id="battery"
  3212. type="1" >
  3213. </productMenu>
  3214. <productID id="6A09"
  3215. />
  3216. <productGroupable type="0"
  3217. />
  3218. </product>
  3219. <product id="PHANTOM"
  3220. name="PHANTOM ANC"
  3221. series="Helmet"
  3222. latestVersion="1.2.7"
  3223. latestVersionVoicePrompt="1.5"
  3224. show = "1" >
  3225. <productMenu id="protocol"
  3226. type="2" >
  3227. </productMenu>
  3228. <productMenu id="ota"
  3229. type="2" >
  3230. <productMenuType version="0.6.9"
  3231. type="0"
  3232. />
  3233. <otaLanguages>
  3234. <otaLanguage
  3235. id="0"
  3236. name="English"
  3237. package="0"
  3238. />
  3239. <otaLanguage
  3240. id="0"
  3241. name="French"
  3242. package="1"
  3243. />
  3244. <otaLanguage
  3245. id="0"
  3246. name="Spanish"
  3247. package="2"
  3248. />
  3249. <otaLanguage
  3250. id="0"
  3251. name="Italian"
  3252. package="3"
  3253. />
  3254. <otaLanguage
  3255. id="0"
  3256. name="German"
  3257. package="4"
  3258. />
  3259. <otaLanguage
  3260. id="0"
  3261. name="Dutch"
  3262. package="5"
  3263. />
  3264. <otaLanguage
  3265. id="0"
  3266. name="Russian"
  3267. package="6"
  3268. />
  3269. <otaLanguage
  3270. id="0"
  3271. name="Chinese"
  3272. package="7"
  3273. />
  3274. <otaLanguage
  3275. id="0"
  3276. name="Korean"
  3277. package="8"
  3278. />
  3279. <otaLanguage
  3280. id="0"
  3281. name="Japanese"
  3282. package="9"
  3283. />
  3284. <otaLanguage
  3285. id="0"
  3286. name="Finnish"
  3287. package="10"
  3288. />
  3289. <otaLanguage
  3290. id="0"
  3291. name="Polish"
  3292. package="11"
  3293. />
  3294. </otaLanguages>
  3295. <otaPackages>
  3296. <package
  3297. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1.img"
  3298. size="5183988"
  3299. />
  3300. <package
  3301. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-fr-FR.img"
  3302. size="5183988"
  3303. />
  3304. <package
  3305. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-es-ES.img"
  3306. size="5183988"
  3307. />
  3308. <package
  3309. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-it-IT.img"
  3310. size="5183988"
  3311. />
  3312. <package
  3313. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-de-DE.img"
  3314. size="5183988"
  3315. />
  3316. <package
  3317. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-nl-NL.img"
  3318. size="5183988"
  3319. />
  3320. <package
  3321. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ru-RU.img"
  3322. size="5183988"
  3323. />
  3324. <package
  3325. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-cmn-CN.img"
  3326. size="5183988"
  3327. />
  3328. <package
  3329. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ko-KR.img"
  3330. size="5183988"
  3331. />
  3332. <package
  3333. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ja-JP.img"
  3334. size="5183988"
  3335. />
  3336. <package
  3337. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-fi-FI.img"
  3338. size="5183988"
  3339. />
  3340. <package
  3341. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-pl-PL.img"
  3342. size="5183988"
  3343. />
  3344. </otaPackages>
  3345. </productMenu>
  3346. <productMenu id="wa"
  3347. type="0" >
  3348. </productMenu>
  3349. <productMenu id="led"
  3350. type="5" >
  3351. </productMenu>
  3352. <productMenu id="led+"
  3353. type="2"
  3354. url="1" >
  3355. </productMenu>
  3356. <productMenu id="meshIntercom"
  3357. type="30" >
  3358. </productMenu>
  3359. <productMenu id="meshIntercom+"
  3360. type="3"
  3361. url="2" >
  3362. <productMenuURL version="1.0.4"
  3363. url="10"
  3364. />
  3365. </productMenu>
  3366. <productMenu id="waveIntercom"
  3367. type="1" >
  3368. <productMenuType version="1.0.9"
  3369. type="0"
  3370. />
  3371. </productMenu>
  3372. <productMenu id="fmradio"
  3373. type="0" >
  3374. </productMenu>
  3375. <productMenu id="phone"
  3376. type="1" >
  3377. </productMenu>
  3378. <productMenu id="music"
  3379. type="1" >
  3380. </productMenu>
  3381. <productMenu id="musicSharing"
  3382. type="0" >
  3383. </productMenu>
  3384. <productMenu id="deviceSetting"
  3385. type="1"
  3386. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" ><!--NS_PHANTOM_11-->
  3387. <productMenuURL version="1.2.4"
  3388. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3389. />
  3390. <productMenuURL version="1.2.1"
  3391. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3392. />
  3393. <productMenuURL version="1.1.2"
  3394. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3395. />
  3396. <productMenuURL version="1.0.4"
  3397. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3398. />
  3399. </productMenu>
  3400. <productMenu id="quickGuide"
  3401. type="0"
  3402. url=""
  3403. size="1.12MB" >
  3404. </productMenu>
  3405. <productMenu id="userGuide"
  3406. type="1"
  3407. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3408. size="2.0MB" >
  3409. </productMenu>
  3410. <productMenu id="videoGuide"
  3411. type="0"
  3412. url=""
  3413. size="3.41MB" >
  3414. </productMenu>
  3415. <productMenu id="volume"
  3416. type="16" >
  3417. </productMenu>
  3418. <productMenu id="volume+"
  3419. type="2"
  3420. url="0x6004" >
  3421. </productMenu>
  3422. <productMenu id="soundMode"
  3423. type="1" >
  3424. <productMenuType version="0.9.11"
  3425. type="0"
  3426. />
  3427. </productMenu>
  3428. <productMenu id="battery"
  3429. type="1" >
  3430. </productMenu>
  3431. <productID id="6A01"
  3432. />
  3433. <productGroupable type="0"
  3434. />
  3435. </product>
  3436. <product id="PHANTOM"
  3437. name="PHANTOM ANC"
  3438. series="Helmet"
  3439. latestVersion="1.2.7"
  3440. latestVersionVoicePrompt="1.5"
  3441. show = "-1" >
  3442. <productMenu id="protocol"
  3443. type="2" >
  3444. </productMenu>
  3445. <productMenu id="ota"
  3446. type="2" >
  3447. <otaLanguages>
  3448. <otaLanguage
  3449. id="0"
  3450. name="English"
  3451. package="0"
  3452. />
  3453. <otaLanguage
  3454. id="0"
  3455. name="French"
  3456. package="1"
  3457. />
  3458. <otaLanguage
  3459. id="0"
  3460. name="Spanish"
  3461. package="2"
  3462. />
  3463. <otaLanguage
  3464. id="0"
  3465. name="Italian"
  3466. package="3"
  3467. />
  3468. <otaLanguage
  3469. id="0"
  3470. name="German"
  3471. package="4"
  3472. />
  3473. <otaLanguage
  3474. id="0"
  3475. name="Dutch"
  3476. package="5"
  3477. />
  3478. <otaLanguage
  3479. id="0"
  3480. name="Russian"
  3481. package="6"
  3482. />
  3483. <otaLanguage
  3484. id="0"
  3485. name="Chinese"
  3486. package="7"
  3487. />
  3488. <otaLanguage
  3489. id="0"
  3490. name="Korean"
  3491. package="8"
  3492. />
  3493. <otaLanguage
  3494. id="0"
  3495. name="Japanese"
  3496. package="9"
  3497. />
  3498. <otaLanguage
  3499. id="0"
  3500. name="Finnish"
  3501. package="10"
  3502. />
  3503. <otaLanguage
  3504. id="0"
  3505. name="Polish"
  3506. package="11"
  3507. />
  3508. </otaLanguages>
  3509. <otaPackages>
  3510. <package
  3511. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1.img"
  3512. size="5183988"
  3513. />
  3514. <package
  3515. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-fr-FR.img"
  3516. size="5183988"
  3517. />
  3518. <package
  3519. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-es-ES.img"
  3520. size="5183988"
  3521. />
  3522. <package
  3523. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-it-IT.img"
  3524. size="5183988"
  3525. />
  3526. <package
  3527. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-de-DE.img"
  3528. size="5183988"
  3529. />
  3530. <package
  3531. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-nl-NL.img"
  3532. size="5183988"
  3533. />
  3534. <package
  3535. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ru-RU.img"
  3536. size="5183988"
  3537. />
  3538. <package
  3539. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-cmn-CN.img"
  3540. size="5183988"
  3541. />
  3542. <package
  3543. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ko-KR.img"
  3544. size="5183988"
  3545. />
  3546. <package
  3547. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ja-JP.img"
  3548. size="5183988"
  3549. />
  3550. <package
  3551. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-fi-FI.img"
  3552. size="5183988"
  3553. />
  3554. <package
  3555. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-pl-PL.img"
  3556. size="5183988"
  3557. />
  3558. </otaPackages>
  3559. </productMenu>
  3560. <productMenu id="led"
  3561. type="5" >
  3562. </productMenu>
  3563. <productMenu id="led+"
  3564. type="2"
  3565. url="1" >
  3566. </productMenu>
  3567. <productMenu id="meshIntercom"
  3568. type="30" >
  3569. </productMenu>
  3570. <productMenu id="meshIntercom+"
  3571. type="3"
  3572. url="2" >
  3573. </productMenu>
  3574. <productMenu id="waveIntercom"
  3575. type="1" >
  3576. </productMenu>
  3577. <productMenu id="fmradio"
  3578. type="0" >
  3579. </productMenu>
  3580. <productMenu id="phone"
  3581. type="1" >
  3582. </productMenu>
  3583. <productMenu id="music"
  3584. type="1" >
  3585. </productMenu>
  3586. <productMenu id="musicSharing"
  3587. type="0" >
  3588. </productMenu>
  3589. <productMenu id="deviceSetting"
  3590. type="1"
  3591. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" ><!--NS_PHANTOM_11-->
  3592. <productMenuURL version="1.2.4"
  3593. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3594. />
  3595. </productMenu>
  3596. <productMenu id="quickGuide"
  3597. type="0"
  3598. url=""
  3599. size="1.12MB" >
  3600. </productMenu>
  3601. <productMenu id="userGuide"
  3602. type="1"
  3603. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3604. size="2.0MB" >
  3605. </productMenu>
  3606. <productMenu id="videoGuide"
  3607. type="0"
  3608. url=""
  3609. size="3.41MB" >
  3610. </productMenu>
  3611. <productMenu id="volume"
  3612. type="16" >
  3613. </productMenu>
  3614. <productMenu id="volume+"
  3615. type="2"
  3616. url="0x6004" >
  3617. </productMenu>
  3618. <productMenu id="soundMode"
  3619. type="1" >
  3620. </productMenu>
  3621. <productMenu id="battery"
  3622. type="1" >
  3623. </productMenu>
  3624. <productID id="6A19"
  3625. />
  3626. <productGroupable type="0"
  3627. />
  3628. </product>
  3629. <product id="PHANTOM"
  3630. name="PHANTOM"
  3631. series="Helmet"
  3632. latestVersion="1.2.7"
  3633. latestVersionVoicePrompt="1.5"
  3634. show = "-1" >
  3635. <productMenu id="protocol"
  3636. type="2" >
  3637. </productMenu>
  3638. <productMenu id="ota"
  3639. type="2" >
  3640. <otaLanguages>
  3641. <otaLanguage
  3642. id="0"
  3643. name="English"
  3644. package="0"
  3645. />
  3646. <otaLanguage
  3647. id="0"
  3648. name="French"
  3649. package="1"
  3650. />
  3651. <otaLanguage
  3652. id="0"
  3653. name="Spanish"
  3654. package="2"
  3655. />
  3656. <otaLanguage
  3657. id="0"
  3658. name="Italian"
  3659. package="3"
  3660. />
  3661. <otaLanguage
  3662. id="0"
  3663. name="German"
  3664. package="4"
  3665. />
  3666. <otaLanguage
  3667. id="0"
  3668. name="Dutch"
  3669. package="5"
  3670. />
  3671. <otaLanguage
  3672. id="0"
  3673. name="Russian"
  3674. package="6"
  3675. />
  3676. <otaLanguage
  3677. id="0"
  3678. name="Chinese"
  3679. package="7"
  3680. />
  3681. <otaLanguage
  3682. id="0"
  3683. name="Korean"
  3684. package="8"
  3685. />
  3686. <otaLanguage
  3687. id="0"
  3688. name="Japanese"
  3689. package="9"
  3690. />
  3691. <otaLanguage
  3692. id="0"
  3693. name="Finnish"
  3694. package="10"
  3695. />
  3696. <otaLanguage
  3697. id="0"
  3698. name="Polish"
  3699. package="11"
  3700. />
  3701. </otaLanguages>
  3702. <otaPackages>
  3703. <package
  3704. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1.img"
  3705. size="5183988"
  3706. />
  3707. <package
  3708. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-fr-FR.img"
  3709. size="5183988"
  3710. />
  3711. <package
  3712. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-es-ES.img"
  3713. size="5183988"
  3714. />
  3715. <package
  3716. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-it-IT.img"
  3717. size="5183988"
  3718. />
  3719. <package
  3720. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-de-DE.img"
  3721. size="5183988"
  3722. />
  3723. <package
  3724. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-nl-NL.img"
  3725. size="5183988"
  3726. />
  3727. <package
  3728. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ru-RU.img"
  3729. size="5183988"
  3730. />
  3731. <package
  3732. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-cmn-CN.img"
  3733. size="5183988"
  3734. />
  3735. <package
  3736. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ko-KR.img"
  3737. size="5183988"
  3738. />
  3739. <package
  3740. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ja-JP.img"
  3741. size="5183988"
  3742. />
  3743. <package
  3744. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-fi-FI.img"
  3745. size="5183988"
  3746. />
  3747. <package
  3748. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-pl-PL.img"
  3749. size="5183988"
  3750. />
  3751. </otaPackages>
  3752. </productMenu>
  3753. <productMenu id="wa"
  3754. type="0" >
  3755. </productMenu>
  3756. <productMenu id="led"
  3757. type="5" >
  3758. </productMenu>
  3759. <productMenu id="led+"
  3760. type="2"
  3761. url="1" >
  3762. </productMenu>
  3763. <productMenu id="meshIntercom"
  3764. type="30" >
  3765. </productMenu>
  3766. <productMenu id="meshIntercom+"
  3767. type="3"
  3768. url="2" >
  3769. </productMenu>
  3770. <productMenu id="waveIntercom"
  3771. type="1" >
  3772. </productMenu>
  3773. <productMenu id="fmradio"
  3774. type="0" >
  3775. </productMenu>
  3776. <productMenu id="phone"
  3777. type="1" >
  3778. </productMenu>
  3779. <productMenu id="music"
  3780. type="1" >
  3781. </productMenu>
  3782. <productMenu id="musicSharing"
  3783. type="0" >
  3784. </productMenu>
  3785. <productMenu id="deviceSetting"
  3786. type="1"
  3787. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" ><!--NS_PHANTOM_11-->
  3788. <productMenuURL version="1.2.4"
  3789. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3790. />
  3791. </productMenu>
  3792. <productMenu id="quickGuide"
  3793. type="0"
  3794. url=""
  3795. size="1.52MB" >
  3796. </productMenu>
  3797. <productMenu id="userGuide"
  3798. type="1"
  3799. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3800. size="2.01MB" >
  3801. </productMenu>
  3802. <productMenu id="videoGuide"
  3803. type="0"
  3804. url=""
  3805. size="3.46MB" >
  3806. </productMenu>
  3807. <productMenu id="connectGuide"
  3808. type="1"
  3809. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3810. size="1.1MB" >
  3811. </productMenu>
  3812. <productMenu id="volume"
  3813. type="16" >
  3814. </productMenu>
  3815. <productMenu id="volume+"
  3816. type="2"
  3817. url="0x6004" >
  3818. </productMenu>
  3819. <productMenu id="battery"
  3820. type="1" >
  3821. </productMenu>
  3822. <productID id="6A0E"
  3823. />
  3824. <productGroupable type="0"
  3825. />
  3826. </product>
  3827. <product id="PHANTOM"
  3828. name="PHANTOM"
  3829. series="Helmet"
  3830. latestVersion="1.2.7"
  3831. latestVersionVoicePrompt="1.5"
  3832. show = "1" >
  3833. <productMenu id="protocol"
  3834. type="2" >
  3835. </productMenu>
  3836. <productMenu id="ota"
  3837. type="2" >
  3838. <otaLanguages>
  3839. <otaLanguage
  3840. id="0"
  3841. name="English"
  3842. package="0"
  3843. />
  3844. <otaLanguage
  3845. id="0"
  3846. name="French"
  3847. package="1"
  3848. />
  3849. <otaLanguage
  3850. id="0"
  3851. name="Spanish"
  3852. package="2"
  3853. />
  3854. <otaLanguage
  3855. id="0"
  3856. name="Italian"
  3857. package="3"
  3858. />
  3859. <otaLanguage
  3860. id="0"
  3861. name="German"
  3862. package="4"
  3863. />
  3864. <otaLanguage
  3865. id="0"
  3866. name="Dutch"
  3867. package="5"
  3868. />
  3869. <otaLanguage
  3870. id="0"
  3871. name="Russian"
  3872. package="6"
  3873. />
  3874. <otaLanguage
  3875. id="0"
  3876. name="Chinese"
  3877. package="7"
  3878. />
  3879. <otaLanguage
  3880. id="0"
  3881. name="Korean"
  3882. package="8"
  3883. />
  3884. <otaLanguage
  3885. id="0"
  3886. name="Japanese"
  3887. package="9"
  3888. />
  3889. <otaLanguage
  3890. id="0"
  3891. name="Finnish"
  3892. package="10"
  3893. />
  3894. <otaLanguage
  3895. id="0"
  3896. name="Polish"
  3897. package="11"
  3898. />
  3899. </otaLanguages>
  3900. <otaPackages>
  3901. <package
  3902. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1.img"
  3903. size="5183988"
  3904. />
  3905. <package
  3906. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-fr-FR.img"
  3907. size="5183988"
  3908. />
  3909. <package
  3910. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-es-ES.img"
  3911. size="5183988"
  3912. />
  3913. <package
  3914. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-it-IT.img"
  3915. size="5183988"
  3916. />
  3917. <package
  3918. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-de-DE.img"
  3919. size="5183988"
  3920. />
  3921. <package
  3922. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-nl-NL.img"
  3923. size="5183988"
  3924. />
  3925. <package
  3926. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ru-RU.img"
  3927. size="5183988"
  3928. />
  3929. <package
  3930. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-cmn-CN.img"
  3931. size="5183988"
  3932. />
  3933. <package
  3934. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ko-KR.img"
  3935. size="5183988"
  3936. />
  3937. <package
  3938. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ja-JP.img"
  3939. size="5183988"
  3940. />
  3941. <package
  3942. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-fi-FI.img"
  3943. size="5183988"
  3944. />
  3945. <package
  3946. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-pl-PL.img"
  3947. size="5183988"
  3948. />
  3949. </otaPackages>
  3950. </productMenu>
  3951. <productMenu id="wa"
  3952. type="0" >
  3953. </productMenu>
  3954. <productMenu id="led"
  3955. type="5" >
  3956. <productMenuType version="1.0.1"
  3957. type="4"
  3958. />
  3959. </productMenu>
  3960. <productMenu id="led+"
  3961. type="2"
  3962. url="1" >
  3963. <productMenuType version="1.0.1"
  3964. type="-1"
  3965. />
  3966. </productMenu>
  3967. <productMenu id="meshIntercom"
  3968. type="30" >
  3969. </productMenu>
  3970. <productMenu id="meshIntercom+"
  3971. type="3"
  3972. url="2" >
  3973. <productMenuURL version="1.0.4"
  3974. url="10"
  3975. />
  3976. </productMenu>
  3977. <productMenu id="waveIntercom"
  3978. type="1" >
  3979. <productMenuType version="1.0.9"
  3980. type="0"
  3981. />
  3982. </productMenu>
  3983. <productMenu id="fmradio"
  3984. type="0" >
  3985. </productMenu>
  3986. <productMenu id="phone"
  3987. type="1" >
  3988. </productMenu>
  3989. <productMenu id="music"
  3990. type="1" >
  3991. </productMenu>
  3992. <productMenu id="musicSharing"
  3993. type="0" >
  3994. </productMenu>
  3995. <productMenu id="deviceSetting"
  3996. type="1"
  3997. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" ><!--NS_PHANTOM_11-->
  3998. <productMenuURL version="1.2.4"
  3999. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4000. />
  4001. <productMenuURL version="1.2.1"
  4002. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4003. />
  4004. <productMenuURL version="1.0.4"
  4005. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4006. />
  4007. <productMenuURL version="1.0.1"
  4008. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4009. />
  4010. </productMenu>
  4011. <productMenu id="quickGuide"
  4012. type="0"
  4013. url=""
  4014. size="1.12MB" >
  4015. </productMenu>
  4016. <productMenu id="userGuide"
  4017. type="1"
  4018. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4019. size="2.0MB" >
  4020. </productMenu>
  4021. <productMenu id="videoGuide"
  4022. type="0"
  4023. url=""
  4024. size="3.41MB" >
  4025. </productMenu>
  4026. <productMenu id="connectGuide"
  4027. type="1"
  4028. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4029. size="1.12MB" >
  4030. </productMenu>
  4031. <productMenu id="volume"
  4032. type="16" >
  4033. <productMenuType version="1.0"
  4034. type="13"
  4035. />
  4036. </productMenu>
  4037. <productMenu id="volume+"
  4038. type="2"
  4039. url="0x6004" >
  4040. </productMenu>
  4041. <productMenu id="battery"
  4042. type="1" >
  4043. </productMenu>
  4044. <productID id="6A04"
  4045. />
  4046. <productGroupable type="0"
  4047. />
  4048. </product>
  4049. <product id="PHANTOMEasyLink"
  4050. name="PHANTOM EasyLink"
  4051. series="Helmet"
  4052. latestVersion="0.1"
  4053. latestVersionVoicePrompt="1.2"
  4054. show = "-1" >
  4055. <productMenu id="protocol"
  4056. type="2" >
  4057. </productMenu>
  4058. <productMenu id="ota"
  4059. type="0" >
  4060. <otaLanguages>
  4061. <otaLanguage
  4062. id="0"
  4063. name="English"
  4064. package="0"
  4065. />
  4066. <otaLanguage
  4067. id="0"
  4068. name="French"
  4069. package="1"
  4070. />
  4071. <otaLanguage
  4072. id="0"
  4073. name="Spanish"
  4074. package="2"
  4075. />
  4076. <otaLanguage
  4077. id="0"
  4078. name="Italian"
  4079. package="3"
  4080. />
  4081. <otaLanguage
  4082. id="0"
  4083. name="German"
  4084. package="4"
  4085. />
  4086. <otaLanguage
  4087. id="0"
  4088. name="Dutch"
  4089. package="5"
  4090. />
  4091. <otaLanguage
  4092. id="0"
  4093. name="Russian"
  4094. package="6"
  4095. />
  4096. <otaLanguage
  4097. id="0"
  4098. name="Chinese"
  4099. package="7"
  4100. />
  4101. <otaLanguage
  4102. id="0"
  4103. name="Korean"
  4104. package="8"
  4105. />
  4106. <otaLanguage
  4107. id="0"
  4108. name="Japanese"
  4109. package="9"
  4110. />
  4111. <otaLanguage
  4112. id="0"
  4113. name="Finnish"
  4114. package="10"
  4115. />
  4116. <otaLanguage
  4117. id="0"
  4118. name="Polish"
  4119. package="11"
  4120. />
  4121. </otaLanguages>
  4122. <otaPackages>
  4123. <package
  4124. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4125. size="5183988"
  4126. />
  4127. <package
  4128. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4129. size="5183988"
  4130. />
  4131. <package
  4132. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4133. size="5183988"
  4134. />
  4135. <package
  4136. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4137. size="5183988"
  4138. />
  4139. <package
  4140. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4141. size="5183988"
  4142. />
  4143. <package
  4144. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4145. size="5183988"
  4146. />
  4147. <package
  4148. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4149. size="5183988"
  4150. />
  4151. <package
  4152. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4153. size="5183988"
  4154. />
  4155. <package
  4156. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4157. size="5183988"
  4158. />
  4159. <package
  4160. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4161. size="5183988"
  4162. />
  4163. <package
  4164. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4165. size="5183988"
  4166. />
  4167. <package
  4168. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4169. size="5183988"
  4170. />
  4171. </otaPackages>
  4172. </productMenu>
  4173. <productMenu id="meshIntercom"
  4174. type="30" >
  4175. </productMenu>
  4176. <productMenu id="meshIntercom+"
  4177. type="3"
  4178. url="2" >
  4179. </productMenu>
  4180. <productMenu id="waveIntercom"
  4181. type="1" >
  4182. </productMenu>
  4183. <productMenu id="fmradio"
  4184. type="0" >
  4185. </productMenu>
  4186. <productMenu id="phone"
  4187. type="1" >
  4188. </productMenu>
  4189. <productMenu id="music"
  4190. type="1" >
  4191. </productMenu>
  4192. <productMenu id="musicSharing"
  4193. type="0" >
  4194. </productMenu>
  4195. <productMenu id="deviceSetting"
  4196. type="1"
  4197. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4198. </productMenu>
  4199. <productMenu id="quickGuide"
  4200. type="0"
  4201. url=""
  4202. size="1.12MB" >
  4203. </productMenu>
  4204. <productMenu id="userGuide"
  4205. type="1"
  4206. url=""
  4207. size="2.0MB" >
  4208. </productMenu>
  4209. <productMenu id="videoGuide"
  4210. type="0"
  4211. url=""
  4212. size="3.41MB" >
  4213. </productMenu>
  4214. <productMenu id="connectGuide"
  4215. type="0"
  4216. url=""
  4217. size="1.12MB" >
  4218. </productMenu>
  4219. <productMenu id="volume"
  4220. type="16" >
  4221. </productMenu>
  4222. <productMenu id="battery"
  4223. type="1" >
  4224. </productMenu>
  4225. <productID id="6A18"
  4226. />
  4227. <productGroupable type="0"
  4228. />
  4229. </product>
  4230. <product id="SPIDERXSlim"
  4231. name="SPIDER X Slim"
  4232. series="SPIDER"
  4233. latestVersion="0.9"
  4234. latestVersionVoicePrompt="1.2"
  4235. show = "-1" >
  4236. <productMenu id="protocol"
  4237. type="2" >
  4238. </productMenu>
  4239. <productMenu id="ota"
  4240. type="2" >
  4241. <otaLanguages>
  4242. <otaLanguage
  4243. id="0"
  4244. name="English"
  4245. package="0"
  4246. />
  4247. <otaLanguage
  4248. id="0"
  4249. name="French"
  4250. package="1"
  4251. />
  4252. <otaLanguage
  4253. id="0"
  4254. name="Spanish"
  4255. package="2"
  4256. />
  4257. <otaLanguage
  4258. id="0"
  4259. name="Italian"
  4260. package="3"
  4261. />
  4262. <otaLanguage
  4263. id="0"
  4264. name="German"
  4265. package="4"
  4266. />
  4267. <otaLanguage
  4268. id="0"
  4269. name="Dutch"
  4270. package="5"
  4271. />
  4272. <otaLanguage
  4273. id="0"
  4274. name="Russian"
  4275. package="6"
  4276. />
  4277. <otaLanguage
  4278. id="0"
  4279. name="Chinese"
  4280. package="7"
  4281. />
  4282. <otaLanguage
  4283. id="0"
  4284. name="Korean"
  4285. package="8"
  4286. />
  4287. <otaLanguage
  4288. id="0"
  4289. name="Japanese"
  4290. package="9"
  4291. />
  4292. <otaLanguage
  4293. id="0"
  4294. name="Finnish"
  4295. package="10"
  4296. />
  4297. <otaLanguage
  4298. id="0"
  4299. name="Polish"
  4300. package="11"
  4301. />
  4302. </otaLanguages>
  4303. <otaPackages>
  4304. <package
  4305. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0.img"
  4306. size="5183988"
  4307. />
  4308. <package
  4309. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-fr-FR.img"
  4310. size="5183988"
  4311. />
  4312. <package
  4313. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-es-ES.img"
  4314. size="5183988"
  4315. />
  4316. <package
  4317. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-it-IT.img"
  4318. size="5183988"
  4319. />
  4320. <package
  4321. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-de-DE.img"
  4322. size="5183988"
  4323. />
  4324. <package
  4325. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-nl-NL.img"
  4326. size="5183988"
  4327. />
  4328. <package
  4329. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ru-RU.img"
  4330. size="5183988"
  4331. />
  4332. <package
  4333. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-cmn-CN.img"
  4334. size="5183988"
  4335. />
  4336. <package
  4337. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ko-KR.img"
  4338. size="5183988"
  4339. />
  4340. <package
  4341. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ja-JP.img"
  4342. size="5183988"
  4343. />
  4344. <package
  4345. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-fi-FI.img"
  4346. size="5183988"
  4347. />
  4348. <package
  4349. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-pl-PL.img"
  4350. size="5183988"
  4351. />
  4352. </otaPackages>
  4353. </productMenu>
  4354. <productMenu id="meshIntercom"
  4355. type="30" >
  4356. </productMenu>
  4357. <productMenu id="meshIntercom+"
  4358. type="3"
  4359. url="2" >
  4360. </productMenu>
  4361. <productMenu id="waveIntercom"
  4362. type="1" >
  4363. </productMenu>
  4364. <productMenu id="fmradio"
  4365. type="1"
  4366. url="1" >
  4367. </productMenu>
  4368. <productMenu id="phone"
  4369. type="1" >
  4370. </productMenu>
  4371. <productMenu id="music"
  4372. type="1" >
  4373. </productMenu>
  4374. <productMenu id="musicSharing"
  4375. type="0" >
  4376. </productMenu>
  4377. <productMenu id="deviceSetting"
  4378. type="1"
  4379. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim.xml" >
  4380. </productMenu>
  4381. <productMenu id="quickGuide"
  4382. type="0"
  4383. url=""
  4384. size="1.12MB" >
  4385. </productMenu>
  4386. <productMenu id="userGuide"
  4387. type="1"
  4388. url=""
  4389. size="2.0MB" >
  4390. </productMenu>
  4391. <productMenu id="videoGuide"
  4392. type="0"
  4393. url=""
  4394. size="3.41MB" >
  4395. </productMenu>
  4396. <productMenu id="volume"
  4397. type="16" >
  4398. </productMenu>
  4399. <productMenu id="volume+"
  4400. type="2"
  4401. url="0x6004" >
  4402. </productMenu>
  4403. <productMenu id="battery"
  4404. type="1" >
  4405. </productMenu>
  4406. <productID id="6A07"
  4407. />
  4408. <productGroupable type="0"
  4409. />
  4410. </product>
  4411. <product id="XFITM"
  4412. name="X-FIT M"
  4413. series="SPIDER"
  4414. latestVersion="0.1.11"
  4415. latestVersionVoicePrompt="1.1"
  4416. show = "-1" >
  4417. <productMenu id="protocol"
  4418. type="2" >
  4419. </productMenu>
  4420. <productMenu id="ota"
  4421. type="0" >
  4422. <otaLanguages>
  4423. <otaLanguage
  4424. id="0"
  4425. name="English"
  4426. package="0"
  4427. />
  4428. <otaLanguage
  4429. id="0"
  4430. name="French"
  4431. package="1"
  4432. />
  4433. <otaLanguage
  4434. id="0"
  4435. name="Spanish"
  4436. package="2"
  4437. />
  4438. <otaLanguage
  4439. id="0"
  4440. name="Italian"
  4441. package="3"
  4442. />
  4443. <otaLanguage
  4444. id="0"
  4445. name="German"
  4446. package="4"
  4447. />
  4448. <otaLanguage
  4449. id="0"
  4450. name="Dutch"
  4451. package="5"
  4452. />
  4453. <otaLanguage
  4454. id="0"
  4455. name="Russian"
  4456. package="6"
  4457. />
  4458. <otaLanguage
  4459. id="0"
  4460. name="Chinese"
  4461. package="7"
  4462. />
  4463. <otaLanguage
  4464. id="0"
  4465. name="Korean"
  4466. package="8"
  4467. />
  4468. <otaLanguage
  4469. id="0"
  4470. name="Japanese"
  4471. package="9"
  4472. />
  4473. <otaLanguage
  4474. id="0"
  4475. name="Finnish"
  4476. package="10"
  4477. />
  4478. <otaLanguage
  4479. id="0"
  4480. name="Polish"
  4481. package="11"
  4482. />
  4483. </otaLanguages>
  4484. <otaPackages>
  4485. <package
  4486. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4487. size="5183988"
  4488. />
  4489. <package
  4490. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4491. size="5183988"
  4492. />
  4493. <package
  4494. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4495. size="5183988"
  4496. />
  4497. <package
  4498. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4499. size="5183988"
  4500. />
  4501. <package
  4502. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4503. size="5183988"
  4504. />
  4505. <package
  4506. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4507. size="5183988"
  4508. />
  4509. <package
  4510. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4511. size="5183988"
  4512. />
  4513. <package
  4514. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4515. size="5183988"
  4516. />
  4517. <package
  4518. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4519. size="5183988"
  4520. />
  4521. <package
  4522. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4523. size="5183988"
  4524. />
  4525. <package
  4526. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4527. size="5183988"
  4528. />
  4529. <package
  4530. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4531. size="5183988"
  4532. />
  4533. </otaPackages>
  4534. </productMenu>
  4535. <productMenu id="meshIntercom"
  4536. type="30" >
  4537. </productMenu>
  4538. <productMenu id="meshIntercom+"
  4539. type="3"
  4540. url="2" >
  4541. </productMenu>
  4542. <productMenu id="waveIntercom"
  4543. type="1" >
  4544. </productMenu>
  4545. <productMenu id="fmradio"
  4546. type="1"
  4547. url="1" >
  4548. </productMenu>
  4549. <productMenu id="phone"
  4550. type="1" >
  4551. </productMenu>
  4552. <productMenu id="music"
  4553. type="1" >
  4554. </productMenu>
  4555. <productMenu id="musicSharing"
  4556. type="0" >
  4557. </productMenu>
  4558. <productMenu id="deviceSetting"
  4559. type="1"
  4560. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim.xml" >
  4561. </productMenu>
  4562. <productMenu id="quickGuide"
  4563. type="0"
  4564. url=""
  4565. size="1.12MB" >
  4566. </productMenu>
  4567. <productMenu id="userGuide"
  4568. type="1"
  4569. url=""
  4570. size="2.0MB" >
  4571. </productMenu>
  4572. <productMenu id="videoGuide"
  4573. type="0"
  4574. url=""
  4575. size="3.41MB" >
  4576. </productMenu>
  4577. <productMenu id="volume"
  4578. type="16" >
  4579. </productMenu>
  4580. <productMenu id="volume+"
  4581. type="2"
  4582. url="0x6004" >
  4583. </productMenu>
  4584. <productMenu id="battery"
  4585. type="1" >
  4586. </productMenu>
  4587. <productID id="6A17"
  4588. />
  4589. <productGroupable type="0"
  4590. />
  4591. </product>
  4592. <product id="VORTEXMESH"
  4593. name="VORTEX MESH"
  4594. series="Helmet"
  4595. latestVersion="0.1.11"
  4596. latestVersionVoicePrompt="1.1"
  4597. show = "-1" >
  4598. <productMenu id="protocol"
  4599. type="2" >
  4600. </productMenu>
  4601. <productMenu id="ota"
  4602. type="0" >
  4603. <otaLanguages>
  4604. <otaLanguage
  4605. id="0"
  4606. name="English"
  4607. package="0"
  4608. />
  4609. <otaLanguage
  4610. id="0"
  4611. name="French"
  4612. package="1"
  4613. />
  4614. <otaLanguage
  4615. id="0"
  4616. name="Spanish"
  4617. package="2"
  4618. />
  4619. <otaLanguage
  4620. id="0"
  4621. name="Italian"
  4622. package="3"
  4623. />
  4624. <otaLanguage
  4625. id="0"
  4626. name="German"
  4627. package="4"
  4628. />
  4629. <otaLanguage
  4630. id="0"
  4631. name="Dutch"
  4632. package="5"
  4633. />
  4634. <otaLanguage
  4635. id="0"
  4636. name="Russian"
  4637. package="6"
  4638. />
  4639. <otaLanguage
  4640. id="0"
  4641. name="Chinese"
  4642. package="7"
  4643. />
  4644. <otaLanguage
  4645. id="0"
  4646. name="Korean"
  4647. package="8"
  4648. />
  4649. <otaLanguage
  4650. id="0"
  4651. name="Japanese"
  4652. package="9"
  4653. />
  4654. <otaLanguage
  4655. id="0"
  4656. name="Finnish"
  4657. package="10"
  4658. />
  4659. <otaLanguage
  4660. id="0"
  4661. name="Polish"
  4662. package="11"
  4663. />
  4664. </otaLanguages>
  4665. <otaPackages>
  4666. <package
  4667. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4668. size="5183988"
  4669. />
  4670. <package
  4671. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4672. size="5183988"
  4673. />
  4674. <package
  4675. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4676. size="5183988"
  4677. />
  4678. <package
  4679. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4680. size="5183988"
  4681. />
  4682. <package
  4683. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4684. size="5183988"
  4685. />
  4686. <package
  4687. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4688. size="5183988"
  4689. />
  4690. <package
  4691. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4692. size="5183988"
  4693. />
  4694. <package
  4695. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4696. size="5183988"
  4697. />
  4698. <package
  4699. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4700. size="5183988"
  4701. />
  4702. <package
  4703. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4704. size="5183988"
  4705. />
  4706. <package
  4707. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4708. size="5183988"
  4709. />
  4710. <package
  4711. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4712. size="5183988"
  4713. />
  4714. </otaPackages>
  4715. </productMenu>
  4716. <productMenu id="wa"
  4717. type="0" >
  4718. </productMenu>
  4719. <productMenu id="led"
  4720. type="5" >
  4721. </productMenu>
  4722. <productMenu id="led+"
  4723. type="2"
  4724. url="1" >
  4725. </productMenu>
  4726. <productMenu id="meshIntercom"
  4727. type="30" >
  4728. </productMenu>
  4729. <productMenu id="meshIntercom+"
  4730. type="3"
  4731. url="2" >
  4732. </productMenu>
  4733. <productMenu id="waveIntercom"
  4734. type="1" >
  4735. </productMenu>
  4736. <productMenu id="fmradio"
  4737. type="0" >
  4738. </productMenu>
  4739. <productMenu id="phone"
  4740. type="1" >
  4741. </productMenu>
  4742. <productMenu id="music"
  4743. type="1" >
  4744. </productMenu>
  4745. <productMenu id="musicSharing"
  4746. type="0" >
  4747. </productMenu>
  4748. <productMenu id="deviceSetting"
  4749. type="1"
  4750. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4751. </productMenu>
  4752. <productMenu id="quickGuide"
  4753. type="0"
  4754. url=""
  4755. size="1.12MB" >
  4756. </productMenu>
  4757. <productMenu id="userGuide"
  4758. type="1"
  4759. url=""
  4760. size="2.0MB" >
  4761. </productMenu>
  4762. <productMenu id="videoGuide"
  4763. type="0"
  4764. url=""
  4765. size="3.41MB" >
  4766. </productMenu>
  4767. <productMenu id="volume"
  4768. type="16" >
  4769. </productMenu>
  4770. <productMenu id="battery"
  4771. type="1" >
  4772. </productMenu>
  4773. <productID id="6A12"
  4774. />
  4775. <productGroupable type="0"
  4776. />
  4777. </product>
  4778. <product id="MeshOn"
  4779. name="Mesh ON"
  4780. series="60"
  4781. latestVersion="1.0"
  4782. latestVersionVoicePrompt="0.7"
  4783. show = "-1" >
  4784. <productMenu id="protocol"
  4785. type="2" >
  4786. </productMenu>
  4787. <productMenu id="ota"
  4788. type="0" >
  4789. <otaPackages>
  4790. <package
  4791. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/MESH_ON-v1.0-build1.img"
  4792. size="2945812"
  4793. />
  4794. </otaPackages>
  4795. </productMenu>
  4796. <productMenu id="meshIntercom+"
  4797. type="3"
  4798. url="4" >
  4799. </productMenu>
  4800. <productMenu id="waveIntercom"
  4801. type="0" >
  4802. </productMenu>
  4803. <productMenu id="phone"
  4804. type="0" >
  4805. </productMenu>
  4806. <productMenu id="music"
  4807. type="0" >
  4808. </productMenu>
  4809. <productMenu id="musicSharing"
  4810. type="0" >
  4811. </productMenu>
  4812. <productMenu id="deviceSetting"
  4813. type="1"
  4814. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4815. </productMenu>
  4816. <productMenu id="userGuide"
  4817. type="1"
  4818. url=""
  4819. size="2.0MB" >
  4820. </productMenu>
  4821. <productMenu id="bluetoothHeadset"
  4822. type="1"
  4823. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4824. </productMenu>
  4825. <productMenu id="volume"
  4826. type="0" >
  4827. </productMenu>
  4828. <productMenu id="battery"
  4829. type="1" >
  4830. </productMenu>
  4831. <productID id="684E"
  4832. />
  4833. <productGroupable type="0"
  4834. />
  4835. </product>
  4836. <product id="Impulse"
  4837. name="Impulse"
  4838. series="Helmet"
  4839. latestVersion="1.4.1"
  4840. show = "1" >
  4841. <productMenu id="protocol"
  4842. type="2" >
  4843. </productMenu>
  4844. <productMenu id="alexa"
  4845. type="0" >
  4846. </productMenu>
  4847. <productMenu id="ota"
  4848. type="0" >
  4849. </productMenu>
  4850. <productMenu id="wa"
  4851. type="24" >
  4852. </productMenu>
  4853. <productMenu id="manager"
  4854. type="0" >
  4855. </productMenu>
  4856. <productMenu id="sip"
  4857. type="1" >
  4858. </productMenu>
  4859. <productMenu id="led"
  4860. type="1" >
  4861. <productMenuType version="1.0.1"
  4862. type="2"
  4863. />
  4864. <productMenuType version="1.0"
  4865. type="1"
  4866. />
  4867. </productMenu>
  4868. <productMenu id="meshIntercom"
  4869. type="30" >
  4870. <productMenuType version="1.1.1"
  4871. type="20"
  4872. />
  4873. </productMenu>
  4874. <productMenu id="meshIntercom+"
  4875. type="3"
  4876. url="2" >
  4877. <productMenuType version="1.3.9"
  4878. type="2"
  4879. />
  4880. <productMenuURL version="1.1.1"
  4881. url="0"
  4882. />
  4883. </productMenu>
  4884. <productMenu id="waveIntercom"
  4885. type="1" >
  4886. <productMenuType version="1.3.9"
  4887. type="0"
  4888. />
  4889. </productMenu>
  4890. <productMenu id="bluetoothIntercom"
  4891. type="1" >
  4892. </productMenu>
  4893. <productMenu id="phone"
  4894. type="1" >
  4895. </productMenu>
  4896. <productMenu id="music"
  4897. type="1" >
  4898. </productMenu>
  4899. <productMenu id="fmradio"
  4900. type="1" >
  4901. </productMenu>
  4902. <productMenu id="deviceSetting"
  4903. type="1"
  4904. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4905. <productMenuURL version="1.3.9"
  4906. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4907. />
  4908. <productMenuURL version="1.1.1"
  4909. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4910. />
  4911. <productMenuURL version="1.0.4"
  4912. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4913. />
  4914. </productMenu>
  4915. <productMenu id="quickGuide"
  4916. type="0"
  4917. url=""
  4918. size="344KB" >
  4919. </productMenu>
  4920. <productMenu id="userGuide"
  4921. type="1"
  4922. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  4923. size="3.41MB" >
  4924. </productMenu>
  4925. <productMenu id="connectGuide"
  4926. type="1"
  4927. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4928. size="1.12MB" >
  4929. </productMenu>
  4930. <productMenu id="volume"
  4931. type="11" >
  4932. </productMenu>
  4933. <productMenu id="battery"
  4934. type="1" >
  4935. </productMenu>
  4936. <productID id="3148"
  4937. />
  4938. <productGroupable type="0"
  4939. />
  4940. </product>
  4941. <product id="Impulse"
  4942. name="Impulse"
  4943. series="Helmet"
  4944. latestVersion="2.0"
  4945. show = "-1" >
  4946. <productMenu id="protocol"
  4947. type="2" >
  4948. </productMenu>
  4949. <productMenu id="alexa"
  4950. type="0" >
  4951. </productMenu>
  4952. <productMenu id="ota"
  4953. type="0" >
  4954. </productMenu>
  4955. <productMenu id="wa"
  4956. type="8" >
  4957. </productMenu>
  4958. <productMenu id="manager"
  4959. type="0" >
  4960. </productMenu>
  4961. <productMenu id="sip"
  4962. type="1" >
  4963. </productMenu>
  4964. <productMenu id="led"
  4965. type="3" >
  4966. </productMenu>
  4967. <productMenu id="meshIntercom"
  4968. type="20" >
  4969. </productMenu>
  4970. <productMenu id="bluetoothIntercom"
  4971. type="1" >
  4972. </productMenu>
  4973. <productMenu id="phone"
  4974. type="1" >
  4975. </productMenu>
  4976. <productMenu id="music"
  4977. type="1" >
  4978. </productMenu>
  4979. <productMenu id="fmradio"
  4980. type="1" >
  4981. </productMenu>
  4982. <productMenu id="deviceSetting"
  4983. type="1"
  4984. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  4985. </productMenu>
  4986. <productMenu id="quickGuide"
  4987. type="1"
  4988. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  4989. size="344KB" >
  4990. </productMenu>
  4991. <productMenu id="userGuide"
  4992. type="1"
  4993. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  4994. size="3.41MB" >
  4995. </productMenu>
  4996. <productMenu id="volume"
  4997. type="11" >
  4998. </productMenu>
  4999. <productMenu id="battery"
  5000. type="1" >
  5001. </productMenu>
  5002. <productID id="3221"
  5003. />
  5004. <productGroupable type="0"
  5005. />
  5006. </product>
  5007. <product id="Stryker"
  5008. name="Stryker"
  5009. series="Helmet"
  5010. latestVersion="1.4.1"
  5011. show = "1" >
  5012. <productMenu id="protocol"
  5013. type="2" >
  5014. </productMenu>
  5015. <productMenu id="alexa"
  5016. type="0" >
  5017. </productMenu>
  5018. <productMenu id="ota"
  5019. type="0" >
  5020. </productMenu>
  5021. <productMenu id="wa"
  5022. type="40" >
  5023. </productMenu>
  5024. <productMenu id="manager"
  5025. type="0" >
  5026. </productMenu>
  5027. <productMenu id="sip"
  5028. type="1" >
  5029. </productMenu>
  5030. <productMenu id="led"
  5031. type="1" >
  5032. <productMenuType version="1.0.1"
  5033. type="2"
  5034. />
  5035. <productMenuType version="1.0"
  5036. type="1"
  5037. />
  5038. </productMenu>
  5039. <productMenu id="meshIntercom"
  5040. type="30" >
  5041. <productMenuType version="1.1.1"
  5042. type="20"
  5043. />
  5044. </productMenu>
  5045. <productMenu id="meshIntercom+"
  5046. type="3"
  5047. url="2" >
  5048. <productMenuType version="1.3.9"
  5049. type="2"
  5050. />
  5051. <productMenuURL version="1.1.1"
  5052. url="0"
  5053. />
  5054. </productMenu>
  5055. <productMenu id="waveIntercom"
  5056. type="1" >
  5057. <productMenuType version="1.2.9"
  5058. type="0"
  5059. />
  5060. </productMenu>
  5061. <productMenu id="bluetoothIntercom"
  5062. type="1" >
  5063. </productMenu>
  5064. <productMenu id="phone"
  5065. type="1" >
  5066. </productMenu>
  5067. <productMenu id="music"
  5068. type="1" >
  5069. </productMenu>
  5070. <productMenu id="fmradio"
  5071. type="1" >
  5072. </productMenu>
  5073. <productMenu id="deviceSetting"
  5074. type="1"
  5075. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5076. <productMenuURL version="1.3.9"
  5077. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5078. />
  5079. <productMenuURL version="1.1.1"
  5080. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5081. />
  5082. <productMenuURL version="1.0.4"
  5083. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5084. />
  5085. </productMenu>
  5086. <productMenu id="quickGuide"
  5087. type="0"
  5088. url=""
  5089. size="344KB" >
  5090. </productMenu>
  5091. <productMenu id="userGuide"
  5092. type="1"
  5093. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5094. size="3.41MB" >
  5095. </productMenu>
  5096. <productMenu id="connectGuide"
  5097. type="1"
  5098. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5099. size="1.12MB" >
  5100. </productMenu>
  5101. <productMenu id="volume"
  5102. type="11" >
  5103. </productMenu>
  5104. <productMenu id="battery"
  5105. type="1" >
  5106. </productMenu>
  5107. <productID id="3154"
  5108. />
  5109. <productGroupable type="0"
  5110. />
  5111. </product>
  5112. <product id="SRL3Plus"
  5113. name="SRL3 Plus"
  5114. series="60"
  5115. latestVersion="0.9.5"
  5116. latestVersionMesh="0.19"
  5117. latestVersionVoicePrompt="1.2"
  5118. show = "-1" >
  5119. <productMenu id="protocol"
  5120. type="2" >
  5121. </productMenu>
  5122. <productMenu id="ota"
  5123. type="2" >
  5124. <otaLanguages>
  5125. <otaLanguage
  5126. id="0"
  5127. name="English"
  5128. package="0"
  5129. />
  5130. <otaLanguage
  5131. id="0"
  5132. name="French"
  5133. package="1"
  5134. />
  5135. <otaLanguage
  5136. id="0"
  5137. name="Spanish"
  5138. package="2"
  5139. />
  5140. <otaLanguage
  5141. id="0"
  5142. name="Italian"
  5143. package="3"
  5144. />
  5145. <otaLanguage
  5146. id="0"
  5147. name="German"
  5148. package="4"
  5149. />
  5150. <otaLanguage
  5151. id="0"
  5152. name="Dutch"
  5153. package="5"
  5154. />
  5155. <otaLanguage
  5156. id="0"
  5157. name="Russian"
  5158. package="6"
  5159. />
  5160. <otaLanguage
  5161. id="0"
  5162. name="Chinese"
  5163. package="7"
  5164. />
  5165. <otaLanguage
  5166. id="0"
  5167. name="Korean"
  5168. package="8"
  5169. />
  5170. <otaLanguage
  5171. id="0"
  5172. name="Japanese"
  5173. package="9"
  5174. />
  5175. <otaLanguage
  5176. id="0"
  5177. name="Finnish"
  5178. package="10"
  5179. />
  5180. </otaLanguages>
  5181. <otaPackages>
  5182. <package
  5183. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0.img"
  5184. size="5183988"
  5185. />
  5186. <package
  5187. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fr-FR.img"
  5188. size="5183988"
  5189. />
  5190. <package
  5191. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-es-ES.img"
  5192. size="5183988"
  5193. />
  5194. <package
  5195. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-it-IT.img"
  5196. size="5183988"
  5197. />
  5198. <package
  5199. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-de-DE.img"
  5200. size="5183988"
  5201. />
  5202. <package
  5203. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-nl-NL.img"
  5204. size="5183988"
  5205. />
  5206. <package
  5207. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ru-RU.img"
  5208. size="5183988"
  5209. />
  5210. <package
  5211. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-cmn-CN.img"
  5212. size="5183988"
  5213. />
  5214. <package
  5215. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ko-KR.img"
  5216. size="5183988"
  5217. />
  5218. <package
  5219. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ja-JP.img"
  5220. size="5183988"
  5221. />
  5222. <package
  5223. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fi-FI.img"
  5224. size="5183988"
  5225. />
  5226. </otaPackages>
  5227. </productMenu>
  5228. <productMenu id="sip"
  5229. type="1" >
  5230. </productMenu>
  5231. <productMenu id="illusion"
  5232. type="1" >
  5233. </productMenu>
  5234. <productMenu id="meshIntercom+"
  5235. type="3"
  5236. url="2" >
  5237. </productMenu>
  5238. <productMenu id="waveIntercom"
  5239. type="1" >
  5240. </productMenu>
  5241. <productMenu id="bluetoothIntercom"
  5242. type="1"
  5243. url="2" >
  5244. </productMenu>
  5245. <productMenu id="bluetoothIntercomGrouping"
  5246. type="0" >
  5247. </productMenu>
  5248. <productMenu id="fmradio"
  5249. type="1"
  5250. url="1" >
  5251. </productMenu>
  5252. <productMenu id="phone"
  5253. type="1" >
  5254. </productMenu>
  5255. <productMenu id="music"
  5256. type="1" >
  5257. </productMenu>
  5258. <productMenu id="musicSharing"
  5259. type="0" >
  5260. </productMenu>
  5261. <productMenu id="deviceSetting"
  5262. type="1"
  5263. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  5264. </productMenu>
  5265. <productMenu id="quickGuide"
  5266. type="0"
  5267. url=""
  5268. size="1.12MB" >
  5269. </productMenu>
  5270. <productMenu id="userGuide"
  5271. type="0"
  5272. url=""
  5273. size="2.0MB" >
  5274. </productMenu>
  5275. <productMenu id="videoGuide"
  5276. type="0"
  5277. url=""
  5278. size="3.41MB" >
  5279. </productMenu>
  5280. <productMenu id="volume"
  5281. type="16" >
  5282. </productMenu>
  5283. <productMenu id="soundMode"
  5284. type="1" >
  5285. </productMenu>
  5286. <productMenu id="battery"
  5287. type="1" >
  5288. </productMenu>
  5289. <productID id="6A08"
  5290. />
  5291. <productGroupable type="0"
  5292. />
  5293. </product>
  5294. <product id="SRL3"
  5295. name="SRL3"
  5296. series="SRL"
  5297. latestVersion="1.5"
  5298. show = "1" >
  5299. <productMenu id="protocol"
  5300. type="2" >
  5301. </productMenu>
  5302. <productMenu id="alexa"
  5303. type="0" >
  5304. </productMenu>
  5305. <productMenu id="ota"
  5306. type="0" >
  5307. </productMenu>
  5308. <productMenu id="wa"
  5309. type="1" >
  5310. </productMenu>
  5311. <productMenu id="sip"
  5312. type="1" >
  5313. </productMenu>
  5314. <productMenu id="meshIntercom"
  5315. type="30" >
  5316. </productMenu>
  5317. <productMenu id="meshIntercom+"
  5318. type="3"
  5319. url="2" >
  5320. <productMenuType version="1.3.9"
  5321. type="2"
  5322. />
  5323. </productMenu>
  5324. <productMenu id="waveIntercom"
  5325. type="1" >
  5326. <productMenuType version="1.4.9"
  5327. type="0"
  5328. />
  5329. </productMenu>
  5330. <productMenu id="bluetoothIntercom"
  5331. type="1" >
  5332. </productMenu>
  5333. <productMenu id="phone"
  5334. type="1" >
  5335. </productMenu>
  5336. <productMenu id="music"
  5337. type="1" >
  5338. </productMenu>
  5339. <productMenu id="fmradio"
  5340. type="1" >
  5341. </productMenu>
  5342. <productMenu id="deviceSetting"
  5343. type="1"
  5344. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5345. <productMenuURL version="1.3"
  5346. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5347. />
  5348. </productMenu>
  5349. <productMenu id="quickGuide"
  5350. type="0"
  5351. url=""
  5352. size="344KB" >
  5353. </productMenu>
  5354. <productMenu id="userGuide"
  5355. type="1"
  5356. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5357. size="3.41MB" >
  5358. </productMenu>
  5359. <productMenu id="connectGuide"
  5360. type="1"
  5361. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5362. size="1.12MB" >
  5363. </productMenu>
  5364. <productMenu id="volume"
  5365. type="11" >
  5366. </productMenu>
  5367. <productMenu id="battery"
  5368. type="1" >
  5369. </productMenu>
  5370. <productID id="3219"
  5371. />
  5372. <productGroupable type="0"
  5373. />
  5374. </product>
  5375. <product id="SRL_Mesh"
  5376. name="SRL-Mesh"
  5377. series="SRL"
  5378. latestVersion="1.7"
  5379. show = "1" >
  5380. <productMenu id="protocol"
  5381. type="2" >
  5382. </productMenu>
  5383. <productMenu id="alexa"
  5384. type="0" >
  5385. </productMenu>
  5386. <productMenu id="ota"
  5387. type="0" >
  5388. </productMenu>
  5389. <productMenu id="wa"
  5390. type="1" >
  5391. </productMenu>
  5392. <productMenu id="sip"
  5393. type="1" >
  5394. </productMenu>
  5395. <productMenu id="meshIntercom"
  5396. type="30" >
  5397. <productMenuType version="1.1.1"
  5398. type="20"
  5399. />
  5400. </productMenu>
  5401. <productMenu id="meshIntercom+"
  5402. type="3"
  5403. url="2" >
  5404. <productMenuType version="1.5.9"
  5405. type="2"
  5406. />
  5407. <productMenuURL version="1.1.1"
  5408. url="0"
  5409. />
  5410. </productMenu>
  5411. <productMenu id="waveIntercom"
  5412. type="1" >
  5413. <productMenuType version="1.6.9"
  5414. type="0"
  5415. />
  5416. </productMenu>
  5417. <productMenu id="bluetoothIntercom"
  5418. type="1" >
  5419. </productMenu>
  5420. <productMenu id="phone"
  5421. type="1" >
  5422. </productMenu>
  5423. <productMenu id="music"
  5424. type="1" >
  5425. </productMenu>
  5426. <productMenu id="fmradio"
  5427. type="1" >
  5428. </productMenu>
  5429. <productMenu id="deviceSetting"
  5430. type="1"
  5431. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5432. <productMenuURL version="1.5"
  5433. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5434. />
  5435. <productMenuURL version="1.1.1"
  5436. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5437. />
  5438. <productMenuURL version="1.0.3"
  5439. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5440. />
  5441. </productMenu>
  5442. <productMenu id="quickGuide"
  5443. type="0"
  5444. url=""
  5445. size="344KB" >
  5446. </productMenu>
  5447. <productMenu id="userGuide"
  5448. type="1"
  5449. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5450. size="3.41MB" >
  5451. </productMenu>
  5452. <productMenu id="connectGuide"
  5453. type="1"
  5454. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5455. size="1.12MB" >
  5456. </productMenu>
  5457. <productMenu id="volume"
  5458. type="11" >
  5459. </productMenu>
  5460. <productMenu id="battery"
  5461. type="1" >
  5462. </productMenu>
  5463. <productID id="3216"
  5464. />
  5465. <productGroupable type="0"
  5466. />
  5467. </product>
  5468. <product id="SRL_EXT"
  5469. name="SRL-EXT"
  5470. series="SRL"
  5471. latestVersion="1.7"
  5472. show = "1" >
  5473. <productMenu id="protocol"
  5474. type="2" >
  5475. </productMenu>
  5476. <productMenu id="alexa"
  5477. type="0" >
  5478. </productMenu>
  5479. <productMenu id="ota"
  5480. type="0" >
  5481. </productMenu>
  5482. <productMenu id="wa"
  5483. type="0" >
  5484. </productMenu>
  5485. <productMenu id="sip"
  5486. type="1" >
  5487. </productMenu>
  5488. <productMenu id="meshIntercom"
  5489. type="30" >
  5490. <productMenuType version="1.1.1"
  5491. type="20"
  5492. />
  5493. </productMenu>
  5494. <productMenu id="meshIntercom+"
  5495. type="3"
  5496. url="2" >
  5497. <productMenuType version="1.5.9"
  5498. type="2"
  5499. />
  5500. <productMenuURL version="1.1.1"
  5501. url="0"
  5502. />
  5503. </productMenu>
  5504. <productMenu id="waveIntercom"
  5505. type="1" >
  5506. <productMenuType version="1.6.9"
  5507. type="0"
  5508. />
  5509. </productMenu>
  5510. <productMenu id="bluetoothIntercom"
  5511. type="1" >
  5512. </productMenu>
  5513. <productMenu id="phone"
  5514. type="1" >
  5515. </productMenu>
  5516. <productMenu id="music"
  5517. type="1" >
  5518. </productMenu>
  5519. <productMenu id="fmradio"
  5520. type="1" >
  5521. </productMenu>
  5522. <productMenu id="deviceSetting"
  5523. type="1"
  5524. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5525. <productMenuURL version="1.5"
  5526. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5527. />
  5528. <productMenuURL version="1.1.1"
  5529. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5530. />
  5531. <productMenuURL version="1.0.3"
  5532. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5533. />
  5534. </productMenu>
  5535. <productMenu id="quickGuide"
  5536. type="0"
  5537. url=""
  5538. size="344KB" >
  5539. </productMenu>
  5540. <productMenu id="userGuide"
  5541. type="1"
  5542. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5543. size="3.41MB" >
  5544. </productMenu>
  5545. <productMenu id="connectGuide"
  5546. type="1"
  5547. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5548. size="1.12MB" >
  5549. </productMenu>
  5550. <productMenu id="volume"
  5551. type="11" >
  5552. </productMenu>
  5553. <productMenu id="battery"
  5554. type="1" >
  5555. </productMenu>
  5556. <productID id="3212"
  5557. />
  5558. <productGroupable type="0"
  5559. />
  5560. </product>
  5561. <product id="SRL2"
  5562. name="SRL2"
  5563. series="SRL"
  5564. latestVersion="1.0.9"
  5565. show = "1" >
  5566. <productMenu id="protocol"
  5567. type="0">
  5568. </productMenu>
  5569. <productMenu id="sip"
  5570. type="1" >
  5571. </productMenu>
  5572. <productMenu id="bluetoothIntercom"
  5573. type="1" >
  5574. </productMenu>
  5575. <productMenu id="intercomSetting"
  5576. type="1" >
  5577. </productMenu>
  5578. <productMenu id="phone"
  5579. type="2" >
  5580. </productMenu>
  5581. <productMenu id="fmradio"
  5582. type="3" >
  5583. </productMenu>
  5584. <productMenu id="deviceSetting"
  5585. type="1"
  5586. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5587. </productMenu>
  5588. <productMenu id="quickGuide"
  5589. type="1"
  5590. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5591. size="846KB" >
  5592. </productMenu>
  5593. <productMenu id="userGuide"
  5594. type="1"
  5595. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5596. size="1.18MB" >
  5597. </productMenu>
  5598. <productMenu id="connectGuide"
  5599. type="1"
  5600. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5601. size="1.12MB" >
  5602. </productMenu>
  5603. <productID id="4530"
  5604. />
  5605. <productGroupable type="1"
  5606. />
  5607. </product>
  5608. <product id="Neotec2"
  5609. name="SRL Neotec2"
  5610. series="SRL"
  5611. latestVersion="1.1.5"
  5612. show = "1" >
  5613. <productMenu id="protocol"
  5614. type="0">
  5615. </productMenu>
  5616. <productMenu id="sip"
  5617. type="1" >
  5618. </productMenu>
  5619. <productMenu id="bluetoothIntercom"
  5620. type="1" >
  5621. </productMenu>
  5622. <productMenu id="intercomSetting"
  5623. type="1" >
  5624. </productMenu>
  5625. <productMenu id="phone"
  5626. type="2" >
  5627. </productMenu>
  5628. <productMenu id="fmradio"
  5629. type="3" >
  5630. </productMenu>
  5631. <productMenu id="deviceSetting"
  5632. type="1"
  5633. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5634. </productMenu>
  5635. <productMenu id="quickGuide"
  5636. type="0"
  5637. url=""
  5638. size="796KB" >
  5639. </productMenu>
  5640. <productMenu id="userGuide"
  5641. type="1"
  5642. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5643. size="1.90MB" >
  5644. </productMenu>
  5645. <productMenu id="connectGuide"
  5646. type="1"
  5647. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5648. size="1.12MB" >
  5649. </productMenu>
  5650. <productID id="4510"
  5651. />
  5652. <productGroupable type="1"
  5653. />
  5654. </product>
  5655. <product id="SPIDERST2ANC"
  5656. name="SPIDER ST2 ANC"
  5657. series="SPIDER"
  5658. latestVersion="0.5.1"
  5659. latestVersionVoicePrompt="0.2"
  5660. latestVersionMesh="0.8"
  5661. show = "-1" >
  5662. <productMenu id="protocol"
  5663. type="2" >
  5664. </productMenu>
  5665. <productMenu id="ota"
  5666. type="0" >
  5667. <otaPackages>
  5668. <package
  5669. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5670. size="2945812"
  5671. />
  5672. </otaPackages>
  5673. </productMenu>
  5674. <productMenu id="wa"
  5675. type="0" >
  5676. </productMenu>
  5677. <productMenu id="led"
  5678. type="1" >
  5679. </productMenu>
  5680. <productMenu id="meshIntercom"
  5681. type="30" >
  5682. </productMenu>
  5683. <productMenu id="fmradio"
  5684. type="1" >
  5685. </productMenu>
  5686. <productMenu id="phone"
  5687. type="1" >
  5688. </productMenu>
  5689. <productMenu id="music"
  5690. type="1" >
  5691. </productMenu>
  5692. <productMenu id="musicSharing"
  5693. type="0" >
  5694. </productMenu>
  5695. <productMenu id="deviceSetting"
  5696. type="1"
  5697. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  5698. </productMenu>
  5699. <productMenu id="quickGuide"
  5700. type="1"
  5701. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5702. size="1.12MB" >
  5703. </productMenu>
  5704. <productMenu id="userGuide"
  5705. type="1"
  5706. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5707. size="2.0MB" >
  5708. </productMenu>
  5709. <productMenu id="videoGuide"
  5710. type="1"
  5711. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5712. size="3.41MB" >
  5713. </productMenu>
  5714. <productMenu id="volume"
  5715. type="12" >
  5716. </productMenu>
  5717. <productMenu id="battery"
  5718. type="1" >
  5719. </productMenu>
  5720. <productID id="6A00"
  5721. />
  5722. <productGroupable type="0"
  5723. />
  5724. </product>
  5725. <product id="SPIDER_ST1"
  5726. name="SPIDER ST1"
  5727. series="SPIDER"
  5728. latestVersion="2.5.1"
  5729. latestVersionVoicePrompt="1.3"
  5730. show = "1" >
  5731. <productMenu id="protocol"
  5732. type="2" >
  5733. </productMenu>
  5734. <productMenu id="alexa"
  5735. type="0" >
  5736. </productMenu>
  5737. <productMenu id="ota"
  5738. type="2" >
  5739. <productMenuType version="2.1.9"
  5740. type="0"
  5741. />
  5742. <otaPackages>
  5743. <package
  5744. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_ST1-v2.5.1-build2.img"
  5745. size="2945812"
  5746. />
  5747. </otaPackages>
  5748. </productMenu>
  5749. <productMenu id="wa"
  5750. type="0" >
  5751. </productMenu>
  5752. <productMenu id="meshIntercom"
  5753. type="30" >
  5754. <productMenuType version="2.1.1"
  5755. type="20"
  5756. />
  5757. </productMenu>
  5758. <productMenu id="meshIntercom+"
  5759. type="3"
  5760. url="2" >
  5761. <productMenuType version="2.2.9"
  5762. type="2"
  5763. />
  5764. <productMenuURL version="2.1.1"
  5765. url="0"
  5766. />
  5767. </productMenu>
  5768. <productMenu id="waveIntercom"
  5769. type="1" >
  5770. <productMenuType version="2.3.9"
  5771. type="0"
  5772. />
  5773. </productMenu>
  5774. <productMenu id="phone"
  5775. type="1" >
  5776. </productMenu>
  5777. <productMenu id="music"
  5778. type="1" >
  5779. </productMenu>
  5780. <productMenu id="musicSharing"
  5781. type="0" >
  5782. </productMenu>
  5783. <productMenu id="deviceSetting"
  5784. type="1"
  5785. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5786. <productMenuURL version="2.4.9"
  5787. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5788. />
  5789. <productMenuURL version="2.2.2"
  5790. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5791. />
  5792. <productMenuURL version="2.1.1"
  5793. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5794. />
  5795. </productMenu>
  5796. <productMenu id="quickGuide"
  5797. type="0"
  5798. url=""
  5799. size="1.12MB" >
  5800. </productMenu>
  5801. <productMenu id="userGuide"
  5802. type="1"
  5803. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5804. size="2.0MB" >
  5805. </productMenu>
  5806. <productMenu id="videoGuide"
  5807. type="1"
  5808. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5809. size="3.41MB" >
  5810. </productMenu>
  5811. <productMenu id="connectGuide"
  5812. type="1"
  5813. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5814. size="1.12MB" >
  5815. </productMenu>
  5816. <productMenu id="volume"
  5817. type="12" >
  5818. </productMenu>
  5819. <productMenu id="battery"
  5820. type="1" >
  5821. </productMenu>
  5822. <productID id="6800"
  5823. />
  5824. <productGroupable type="0"
  5825. />
  5826. </product>
  5827. <product id="SPIDER_ST1"
  5828. name="SPIDER ST1"
  5829. series="SPIDER"
  5830. latestVersion="1.2.2"
  5831. show = "-1" >
  5832. <productMenu id="protocol"
  5833. type="2" >
  5834. </productMenu>
  5835. <productMenu id="alexa"
  5836. type="0" >
  5837. </productMenu>
  5838. <productMenu id="ota"
  5839. type="0" >
  5840. </productMenu>
  5841. <productMenu id="wa"
  5842. type="0" >
  5843. </productMenu>
  5844. <productMenu id="meshIntercom"
  5845. type="20" >
  5846. </productMenu>
  5847. <productMenu id="phone"
  5848. type="1" >
  5849. </productMenu>
  5850. <productMenu id="music"
  5851. type="1" >
  5852. </productMenu>
  5853. <productMenu id="deviceSetting"
  5854. type="1"
  5855. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5856. </productMenu>
  5857. <productMenu id="quickGuide"
  5858. type="0"
  5859. url=""
  5860. size="1.12MB" >
  5861. </productMenu>
  5862. <productMenu id="userGuide"
  5863. type="1"
  5864. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5865. size="2.0MB" >
  5866. </productMenu>
  5867. <productMenu id="videoGuide"
  5868. type="1"
  5869. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5870. size="3.41MB" >
  5871. </productMenu>
  5872. <productMenu id="volume"
  5873. type="13" >
  5874. <productMenuType version="1.1.6"
  5875. type="14"/>
  5876. </productMenu>
  5877. <productMenu id="battery"
  5878. type="1" >
  5879. </productMenu>
  5880. <productID id="6510"
  5881. />
  5882. <productGroupable type="0"
  5883. />
  5884. </product>
  5885. <product id="SPIDER_RT1"
  5886. name="SPIDER RT1"
  5887. series="SPIDER"
  5888. latestVersion="2.5.1"
  5889. latestVersionVoicePrompt="1.3"
  5890. show = "1" >
  5891. <productMenu id="protocol"
  5892. type="2" >
  5893. </productMenu>
  5894. <productMenu id="alexa"
  5895. type="0" >
  5896. </productMenu>
  5897. <productMenu id="ota"
  5898. type="2" >
  5899. <productMenuType version="2.1.9"
  5900. type="0"
  5901. />
  5902. <otaPackages>
  5903. <package
  5904. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_RT1-v2.5.1-build2.img"
  5905. size="2945812"
  5906. />
  5907. </otaPackages>
  5908. </productMenu>
  5909. <productMenu id="wa"
  5910. type="0" >
  5911. </productMenu>
  5912. <productMenu id="meshIntercom"
  5913. type="30" >
  5914. <productMenuType version="2.1.1"
  5915. type="20"
  5916. />
  5917. </productMenu>
  5918. <productMenu id="meshIntercom+"
  5919. type="3"
  5920. url="2" >
  5921. <productMenuType version="2.2.9"
  5922. type="2"
  5923. />
  5924. <productMenuURL version="2.1.1"
  5925. url="0"
  5926. />
  5927. </productMenu>
  5928. <productMenu id="waveIntercom"
  5929. type="1" >
  5930. <productMenuType version="2.3.9"
  5931. type="0"
  5932. />
  5933. </productMenu>
  5934. <productMenu id="phone"
  5935. type="1" >
  5936. </productMenu>
  5937. <productMenu id="music"
  5938. type="1" >
  5939. </productMenu>
  5940. <productMenu id="musicSharing"
  5941. type="0" >
  5942. </productMenu>
  5943. <productMenu id="deviceSetting"
  5944. type="1"
  5945. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5946. <productMenuURL version="2.4.9"
  5947. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5948. />
  5949. <productMenuURL version="2.2.2"
  5950. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5951. />
  5952. <productMenuURL version="2.1.1"
  5953. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5954. />
  5955. </productMenu>
  5956. <productMenu id="quickGuide"
  5957. type="0"
  5958. url=""
  5959. size="1.12MB" >
  5960. </productMenu>
  5961. <productMenu id="userGuide"
  5962. type="1"
  5963. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  5964. size="2.0MB" >
  5965. </productMenu>
  5966. <productMenu id="videoGuide"
  5967. type="1"
  5968. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5969. size="3.41MB" >
  5970. </productMenu>
  5971. <productMenu id="connectGuide"
  5972. type="1"
  5973. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  5974. size="1.12MB" >
  5975. </productMenu>
  5976. <productMenu id="volume"
  5977. type="12" >
  5978. </productMenu>
  5979. <productMenu id="battery"
  5980. type="1" >
  5981. </productMenu>
  5982. <productID id="6810"
  5983. />
  5984. <productGroupable type="0"
  5985. />
  5986. </product>
  5987. <product id="SPIDER_RT1"
  5988. name="SPIDER RT1"
  5989. series="SPIDER"
  5990. latestVersion="1.2.2"
  5991. show = "-1" >
  5992. <productMenu id="protocol"
  5993. type="2" >
  5994. </productMenu>
  5995. <productMenu id="alexa"
  5996. type="0" >
  5997. </productMenu>
  5998. <productMenu id="ota"
  5999. type="0" >
  6000. </productMenu>
  6001. <productMenu id="wa"
  6002. type="0" >
  6003. </productMenu>
  6004. <productMenu id="meshIntercom"
  6005. type="20" >
  6006. </productMenu>
  6007. <productMenu id="phone"
  6008. type="1" >
  6009. </productMenu>
  6010. <productMenu id="music"
  6011. type="1" >
  6012. </productMenu>
  6013. <productMenu id="deviceSetting"
  6014. type="1"
  6015. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6016. </productMenu>
  6017. <productMenu id="quickGuide"
  6018. type="0"
  6019. url=""
  6020. size="1.32MB" >
  6021. </productMenu>
  6022. <productMenu id="userGuide"
  6023. type="1"
  6024. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6025. size="1.79MB" >
  6026. </productMenu>
  6027. <productMenu id="videoGuide"
  6028. type="1"
  6029. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6030. size="3.41MB" >
  6031. </productMenu>
  6032. <productMenu id="volume"
  6033. type="13" >
  6034. <productMenuType version="1.1.6"
  6035. type="14"/>
  6036. </productMenu>
  6037. <productMenu id="battery"
  6038. type="1" >
  6039. </productMenu>
  6040. <productID id="6500"
  6041. />
  6042. <productGroupable type="0"
  6043. />
  6044. </product>
  6045. <product id="30K"
  6046. name="30K"
  6047. series="30"
  6048. latestVersion="4.5"
  6049. show = "1" >
  6050. <productMenu id="protocol"
  6051. type="2" >
  6052. </productMenu>
  6053. <productMenu id="alexa"
  6054. type="0" >
  6055. </productMenu>
  6056. <productMenu id="wa"
  6057. type="1" >
  6058. </productMenu>
  6059. <productMenu id="sip"
  6060. type="1" >
  6061. </productMenu>
  6062. <productMenu id="meshIntercom"
  6063. type="30" >
  6064. <productMenuType version="4.0.4"
  6065. type="20"
  6066. />
  6067. </productMenu>
  6068. <productMenu id="meshIntercom+"
  6069. type="3"
  6070. url="2" >
  6071. <productMenuType version="4.3.9"
  6072. type="2"
  6073. />
  6074. <productMenuURL version="4.0.4"
  6075. url="0"
  6076. />
  6077. </productMenu>
  6078. <productMenu id="waveIntercom"
  6079. type="1" >
  6080. <productMenuType version="4.4.9"
  6081. type="0"
  6082. />
  6083. </productMenu>
  6084. <productMenu id="bluetoothIntercom"
  6085. type="1" >
  6086. </productMenu>
  6087. <productMenu id="phone"
  6088. type="1" >
  6089. </productMenu>
  6090. <productMenu id="music"
  6091. type="1" >
  6092. </productMenu>
  6093. <productMenu id="fmradio"
  6094. type="1" >
  6095. </productMenu>
  6096. <productMenu id="deviceSetting"
  6097. type="1"
  6098. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6099. <productMenuURL version="4.3"
  6100. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6101. />
  6102. <productMenuURL version="4.2"
  6103. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6104. />
  6105. <productMenuURL version="4.0.4"
  6106. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6107. />
  6108. </productMenu>
  6109. <productMenu id="quickGuide"
  6110. type="0"
  6111. url=""
  6112. size="934KB" >
  6113. </productMenu>
  6114. <productMenu id="userGuide"
  6115. type="1"
  6116. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6117. size="1.14MB" >
  6118. </productMenu>
  6119. <productMenu id="connectGuide"
  6120. type="1"
  6121. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6122. size="1.12MB" >
  6123. </productMenu>
  6124. <productMenu id="volume"
  6125. type="11" >
  6126. </productMenu>
  6127. <productMenu id="battery"
  6128. type="1" >
  6129. </productMenu>
  6130. <productID id="3211"
  6131. />
  6132. <productGroupable type="0"
  6133. />
  6134. </product>
  6135. <product id="30K"
  6136. name="30K"
  6137. series="30"
  6138. latestVersion="3.5"
  6139. show = "-1" >
  6140. <productMenu id="protocol"
  6141. type="1"
  6142. url="0">
  6143. </productMenu>
  6144. <productMenu id="wa"
  6145. type="7" >
  6146. </productMenu>
  6147. <productMenu id="sip"
  6148. type="1" >
  6149. </productMenu>
  6150. <productMenu id="meshIntercom"
  6151. type="20" >
  6152. <productMenuType version="2.9.9"
  6153. type="10"
  6154. />
  6155. </productMenu>
  6156. <productMenu id="meshIntercom+"
  6157. type="3"
  6158. url="2" >
  6159. <productMenuType version="3.4.9"
  6160. type="2"
  6161. />
  6162. <productMenuType version="2.9.9"
  6163. type="1"
  6164. />
  6165. <productMenuURL version="3.3.1"
  6166. url="0"
  6167. />
  6168. </productMenu>
  6169. <productMenu id="bluetoothIntercom"
  6170. type="1" >
  6171. </productMenu>
  6172. <productMenu id="phone"
  6173. type="1" >
  6174. </productMenu>
  6175. <productMenu id="music"
  6176. type="1" >
  6177. </productMenu>
  6178. <productMenu id="fmradio"
  6179. type="1" >
  6180. </productMenu>
  6181. <productMenu id="deviceSetting"
  6182. type="1"
  6183. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6184. <productMenuURL version="3.4.9"
  6185. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6186. />
  6187. <productMenuURL version="3.3.1"
  6188. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6189. />
  6190. <productMenuURL version="3.0.1"
  6191. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6192. />
  6193. <productMenuURL version="2.3.1"
  6194. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6195. />
  6196. <productMenuURL version="2.0"
  6197. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6198. />
  6199. <productMenuURL version="1.0.3"
  6200. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6201. />
  6202. </productMenu>
  6203. <productMenu id="quickGuide"
  6204. type="0"
  6205. url=""
  6206. size="1.06MB" >
  6207. </productMenu>
  6208. <productMenu id="userGuide"
  6209. type="1"
  6210. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6211. size="3.15MB" >
  6212. </productMenu>
  6213. <productMenu id="volume"
  6214. type="1" >
  6215. </productMenu>
  6216. <productID id="3110"
  6217. />
  6218. <productGroupable type="0"
  6219. />
  6220. </product>
  6221. <product id="FURY"
  6222. name="FURY"
  6223. series="Helmet"
  6224. latestVersion="1.0"
  6225. show = "-1" >
  6226. <productMenu id="protocol"
  6227. type="2" >
  6228. </productMenu>
  6229. <productMenu id="alexa"
  6230. type="0" >
  6231. </productMenu>
  6232. <productMenu id="ota"
  6233. type="0" >
  6234. </productMenu>
  6235. <productMenu id="wa"
  6236. type="0" >
  6237. </productMenu>
  6238. <productMenu id="meshIntercom"
  6239. type="20" >
  6240. </productMenu>
  6241. <productMenu id="phone"
  6242. type="1" >
  6243. </productMenu>
  6244. <productMenu id="music"
  6245. type="1" >
  6246. </productMenu>
  6247. <productMenu id="fmradio"
  6248. type="1" >
  6249. </productMenu>
  6250. <productMenu id="deviceSetting"
  6251. type="1"
  6252. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6253. </productMenu>
  6254. <productMenu id="quickGuide"
  6255. type="1"
  6256. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6257. size="1.12MB" >
  6258. </productMenu>
  6259. <productMenu id="userGuide"
  6260. type="1"
  6261. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6262. size="2.0MB" >
  6263. </productMenu>
  6264. <productMenu id="volume"
  6265. type="13" >
  6266. </productMenu>
  6267. <productMenu id="battery"
  6268. type="1" >
  6269. </productMenu>
  6270. <productID id="5552"
  6271. />
  6272. <productGroupable type="0"
  6273. />
  6274. </product>
  6275. <product id="MomentumM"
  6276. name="Momentum EVO"
  6277. series="Helmet"
  6278. latestVersion="2.1.2"
  6279. show = "1" >
  6280. <productMenu id="protocol"
  6281. type="1"
  6282. url="0">
  6283. </productMenu>
  6284. <productMenu id="wa"
  6285. type="3" >
  6286. </productMenu>
  6287. <productMenu id="sip"
  6288. type="1" >
  6289. </productMenu>
  6290. <productMenu id="meshIntercom"
  6291. type="20" >
  6292. <productMenuType version="1.9.9"
  6293. type="10"
  6294. />
  6295. </productMenu>
  6296. <productMenu id="bluetoothIntercom"
  6297. type="1" >
  6298. </productMenu>
  6299. <productMenu id="phone"
  6300. type="1" >
  6301. </productMenu>
  6302. <productMenu id="music"
  6303. type="1" >
  6304. </productMenu>
  6305. <productMenu id="fmradio"
  6306. type="1" >
  6307. </productMenu>
  6308. <productMenu id="deviceSetting"
  6309. type="1"
  6310. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6311. <productMenuURL version="1.0.1"
  6312. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6313. />
  6314. </productMenu>
  6315. <productMenu id="quickGuide"
  6316. type="1"
  6317. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6318. size="1.06MB" >
  6319. </productMenu>
  6320. <productMenu id="userGuide"
  6321. type="1"
  6322. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6323. size="3.15MB" >
  6324. </productMenu>
  6325. <productMenu id="connectGuide"
  6326. type="1"
  6327. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6328. size="1.12MB" >
  6329. </productMenu>
  6330. <productMenu id="volume"
  6331. type="2" >
  6332. </productMenu>
  6333. <productID id="3116"
  6334. />
  6335. <productGroupable type="0"
  6336. />
  6337. </product>
  6338. <product id="Momentum"
  6339. name="Momentum"
  6340. series="Helmet"
  6341. latestVersion="1.0.9"
  6342. show = "1" >
  6343. <productMenu id="protocol"
  6344. type="0">
  6345. </productMenu>
  6346. <productMenu id="sip"
  6347. type="1" >
  6348. </productMenu>
  6349. <productMenu id="bluetoothIntercom"
  6350. type="1" >
  6351. </productMenu>
  6352. <productMenu id="intercomSetting"
  6353. type="1" >
  6354. </productMenu>
  6355. <productMenu id="phone"
  6356. type="2" >
  6357. </productMenu>
  6358. <productMenu id="fmradio"
  6359. type="3" >
  6360. </productMenu>
  6361. <productMenu id="deviceSetting"
  6362. type="1"
  6363. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6364. </productMenu>
  6365. <productMenu id="quickGuide"
  6366. type="1"
  6367. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6368. size="796KB" >
  6369. </productMenu>
  6370. <productMenu id="userGuide"
  6371. type="1"
  6372. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6373. size="1.90MB" >
  6374. </productMenu>
  6375. <productMenu id="connectGuide"
  6376. type="1"
  6377. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6378. size="1.12MB" >
  6379. </productMenu>
  6380. <productID id="4310"
  6381. />
  6382. <productGroupable type="1"
  6383. />
  6384. </product>
  6385. <product id="Momentum_Pro"
  6386. name="Momentum Pro"
  6387. series="Helmet"
  6388. latestVersion="1.0.6"
  6389. show = "1" >
  6390. <productMenu id="protocol"
  6391. type="0">
  6392. </productMenu>
  6393. <productMenu id="sip"
  6394. type="1" >
  6395. </productMenu>
  6396. <productMenu id="bluetoothIntercom"
  6397. type="1" >
  6398. </productMenu>
  6399. <productMenu id="intercomSetting"
  6400. type="1" >
  6401. </productMenu>
  6402. <productMenu id="phone"
  6403. type="2" >
  6404. </productMenu>
  6405. <productMenu id="fmradio"
  6406. type="3" >
  6407. </productMenu>
  6408. <productMenu id="deviceSetting"
  6409. type="1"
  6410. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6411. </productMenu>
  6412. <productMenu id="quickGuide"
  6413. type="1"
  6414. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6415. size="796KB" >
  6416. </productMenu>
  6417. <productMenu id="userGuide"
  6418. type="1"
  6419. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6420. size="1.90MB" >
  6421. </productMenu>
  6422. <productMenu id="connectGuide"
  6423. type="1"
  6424. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6425. size="1.12MB" >
  6426. </productMenu>
  6427. <productID id="4330"
  6428. />
  6429. <productGroupable type="1"
  6430. />
  6431. </product>
  6432. <product id="Momentum_INC"
  6433. name="Momentum INC"
  6434. series="Helmet"
  6435. latestVersion="1.0.7"
  6436. show = "1" >
  6437. <productMenu id="protocol"
  6438. type="0">
  6439. </productMenu>
  6440. <productMenu id="sip"
  6441. type="1" >
  6442. </productMenu>
  6443. <productMenu id="bluetoothIntercom"
  6444. type="1" >
  6445. </productMenu>
  6446. <productMenu id="intercomSetting"
  6447. type="1" >
  6448. </productMenu>
  6449. <productMenu id="phone"
  6450. type="2" >
  6451. </productMenu>
  6452. <productMenu id="fmradio"
  6453. type="3" >
  6454. </productMenu>
  6455. <productMenu id="deviceSetting"
  6456. type="1"
  6457. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6458. </productMenu>
  6459. <productMenu id="quickGuide"
  6460. type="1"
  6461. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6462. size="794KB" >
  6463. </productMenu>
  6464. <productMenu id="userGuide"
  6465. type="1"
  6466. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6467. size="1.53MB" >
  6468. </productMenu>
  6469. <productMenu id="connectGuide"
  6470. type="1"
  6471. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6472. size="1.12MB" >
  6473. </productMenu>
  6474. <productID id="4410"
  6475. />
  6476. <productGroupable type="1"
  6477. />
  6478. </product>
  6479. <product id="Momentum_INCP"
  6480. name="Momentum INC Pro"
  6481. series="Helmet"
  6482. latestVersion="1.0.4"
  6483. show = "1" >
  6484. <productMenu id="protocol"
  6485. type="0">
  6486. </productMenu>
  6487. <productMenu id="sip"
  6488. type="1" >
  6489. </productMenu>
  6490. <productMenu id="bluetoothIntercom"
  6491. type="1" >
  6492. </productMenu>
  6493. <productMenu id="intercomSetting"
  6494. type="1" >
  6495. </productMenu>
  6496. <productMenu id="phone"
  6497. type="2" >
  6498. </productMenu>
  6499. <productMenu id="fmradio"
  6500. type="3" >
  6501. </productMenu>
  6502. <productMenu id="deviceSetting"
  6503. type="1"
  6504. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6505. </productMenu>
  6506. <productMenu id="quickGuide"
  6507. type="1"
  6508. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6509. size="794KB" >
  6510. </productMenu>
  6511. <productMenu id="userGuide"
  6512. type="1"
  6513. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6514. size="1.53MB" >
  6515. </productMenu>
  6516. <productMenu id="connectGuide"
  6517. type="1"
  6518. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6519. size="1.12MB" >
  6520. </productMenu>
  6521. <productID id="4430"
  6522. />
  6523. <productGroupable type="1"
  6524. />
  6525. </product>
  6526. <product id="Momentum_Lite"
  6527. name="Momentum Lite"
  6528. series="Helmet"
  6529. latestVersion="2.0.3"
  6530. show = "1" >
  6531. <productMenu id="protocol"
  6532. type="0">
  6533. </productMenu>
  6534. <productMenu id="sip"
  6535. type="1" >
  6536. </productMenu>
  6537. <productMenu id="bluetoothIntercom"
  6538. type="1" >
  6539. </productMenu>
  6540. <productMenu id="phone"
  6541. type="2" >
  6542. </productMenu>
  6543. <productMenu id="fmradio"
  6544. type="3" >
  6545. </productMenu>
  6546. <productMenu id="deviceSetting"
  6547. type="1"
  6548. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6549. <productMenuURL version="1.1"
  6550. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6551. />
  6552. </productMenu>
  6553. <productMenu id="quickGuide"
  6554. type="1"
  6555. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6556. size="790KB" >
  6557. </productMenu>
  6558. <productMenu id="userGuide"
  6559. type="1"
  6560. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6561. size="1.42MB" >
  6562. </productMenu>
  6563. <productMenu id="connectGuide"
  6564. type="1"
  6565. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6566. size="1.12MB" >
  6567. </productMenu>
  6568. <productID id="5526"
  6569. />
  6570. <productGroupable type="0"
  6571. />
  6572. </product>
  6573. <product id="OUTRUSHM"
  6574. name="OUTRUSH M"
  6575. series="Helmet"
  6576. latestVersion="1.0"
  6577. show = "-1" >
  6578. <productMenu id="protocol"
  6579. type="2" >
  6580. </productMenu>
  6581. <productMenu id="alexa"
  6582. type="0" >
  6583. </productMenu>
  6584. <productMenu id="ota"
  6585. type="0" >
  6586. </productMenu>
  6587. <productMenu id="wa"
  6588. type="0" >
  6589. </productMenu>
  6590. <productMenu id="meshIntercom"
  6591. type="30" >
  6592. </productMenu>
  6593. <productMenu id="phone"
  6594. type="1" >
  6595. </productMenu>
  6596. <productMenu id="music"
  6597. type="1" >
  6598. </productMenu>
  6599. <productMenu id="fmradio"
  6600. type="1" >
  6601. </productMenu>
  6602. <productMenu id="deviceSetting"
  6603. type="1"
  6604. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6605. </productMenu>
  6606. <productMenu id="quickGuide"
  6607. type="1"
  6608. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6609. size="1.12MB" >
  6610. </productMenu>
  6611. <productMenu id="userGuide"
  6612. type="1"
  6613. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6614. size="2.0MB" >
  6615. </productMenu>
  6616. <productMenu id="volume"
  6617. type="13" >
  6618. </productMenu>
  6619. <productMenu id="battery"
  6620. type="1" >
  6621. </productMenu>
  6622. <productID id="5600"
  6623. />
  6624. <productGroupable type="0"
  6625. />
  6626. </product>
  6627. <product id="ProRideEVO"
  6628. name="ProRide EVO"
  6629. series="Helmet"
  6630. latestVersion="1.1.2"
  6631. show = "1" >
  6632. <productMenu id="protocol"
  6633. type="0">
  6634. </productMenu>
  6635. <productMenu id="sip"
  6636. type="1" >
  6637. </productMenu>
  6638. <productMenu id="bluetoothIntercom"
  6639. type="1" >
  6640. </productMenu>
  6641. <productMenu id="phone"
  6642. type="2" >
  6643. </productMenu>
  6644. <productMenu id="fmradio"
  6645. type="3" >
  6646. </productMenu>
  6647. <productMenu id="deviceSetting"
  6648. type="1"
  6649. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6650. </productMenu>
  6651. <productMenu id="userGuide"
  6652. type="1"
  6653. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6654. size="778KB" >
  6655. </productMenu>
  6656. <productMenu id="connectGuide"
  6657. type="1"
  6658. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6659. size="1.12MB" >
  6660. </productMenu>
  6661. <productID id="5426"
  6662. />
  6663. <productGroupable type="0"
  6664. />
  6665. </product>
  6666. <product id="OUTRUSHR"
  6667. name="OUTRUSH R"
  6668. series="Helmet"
  6669. latestVersion="2.1"
  6670. show = "1" >
  6671. <productMenu id="protocol"
  6672. type="3" >
  6673. </productMenu>
  6674. <productMenu id="sip"
  6675. type="1" >
  6676. </productMenu>
  6677. <productMenu id="bluetoothIntercom"
  6678. type="1" >
  6679. </productMenu>
  6680. <productMenu id="phone"
  6681. type="1" >
  6682. </productMenu>
  6683. <productMenu id="fmradio"
  6684. type="0" >
  6685. </productMenu>
  6686. <productMenu id="deviceSetting"
  6687. type="1"
  6688. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6689. </productMenu>
  6690. <productMenu id="userGuide"
  6691. type="1"
  6692. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6693. size="1.14MB" >
  6694. </productMenu>
  6695. <productMenu id="connectGuide"
  6696. type="1"
  6697. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6698. size="1.12MB" >
  6699. </productMenu>
  6700. <productID id="5440"
  6701. />
  6702. <productGroupable type="0"
  6703. />
  6704. </product>
  6705. <product id="OUTRUSHR"
  6706. name="OUTRUSH R"
  6707. series="Helmet"
  6708. latestVersion="1.1.4"
  6709. show = "-1" >
  6710. <productMenu id="protocol"
  6711. type="0">
  6712. </productMenu>
  6713. <productMenu id="sip"
  6714. type="1" >
  6715. </productMenu>
  6716. <productMenu id="bluetoothIntercom"
  6717. type="1" >
  6718. </productMenu>
  6719. <productMenu id="phone"
  6720. type="2" >
  6721. </productMenu>
  6722. <productMenu id="fmradio"
  6723. type="3" >
  6724. </productMenu>
  6725. <productMenu id="deviceSetting"
  6726. type="1"
  6727. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6728. </productMenu>
  6729. <productMenu id="userGuide"
  6730. type="1"
  6731. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6732. size="660KB" >
  6733. </productMenu>
  6734. <productMenu id="connectGuide"
  6735. type="1"
  6736. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6737. size="1.12MB" >
  6738. </productMenu>
  6739. <productID id="5424"
  6740. />
  6741. <productGroupable type="0"
  6742. />
  6743. </product>
  6744. <product id="OUTSTARS"
  6745. name="OUTSTAR S"
  6746. series="Helmet"
  6747. latestVersion="2.0.1"
  6748. show = "-1" >
  6749. <productMenu id="protocol"
  6750. type="3" >
  6751. </productMenu>
  6752. <productMenu id="sip"
  6753. type="1" >
  6754. </productMenu>
  6755. <productMenu id="bluetoothIntercom"
  6756. type="1" >
  6757. </productMenu>
  6758. <productMenu id="phone"
  6759. type="1" >
  6760. </productMenu>
  6761. <productMenu id="fmradio"
  6762. type="0" >
  6763. </productMenu>
  6764. <productMenu id="deviceSetting"
  6765. type="1"
  6766. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6767. </productMenu>
  6768. <productMenu id="userGuide"
  6769. type="0"
  6770. url=""
  6771. size="1.14MB" >
  6772. </productMenu>
  6773. <productID id="5443"
  6774. />
  6775. <productGroupable type="0"
  6776. />
  6777. </product>
  6778. <product id="OUTSTARS"
  6779. name="OUTSTAR S"
  6780. series="Helmet"
  6781. latestVersion="1.1.4"
  6782. show = "1" >
  6783. <productMenu id="protocol"
  6784. type="0">
  6785. </productMenu>
  6786. <productMenu id="sip"
  6787. type="1" >
  6788. </productMenu>
  6789. <productMenu id="bluetoothIntercom"
  6790. type="1" >
  6791. </productMenu>
  6792. <productMenu id="phone"
  6793. type="2" >
  6794. </productMenu>
  6795. <productMenu id="fmradio"
  6796. type="3" >
  6797. </productMenu>
  6798. <productMenu id="deviceSetting"
  6799. type="1"
  6800. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6801. </productMenu>
  6802. <productMenu id="quickGuide"
  6803. type="1"
  6804. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6805. size="643KB" >
  6806. </productMenu>
  6807. <productMenu id="userGuide"
  6808. type="1"
  6809. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6810. size="1.15MB" >
  6811. </productMenu>
  6812. <productMenu id="connectGuide"
  6813. type="1"
  6814. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6815. size="1.12MB" >
  6816. </productMenu>
  6817. <productID id="5428"
  6818. />
  6819. <productGroupable type="0"
  6820. />
  6821. </product>
  6822. <product id="OUTRIDE"
  6823. name="OUTRIDE"
  6824. series="Helmet"
  6825. latestVersion="1.0.1"
  6826. show = "1" >
  6827. <productMenu id="protocol"
  6828. type="0">
  6829. </productMenu>
  6830. <productMenu id="sip"
  6831. type="1" >
  6832. </productMenu>
  6833. <productMenu id="bluetoothIntercom"
  6834. type="1" >
  6835. </productMenu>
  6836. <productMenu id="phone"
  6837. type="2" >
  6838. </productMenu>
  6839. <productMenu id="fmradio"
  6840. type="3" >
  6841. </productMenu>
  6842. <productMenu id="deviceSetting"
  6843. type="1"
  6844. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6845. </productMenu>
  6846. <productMenu id="quickGuide"
  6847. type="1"
  6848. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6849. size="643KB" >
  6850. </productMenu>
  6851. <productMenu id="userGuide"
  6852. type="1"
  6853. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6854. size="660KB" >
  6855. </productMenu>
  6856. <productMenu id="connectGuide"
  6857. type="1"
  6858. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6859. size="1.12MB" >
  6860. </productMenu>
  6861. <productID id="5432"
  6862. />
  6863. <productGroupable type="0"
  6864. />
  6865. </product>
  6866. <product id="OUTFORCE"
  6867. name="OUTFORCE"
  6868. series="Helmet"
  6869. latestVersion="1.0.1"
  6870. show = "1" >
  6871. <productMenu id="protocol"
  6872. type="0">
  6873. </productMenu>
  6874. <productMenu id="sip"
  6875. type="1" >
  6876. </productMenu>
  6877. <productMenu id="bluetoothIntercom"
  6878. type="1" >
  6879. </productMenu>
  6880. <productMenu id="phone"
  6881. type="2" >
  6882. </productMenu>
  6883. <productMenu id="fmradio"
  6884. type="3" >
  6885. </productMenu>
  6886. <productMenu id="deviceSetting"
  6887. type="1"
  6888. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6889. </productMenu>
  6890. <productMenu id="quickGuide"
  6891. type="1"
  6892. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6893. size="643KB" >
  6894. </productMenu>
  6895. <productMenu id="userGuide"
  6896. type="1"
  6897. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6898. size="660KB" >
  6899. </productMenu>
  6900. <productMenu id="connectGuide"
  6901. type="1"
  6902. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6903. size="1.12MB" >
  6904. </productMenu>
  6905. <productID id="5430"
  6906. />
  6907. <productGroupable type="0"
  6908. />
  6909. </product>
  6910. <product id="Rumba"
  6911. name="Rumba"
  6912. series="30"
  6913. latestVersion="2.0"
  6914. show = "-1" >
  6915. <productMenu id="protocol"
  6916. type="3" >
  6917. </productMenu>
  6918. <productMenu id="sip"
  6919. type="1" >
  6920. </productMenu>
  6921. <productMenu id="bluetoothIntercom"
  6922. type="1" >
  6923. </productMenu>
  6924. <productMenu id="deviceSetting"
  6925. type="1"
  6926. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  6927. </productMenu>
  6928. <productMenu id="quickGuide"
  6929. type="1"
  6930. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  6931. size="344KB" >
  6932. </productMenu>
  6933. <productMenu id="userGuide"
  6934. type="1"
  6935. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  6936. size="1.14MB" >
  6937. </productMenu>
  6938. <productID id="6322"
  6939. />
  6940. <productGroupable type="0"
  6941. />
  6942. </product>
  6943. <product id="Savage"
  6944. name="Savage"
  6945. series="Helmet"
  6946. latestVersion="1.2.2"
  6947. show = "1" >
  6948. <productMenu id="protocol"
  6949. type="0">
  6950. </productMenu>
  6951. <productMenu id="sip"
  6952. type="1" >
  6953. </productMenu>
  6954. <productMenu id="bluetoothIntercom"
  6955. type="1" >
  6956. </productMenu>
  6957. <productMenu id="phone"
  6958. type="2" >
  6959. </productMenu>
  6960. <productMenu id="fmradio"
  6961. type="3" >
  6962. </productMenu>
  6963. <productMenu id="deviceSetting"
  6964. type="1"
  6965. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  6966. <productMenuURL version="1.9"
  6967. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  6968. />
  6969. <productMenuURL version="1.1"
  6970. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  6971. />
  6972. </productMenu>
  6973. <productMenu id="quickGuide"
  6974. type="1"
  6975. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  6976. size="796KB" >
  6977. </productMenu>
  6978. <productMenu id="userGuide"
  6979. type="1"
  6980. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  6981. size="910KB" >
  6982. </productMenu>
  6983. <productMenu id="connectGuide"
  6984. type="1"
  6985. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  6986. size="1.12MB" >
  6987. </productMenu>
  6988. <productID id="5550"
  6989. />
  6990. <productGroupable type="0"
  6991. />
  6992. </product>
  6993. <product id="SPECTER"
  6994. name="SPECTER"
  6995. series="Helmet"
  6996. latestVersion="1.0.7"
  6997. latestVersionVoicePrompt="1.5"
  6998. show = "-1" >
  6999. <productMenu id="protocol"
  7000. type="2" >
  7001. </productMenu>
  7002. <productMenu id="ota"
  7003. type="2" >
  7004. <otaLanguages>
  7005. <otaLanguage
  7006. id="0"
  7007. name="English"
  7008. package="0"
  7009. />
  7010. <otaLanguage
  7011. id="0"
  7012. name="French"
  7013. package="1"
  7014. />
  7015. <otaLanguage
  7016. id="0"
  7017. name="Spanish"
  7018. package="2"
  7019. />
  7020. <otaLanguage
  7021. id="0"
  7022. name="Italian"
  7023. package="3"
  7024. />
  7025. <otaLanguage
  7026. id="0"
  7027. name="German"
  7028. package="4"
  7029. />
  7030. <otaLanguage
  7031. id="0"
  7032. name="Dutch"
  7033. package="5"
  7034. />
  7035. <otaLanguage
  7036. id="0"
  7037. name="Russian"
  7038. package="6"
  7039. />
  7040. <otaLanguage
  7041. id="0"
  7042. name="Chinese"
  7043. package="7"
  7044. />
  7045. <otaLanguage
  7046. id="0"
  7047. name="Korean"
  7048. package="8"
  7049. />
  7050. <otaLanguage
  7051. id="0"
  7052. name="Japanese"
  7053. package="9"
  7054. />
  7055. <otaLanguage
  7056. id="0"
  7057. name="Finnish"
  7058. package="10"
  7059. />
  7060. <otaLanguage
  7061. id="0"
  7062. name="Polish"
  7063. package="11"
  7064. />
  7065. </otaLanguages>
  7066. <otaPackages>
  7067. <package
  7068. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1.img"
  7069. size="5183988"
  7070. />
  7071. <package
  7072. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-fr-FR.img"
  7073. size="5183988"
  7074. />
  7075. <package
  7076. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-es-ES.img"
  7077. size="5183988"
  7078. />
  7079. <package
  7080. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-it-IT.img"
  7081. size="5183988"
  7082. />
  7083. <package
  7084. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-de-DE.img"
  7085. size="5183988"
  7086. />
  7087. <package
  7088. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-nl-NL.img"
  7089. size="5183988"
  7090. />
  7091. <package
  7092. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ru-RU.img"
  7093. size="5183988"
  7094. />
  7095. <package
  7096. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-cmn-CN.img"
  7097. size="5183988"
  7098. />
  7099. <package
  7100. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ko-KR.img"
  7101. size="5183988"
  7102. />
  7103. <package
  7104. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ja-JP.img"
  7105. size="5183988"
  7106. />
  7107. <package
  7108. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-fi-FI.img"
  7109. size="5183988"
  7110. />
  7111. <package
  7112. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-pl-PL.img"
  7113. size="5183988"
  7114. />
  7115. </otaPackages>
  7116. </productMenu>
  7117. <productMenu id="wa"
  7118. type="0" >
  7119. </productMenu>
  7120. <productMenu id="led"
  7121. type="5" >
  7122. </productMenu>
  7123. <productMenu id="led+"
  7124. type="2"
  7125. url="1" >
  7126. </productMenu>
  7127. <productMenu id="meshIntercom+"
  7128. type="3"
  7129. url="2" >
  7130. </productMenu>
  7131. <productMenu id="waveIntercom"
  7132. type="1" >
  7133. </productMenu>
  7134. <productMenu id="fmradio"
  7135. type="0" >
  7136. </productMenu>
  7137. <productMenu id="phone"
  7138. type="1" >
  7139. </productMenu>
  7140. <productMenu id="music"
  7141. type="1" >
  7142. </productMenu>
  7143. <productMenu id="musicSharing"
  7144. type="0" >
  7145. </productMenu>
  7146. <productMenu id="deviceSetting"
  7147. type="1"
  7148. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7149. <productMenuURL version="1.0.4"
  7150. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7151. />
  7152. </productMenu>
  7153. <productMenu id="quickGuide"
  7154. type="0"
  7155. url=""
  7156. size="1.12MB" >
  7157. </productMenu>
  7158. <productMenu id="userGuide"
  7159. type="1"
  7160. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7161. size="2.0MB" >
  7162. </productMenu>
  7163. <productMenu id="videoGuide"
  7164. type="0"
  7165. url=""
  7166. size="3.41MB" >
  7167. </productMenu>
  7168. <productMenu id="volume"
  7169. type="16" >
  7170. </productMenu>
  7171. <productMenu id="volume+"
  7172. type="2"
  7173. url="0x6004" >
  7174. </productMenu>
  7175. <productMenu id="battery"
  7176. type="1" >
  7177. </productMenu>
  7178. <productID id="6A11"
  7179. />
  7180. <productGroupable type="0"
  7181. />
  7182. </product>
  7183. <product id="SPECTER"
  7184. name="SPECTER"
  7185. series="Helmet"
  7186. latestVersion="1.0.7"
  7187. latestVersionVoicePrompt="1.5"
  7188. show = "-1" >
  7189. <productMenu id="protocol"
  7190. type="2" >
  7191. </productMenu>
  7192. <productMenu id="ota"
  7193. type="2" >
  7194. <otaLanguages>
  7195. <otaLanguage
  7196. id="0"
  7197. name="English"
  7198. package="0"
  7199. />
  7200. <otaLanguage
  7201. id="0"
  7202. name="French"
  7203. package="1"
  7204. />
  7205. <otaLanguage
  7206. id="0"
  7207. name="Spanish"
  7208. package="2"
  7209. />
  7210. <otaLanguage
  7211. id="0"
  7212. name="Italian"
  7213. package="3"
  7214. />
  7215. <otaLanguage
  7216. id="0"
  7217. name="German"
  7218. package="4"
  7219. />
  7220. <otaLanguage
  7221. id="0"
  7222. name="Dutch"
  7223. package="5"
  7224. />
  7225. <otaLanguage
  7226. id="0"
  7227. name="Russian"
  7228. package="6"
  7229. />
  7230. <otaLanguage
  7231. id="0"
  7232. name="Chinese"
  7233. package="7"
  7234. />
  7235. <otaLanguage
  7236. id="0"
  7237. name="Korean"
  7238. package="8"
  7239. />
  7240. <otaLanguage
  7241. id="0"
  7242. name="Japanese"
  7243. package="9"
  7244. />
  7245. <otaLanguage
  7246. id="0"
  7247. name="Finnish"
  7248. package="10"
  7249. />
  7250. <otaLanguage
  7251. id="0"
  7252. name="Polish"
  7253. package="11"
  7254. />
  7255. </otaLanguages>
  7256. <otaPackages>
  7257. <package
  7258. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1.img"
  7259. size="5183988"
  7260. />
  7261. <package
  7262. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-fr-FR.img"
  7263. size="5183988"
  7264. />
  7265. <package
  7266. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-es-ES.img"
  7267. size="5183988"
  7268. />
  7269. <package
  7270. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-it-IT.img"
  7271. size="5183988"
  7272. />
  7273. <package
  7274. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-de-DE.img"
  7275. size="5183988"
  7276. />
  7277. <package
  7278. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-nl-NL.img"
  7279. size="5183988"
  7280. />
  7281. <package
  7282. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ru-RU.img"
  7283. size="5183988"
  7284. />
  7285. <package
  7286. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-cmn-CN.img"
  7287. size="5183988"
  7288. />
  7289. <package
  7290. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ko-KR.img"
  7291. size="5183988"
  7292. />
  7293. <package
  7294. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ja-JP.img"
  7295. size="5183988"
  7296. />
  7297. <package
  7298. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-fi-FI.img"
  7299. size="5183988"
  7300. />
  7301. <package
  7302. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-pl-PL.img"
  7303. size="5183988"
  7304. />
  7305. </otaPackages>
  7306. </productMenu>
  7307. <productMenu id="wa"
  7308. type="0" >
  7309. </productMenu>
  7310. <productMenu id="led"
  7311. type="5" >
  7312. </productMenu>
  7313. <productMenu id="led+"
  7314. type="2"
  7315. url="1" >
  7316. </productMenu>
  7317. <productMenu id="meshIntercom+"
  7318. type="3"
  7319. url="2" >
  7320. </productMenu>
  7321. <productMenu id="waveIntercom"
  7322. type="1" >
  7323. </productMenu>
  7324. <productMenu id="fmradio"
  7325. type="0" >
  7326. </productMenu>
  7327. <productMenu id="phone"
  7328. type="1" >
  7329. </productMenu>
  7330. <productMenu id="music"
  7331. type="1" >
  7332. </productMenu>
  7333. <productMenu id="musicSharing"
  7334. type="0" >
  7335. </productMenu>
  7336. <productMenu id="deviceSetting"
  7337. type="1"
  7338. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7339. <productMenuURL version="1.0.4"
  7340. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7341. />
  7342. <productMenuURL version="1.0"
  7343. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7344. />
  7345. </productMenu>
  7346. <productMenu id="quickGuide"
  7347. type="0"
  7348. url=""
  7349. size="1.12MB" >
  7350. </productMenu>
  7351. <productMenu id="userGuide"
  7352. type="1"
  7353. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7354. size="2.0MB" >
  7355. </productMenu>
  7356. <productMenu id="videoGuide"
  7357. type="0"
  7358. url=""
  7359. size="3.41MB" >
  7360. </productMenu>
  7361. <productMenu id="volume"
  7362. type="16" >
  7363. </productMenu>
  7364. <productMenu id="volume+"
  7365. type="2"
  7366. url="0x6004" >
  7367. </productMenu>
  7368. <productMenu id="battery"
  7369. type="1" >
  7370. </productMenu>
  7371. <productID id="6A0A"
  7372. />
  7373. <productGroupable type="0"
  7374. />
  7375. </product>
  7376. <product id="OUTLANDER"
  7377. name="OUTLANDER"
  7378. series="Helmet"
  7379. latestVersion="1.0.7"
  7380. latestVersionVoicePrompt="1.5"
  7381. show = "-1" >
  7382. <productMenu id="protocol"
  7383. type="2" >
  7384. </productMenu>
  7385. <productMenu id="ota"
  7386. type="2" >
  7387. <otaLanguages>
  7388. <otaLanguage
  7389. id="0"
  7390. name="English"
  7391. package="0"
  7392. />
  7393. <otaLanguage
  7394. id="0"
  7395. name="French"
  7396. package="1"
  7397. />
  7398. <otaLanguage
  7399. id="0"
  7400. name="Spanish"
  7401. package="2"
  7402. />
  7403. <otaLanguage
  7404. id="0"
  7405. name="Italian"
  7406. package="3"
  7407. />
  7408. <otaLanguage
  7409. id="0"
  7410. name="German"
  7411. package="4"
  7412. />
  7413. <otaLanguage
  7414. id="0"
  7415. name="Dutch"
  7416. package="5"
  7417. />
  7418. <otaLanguage
  7419. id="0"
  7420. name="Russian"
  7421. package="6"
  7422. />
  7423. <otaLanguage
  7424. id="0"
  7425. name="Chinese"
  7426. package="7"
  7427. />
  7428. <otaLanguage
  7429. id="0"
  7430. name="Korean"
  7431. package="8"
  7432. />
  7433. <otaLanguage
  7434. id="0"
  7435. name="Japanese"
  7436. package="9"
  7437. />
  7438. <otaLanguage
  7439. id="0"
  7440. name="Finnish"
  7441. package="10"
  7442. />
  7443. <otaLanguage
  7444. id="0"
  7445. name="Polish"
  7446. package="11"
  7447. />
  7448. </otaLanguages>
  7449. <otaPackages>
  7450. <package
  7451. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1.img"
  7452. size="5183988"
  7453. />
  7454. <package
  7455. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-fr-FR.img"
  7456. size="5183988"
  7457. />
  7458. <package
  7459. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-es-ES.img"
  7460. size="5183988"
  7461. />
  7462. <package
  7463. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-it-IT.img"
  7464. size="5183988"
  7465. />
  7466. <package
  7467. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-de-DE.img"
  7468. size="5183988"
  7469. />
  7470. <package
  7471. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-nl-NL.img"
  7472. size="5183988"
  7473. />
  7474. <package
  7475. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ru-RU.img"
  7476. size="5183988"
  7477. />
  7478. <package
  7479. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-cmn-CN.img"
  7480. size="5183988"
  7481. />
  7482. <package
  7483. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ko-KR.img"
  7484. size="5183988"
  7485. />
  7486. <package
  7487. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ja-JP.img"
  7488. size="5183988"
  7489. />
  7490. <package
  7491. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-fi-FI.img"
  7492. size="5183988"
  7493. />
  7494. <package
  7495. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-pl-PL.img"
  7496. size="5183988"
  7497. />
  7498. </otaPackages>
  7499. </productMenu>
  7500. <productMenu id="wa"
  7501. type="0" >
  7502. </productMenu>
  7503. <productMenu id="led"
  7504. type="5" >
  7505. </productMenu>
  7506. <productMenu id="led+"
  7507. type="2"
  7508. url="1" >
  7509. </productMenu>
  7510. <productMenu id="meshIntercom+"
  7511. type="3"
  7512. url="2" >
  7513. </productMenu>
  7514. <productMenu id="waveIntercom"
  7515. type="1" >
  7516. </productMenu>
  7517. <productMenu id="fmradio"
  7518. type="0" >
  7519. </productMenu>
  7520. <productMenu id="phone"
  7521. type="1" >
  7522. </productMenu>
  7523. <productMenu id="music"
  7524. type="1" >
  7525. </productMenu>
  7526. <productMenu id="musicSharing"
  7527. type="0" >
  7528. </productMenu>
  7529. <productMenu id="deviceSetting"
  7530. type="1"
  7531. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_04.xml" > <!--NS_OUTLANDER_05-->
  7532. <productMenuURL version="1.0.4"
  7533. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7534. />
  7535. </productMenu>
  7536. <productMenu id="quickGuide"
  7537. type="0"
  7538. url=""
  7539. size="1.12MB" >
  7540. </productMenu>
  7541. <productMenu id="userGuide"
  7542. type="1"
  7543. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7544. size="2.0MB" >
  7545. </productMenu>
  7546. <productMenu id="videoGuide"
  7547. type="0"
  7548. url=""
  7549. size="3.41MB" >
  7550. </productMenu>
  7551. <productMenu id="volume"
  7552. type="16" >
  7553. </productMenu>
  7554. <productMenu id="volume+"
  7555. type="2"
  7556. url="0x6004" >
  7557. </productMenu>
  7558. <productMenu id="battery"
  7559. type="1" >
  7560. </productMenu>
  7561. <productID id="6A05"
  7562. />
  7563. <productGroupable type="0"
  7564. />
  7565. </product>
  7566. <product id="OUTRUSH2"
  7567. name="OUTRUSH 2"
  7568. series="Helmet"
  7569. latestVersion="1.0.2"
  7570. latestVersionVoicePrompt="1.1"
  7571. show = "-1" >
  7572. <productMenu id="protocol"
  7573. type="2" >
  7574. </productMenu>
  7575. <productMenu id="alexa"
  7576. type="0" >
  7577. </productMenu>
  7578. <productMenu id="ota"
  7579. type="2" >
  7580. <otaPackages>
  7581. <package
  7582. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  7583. size="2945812"
  7584. />
  7585. </otaPackages>
  7586. </productMenu>
  7587. <productMenu id="meshIntercom+"
  7588. type="3"
  7589. url="2" >
  7590. </productMenu>
  7591. <productMenu id="waveIntercom"
  7592. type="1" >
  7593. </productMenu>
  7594. <productMenu id="phone"
  7595. type="1" >
  7596. </productMenu>
  7597. <productMenu id="music"
  7598. type="1" >
  7599. </productMenu>
  7600. <productMenu id="musicSharing"
  7601. type="0" >
  7602. </productMenu>
  7603. <productMenu id="deviceSetting"
  7604. type="1"
  7605. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7606. <productMenuURL version="1.0"
  7607. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  7608. />
  7609. </productMenu>
  7610. <productMenu id="quickGuide"
  7611. type="0"
  7612. url=""
  7613. size="1.12MB" >
  7614. </productMenu>
  7615. <productMenu id="userGuide"
  7616. type="1"
  7617. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.0_en_250730.pdf"
  7618. size="2.0MB" >
  7619. </productMenu>
  7620. <productMenu id="volume"
  7621. type="12" >
  7622. </productMenu>
  7623. <productMenu id="battery"
  7624. type="1" >
  7625. </productMenu>
  7626. <productID id="684A"
  7627. />
  7628. <productGroupable type="0"
  7629. />
  7630. </product>
  7631. <product id="OUTSTAR2"
  7632. name="OUTSTAR 2"
  7633. series="Helmet"
  7634. latestVersion="1.0.1"
  7635. latestVersionVoicePrompt="1.1"
  7636. show = "-1" >
  7637. <productMenu id="protocol"
  7638. type="2" >
  7639. </productMenu>
  7640. <productMenu id="alexa"
  7641. type="0" >
  7642. </productMenu>
  7643. <productMenu id="ota"
  7644. type="2" >
  7645. <otaPackages>
  7646. <package
  7647. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.1-build0.img"
  7648. size="2945812"
  7649. />
  7650. </otaPackages>
  7651. </productMenu>
  7652. <productMenu id="meshIntercom+"
  7653. type="3"
  7654. url="2" >
  7655. </productMenu>
  7656. <productMenu id="waveIntercom"
  7657. type="1" >
  7658. </productMenu>
  7659. <productMenu id="phone"
  7660. type="1" >
  7661. </productMenu>
  7662. <productMenu id="music"
  7663. type="1" >
  7664. </productMenu>
  7665. <productMenu id="musicSharing"
  7666. type="0" >
  7667. </productMenu>
  7668. <productMenu id="deviceSetting"
  7669. type="1"
  7670. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7671. </productMenu>
  7672. <productMenu id="quickGuide"
  7673. type="0"
  7674. url=""
  7675. size="1.12MB" >
  7676. </productMenu>
  7677. <productMenu id="userGuide"
  7678. type="1"
  7679. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.0_en_250903.pdf"
  7680. size="2.0MB" >
  7681. </productMenu>
  7682. <productMenu id="volume"
  7683. type="12" >
  7684. </productMenu>
  7685. <productMenu id="battery"
  7686. type="1" >
  7687. </productMenu>
  7688. <productID id="684B"
  7689. />
  7690. <productGroupable type="0"
  7691. />
  7692. </product>
  7693. <product id="SURGE"
  7694. name="SURGE"
  7695. series="Helmet"
  7696. latestVersion="1.2"
  7697. latestVersionVoicePrompt="1.3"
  7698. show = "1" >
  7699. <productMenu id="protocol"
  7700. type="2" >
  7701. </productMenu>
  7702. <productMenu id="alexa"
  7703. type="0" >
  7704. </productMenu>
  7705. <productMenu id="ota"
  7706. type="2" >
  7707. <otaPackages>
  7708. <package
  7709. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  7710. size="2945812"
  7711. />
  7712. </otaPackages>
  7713. </productMenu>
  7714. <productMenu id="meshIntercom"
  7715. type="30" >
  7716. </productMenu>
  7717. <productMenu id="meshIntercom+"
  7718. type="3"
  7719. url="2" >
  7720. <productMenuType version="1.0.1"
  7721. type="2"
  7722. />
  7723. </productMenu>
  7724. <productMenu id="waveIntercom"
  7725. type="1" >
  7726. <productMenuType version="1.0.9"
  7727. type="0"
  7728. />
  7729. </productMenu>
  7730. <productMenu id="phone"
  7731. type="1" >
  7732. </productMenu>
  7733. <productMenu id="music"
  7734. type="1" >
  7735. </productMenu>
  7736. <productMenu id="musicSharing"
  7737. type="0" >
  7738. </productMenu>
  7739. <productMenu id="deviceSetting"
  7740. type="1"
  7741. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  7742. <productMenuURL version="1.1.9"
  7743. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  7744. />
  7745. <productMenuURL version="1.0.1"
  7746. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  7747. />
  7748. </productMenu>
  7749. <productMenu id="quickGuide"
  7750. type="0"
  7751. url=""
  7752. size="1.12MB" >
  7753. </productMenu>
  7754. <productMenu id="userGuide"
  7755. type="1"
  7756. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  7757. size="2.0MB" >
  7758. </productMenu>
  7759. <productMenu id="volume"
  7760. type="12" >
  7761. </productMenu>
  7762. <productMenu id="battery"
  7763. type="1" >
  7764. </productMenu>
  7765. <productID id="6840"
  7766. />
  7767. <productGroupable type="0"
  7768. />
  7769. </product>
  7770. <product id="Cavalry2"
  7771. name="Cavalry 2"
  7772. series="Helmet"
  7773. latestVersion="1.2"
  7774. latestVersionVoicePrompt="1.3"
  7775. show = "1" >
  7776. <productMenu id="protocol"
  7777. type="2" >
  7778. </productMenu>
  7779. <productMenu id="alexa"
  7780. type="0" >
  7781. </productMenu>
  7782. <productMenu id="ota"
  7783. type="2" >
  7784. <otaPackages>
  7785. <package
  7786. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  7787. size="3144148"
  7788. />
  7789. </otaPackages>
  7790. </productMenu>
  7791. <productMenu id="wa"
  7792. type="0" >
  7793. </productMenu>
  7794. <productMenu id="meshIntercom"
  7795. type="30" >
  7796. </productMenu>
  7797. <productMenu id="meshIntercom+"
  7798. type="3"
  7799. url="2" >
  7800. <productMenuType version="1.0"
  7801. type="2"
  7802. />
  7803. </productMenu>
  7804. <productMenu id="waveIntercom"
  7805. type="1" >
  7806. <productMenuType version="1.0.9"
  7807. type="0"
  7808. />
  7809. </productMenu>
  7810. <productMenu id="phone"
  7811. type="1" >
  7812. </productMenu>
  7813. <productMenu id="music"
  7814. type="1" >
  7815. </productMenu>
  7816. <productMenu id="musicSharing"
  7817. type="0" >
  7818. </productMenu>
  7819. <productMenu id="deviceSetting"
  7820. type="1"
  7821. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  7822. <productMenuURL version="1.1.9"
  7823. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  7824. />
  7825. <productMenuURL version="1.0"
  7826. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  7827. />
  7828. </productMenu>
  7829. <productMenu id="quickGuide"
  7830. type="0"
  7831. url=""
  7832. size="1.12MB" >
  7833. </productMenu>
  7834. <productMenu id="userGuide"
  7835. type="1"
  7836. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  7837. size="2.0MB" >
  7838. </productMenu>
  7839. <productMenu id="connectGuide"
  7840. type="1"
  7841. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  7842. size="1.12MB" >
  7843. </productMenu>
  7844. <productMenu id="volume"
  7845. type="12" >
  7846. </productMenu>
  7847. <productMenu id="battery"
  7848. type="1" >
  7849. </productMenu>
  7850. <productID id="6839"
  7851. />
  7852. <productGroupable type="0"
  7853. />
  7854. </product>
  7855. <product id="Cavalry"
  7856. name="Cavalry"
  7857. series="Helmet"
  7858. latestVersion="1.2.2"
  7859. show = "1" >
  7860. <productMenu id="protocol"
  7861. type="0">
  7862. </productMenu>
  7863. <productMenu id="sip"
  7864. type="1" >
  7865. </productMenu>
  7866. <productMenu id="bluetoothIntercom"
  7867. type="1" >
  7868. </productMenu>
  7869. <productMenu id="phone"
  7870. type="2" >
  7871. </productMenu>
  7872. <productMenu id="fmradio"
  7873. type="3" >
  7874. </productMenu>
  7875. <productMenu id="deviceSetting"
  7876. type="1"
  7877. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  7878. <productMenuURL version="1.9"
  7879. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  7880. />
  7881. <productMenuURL version="1.0.1"
  7882. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  7883. />
  7884. </productMenu>
  7885. <productMenu id="quickGuide"
  7886. type="1"
  7887. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  7888. size="795KB" >
  7889. </productMenu>
  7890. <productMenu id="userGuide"
  7891. type="1"
  7892. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  7893. size="1.87MB" >
  7894. </productMenu>
  7895. <productMenu id="connectGuide"
  7896. type="1"
  7897. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7898. size="1.12MB" >
  7899. </productMenu>
  7900. <productID id="5524"
  7901. />
  7902. <productGroupable type="0"
  7903. />
  7904. </product>
  7905. <product id="Cavalry_Lite"
  7906. name="Cavalry Lite"
  7907. series="Helmet"
  7908. latestVersion="1.0.2"
  7909. show = "1" >
  7910. <productMenu id="protocol"
  7911. type="0">
  7912. </productMenu>
  7913. <productMenu id="sip"
  7914. type="1" >
  7915. </productMenu>
  7916. <productMenu id="bluetoothIntercom"
  7917. type="1" >
  7918. </productMenu>
  7919. <productMenu id="phone"
  7920. type="2" >
  7921. </productMenu>
  7922. <productMenu id="fmradio"
  7923. type="3" >
  7924. </productMenu>
  7925. <productMenu id="deviceSetting"
  7926. type="1"
  7927. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7928. </productMenu>
  7929. <productMenu id="userGuide"
  7930. type="1"
  7931. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  7932. size="1.74MB" >
  7933. </productMenu>
  7934. <productMenu id="connectGuide"
  7935. type="1"
  7936. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7937. size="1.12MB" >
  7938. </productMenu>
  7939. <productID id="5536"
  7940. />
  7941. <productGroupable type="0"
  7942. />
  7943. </product>
  7944. <product id="SF4"
  7945. name="SF4"
  7946. series="SF"
  7947. latestVersion="1.1.5"
  7948. show = "-1" >
  7949. <productMenu id="protocol"
  7950. type="1"
  7951. url="3">
  7952. </productMenu>
  7953. <productMenu id="sip"
  7954. type="1" >
  7955. </productMenu>
  7956. <productMenu id="bluetoothIntercom"
  7957. type="1" >
  7958. </productMenu>
  7959. <productMenu id="phone"
  7960. type="1" >
  7961. </productMenu>
  7962. <productMenu id="music"
  7963. type="1" >
  7964. </productMenu>
  7965. <productMenu id="fmradio"
  7966. type="1" >
  7967. </productMenu>
  7968. <productMenu id="deviceSetting"
  7969. type="1"
  7970. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  7971. <productMenuURL version="1.0.1"
  7972. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  7973. />
  7974. </productMenu>
  7975. <productMenu id="quickGuide"
  7976. type="1"
  7977. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  7978. size="607KB" >
  7979. </productMenu>
  7980. <productMenu id="userGuide"
  7981. type="1"
  7982. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  7983. size="1.91MB" >
  7984. </productMenu>
  7985. <productMenu id="volume"
  7986. type="4" >
  7987. </productMenu>
  7988. <productID id="5414"
  7989. />
  7990. <productGroupable type="0"
  7991. />
  7992. </product>
  7993. <product id="SF4"
  7994. name="SF4"
  7995. series="SF"
  7996. latestVersion="3.4.4"
  7997. show = "1" >
  7998. <productMenu id="protocol"
  7999. type="2" >
  8000. </productMenu>
  8001. <productMenu id="sip"
  8002. type="1" >
  8003. </productMenu>
  8004. <productMenu id="bluetoothIntercom"
  8005. type="1" >
  8006. </productMenu>
  8007. <productMenu id="phone"
  8008. type="1" >
  8009. </productMenu>
  8010. <productMenu id="music"
  8011. type="1" >
  8012. </productMenu>
  8013. <productMenu id="fmradio"
  8014. type="1" >
  8015. </productMenu>
  8016. <productMenu id="deviceSetting"
  8017. type="1"
  8018. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8019. <productMenuURL version="3.0"
  8020. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8021. />
  8022. </productMenu>
  8023. <productMenu id="quickGuide"
  8024. type="0"
  8025. url=""
  8026. size="934KB" >
  8027. </productMenu>
  8028. <productMenu id="userGuide"
  8029. type="1"
  8030. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8031. size="1.14MB" >
  8032. </productMenu>
  8033. <productMenu id="connectGuide"
  8034. type="1"
  8035. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8036. size="1.12MB" >
  8037. </productMenu>
  8038. <productMenu id="volume"
  8039. type="15" >
  8040. </productMenu>
  8041. <productID id="3370"
  8042. />
  8043. <productGroupable type="0"
  8044. />
  8045. </product>
  8046. <product id="SF2"
  8047. name="SF2"
  8048. series="SF"
  8049. latestVersion="1.2.1"
  8050. show = "-1" >
  8051. <productMenu id="protocol"
  8052. type="1"
  8053. url="2">
  8054. </productMenu>
  8055. <productMenu id="sip"
  8056. type="1" >
  8057. </productMenu>
  8058. <productMenu id="bluetoothIntercom"
  8059. type="1" >
  8060. </productMenu>
  8061. <productMenu id="phone"
  8062. type="1" >
  8063. </productMenu>
  8064. <productMenu id="music"
  8065. type="1" >
  8066. </productMenu>
  8067. <productMenu id="fmradio"
  8068. type="1" >
  8069. </productMenu>
  8070. <productMenu id="deviceSetting"
  8071. type="1"
  8072. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8073. <productMenuURL version="1.0.1"
  8074. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8075. />
  8076. </productMenu>
  8077. <productMenu id="quickGuide"
  8078. type="1"
  8079. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8080. size="607KB" >
  8081. </productMenu>
  8082. <productMenu id="userGuide"
  8083. type="1"
  8084. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8085. size="1.91MB" >
  8086. </productMenu>
  8087. <productMenu id="volume"
  8088. type="4" >
  8089. </productMenu>
  8090. <productID id="5412"
  8091. />
  8092. <productGroupable type="0"
  8093. />
  8094. </product>
  8095. <product id="SF2"
  8096. name="SF2"
  8097. series="SF"
  8098. latestVersion="3.3.4"
  8099. show = "1" >
  8100. <productMenu id="protocol"
  8101. type="2" >
  8102. </productMenu>
  8103. <productMenu id="sip"
  8104. type="1" >
  8105. </productMenu>
  8106. <productMenu id="bluetoothIntercom"
  8107. type="1" >
  8108. </productMenu>
  8109. <productMenu id="phone"
  8110. type="1" >
  8111. </productMenu>
  8112. <productMenu id="music"
  8113. type="1" >
  8114. </productMenu>
  8115. <productMenu id="fmradio"
  8116. type="0" >
  8117. </productMenu>
  8118. <productMenu id="deviceSetting"
  8119. type="1"
  8120. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8121. <productMenuURL version="3.0"
  8122. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8123. />
  8124. </productMenu>
  8125. <productMenu id="quickGuide"
  8126. type="0"
  8127. url=""
  8128. size="934KB" >
  8129. </productMenu>
  8130. <productMenu id="userGuide"
  8131. type="1"
  8132. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8133. size="1.14MB" >
  8134. </productMenu>
  8135. <productMenu id="connectGuide"
  8136. type="1"
  8137. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8138. size="1.12MB" >
  8139. </productMenu>
  8140. <productMenu id="volume"
  8141. type="15" >
  8142. </productMenu>
  8143. <productID id="3360"
  8144. />
  8145. <productGroupable type="0"
  8146. />
  8147. </product>
  8148. <product id="SF1"
  8149. name="SF1"
  8150. series="SF"
  8151. latestVersion="2.0.5"
  8152. show = "-1" >
  8153. <productMenu id="protocol"
  8154. type="1"
  8155. url="1">
  8156. </productMenu>
  8157. <productMenu id="sip"
  8158. type="1" >
  8159. </productMenu>
  8160. <productMenu id="bluetoothIntercom"
  8161. type="1" >
  8162. <productMenuType version="1.1"
  8163. type="0"
  8164. />
  8165. </productMenu>
  8166. <productMenu id="phone"
  8167. type="1" >
  8168. </productMenu>
  8169. <productMenu id="music"
  8170. type="1" >
  8171. </productMenu>
  8172. <productMenu id="deviceSetting"
  8173. type="1"
  8174. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8175. <productMenuURL version="1.1"
  8176. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8177. />
  8178. <productMenuURL version="1.0"
  8179. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8180. />
  8181. </productMenu>
  8182. <productMenu id="quickGuide"
  8183. type="1"
  8184. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8185. size="401KB" >
  8186. </productMenu>
  8187. <productMenu id="userGuide"
  8188. type="1"
  8189. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8190. size="1.91MB" >
  8191. </productMenu>
  8192. <productMenu id="volume"
  8193. type="3" >
  8194. </productMenu>
  8195. <productID id="5410"
  8196. />
  8197. <productGroupable type="0"
  8198. />
  8199. </product>
  8200. <product id="SF1"
  8201. name="SF1"
  8202. series="SF"
  8203. latestVersion="3.3.4"
  8204. show = "1" >
  8205. <productMenu id="protocol"
  8206. type="2" >
  8207. </productMenu>
  8208. <productMenu id="sip"
  8209. type="1" >
  8210. </productMenu>
  8211. <productMenu id="bluetoothIntercom"
  8212. type="1" >
  8213. </productMenu>
  8214. <productMenu id="phone"
  8215. type="1" >
  8216. </productMenu>
  8217. <productMenu id="music"
  8218. type="1" >
  8219. </productMenu>
  8220. <productMenu id="fmradio"
  8221. type="0" >
  8222. </productMenu>
  8223. <productMenu id="deviceSetting"
  8224. type="1"
  8225. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8226. <productMenuURL version="3.0"
  8227. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8228. />
  8229. </productMenu>
  8230. <productMenu id="quickGuide"
  8231. type="0"
  8232. url=""
  8233. size="934KB" >
  8234. </productMenu>
  8235. <productMenu id="userGuide"
  8236. type="1"
  8237. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8238. size="1.14MB" >
  8239. </productMenu>
  8240. <productMenu id="connectGuide"
  8241. type="1"
  8242. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8243. size="1.12MB" >
  8244. </productMenu>
  8245. <productMenu id="volume"
  8246. type="15" >
  8247. </productMenu>
  8248. <productID id="3350"
  8249. />
  8250. <productGroupable type="0"
  8251. />
  8252. </product>
  8253. <product id="SFR"
  8254. name="SFR"
  8255. series="SF"
  8256. latestVersion="1.1.1"
  8257. show = "1" >
  8258. <productMenu id="protocol"
  8259. type="1"
  8260. url="3">
  8261. </productMenu>
  8262. <productMenu id="sip"
  8263. type="1" >
  8264. </productMenu>
  8265. <productMenu id="bluetoothIntercom"
  8266. type="1" >
  8267. </productMenu>
  8268. <productMenu id="phone"
  8269. type="1" >
  8270. </productMenu>
  8271. <productMenu id="music"
  8272. type="1" >
  8273. </productMenu>
  8274. <productMenu id="fmradio"
  8275. type="1" >
  8276. </productMenu>
  8277. <productMenu id="deviceSetting"
  8278. type="1"
  8279. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8280. </productMenu>
  8281. <productMenu id="quickGuide"
  8282. type="1"
  8283. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8284. size="607KB" >
  8285. </productMenu>
  8286. <productMenu id="userGuide"
  8287. type="1"
  8288. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8289. size="1.91MB" >
  8290. </productMenu>
  8291. <productMenu id="volume"
  8292. type="4" >
  8293. </productMenu>
  8294. <productID id="5418"
  8295. />
  8296. <productGroupable type="0"
  8297. />
  8298. </product>
  8299. <product id="20S"
  8300. name="20S"
  8301. series="20"
  8302. latestVersion="2.2.3"
  8303. show = "1" >
  8304. <productMenu id="protocol"
  8305. type="0">
  8306. </productMenu>
  8307. <productMenu id="wa"
  8308. type="5" >
  8309. </productMenu>
  8310. <productMenu id="sip"
  8311. type="1" >
  8312. <productMenuType version="1.0"
  8313. type="0"
  8314. />
  8315. </productMenu>
  8316. <productMenu id="bluetoothIntercom"
  8317. type="1" >
  8318. <productMenuType version="1.0"
  8319. type="0"
  8320. />
  8321. </productMenu>
  8322. <productMenu id="intercomSetting"
  8323. type="1" >
  8324. </productMenu>
  8325. <productMenu id="phone"
  8326. type="2" >
  8327. </productMenu>
  8328. <productMenu id="fmradio"
  8329. type="3" >
  8330. </productMenu>
  8331. <productMenu id="deviceSetting"
  8332. type="1"
  8333. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8334. <productMenuURL version="2.0.2"
  8335. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8336. />
  8337. <productMenuURL version="1.5"
  8338. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8339. />
  8340. <productMenuURL version="1.4.1"
  8341. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8342. />
  8343. <productMenuURL version="1.1"
  8344. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8345. />
  8346. <productMenuURL version="1.0"
  8347. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8348. />
  8349. </productMenu>
  8350. <productMenu id="quickGuide"
  8351. type="0"
  8352. url=""
  8353. size="264KB" >
  8354. </productMenu>
  8355. <productMenu id="userGuide"
  8356. type="1"
  8357. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8358. size="3.09MB" >
  8359. </productMenu>
  8360. <productMenu id="connectGuide"
  8361. type="1"
  8362. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8363. size="1.12MB" >
  8364. </productMenu>
  8365. <productID id="4210"
  8366. />
  8367. <productGroupable type="1"
  8368. />
  8369. </product>
  8370. <product id="20S_EVO"
  8371. name="20S EVO"
  8372. series="20"
  8373. latestVersion="2.2.3"
  8374. show = "1" >
  8375. <productMenu id="protocol"
  8376. type="0">
  8377. </productMenu>
  8378. <productMenu id="wa"
  8379. type="5" >
  8380. </productMenu>
  8381. <productMenu id="sip"
  8382. type="1" >
  8383. <productMenuType version="1.0"
  8384. type="0"
  8385. />
  8386. </productMenu>
  8387. <productMenu id="bluetoothIntercom"
  8388. type="1" >
  8389. <productMenuType version="1.0"
  8390. type="0"
  8391. />
  8392. </productMenu>
  8393. <productMenu id="intercomSetting"
  8394. type="1" >
  8395. </productMenu>
  8396. <productMenu id="phone"
  8397. type="2" >
  8398. </productMenu>
  8399. <productMenu id="fmradio"
  8400. type="3" >
  8401. </productMenu>
  8402. <productMenu id="deviceSetting"
  8403. type="1"
  8404. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8405. <productMenuURL version="2.0.2"
  8406. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8407. />
  8408. <productMenuURL version="1.5"
  8409. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8410. />
  8411. <productMenuURL version="1.4.1"
  8412. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8413. />
  8414. <productMenuURL version="1.1"
  8415. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8416. />
  8417. <productMenuURL version="1.0"
  8418. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8419. />
  8420. </productMenu>
  8421. <productMenu id="quickGuide"
  8422. type="0"
  8423. url=""
  8424. size="264KB" >
  8425. </productMenu>
  8426. <productMenu id="userGuide"
  8427. type="1"
  8428. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8429. size="3.09MB" >
  8430. </productMenu>
  8431. <productMenu id="connectGuide"
  8432. type="1"
  8433. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8434. size="1.12MB" >
  8435. </productMenu>
  8436. <productID id="4210"
  8437. />
  8438. <productProductKey key="16"
  8439. />
  8440. <productGroupable type="1"
  8441. />
  8442. </product>
  8443. <product id="10S"
  8444. name="10S"
  8445. series="10"
  8446. latestVersion="3.0.1"
  8447. show = "1" >
  8448. <productMenu id="protocol"
  8449. type="3" >
  8450. </productMenu>
  8451. <productMenu id="sip"
  8452. type="1" >
  8453. </productMenu>
  8454. <productMenu id="bluetoothIntercom"
  8455. type="1" >
  8456. </productMenu>
  8457. <productMenu id="phone"
  8458. type="1" >
  8459. </productMenu>
  8460. <productMenu id="deviceSetting"
  8461. type="1"
  8462. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  8463. </productMenu>
  8464. <productMenu id="quickGuide"
  8465. type="1"
  8466. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  8467. size="934KB" >
  8468. </productMenu>
  8469. <productMenu id="userGuide"
  8470. type="1"
  8471. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  8472. size="1.14MB" >
  8473. </productMenu>
  8474. <productMenu id="connectGuide"
  8475. type="1"
  8476. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  8477. size="1.12MB" >
  8478. </productMenu>
  8479. <productID id="3380"
  8480. />
  8481. <productGroupable type="0"
  8482. />
  8483. </product>
  8484. <product id="10S"
  8485. name="10S"
  8486. series="10"
  8487. latestVersion="2.1.1"
  8488. show = "-1" >
  8489. <productMenu id="protocol"
  8490. type="0">
  8491. </productMenu>
  8492. <productMenu id="sip"
  8493. type="1" >
  8494. </productMenu>
  8495. <productMenu id="bluetoothIntercom"
  8496. type="1" >
  8497. </productMenu>
  8498. <productMenu id="phone"
  8499. type="2" >
  8500. </productMenu>
  8501. <productMenu id="fmradio"
  8502. type="3" >
  8503. </productMenu>
  8504. <productMenu id="deviceSetting"
  8505. type="1"
  8506. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  8507. <productMenuURL version="1.5"
  8508. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  8509. />
  8510. <productMenuURL version="1.3.1"
  8511. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  8512. />
  8513. </productMenu>
  8514. <productMenu id="quickGuide"
  8515. type="1"
  8516. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  8517. size="310KB" >
  8518. </productMenu>
  8519. <productMenu id="userGuide"
  8520. type="1"
  8521. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  8522. size="1.57MB" >
  8523. </productMenu>
  8524. <productID id="5530"
  8525. />
  8526. <productGroupable type="0"
  8527. />
  8528. </product>
  8529. <product id="10R2"
  8530. name="10R 2"
  8531. series="10"
  8532. latestVersion="0.9"
  8533. latestVersionVoicePrompt="1.1"
  8534. show = "-1" >
  8535. <productMenu id="protocol"
  8536. type="2" >
  8537. </productMenu>
  8538. <productMenu id="ota"
  8539. type="2" >
  8540. <otaPackages>
  8541. <package
  8542. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  8543. size="2945812"
  8544. />
  8545. </otaPackages>
  8546. </productMenu>
  8547. <productMenu id="sip"
  8548. type="1" >
  8549. </productMenu>
  8550. <productMenu id="bluetoothIntercom"
  8551. type="1" >
  8552. </productMenu>
  8553. <productMenu id="phone"
  8554. type="1" >
  8555. </productMenu>
  8556. <productMenu id="music"
  8557. type="1" >
  8558. </productMenu>
  8559. <productMenu id="fmradio"
  8560. type="1"
  8561. url="1" >
  8562. </productMenu>
  8563. <productMenu id="deviceSetting"
  8564. type="1"
  8565. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  8566. </productMenu>
  8567. <productMenu id="quickGuide"
  8568. type="1"
  8569. url=""
  8570. size="934KB" >
  8571. </productMenu>
  8572. <productMenu id="userGuide"
  8573. type="0"
  8574. url=""
  8575. size="1.14MB" >
  8576. </productMenu>
  8577. <productMenu id="volume"
  8578. type="15" >
  8579. </productMenu>
  8580. <productID id="4000"
  8581. />
  8582. <productGroupable type="0"
  8583. />
  8584. </product>
  8585. <product id="10R"
  8586. name="10R"
  8587. series="10"
  8588. latestVersion="2.1.1"
  8589. show = "1" >
  8590. <productMenu id="protocol"
  8591. type="0">
  8592. </productMenu>
  8593. <productMenu id="sip"
  8594. type="1" >
  8595. <productMenuType version="1.0.2"
  8596. type="0"
  8597. />
  8598. </productMenu>
  8599. <productMenu id="bluetoothIntercom"
  8600. type="1" >
  8601. <productMenuType version="1.0.2"
  8602. type="0"
  8603. />
  8604. </productMenu>
  8605. <productMenu id="phone"
  8606. type="2" >
  8607. </productMenu>
  8608. <productMenu id="fmradio"
  8609. type="3" >
  8610. </productMenu>
  8611. <productMenu id="deviceSetting"
  8612. type="1"
  8613. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  8614. <productMenuURL version="1.4"
  8615. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  8616. />
  8617. <productMenuURL version="1.2.1"
  8618. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  8619. />
  8620. <productMenuURL version="1.0.2"
  8621. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  8622. />
  8623. <productMenuURL version="1.0"
  8624. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  8625. />
  8626. </productMenu>
  8627. <productMenu id="quickGuide"
  8628. type="1"
  8629. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  8630. size="400KB" >
  8631. </productMenu>
  8632. <productMenu id="userGuide"
  8633. type="1"
  8634. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  8635. size="2.75MB" >
  8636. </productMenu>
  8637. <productMenu id="connectGuide"
  8638. type="1"
  8639. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8640. size="1.12MB" >
  8641. </productMenu>
  8642. <productID id="5520"
  8643. />
  8644. <productGroupable type="0"
  8645. />
  8646. </product>
  8647. <product id="10C_EVO"
  8648. name="10C EVO"
  8649. series="10"
  8650. latestVersion="1.7"
  8651. show = "1" >
  8652. <productMenu id="protocol"
  8653. type="0">
  8654. </productMenu>
  8655. <productMenu id="sip"
  8656. type="1" >
  8657. </productMenu>
  8658. <productMenu id="bluetoothIntercom"
  8659. type="1" >
  8660. </productMenu>
  8661. <productMenu id="phone"
  8662. type="2" >
  8663. </productMenu>
  8664. <productMenu id="fmradio"
  8665. type="3" >
  8666. </productMenu>
  8667. <productMenu id="deviceSetting"
  8668. type="1"
  8669. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  8670. <productMenuURL version="1.3.1"
  8671. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  8672. />
  8673. </productMenu>
  8674. <productMenu id="quickGuide"
  8675. type="1"
  8676. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  8677. size="1.32MB" >
  8678. </productMenu>
  8679. <productMenu id="userGuide"
  8680. type="1"
  8681. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  8682. size="1.68MB" >
  8683. </productMenu>
  8684. <productMenu id="connectGuide"
  8685. type="1"
  8686. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8687. size="1.12MB" >
  8688. </productMenu>
  8689. <productID id="5570"
  8690. />
  8691. <productGroupable type="0"
  8692. />
  8693. </product>
  8694. <product id="10C_Pro"
  8695. name="10C Pro"
  8696. series="10"
  8697. latestVersion="2.7.1"
  8698. show = "1" >
  8699. <productMenu id="protocol"
  8700. type="0">
  8701. </productMenu>
  8702. <productMenu id="sip"
  8703. type="1" >
  8704. </productMenu>
  8705. <productMenu id="bluetoothIntercom"
  8706. type="1" >
  8707. </productMenu>
  8708. <productMenu id="phone"
  8709. type="2" >
  8710. </productMenu>
  8711. <productMenu id="fmradio"
  8712. type="3" >
  8713. </productMenu>
  8714. <productMenu id="deviceSetting"
  8715. type="1"
  8716. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  8717. <productMenuURL version="2.5.1"
  8718. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  8719. />
  8720. <productMenuURL version="1.0"
  8721. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  8722. />
  8723. </productMenu>
  8724. <productMenu id="quickGuide"
  8725. type="1"
  8726. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  8727. size="651KB" >
  8728. </productMenu>
  8729. <productMenu id="userGuide"
  8730. type="1"
  8731. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  8732. size="2.34MB" >
  8733. </productMenu>
  8734. <productMenu id="connectGuide"
  8735. type="1"
  8736. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8737. size="1.12MB" >
  8738. </productMenu>
  8739. <productID id="5580"
  8740. />
  8741. <productGroupable type="0"
  8742. />
  8743. </product>
  8744. <product id="10C"
  8745. name="10C"
  8746. series="10"
  8747. latestVersion="3.0.4"
  8748. show = "1" >
  8749. <productMenu id="protocol"
  8750. type="0">
  8751. </productMenu>
  8752. <productMenu id="sip"
  8753. type="1" >
  8754. <productMenuType version="1.0.4"
  8755. type="0"
  8756. />
  8757. </productMenu>
  8758. <productMenu id="bluetoothIntercom"
  8759. type="1" >
  8760. <productMenuType version="1.0.4"
  8761. type="0"
  8762. />
  8763. </productMenu>
  8764. <productMenu id="phone"
  8765. type="2" >
  8766. </productMenu>
  8767. <productMenu id="fmradio"
  8768. type="3" >
  8769. </productMenu>
  8770. <productMenu id="deviceSetting"
  8771. type="1"
  8772. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  8773. <productMenuURL version="2.3"
  8774. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  8775. />
  8776. <productMenuURL version="2.1.1"
  8777. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  8778. />
  8779. <productMenuURL version="1.0.4"
  8780. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  8781. />
  8782. <productMenuURL version="1.0.2"
  8783. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  8784. />
  8785. </productMenu>
  8786. <productMenu id="quickGuide"
  8787. type="1"
  8788. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  8789. size="935KB" >
  8790. </productMenu>
  8791. <productMenu id="userGuide"
  8792. type="1"
  8793. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  8794. size="2.82MB" >
  8795. </productMenu>
  8796. <productMenu id="connectGuide"
  8797. type="1"
  8798. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8799. size="1.12MB" >
  8800. </productMenu>
  8801. <productID id="5510"
  8802. />
  8803. <productGroupable type="0"
  8804. />
  8805. </product>
  8806. <product id="10U_GT_AIR"
  8807. name="10U GT-Air"
  8808. series="10"
  8809. latestVersion="2.0.4"
  8810. show = "1" >
  8811. <productMenu id="protocol"
  8812. type="0">
  8813. </productMenu>
  8814. <productMenu id="sip"
  8815. type="1" >
  8816. <productMenuType version="1.0.2"
  8817. type="0"
  8818. />
  8819. </productMenu>
  8820. <productMenu id="bluetoothIntercom"
  8821. type="1" >
  8822. <productMenuType version="1.0.2"
  8823. type="0"
  8824. />
  8825. </productMenu>
  8826. <productMenu id="phone"
  8827. type="2" >
  8828. </productMenu>
  8829. <productMenu id="fmradio"
  8830. type="3" >
  8831. </productMenu>
  8832. <productMenu id="deviceSetting"
  8833. type="1"
  8834. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  8835. <productMenuURL version="1.3.2"
  8836. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  8837. />
  8838. <productMenuURL version="1.0.2"
  8839. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  8840. />
  8841. </productMenu>
  8842. <productMenu id="quickGuide"
  8843. type="1"
  8844. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  8845. size="685KB" >
  8846. </productMenu>
  8847. <productMenu id="userGuide"
  8848. type="1"
  8849. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  8850. size="684KB" >
  8851. </productMenu>
  8852. <productMenu id="connectGuide"
  8853. type="1"
  8854. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  8855. size="1.12MB" >
  8856. </productMenu>
  8857. <productID id="5610"
  8858. />
  8859. <productGroupable type="0"
  8860. />
  8861. </product>
  8862. <product id="10U_NEOTEC"
  8863. name="10U Neotec"
  8864. series="10"
  8865. latestVersion="2.0.4"
  8866. show = "1" >
  8867. <productMenu id="protocol"
  8868. type="0">
  8869. </productMenu>
  8870. <productMenu id="sip"
  8871. type="1" >
  8872. <productMenuType version="1.0.2"
  8873. type="0"
  8874. />
  8875. </productMenu>
  8876. <productMenu id="bluetoothIntercom"
  8877. type="1" >
  8878. <productMenuType version="1.0.2"
  8879. type="0"
  8880. />
  8881. </productMenu>
  8882. <productMenu id="phone"
  8883. type="2" >
  8884. </productMenu>
  8885. <productMenu id="fmradio"
  8886. type="3" >
  8887. </productMenu>
  8888. <productMenu id="deviceSetting"
  8889. type="1"
  8890. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  8891. <productMenuURL version="1.3.2"
  8892. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  8893. />
  8894. <productMenuURL version="1.0.2"
  8895. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  8896. />
  8897. </productMenu>
  8898. <productMenu id="quickGuide"
  8899. type="1"
  8900. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  8901. size="689KB" >
  8902. </productMenu>
  8903. <productMenu id="userGuide"
  8904. type="1"
  8905. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  8906. size="684KB" >
  8907. </productMenu>
  8908. <productMenu id="connectGuide"
  8909. type="1"
  8910. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  8911. size="1.12MB" >
  8912. </productMenu>
  8913. <productID id="5611"
  8914. />
  8915. <productGroupable type="0"
  8916. />
  8917. </product>
  8918. <product id="10U_J_CRUISE"
  8919. name="10U J-Cruise"
  8920. series="10"
  8921. latestVersion="2.0.4"
  8922. show = "1" >
  8923. <productMenu id="protocol"
  8924. type="0">
  8925. </productMenu>
  8926. <productMenu id="sip"
  8927. type="1" >
  8928. <productMenuType version="1.0.2"
  8929. type="0"
  8930. />
  8931. </productMenu>
  8932. <productMenu id="bluetoothIntercom"
  8933. type="1" >
  8934. <productMenuType version="1.0.2"
  8935. type="0"
  8936. />
  8937. </productMenu>
  8938. <productMenu id="phone"
  8939. type="2" >
  8940. </productMenu>
  8941. <productMenu id="fmradio"
  8942. type="3" >
  8943. </productMenu>
  8944. <productMenu id="deviceSetting"
  8945. type="1"
  8946. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  8947. <productMenuURL version="1.3.2"
  8948. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  8949. />
  8950. <productMenuURL version="1.0.2"
  8951. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  8952. />
  8953. </productMenu>
  8954. <productMenu id="quickGuide"
  8955. type="1"
  8956. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  8957. size="686KB" >
  8958. </productMenu>
  8959. <productMenu id="userGuide"
  8960. type="1"
  8961. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  8962. size="684KB" >
  8963. </productMenu>
  8964. <productMenu id="connectGuide"
  8965. type="1"
  8966. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  8967. size="1.12MB" >
  8968. </productMenu>
  8969. <productID id="5612"
  8970. />
  8971. <productGroupable type="0"
  8972. />
  8973. </product>
  8974. <product id="10U_C3"
  8975. name="10U C3/C3Pro"
  8976. series="10"
  8977. latestVersion="2.0.4"
  8978. show = "1" >
  8979. <productMenu id="protocol"
  8980. type="0">
  8981. </productMenu>
  8982. <productMenu id="sip"
  8983. type="1" >
  8984. <productMenuType version="1.0.2"
  8985. type="0"
  8986. />
  8987. </productMenu>
  8988. <productMenu id="bluetoothIntercom"
  8989. type="1" >
  8990. <productMenuType version="1.0.2"
  8991. type="0"
  8992. />
  8993. </productMenu>
  8994. <productMenu id="phone"
  8995. type="2" >
  8996. </productMenu>
  8997. <productMenu id="fmradio"
  8998. type="3" >
  8999. </productMenu>
  9000. <productMenu id="deviceSetting"
  9001. type="1"
  9002. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9003. <productMenuURL version="1.3.2"
  9004. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9005. />
  9006. <productMenuURL version="1.0.2"
  9007. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9008. />
  9009. </productMenu>
  9010. <productMenu id="quickGuide"
  9011. type="1"
  9012. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9013. size="199KB" >
  9014. </productMenu>
  9015. <productMenu id="userGuide"
  9016. type="1"
  9017. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9018. size="684KB" >
  9019. </productMenu>
  9020. <productMenu id="connectGuide"
  9021. type="1"
  9022. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9023. size="1.12MB" >
  9024. </productMenu>
  9025. <productID id="5620"
  9026. />
  9027. <productGroupable type="0"
  9028. />
  9029. </product>
  9030. <product id="10U_ARAI"
  9031. name="10U Arai"
  9032. series="10"
  9033. latestVersion="2.0.4"
  9034. show = "1" >
  9035. <productMenu id="protocol"
  9036. type="0">
  9037. </productMenu>
  9038. <productMenu id="sip"
  9039. type="1" >
  9040. <productMenuType version="1.0.2"
  9041. type="0"
  9042. />
  9043. </productMenu>
  9044. <productMenu id="bluetoothIntercom"
  9045. type="1" >
  9046. <productMenuType version="1.0.2"
  9047. type="0"
  9048. />
  9049. </productMenu>
  9050. <productMenu id="phone"
  9051. type="2" >
  9052. </productMenu>
  9053. <productMenu id="fmradio"
  9054. type="3" >
  9055. </productMenu>
  9056. <productMenu id="deviceSetting"
  9057. type="1"
  9058. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9059. <productMenuURL version="1.3.2"
  9060. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9061. />
  9062. <productMenuURL version="1.0.2"
  9063. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9064. />
  9065. </productMenu>
  9066. <productMenu id="quickGuide"
  9067. type="1"
  9068. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  9069. size="689KB" >
  9070. </productMenu>
  9071. <productMenu id="userGuide"
  9072. type="1"
  9073. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9074. size="684KB" >
  9075. </productMenu>
  9076. <productMenu id="connectGuide"
  9077. type="1"
  9078. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9079. size="1.12MB" >
  9080. </productMenu>
  9081. <productID id="5621"
  9082. />
  9083. <productGroupable type="0"
  9084. />
  9085. </product>
  9086. <product id="10Upad"
  9087. name="10Upad"
  9088. series="10"
  9089. latestVersion="2.0.3"
  9090. show = "1" >
  9091. <productMenu id="protocol"
  9092. type="0">
  9093. </productMenu>
  9094. <productMenu id="sip"
  9095. type="1" >
  9096. </productMenu>
  9097. <productMenu id="bluetoothIntercom"
  9098. type="1" >
  9099. </productMenu>
  9100. <productMenu id="phone"
  9101. type="2" >
  9102. </productMenu>
  9103. <productMenu id="fmradio"
  9104. type="3" >
  9105. </productMenu>
  9106. <productMenu id="deviceSetting"
  9107. type="1"
  9108. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  9109. <productMenuURL version="1.0.3"
  9110. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  9111. />
  9112. </productMenu>
  9113. <productMenu id="quickGuide"
  9114. type="1"
  9115. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  9116. size="615KB" >
  9117. </productMenu>
  9118. <productMenu id="userGuide"
  9119. type="1"
  9120. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  9121. size="0.99MB" >
  9122. </productMenu>
  9123. <productMenu id="connectGuide"
  9124. type="1"
  9125. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9126. size="1.12MB" >
  9127. </productMenu>
  9128. <productID id="6210"
  9129. />
  9130. <productGroupable type="0"
  9131. />
  9132. </product>
  9133. <product id="5S"
  9134. name="5S"
  9135. series="5"
  9136. latestVersion="2.2.1"
  9137. show = "1" >
  9138. <productMenu id="protocol"
  9139. type="3" >
  9140. </productMenu>
  9141. <productMenu id="sip"
  9142. type="1" >
  9143. </productMenu>
  9144. <productMenu id="bluetoothIntercom"
  9145. type="1" >
  9146. </productMenu>
  9147. <productMenu id="phone"
  9148. type="1" >
  9149. </productMenu>
  9150. <productMenu id="fmradio"
  9151. type="0" >
  9152. </productMenu>
  9153. <productMenu id="deviceSetting"
  9154. type="1"
  9155. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9156. </productMenu>
  9157. <productMenu id="quickGuide"
  9158. type="0"
  9159. url=""
  9160. size="934KB" >
  9161. </productMenu>
  9162. <productMenu id="userGuide"
  9163. type="1"
  9164. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  9165. size="1.14MB" >
  9166. </productMenu>
  9167. <productMenu id="connectGuide"
  9168. type="1"
  9169. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  9170. size="1.12MB" >
  9171. </productMenu>
  9172. <productID id="5590"
  9173. />
  9174. <productGroupable type="0"
  9175. />
  9176. </product>
  9177. <product id="5S"
  9178. name="5S"
  9179. series="5"
  9180. latestVersion="1.2"
  9181. show = "-1" >
  9182. <productMenu id="protocol"
  9183. type="0">
  9184. </productMenu>
  9185. <productMenu id="sip"
  9186. type="1" >
  9187. </productMenu>
  9188. <productMenu id="bluetoothIntercom"
  9189. type="1" >
  9190. </productMenu>
  9191. <productMenu id="phone"
  9192. type="2" >
  9193. </productMenu>
  9194. <productMenu id="fmradio"
  9195. type="0" >
  9196. </productMenu>
  9197. <productMenu id="deviceSetting"
  9198. type="1"
  9199. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  9200. </productMenu>
  9201. <productMenu id="quickGuide"
  9202. type="0"
  9203. url=""
  9204. size="970KB" >
  9205. </productMenu>
  9206. <productMenu id="userGuide"
  9207. type="1"
  9208. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  9209. size="1.26MB" >
  9210. </productMenu>
  9211. <productID id="5534"
  9212. />
  9213. <productGroupable type="0"
  9214. />
  9215. </product>
  9216. <product id="5S"
  9217. name="5S"
  9218. series="5"
  9219. latestVersion="3.0.1"
  9220. show = "-1" >
  9221. <productMenu id="protocol"
  9222. type="0">
  9223. </productMenu>
  9224. <productMenu id="sip"
  9225. type="1" >
  9226. </productMenu>
  9227. <productMenu id="bluetoothIntercom"
  9228. type="1" >
  9229. </productMenu>
  9230. <productMenu id="phone"
  9231. type="2" >
  9232. </productMenu>
  9233. <productMenu id="fmradio"
  9234. type="0" >
  9235. </productMenu>
  9236. <productMenu id="deviceSetting"
  9237. type="1"
  9238. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  9239. </productMenu>
  9240. <productMenu id="quickGuide"
  9241. type="0"
  9242. url=""
  9243. size="970KB" >
  9244. </productMenu>
  9245. <productMenu id="userGuide"
  9246. type="1"
  9247. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  9248. size="1.26MB" >
  9249. </productMenu>
  9250. <productID id="5538"
  9251. />
  9252. <productGroupable type="0"
  9253. />
  9254. </product>
  9255. <product id="3SPLUS"
  9256. name="3S PLUS"
  9257. series="3"
  9258. latestVersion="2.2"
  9259. show = "1" >
  9260. <productMenu id="protocol"
  9261. type="3" >
  9262. </productMenu>
  9263. <productMenu id="sip"
  9264. type="1" >
  9265. </productMenu>
  9266. <productMenu id="bluetoothIntercom"
  9267. type="1" >
  9268. </productMenu>
  9269. <productMenu id="deviceSetting"
  9270. type="1"
  9271. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  9272. <productMenuURL version="2.2.1"
  9273. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  9274. />
  9275. </productMenu>
  9276. <productMenu id="quickGuide"
  9277. type="1"
  9278. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9279. size="344KB" >
  9280. </productMenu>
  9281. <productMenu id="userGuide"
  9282. type="1"
  9283. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  9284. size="1.14MB" >
  9285. </productMenu>
  9286. <productMenu id="connectGuide"
  9287. type="1"
  9288. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  9289. size="1.12MB" >
  9290. </productMenu>
  9291. <productID id="4023"
  9292. />
  9293. <productGroupable type="0"
  9294. />
  9295. </product>
  9296. <product id="3SPLUS"
  9297. name="3S PLUS"
  9298. series="3"
  9299. latestVersion="1.1"
  9300. show = "-1" >
  9301. <productMenu id="protocol"
  9302. type="0">
  9303. </productMenu>
  9304. <productMenu id="sip"
  9305. type="1" >
  9306. </productMenu>
  9307. <productMenu id="bluetoothIntercom"
  9308. type="1" >
  9309. </productMenu>
  9310. <productMenu id="deviceSetting"
  9311. type="1"
  9312. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  9313. </productMenu>
  9314. <productMenu id="quickGuide"
  9315. type="1"
  9316. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9317. size="842KB" >
  9318. </productMenu>
  9319. <productMenu id="userGuide"
  9320. type="1"
  9321. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  9322. size="1.02MB" >
  9323. </productMenu>
  9324. <productID id="6320"
  9325. />
  9326. <productGroupable type="0"
  9327. />
  9328. </product>
  9329. <product id="AConnect"
  9330. name="Alpinestars A-Connect"
  9331. series="60"
  9332. latestVersion="0.9.5"
  9333. latestVersionMesh="0.19"
  9334. latestVersionVoicePrompt="1.2"
  9335. show = "-1" >
  9336. <productMenu id="protocol"
  9337. type="2" >
  9338. </productMenu>
  9339. <productMenu id="ota"
  9340. type="0" >
  9341. <otaLanguages>
  9342. <otaLanguage
  9343. id="0"
  9344. name="English"
  9345. package="0"
  9346. />
  9347. <otaLanguage
  9348. id="0"
  9349. name="French"
  9350. package="1"
  9351. />
  9352. <otaLanguage
  9353. id="0"
  9354. name="Spanish"
  9355. package="2"
  9356. />
  9357. <otaLanguage
  9358. id="0"
  9359. name="Italian"
  9360. package="3"
  9361. />
  9362. <otaLanguage
  9363. id="0"
  9364. name="German"
  9365. package="4"
  9366. />
  9367. <otaLanguage
  9368. id="0"
  9369. name="Dutch"
  9370. package="5"
  9371. />
  9372. <otaLanguage
  9373. id="0"
  9374. name="Russian"
  9375. package="6"
  9376. />
  9377. <otaLanguage
  9378. id="0"
  9379. name="Chinese"
  9380. package="7"
  9381. />
  9382. <otaLanguage
  9383. id="0"
  9384. name="Korean"
  9385. package="8"
  9386. />
  9387. <otaLanguage
  9388. id="0"
  9389. name="Japanese"
  9390. package="9"
  9391. />
  9392. <otaLanguage
  9393. id="0"
  9394. name="Finnish"
  9395. package="10"
  9396. />
  9397. <otaLanguage
  9398. id="0"
  9399. name="Polish"
  9400. package="11"
  9401. />
  9402. </otaLanguages>
  9403. <otaPackages>
  9404. <package
  9405. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0.img"
  9406. size="5183988"
  9407. />
  9408. <package
  9409. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-fr-FR.img"
  9410. size="5183988"
  9411. />
  9412. <package
  9413. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-es-ES.img"
  9414. size="5183988"
  9415. />
  9416. <package
  9417. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-it-IT.img"
  9418. size="5183988"
  9419. />
  9420. <package
  9421. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-de-DE.img"
  9422. size="5183988"
  9423. />
  9424. <package
  9425. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-nl-NL.img"
  9426. size="5183988"
  9427. />
  9428. <package
  9429. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-ru-RU.img"
  9430. size="5183988"
  9431. />
  9432. <package
  9433. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-cmn-CN.img"
  9434. size="5183988"
  9435. />
  9436. <package
  9437. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-ko-KR.img"
  9438. size="5183988"
  9439. />
  9440. <package
  9441. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-ja-JP.img"
  9442. size="5183988"
  9443. />
  9444. <package
  9445. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-fi-FI.img"
  9446. size="5183988"
  9447. />
  9448. <package
  9449. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-pl-PL.img"
  9450. size="5183988"
  9451. />
  9452. </otaPackages>
  9453. </productMenu>
  9454. <productMenu id="sip"
  9455. type="1" >
  9456. </productMenu>
  9457. <productMenu id="illusion"
  9458. type="0" >
  9459. </productMenu>
  9460. <productMenu id="meshIntercom+"
  9461. type="3"
  9462. url="2" >
  9463. </productMenu>
  9464. <productMenu id="waveIntercom"
  9465. type="1" >
  9466. </productMenu>
  9467. <productMenu id="bluetoothIntercom"
  9468. type="1"
  9469. url="2" >
  9470. </productMenu>
  9471. <productMenu id="bluetoothIntercomGrouping"
  9472. type="0" >
  9473. </productMenu>
  9474. <productMenu id="fmradio"
  9475. type="1"
  9476. url="1" >
  9477. </productMenu>
  9478. <productMenu id="phone"
  9479. type="1" >
  9480. </productMenu>
  9481. <productMenu id="music"
  9482. type="1" >
  9483. </productMenu>
  9484. <productMenu id="musicSharing"
  9485. type="0" >
  9486. </productMenu>
  9487. <productMenu id="deviceSetting"
  9488. type="1"
  9489. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  9490. </productMenu>
  9491. <productMenu id="quickGuide"
  9492. type="0"
  9493. url=""
  9494. size="1.12MB" >
  9495. </productMenu>
  9496. <productMenu id="userGuide"
  9497. type="0"
  9498. url=""
  9499. size="2.0MB" >
  9500. </productMenu>
  9501. <productMenu id="videoGuide"
  9502. type="0"
  9503. url=""
  9504. size="3.41MB" >
  9505. </productMenu>
  9506. <productMenu id="volume"
  9507. type="16" >
  9508. </productMenu>
  9509. <productMenu id="volume+"
  9510. type="2"
  9511. url="0x6004" >
  9512. </productMenu>
  9513. <productMenu id="soundMode"
  9514. type="0" >
  9515. </productMenu>
  9516. <productMenu id="battery"
  9517. type="1" >
  9518. </productMenu>
  9519. <productID id="6A82"
  9520. />
  9521. <productGroupable type="0"
  9522. />
  9523. </product>
  9524. <product id="iCon"
  9525. name="iCon"
  9526. series="50"
  9527. latestVersion="1.2"
  9528. show = "0" >
  9529. <productMenu id="protocol"
  9530. type="2" >
  9531. </productMenu>
  9532. <productMenu id="alexa"
  9533. type="0" >
  9534. </productMenu>
  9535. <productMenu id="wa"
  9536. type="0" >
  9537. </productMenu>
  9538. <productMenu id="sip"
  9539. type="1" >
  9540. </productMenu>
  9541. <productMenu id="led"
  9542. type="3" >
  9543. </productMenu>
  9544. <productMenu id="meshIntercom"
  9545. type="20" >
  9546. </productMenu>
  9547. <productMenu id="meshIntercom+"
  9548. type="3"
  9549. url="0" >
  9550. <productMenuType version="1.0.9"
  9551. type="2"
  9552. />
  9553. </productMenu>
  9554. <productMenu id="bluetoothIntercom"
  9555. type="1" >
  9556. </productMenu>
  9557. <productMenu id="phone"
  9558. type="1" >
  9559. </productMenu>
  9560. <productMenu id="music"
  9561. type="1" >
  9562. </productMenu>
  9563. <productMenu id="fmradio"
  9564. type="1" >
  9565. </productMenu>
  9566. <productMenu id="deviceSetting"
  9567. type="1"
  9568. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  9569. <productMenuURL version="1.0.9"
  9570. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  9571. />
  9572. </productMenu>
  9573. <productMenu id="quickGuide"
  9574. type="1"
  9575. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  9576. size="344KB" >
  9577. </productMenu>
  9578. <productMenu id="userGuide"
  9579. type="1"
  9580. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  9581. size="3.41MB" >
  9582. </productMenu>
  9583. <productMenu id="volume"
  9584. type="11" >
  9585. </productMenu>
  9586. <productMenu id="battery"
  9587. type="1" >
  9588. </productMenu>
  9589. <productID id="3900"
  9590. />
  9591. <productGroupable type="0"
  9592. />
  9593. </product>
  9594. <product id="ICONHelmLinkSL"
  9595. name="ICON HelmLink SL"
  9596. series="50"
  9597. latestVersion="1.0"
  9598. latestVersionVoicePrompt="1.6"
  9599. show = "-1" >
  9600. <productMenu id="protocol"
  9601. type="2" >
  9602. </productMenu>
  9603. <productMenu id="alexa"
  9604. type="0" >
  9605. </productMenu>
  9606. <productMenu id="ota"
  9607. type="0" >
  9608. <otaPackages>
  9609. <package
  9610. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/ICON_HELMLINK_SL-v0.9-build0.img"
  9611. size="2945812"
  9612. />
  9613. </otaPackages>
  9614. </productMenu>
  9615. <productMenu id="wa"
  9616. type="0" >
  9617. </productMenu>
  9618. <productMenu id="meshIntercom"
  9619. type="30" >
  9620. </productMenu>
  9621. <productMenu id="meshIntercom+"
  9622. type="3"
  9623. url="2" >
  9624. </productMenu>
  9625. <productMenu id="waveIntercom"
  9626. type="1" >
  9627. </productMenu>
  9628. <productMenu id="phone"
  9629. type="1" >
  9630. </productMenu>
  9631. <productMenu id="music"
  9632. type="1" >
  9633. </productMenu>
  9634. <productMenu id="musicSharing"
  9635. type="0" >
  9636. </productMenu>
  9637. <productMenu id="deviceSetting"
  9638. type="1"
  9639. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  9640. </productMenu>
  9641. <productMenu id="quickGuide"
  9642. type="0"
  9643. url=""
  9644. size="1.12MB" >
  9645. </productMenu>
  9646. <productMenu id="userGuide"
  9647. type="1"
  9648. url=""
  9649. size="2.0MB" >
  9650. </productMenu>
  9651. <productMenu id="volume"
  9652. type="12" >
  9653. </productMenu>
  9654. <productMenu id="battery"
  9655. type="1" >
  9656. </productMenu>
  9657. <productID id="6842"
  9658. />
  9659. <productGroupable type="0"
  9660. />
  9661. </product>
  9662. <product id="HD50S"
  9663. name="H-D Audio 50S"
  9664. series="50"
  9665. latestVersion="1.0.1"
  9666. show = "-1" >
  9667. <productMenu id="protocol"
  9668. type="2" >
  9669. </productMenu>
  9670. <productMenu id="alexa"
  9671. type="0" >
  9672. </productMenu>
  9673. <productMenu id="ota"
  9674. type="0"
  9675. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  9676. size="1150234" >
  9677. </productMenu>
  9678. <productMenu id="wa"
  9679. type="1" >
  9680. </productMenu>
  9681. <productMenu id="sip"
  9682. type="1" >
  9683. </productMenu>
  9684. <productMenu id="meshIntercom"
  9685. type="20" >
  9686. </productMenu>
  9687. <productMenu id="meshIntercom+"
  9688. type="3"
  9689. url="0" >
  9690. <productMenuType version="1.0.9"
  9691. type="2"
  9692. />
  9693. </productMenu>
  9694. <productMenu id="bluetoothIntercom"
  9695. type="1" >
  9696. </productMenu>
  9697. <productMenu id="phone"
  9698. type="1" >
  9699. </productMenu>
  9700. <productMenu id="music"
  9701. type="1" >
  9702. </productMenu>
  9703. <productMenu id="fmradio"
  9704. type="1" >
  9705. </productMenu>
  9706. <productMenu id="deviceSetting"
  9707. type="1"
  9708. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  9709. <productMenuURL version="1.0.9"
  9710. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  9711. />
  9712. </productMenu>
  9713. <productMenu id="quickGuide"
  9714. type="1"
  9715. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  9716. size="934KB" >
  9717. </productMenu>
  9718. <productMenu id="userGuide"
  9719. type="1"
  9720. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  9721. size="1.14MB" >
  9722. </productMenu>
  9723. <productMenu id="volume"
  9724. type="11" >
  9725. </productMenu>
  9726. <productMenu id="battery"
  9727. type="1" >
  9728. </productMenu>
  9729. <productID id="3156"
  9730. />
  9731. <productGroupable type="0"
  9732. />
  9733. </product>
  9734. <product id="HD50S"
  9735. name="H-D Audio 50S"
  9736. series="50"
  9737. latestVersion="2.0.2"
  9738. show = "0" >
  9739. <productMenu id="protocol"
  9740. type="2" >
  9741. </productMenu>
  9742. <productMenu id="alexa"
  9743. type="0" >
  9744. </productMenu>
  9745. <productMenu id="ota"
  9746. type="0"
  9747. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  9748. size="1150234" >
  9749. </productMenu>
  9750. <productMenu id="wa"
  9751. type="1" >
  9752. </productMenu>
  9753. <productMenu id="sip"
  9754. type="1" >
  9755. </productMenu>
  9756. <productMenu id="meshIntercom"
  9757. type="20" >
  9758. </productMenu>
  9759. <productMenu id="meshIntercom+"
  9760. type="3"
  9761. url="0" >
  9762. <productMenuType version="2.0.9"
  9763. type="2"
  9764. />
  9765. </productMenu>
  9766. <productMenu id="bluetoothIntercom"
  9767. type="1" >
  9768. </productMenu>
  9769. <productMenu id="phone"
  9770. type="1" >
  9771. </productMenu>
  9772. <productMenu id="music"
  9773. type="1" >
  9774. </productMenu>
  9775. <productMenu id="fmradio"
  9776. type="1" >
  9777. </productMenu>
  9778. <productMenu id="deviceSetting"
  9779. type="1"
  9780. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  9781. <productMenuURL version="2.0.9"
  9782. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  9783. />
  9784. </productMenu>
  9785. <productMenu id="quickGuide"
  9786. type="1"
  9787. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  9788. size="934KB" >
  9789. </productMenu>
  9790. <productMenu id="userGuide"
  9791. type="1"
  9792. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  9793. size="1.14MB" >
  9794. </productMenu>
  9795. <productMenu id="volume"
  9796. type="11" >
  9797. </productMenu>
  9798. <productMenu id="battery"
  9799. type="1" >
  9800. </productMenu>
  9801. <productID id="3213"
  9802. />
  9803. <productGroupable type="0"
  9804. />
  9805. </product>
  9806. <product id="HD50C"
  9807. name="H-D Audio 50C"
  9808. series="50"
  9809. latestVersion="1.0.1"
  9810. show = "0" >
  9811. <productMenu id="protocol"
  9812. type="2" >
  9813. </productMenu>
  9814. <productMenu id="ota"
  9815. type="0" >
  9816. </productMenu>
  9817. <productMenu id="wa"
  9818. type="1" >
  9819. </productMenu>
  9820. <productMenu id="sip"
  9821. type="1" >
  9822. </productMenu>
  9823. <productMenu id="meshIntercom"
  9824. type="20" >
  9825. </productMenu>
  9826. <productMenu id="meshIntercom+"
  9827. type="3"
  9828. url="0" >
  9829. <productMenuType version="1.0.9"
  9830. type="2"
  9831. />
  9832. </productMenu>
  9833. <productMenu id="bluetoothIntercom"
  9834. type="1" >
  9835. </productMenu>
  9836. <productMenu id="phone"
  9837. type="1" >
  9838. </productMenu>
  9839. <productMenu id="music"
  9840. type="1" >
  9841. </productMenu>
  9842. <productMenu id="fmradio"
  9843. type="1" >
  9844. </productMenu>
  9845. <productMenu id="deviceSetting"
  9846. type="1"
  9847. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  9848. <productMenuURL version="1.0.9"
  9849. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  9850. />
  9851. </productMenu>
  9852. <productMenu id="quickGuide"
  9853. type="1"
  9854. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  9855. size="344KB" >
  9856. </productMenu>
  9857. <productMenu id="userGuide"
  9858. type="1"
  9859. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  9860. size="3.41MB" >
  9861. </productMenu>
  9862. <productMenu id="volume"
  9863. type="11" >
  9864. </productMenu>
  9865. <productMenu id="battery"
  9866. type="1" >
  9867. </productMenu>
  9868. <productID id="3240"
  9869. />
  9870. <productGroupable type="0"
  9871. />
  9872. </product>
  9873. <product id="HD50S"
  9874. name="FURY N04"
  9875. series="Helmet"
  9876. latestVersion="1.0"
  9877. show = "0" >
  9878. <productMenu id="protocol"
  9879. type="2" >
  9880. </productMenu>
  9881. <productMenu id="alexa"
  9882. type="0" >
  9883. </productMenu>
  9884. <productMenu id="ota"
  9885. type="0" >
  9886. </productMenu>
  9887. <productMenu id="wa"
  9888. type="0" >
  9889. </productMenu>
  9890. <productMenu id="meshIntercom"
  9891. type="20" >
  9892. </productMenu>
  9893. <productMenu id="meshIntercom+"
  9894. type="3"
  9895. url="0" >
  9896. <productMenuType version="1.0.9"
  9897. type="2"
  9898. />
  9899. </productMenu>
  9900. <productMenu id="phone"
  9901. type="1" >
  9902. </productMenu>
  9903. <productMenu id="music"
  9904. type="1" >
  9905. </productMenu>
  9906. <productMenu id="fmradio"
  9907. type="1" >
  9908. </productMenu>
  9909. <productMenu id="deviceSetting"
  9910. type="1"
  9911. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  9912. <productMenuURL version="1.0.9"
  9913. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  9914. />
  9915. </productMenu>
  9916. <productMenu id="quickGuide"
  9917. type="1"
  9918. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  9919. size="1.12MB" >
  9920. </productMenu>
  9921. <productMenu id="userGuide"
  9922. type="1"
  9923. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  9924. size="2.0MB" >
  9925. </productMenu>
  9926. <productMenu id="volume"
  9927. type="13" >
  9928. </productMenu>
  9929. <productMenu id="battery"
  9930. type="1" >
  9931. </productMenu>
  9932. <productID id="5553"
  9933. />
  9934. <productGroupable type="0"
  9935. />
  9936. </product>
  9937. <product id="XCOM3Pro"
  9938. name="X-COM3 Pro"
  9939. series="50"
  9940. latestVersion="1.1"
  9941. show = "0" >
  9942. <productMenu id="protocol"
  9943. type="2" >
  9944. </productMenu>
  9945. <productMenu id="alexa"
  9946. type="0" >
  9947. </productMenu>
  9948. <productMenu id="ota"
  9949. type="0" >
  9950. </productMenu>
  9951. <productMenu id="wa"
  9952. type="0" >
  9953. </productMenu>
  9954. <productMenu id="sip"
  9955. type="1" >
  9956. </productMenu>
  9957. <productMenu id="meshIntercom"
  9958. type="30" >
  9959. </productMenu>
  9960. <productMenu id="meshIntercom+"
  9961. type="3"
  9962. url="2" >
  9963. <productMenuType version="1.1"
  9964. type="2"
  9965. />
  9966. </productMenu>
  9967. <productMenu id="waveIntercom"
  9968. type="1" >
  9969. <productMenuType version="1.1"
  9970. type="0"
  9971. />
  9972. </productMenu>
  9973. <productMenu id="bluetoothIntercom"
  9974. type="1" >
  9975. </productMenu>
  9976. <productMenu id="phone"
  9977. type="1" >
  9978. </productMenu>
  9979. <productMenu id="music"
  9980. type="1" >
  9981. </productMenu>
  9982. <productMenu id="fmradio"
  9983. type="1" >
  9984. </productMenu>
  9985. <productMenu id="deviceSetting"
  9986. type="1"
  9987. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  9988. <productMenuURL version="1.1"
  9989. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  9990. />
  9991. </productMenu>
  9992. <productMenu id="quickGuide"
  9993. type="0"
  9994. url=""
  9995. size="344KB" >
  9996. </productMenu>
  9997. <productMenu id="userGuide"
  9998. type="1"
  9999. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10000. size="3.41MB" >
  10001. </productMenu>
  10002. <productMenu id="volume"
  10003. type="11" >
  10004. </productMenu>
  10005. <productMenu id="battery"
  10006. type="1" >
  10007. </productMenu>
  10008. <productID id="321A"
  10009. />
  10010. <productGroupable type="0"
  10011. />
  10012. </product>
  10013. <product id="XCOM3"
  10014. name="X-COM3"
  10015. series="20"
  10016. latestVersion="1.0"
  10017. show = "0" >
  10018. <productMenu id="protocol"
  10019. type="2" >
  10020. </productMenu>
  10021. <productMenu id="sip"
  10022. type="1" >
  10023. </productMenu>
  10024. <productMenu id="bluetoothIntercom"
  10025. type="1" >
  10026. </productMenu>
  10027. <productMenu id="phone"
  10028. type="1" >
  10029. </productMenu>
  10030. <productMenu id="music"
  10031. type="1" >
  10032. </productMenu>
  10033. <productMenu id="fmradio"
  10034. type="1" >
  10035. </productMenu>
  10036. <productMenu id="deviceSetting"
  10037. type="1"
  10038. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10039. </productMenu>
  10040. <productMenu id="quickGuide"
  10041. type="0"
  10042. url=""
  10043. size="934KB" >
  10044. </productMenu>
  10045. <productMenu id="userGuide"
  10046. type="1"
  10047. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  10048. size="1.14MB" >
  10049. </productMenu>
  10050. <productMenu id="volume"
  10051. type="15" >
  10052. </productMenu>
  10053. <productID id="3410"
  10054. />
  10055. <productGroupable type="0"
  10056. />
  10057. </product>
  10058. <product id="X-COM2"
  10059. name="X-COM2"
  10060. series="20"
  10061. latestVersion="1.0.5"
  10062. show = "0" >
  10063. <productMenu id="protocol"
  10064. type="0">
  10065. </productMenu>
  10066. <productMenu id="sip"
  10067. type="1" >
  10068. </productMenu>
  10069. <productMenu id="bluetoothIntercom"
  10070. type="1" >
  10071. </productMenu>
  10072. <productMenu id="intercomSetting"
  10073. type="1" >
  10074. </productMenu>
  10075. <productMenu id="phone"
  10076. type="2" >
  10077. </productMenu>
  10078. <productMenu id="fmradio"
  10079. type="3" >
  10080. </productMenu>
  10081. <productMenu id="deviceSetting"
  10082. type="1"
  10083. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  10084. </productMenu>
  10085. <productMenu id="quickGuide"
  10086. type="1"
  10087. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  10088. size="796KB" >
  10089. </productMenu>
  10090. <productMenu id="userGuide"
  10091. type="1"
  10092. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  10093. size="1.90MB" >
  10094. </productMenu>
  10095. <productID id="2030"
  10096. />
  10097. <productGroupable type="1"
  10098. />
  10099. </product>
  10100. <product id="AVAABC"
  10101. name="AVA ABC"
  10102. series="SPIDER"
  10103. latestVersion="1.0"
  10104. show = "0" >
  10105. <productMenu id="protocol"
  10106. type="2" >
  10107. </productMenu>
  10108. <productMenu id="alexa"
  10109. type="0" >
  10110. </productMenu>
  10111. <productMenu id="ota"
  10112. type="0" >
  10113. <productMenuType version="1.0"
  10114. type="0"
  10115. />
  10116. <otaPackages>
  10117. <package
  10118. url="https://api.sena.com/support/OTA/"
  10119. size="2945812"
  10120. />
  10121. </otaPackages>
  10122. </productMenu>
  10123. <productMenu id="wa"
  10124. type="0" >
  10125. </productMenu>
  10126. <productMenu id="meshIntercom"
  10127. type="30" >
  10128. <productMenuType version="1.0"
  10129. type="20"
  10130. />
  10131. </productMenu>
  10132. <productMenu id="meshIntercom+"
  10133. type="3"
  10134. url="0" >
  10135. <productMenuType version="1.0"
  10136. type="2"
  10137. />
  10138. </productMenu>
  10139. <productMenu id="waveIntercom"
  10140. type="1" >
  10141. <productMenuType version="1.0"
  10142. type="0"
  10143. />
  10144. </productMenu>
  10145. <productMenu id="phone"
  10146. type="1" >
  10147. </productMenu>
  10148. <productMenu id="music"
  10149. type="1" >
  10150. </productMenu>
  10151. <productMenu id="musicSharing"
  10152. type="0" >
  10153. </productMenu>
  10154. <productMenu id="deviceSetting"
  10155. type="1"
  10156. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_01.xml" >
  10157. <productMenuURL version="1.0"
  10158. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  10159. />
  10160. </productMenu>
  10161. <productMenu id="quickGuide"
  10162. type="1"
  10163. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  10164. size="1.12MB" >
  10165. </productMenu>
  10166. <productMenu id="userGuide"
  10167. type="1"
  10168. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  10169. size="2.0MB" >
  10170. </productMenu>
  10171. <productMenu id="volume"
  10172. type="12" >
  10173. </productMenu>
  10174. <productMenu id="battery"
  10175. type="1" >
  10176. </productMenu>
  10177. <productID id="6808"
  10178. />
  10179. <productGroupable type="0"
  10180. />
  10181. </product>
  10182. <product id="ADVANCEProCOM2"
  10183. name="ADVANCE ProCOM 2"
  10184. series="Helmet"
  10185. latestVersion="0.5"
  10186. latestVersionVoicePrompt="0.3"
  10187. show = "-1" >
  10188. <productMenu id="protocol"
  10189. type="2" >
  10190. </productMenu>
  10191. <productMenu id="ota"
  10192. type="2" >
  10193. <otaLanguages>
  10194. <otaLanguage
  10195. id="0"
  10196. name="English"
  10197. package="0"
  10198. />
  10199. <otaLanguage
  10200. id="0"
  10201. name="French"
  10202. package="1"
  10203. />
  10204. <otaLanguage
  10205. id="0"
  10206. name="Spanish"
  10207. package="2"
  10208. />
  10209. <otaLanguage
  10210. id="0"
  10211. name="Italian"
  10212. package="3"
  10213. />
  10214. <otaLanguage
  10215. id="0"
  10216. name="German"
  10217. package="4"
  10218. />
  10219. <otaLanguage
  10220. id="0"
  10221. name="Dutch"
  10222. package="5"
  10223. />
  10224. <otaLanguage
  10225. id="0"
  10226. name="Russian"
  10227. package="6"
  10228. />
  10229. <otaLanguage
  10230. id="0"
  10231. name="Chinese"
  10232. package="7"
  10233. />
  10234. <otaLanguage
  10235. id="0"
  10236. name="Korean"
  10237. package="8"
  10238. />
  10239. <otaLanguage
  10240. id="0"
  10241. name="Japanese"
  10242. package="9"
  10243. />
  10244. <otaLanguage
  10245. id="0"
  10246. name="Finnish"
  10247. package="10"
  10248. />
  10249. <otaLanguage
  10250. id="0"
  10251. name="Polish"
  10252. package="11"
  10253. />
  10254. </otaLanguages>
  10255. <otaPackages>
  10256. <package
  10257. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  10258. size="5183988"
  10259. />
  10260. <package
  10261. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  10262. size="5183988"
  10263. />
  10264. <package
  10265. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  10266. size="5183988"
  10267. />
  10268. <package
  10269. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  10270. size="5183988"
  10271. />
  10272. <package
  10273. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  10274. size="5183988"
  10275. />
  10276. <package
  10277. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  10278. size="5183988"
  10279. />
  10280. <package
  10281. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  10282. size="5183988"
  10283. />
  10284. <package
  10285. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  10286. size="5183988"
  10287. />
  10288. <package
  10289. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  10290. size="5183988"
  10291. />
  10292. <package
  10293. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  10294. size="5183988"
  10295. />
  10296. <package
  10297. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  10298. size="5183988"
  10299. />
  10300. <package
  10301. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  10302. size="5183988"
  10303. />
  10304. </otaPackages>
  10305. </productMenu>
  10306. <productMenu id="wa"
  10307. type="0" >
  10308. </productMenu>
  10309. <productMenu id="meshIntercom"
  10310. type="30" >
  10311. </productMenu>
  10312. <productMenu id="meshIntercom+"
  10313. type="3"
  10314. url="2" >
  10315. </productMenu>
  10316. <productMenu id="waveIntercom"
  10317. type="1" >
  10318. </productMenu>
  10319. <productMenu id="fmradio"
  10320. type="1" >
  10321. </productMenu>
  10322. <productMenu id="phone"
  10323. type="0" >
  10324. </productMenu>
  10325. <productMenu id="music"
  10326. type="1" >
  10327. </productMenu>
  10328. <productMenu id="musicSharing"
  10329. type="0" >
  10330. </productMenu>
  10331. <productMenu id="deviceSetting"
  10332. type="1"
  10333. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  10334. </productMenu>
  10335. <productMenu id="quickGuide"
  10336. type="0"
  10337. url=""
  10338. size="1.12MB" >
  10339. </productMenu>
  10340. <productMenu id="userGuide"
  10341. type="1"
  10342. url=""
  10343. size="2.0MB" >
  10344. </productMenu>
  10345. <productMenu id="videoGuide"
  10346. type="0"
  10347. url=""
  10348. size="3.41MB" >
  10349. </productMenu>
  10350. <productMenu id="connectGuide"
  10351. type="1"
  10352. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  10353. size="1.12MB" >
  10354. </productMenu>
  10355. <productMenu id="volume"
  10356. type="16" >
  10357. </productMenu>
  10358. <productMenu id="battery"
  10359. type="1" >
  10360. </productMenu>
  10361. <productID id="6A85"
  10362. />
  10363. <productGroupable type="0"
  10364. />
  10365. </product>
  10366. <product id="Triumph_50S"
  10367. name="Triumph 50S"
  10368. series="50"
  10369. latestVersion="1.5"
  10370. show = "0" >
  10371. <productMenu id="protocol"
  10372. type="2" >
  10373. </productMenu>
  10374. <productMenu id="alexa"
  10375. type="0" >
  10376. </productMenu>
  10377. <productMenu id="ota"
  10378. type="0"
  10379. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10380. size="1150234" >
  10381. </productMenu>
  10382. <productMenu id="wa"
  10383. type="1" >
  10384. </productMenu>
  10385. <productMenu id="sip"
  10386. type="1" >
  10387. </productMenu>
  10388. <productMenu id="meshIntercom"
  10389. type="20" >
  10390. </productMenu>
  10391. <productMenu id="bluetoothIntercom"
  10392. type="1" >
  10393. </productMenu>
  10394. <productMenu id="meshIntercom+"
  10395. type="3"
  10396. url="2" >
  10397. <productMenuType version="1.2.9"
  10398. type="2"
  10399. />
  10400. <productMenuURL version="1.2.9"
  10401. url="0"
  10402. />
  10403. </productMenu>
  10404. <productMenu id="waveIntercom"
  10405. type="1" >
  10406. <productMenuType version="1.2.9"
  10407. type="0"
  10408. />
  10409. </productMenu>
  10410. <productMenu id="phone"
  10411. type="1" >
  10412. </productMenu>
  10413. <productMenu id="music"
  10414. type="1" >
  10415. </productMenu>
  10416. <productMenu id="fmradio"
  10417. type="1" >
  10418. </productMenu>
  10419. <productMenu id="deviceSetting"
  10420. type="1"
  10421. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  10422. <productMenuURL version="1.2.9"
  10423. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  10424. />
  10425. <productMenuURL version="1.0"
  10426. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10427. />
  10428. </productMenu>
  10429. <productMenu id="quickGuide"
  10430. type="1"
  10431. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  10432. size="934KB" >
  10433. </productMenu>
  10434. <productMenu id="userGuide"
  10435. type="1"
  10436. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  10437. size="1.14MB" >
  10438. </productMenu>
  10439. <productMenu id="volume"
  10440. type="11" >
  10441. </productMenu>
  10442. <productMenu id="battery"
  10443. type="1" >
  10444. </productMenu>
  10445. <productID id="3264"
  10446. />
  10447. <productGroupable type="0"
  10448. />
  10449. </product>
  10450. <product id="RE50S"
  10451. name="RE 50S"
  10452. series="50"
  10453. latestVersion="2.7"
  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. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10464. size="1150234" >
  10465. </productMenu>
  10466. <productMenu id="wa"
  10467. type="1" >
  10468. </productMenu>
  10469. <productMenu id="sip"
  10470. type="1" >
  10471. </productMenu>
  10472. <productMenu id="meshIntercom"
  10473. type="30" >
  10474. </productMenu>
  10475. <productMenu id="meshIntercom+"
  10476. type="3"
  10477. url="2" >
  10478. <productMenuType version="2.5"
  10479. type="2"
  10480. />
  10481. </productMenu>
  10482. <productMenu id="waveIntercom"
  10483. type="1" >
  10484. <productMenuType version="2.5"
  10485. type="0"
  10486. />
  10487. </productMenu>
  10488. <productMenu id="bluetoothIntercom"
  10489. type="1" >
  10490. </productMenu>
  10491. <productMenu id="phone"
  10492. type="1" >
  10493. </productMenu>
  10494. <productMenu id="music"
  10495. type="1" >
  10496. </productMenu>
  10497. <productMenu id="fmradio"
  10498. type="1" >
  10499. </productMenu>
  10500. <productMenu id="deviceSetting"
  10501. type="1"
  10502. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  10503. <productMenuURL version="2.5.9"
  10504. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  10505. />
  10506. </productMenu>
  10507. <productMenu id="quickGuide"
  10508. type="1"
  10509. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  10510. size="934KB" >
  10511. </productMenu>
  10512. <productMenu id="userGuide"
  10513. type="1"
  10514. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  10515. size="1.14MB" >
  10516. </productMenu>
  10517. <productMenu id="videoGuide"
  10518. type="0"
  10519. url=""
  10520. size="3.41MB" >
  10521. </productMenu>
  10522. <productMenu id="volume"
  10523. type="11" >
  10524. </productMenu>
  10525. <productMenu id="battery"
  10526. type="1" >
  10527. </productMenu>
  10528. <productID id="321C"
  10529. />
  10530. <productGroupable type="0"
  10531. />
  10532. </product>
  10533. <product id="BMW_HELMET_II_U1"
  10534. name="BMW HELMET II U1"
  10535. series="50"
  10536. latestVersion="1.0"
  10537. show = "0" >
  10538. <productMenu id="protocol"
  10539. type="2" >
  10540. </productMenu>
  10541. <productMenu id="alexa"
  10542. type="0" >
  10543. </productMenu>
  10544. <productMenu id="sip"
  10545. type="1" >
  10546. </productMenu>
  10547. <productMenu id="meshIntercom"
  10548. type="20" >
  10549. </productMenu>
  10550. <productMenu id="bluetoothIntercom"
  10551. type="1" >
  10552. </productMenu>
  10553. <productMenu id="bluetoothIntercom2"
  10554. type="1" >
  10555. </productMenu>
  10556. <productMenu id="phone"
  10557. type="1" >
  10558. </productMenu>
  10559. <productMenu id="music"
  10560. type="1" >
  10561. </productMenu>
  10562. <productMenu id="fmradio"
  10563. type="1" >
  10564. </productMenu>
  10565. <productMenu id="deviceSetting"
  10566. type="1"
  10567. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  10568. </productMenu>
  10569. <productMenu id="quickGuide"
  10570. type="1"
  10571. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  10572. size="934KB" >
  10573. </productMenu>
  10574. <productMenu id="userGuide"
  10575. type="1"
  10576. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  10577. size="1.14MB" >
  10578. </productMenu>
  10579. <productMenu id="volume"
  10580. type="11" >
  10581. </productMenu>
  10582. <productMenu id="battery"
  10583. type="1" >
  10584. </productMenu>
  10585. <productID id="3260"
  10586. />
  10587. <productGroupable type="0"
  10588. />
  10589. </product>
  10590. <product id="OUTRUSHR"
  10591. name="CX935"
  10592. series="Helmet"
  10593. latestVersion="2.1"
  10594. show = "-1" >
  10595. <productMenu id="protocol"
  10596. type="3">
  10597. </productMenu>
  10598. <productMenu id="sip"
  10599. type="1" >
  10600. </productMenu>
  10601. <productMenu id="bluetoothIntercom"
  10602. type="1" >
  10603. </productMenu>
  10604. <productMenu id="phone"
  10605. type="1" >
  10606. </productMenu>
  10607. <productMenu id="fmradio"
  10608. type="0" >
  10609. </productMenu>
  10610. <productMenu id="deviceSetting"
  10611. type="1"
  10612. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  10613. </productMenu>
  10614. <productMenu id="userGuide"
  10615. type="1"
  10616. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  10617. size="660KB" >
  10618. </productMenu>
  10619. <productID id="5446"
  10620. />
  10621. <productGroupable type="0"
  10622. />
  10623. </product>
  10624. <product id="LSE_01"
  10625. name="LSE-01"
  10626. series="SF"
  10627. latestVersion="1.2.3"
  10628. show = "0" >
  10629. <productMenu id="protocol"
  10630. type="1"
  10631. url="3">
  10632. </productMenu>
  10633. <productMenu id="sip"
  10634. type="1" >
  10635. </productMenu>
  10636. <productMenu id="bluetoothIntercom"
  10637. type="1" >
  10638. </productMenu>
  10639. <productMenu id="phone"
  10640. type="1" >
  10641. </productMenu>
  10642. <productMenu id="music"
  10643. type="1" >
  10644. </productMenu>
  10645. <productMenu id="fmradio"
  10646. type="1" >
  10647. </productMenu>
  10648. <productMenu id="deviceSetting"
  10649. type="1"
  10650. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  10651. <productMenuURL version="1.1"
  10652. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  10653. />
  10654. <productMenuURL version="1.0"
  10655. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  10656. />
  10657. </productMenu>
  10658. <productMenu id="quickGuide"
  10659. type="1"
  10660. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  10661. size="607KB" >
  10662. </productMenu>
  10663. <productMenu id="userGuide"
  10664. type="1"
  10665. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  10666. size="1.91MB" >
  10667. </productMenu>
  10668. <productMenu id="volume"
  10669. type="4" >
  10670. </productMenu>
  10671. <productID id="5416"
  10672. />
  10673. <productGroupable type="0"
  10674. />
  10675. </product>
  10676. <product id="AGV_ARK"
  10677. name="AGV ARK"
  10678. series="SF"
  10679. latestVersion="1.0.3"
  10680. show = "0" >
  10681. <productMenu id="protocol"
  10682. type="1"
  10683. url="3">
  10684. </productMenu>
  10685. <productMenu id="sip"
  10686. type="1" >
  10687. </productMenu>
  10688. <productMenu id="bluetoothIntercom"
  10689. type="1" >
  10690. </productMenu>
  10691. <productMenu id="phone"
  10692. type="1" >
  10693. </productMenu>
  10694. <productMenu id="music"
  10695. type="1" >
  10696. </productMenu>
  10697. <productMenu id="fmradio"
  10698. type="1" >
  10699. </productMenu>
  10700. <productMenu id="deviceSetting"
  10701. type="1"
  10702. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  10703. </productMenu>
  10704. <productMenu id="quickGuide"
  10705. type="1"
  10706. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  10707. size="607KB" >
  10708. </productMenu>
  10709. <productMenu id="userGuide"
  10710. type="1"
  10711. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  10712. size="1.91MB" >
  10713. </productMenu>
  10714. <productMenu id="volume"
  10715. type="4" >
  10716. </productMenu>
  10717. <productID id="5420"
  10718. />
  10719. <productGroupable type="0"
  10720. />
  10721. </product>
  10722. <product id="KLIM_KRIOS"
  10723. name="KLIM Krios"
  10724. series="10"
  10725. latestVersion="1.1.2"
  10726. show = "0" >
  10727. <productMenu id="protocol"
  10728. type="0">
  10729. </productMenu>
  10730. <productMenu id="sip"
  10731. type="1" >
  10732. </productMenu>
  10733. <productMenu id="bluetoothIntercom"
  10734. type="1" >
  10735. </productMenu>
  10736. <productMenu id="phone"
  10737. type="2" >
  10738. </productMenu>
  10739. <productMenu id="fmradio"
  10740. type="3" >
  10741. </productMenu>
  10742. <productMenu id="deviceSetting"
  10743. type="1"
  10744. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  10745. <productMenuURL version="1.0"
  10746. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  10747. />
  10748. </productMenu>
  10749. <productMenu id="quickGuide"
  10750. type="1"
  10751. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  10752. size="649KB" >
  10753. </productMenu>
  10754. <productMenu id="userGuide"
  10755. type="1"
  10756. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  10757. size="1.43MB" >
  10758. </productMenu>
  10759. <productID id="5910"
  10760. />
  10761. <productGroupable type="0"
  10762. />
  10763. </product>
  10764. <product id="POLARIS_SLINGSHOT"
  10765. name="Polaris Slingshot"
  10766. series="10"
  10767. latestVersion="1.1.2"
  10768. show = "0" >
  10769. <productMenu id="protocol"
  10770. type="0">
  10771. </productMenu>
  10772. <productMenu id="sip"
  10773. type="1" >
  10774. </productMenu>
  10775. <productMenu id="bluetoothIntercom"
  10776. type="1" >
  10777. </productMenu>
  10778. <productMenu id="phone"
  10779. type="2" >
  10780. </productMenu>
  10781. <productMenu id="fmradio"
  10782. type="3" >
  10783. </productMenu>
  10784. <productMenu id="deviceSetting"
  10785. type="1"
  10786. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  10787. <productMenuURL version="1.0"
  10788. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  10789. />
  10790. </productMenu>
  10791. <productMenu id="quickGuide"
  10792. type="1"
  10793. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  10794. size="689KB" >
  10795. </productMenu>
  10796. <productMenu id="userGuide"
  10797. type="1"
  10798. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  10799. size="1.43MB" >
  10800. </productMenu>
  10801. <productID id="5920"
  10802. />
  10803. <productGroupable type="0"
  10804. />
  10805. </product>
  10806. <product id="DWO6"
  10807. name="SEDICI DWO6-PRO"
  10808. series="10"
  10809. latestVersion="1.0.2"
  10810. show = "0" >
  10811. <productMenu id="protocol"
  10812. type="0">
  10813. </productMenu>
  10814. <productMenu id="sip"
  10815. type="1" >
  10816. </productMenu>
  10817. <productMenu id="bluetoothIntercom"
  10818. type="1" >
  10819. </productMenu>
  10820. <productMenu id="phone"
  10821. type="2" >
  10822. </productMenu>
  10823. <productMenu id="fmradio"
  10824. type="3" >
  10825. </productMenu>
  10826. <productMenu id="deviceSetting"
  10827. type="1"
  10828. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  10829. </productMenu>
  10830. <productMenu id="quickGuide"
  10831. type="1"
  10832. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  10833. size="529KB" >
  10834. </productMenu>
  10835. <productMenu id="userGuide"
  10836. type="1"
  10837. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  10838. size="4.09MB" >
  10839. </productMenu>
  10840. <productID id="6112"
  10841. />
  10842. <productGroupable type="0"
  10843. />
  10844. </product>
  10845. <product id="DWO6A"
  10846. name="SEDICI DWO-6"
  10847. series="10"
  10848. latestVersion="1.0.2"
  10849. show = "0" >
  10850. <productMenu id="protocol"
  10851. type="0">
  10852. </productMenu>
  10853. <productMenu id="sip"
  10854. type="1" >
  10855. </productMenu>
  10856. <productMenu id="bluetoothIntercom"
  10857. type="1" >
  10858. </productMenu>
  10859. <productMenu id="phone"
  10860. type="2" >
  10861. </productMenu>
  10862. <productMenu id="fmradio"
  10863. type="3" >
  10864. </productMenu>
  10865. <productMenu id="deviceSetting"
  10866. type="1"
  10867. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  10868. </productMenu>
  10869. <productMenu id="quickGuide"
  10870. type="1"
  10871. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  10872. size="522KB" >
  10873. </productMenu>
  10874. <productMenu id="userGuide"
  10875. type="1"
  10876. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  10877. size="2.71MB" >
  10878. </productMenu>
  10879. <productID id="6114"
  10880. />
  10881. <productGroupable type="0"
  10882. />
  10883. </product>
  10884. <product id="3SPLUS"
  10885. name="ZILL"
  10886. series="3"
  10887. latestVersion="1.0.4"
  10888. show = "0" >
  10889. <productMenu id="protocol"
  10890. type="0">
  10891. </productMenu>
  10892. <productMenu id="sip"
  10893. type="1" >
  10894. </productMenu>
  10895. <productMenu id="bluetoothIntercom"
  10896. type="1" >
  10897. </productMenu>
  10898. <productMenu id="deviceSetting"
  10899. type="1"
  10900. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  10901. </productMenu>
  10902. <productMenu id="quickGuide"
  10903. type="1"
  10904. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10905. size="842KB" >
  10906. </productMenu>
  10907. <productMenu id="userGuide"
  10908. type="1"
  10909. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  10910. size="1.02MB" >
  10911. </productMenu>
  10912. <productID id="6335"
  10913. />
  10914. <productGroupable type="0"
  10915. />
  10916. </product>
  10917. <product id="HD50S"
  10918. name="Boom! Audio 30K"
  10919. series="30"
  10920. latestVersion="3.4"
  10921. show = "0" >
  10922. <productMenu id="protocol"
  10923. type="1"
  10924. url="0">
  10925. </productMenu>
  10926. <productMenu id="wa"
  10927. type="0" >
  10928. </productMenu>
  10929. <productMenu id="sip"
  10930. type="1" >
  10931. </productMenu>
  10932. <productMenu id="meshIntercom"
  10933. type="20" >
  10934. <productMenuType version="2.9.9"
  10935. type="10"
  10936. />
  10937. </productMenu>
  10938. <productMenu id="bluetoothIntercom"
  10939. type="1" >
  10940. </productMenu>
  10941. <productMenu id="phone"
  10942. type="1" >
  10943. </productMenu>
  10944. <productMenu id="music"
  10945. type="1" >
  10946. </productMenu>
  10947. <productMenu id="fmradio"
  10948. type="1" >
  10949. </productMenu>
  10950. <productMenu id="deviceSetting"
  10951. type="1"
  10952. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  10953. <productMenuURL version="3.2"
  10954. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  10955. />
  10956. <productMenuURL version="3.0"
  10957. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  10958. />
  10959. <productMenuURL version="2.2"
  10960. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  10961. />
  10962. </productMenu>
  10963. <productMenu id="quickGuide"
  10964. type="1"
  10965. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  10966. size="1.06MB" >
  10967. </productMenu>
  10968. <productMenu id="userGuide"
  10969. type="1"
  10970. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  10971. size="3.15MB" >
  10972. </productMenu>
  10973. <productMenu id="volume"
  10974. type="1" >
  10975. </productMenu>
  10976. <productID id="3112"
  10977. />
  10978. <productGroupable type="0"
  10979. />
  10980. </product>
  10981. <product id="HD50S"
  10982. name="Boom! Audio N02"
  10983. series="30"
  10984. latestVersion="3.1"
  10985. show = "0" >
  10986. <productMenu id="protocol"
  10987. type="1"
  10988. url="0">
  10989. </productMenu>
  10990. <productMenu id="wa"
  10991. type="2" >
  10992. </productMenu>
  10993. <productMenu id="sip"
  10994. type="1" >
  10995. </productMenu>
  10996. <productMenu id="meshIntercom"
  10997. type="20" >
  10998. <productMenuType version="2.9.9"
  10999. type="10"
  11000. />
  11001. </productMenu>
  11002. <productMenu id="bluetoothIntercom"
  11003. type="1" >
  11004. </productMenu>
  11005. <productMenu id="phone"
  11006. type="1" >
  11007. </productMenu>
  11008. <productMenu id="music"
  11009. type="1" >
  11010. </productMenu>
  11011. <productMenu id="fmradio"
  11012. type="1" >
  11013. </productMenu>
  11014. <productMenu id="deviceSetting"
  11015. type="1"
  11016. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  11017. <productMenuURL version="2.2"
  11018. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11019. />
  11020. </productMenu>
  11021. <productMenu id="quickGuide"
  11022. type="1"
  11023. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  11024. size="1.06MB" >
  11025. </productMenu>
  11026. <productMenu id="userGuide"
  11027. type="1"
  11028. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  11029. size="3.15MB" >
  11030. </productMenu>
  11031. <productMenu id="volume"
  11032. type="2" >
  11033. </productMenu>
  11034. <productID id="3114"
  11035. />
  11036. <productGroupable type="0"
  11037. />
  11038. </product>
  11039. <product id="HD50S"
  11040. name="Boom Audio 20S"
  11041. series="50"
  11042. latestVersion="2.5.2"
  11043. show = "0" >
  11044. <productMenu id="protocol"
  11045. type="0">
  11046. </productMenu>
  11047. <productMenu id="sip"
  11048. type="1" >
  11049. <productMenuType version="1.0"
  11050. type="0"
  11051. />
  11052. </productMenu>
  11053. <productMenu id="bluetoothIntercom"
  11054. type="1" >
  11055. <productMenuType version="1.0"
  11056. type="0"
  11057. />
  11058. </productMenu>
  11059. <productMenu id="intercomSetting"
  11060. type="1" >
  11061. </productMenu>
  11062. <productMenu id="phone"
  11063. type="2" >
  11064. </productMenu>
  11065. <productMenu id="fmradio"
  11066. type="3" >
  11067. </productMenu>
  11068. <productMenu id="deviceSetting"
  11069. type="1"
  11070. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11071. <productMenuURL version="2.4"
  11072. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11073. />
  11074. <productMenuURL version="1.5"
  11075. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11076. />
  11077. <productMenuURL version="1.4.1"
  11078. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11079. />
  11080. <productMenuURL version="1.1"
  11081. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11082. />
  11083. <productMenuURL version="1.0"
  11084. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11085. />
  11086. </productMenu>
  11087. <productMenu id="quickGuide"
  11088. type="1"
  11089. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11090. size="264KB" >
  11091. </productMenu>
  11092. <productMenu id="userGuide"
  11093. type="1"
  11094. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11095. size="3.09MB" >
  11096. </productMenu>
  11097. <productMenu id="connectGuide"
  11098. type="1"
  11099. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  11100. size="1.12MB" >
  11101. </productMenu>
  11102. <productID id="4210"
  11103. />
  11104. <productProductKey key="11"
  11105. />
  11106. <productID id="4230"
  11107. />
  11108. <productProductKey key="11"
  11109. />
  11110. <productGroupable type="1"
  11111. />
  11112. </product>
  11113. <product id="HD50S"
  11114. name="Boom Audio 20S EVO"
  11115. series="50"
  11116. latestVersion="2.5.2"
  11117. show = "0" >
  11118. <productMenu id="protocol"
  11119. type="0">
  11120. </productMenu>
  11121. <productMenu id="sip"
  11122. type="1" >
  11123. <productMenuType version="1.0"
  11124. type="0"
  11125. />
  11126. </productMenu>
  11127. <productMenu id="bluetoothIntercom"
  11128. type="1" >
  11129. <productMenuType version="1.0"
  11130. type="0"
  11131. />
  11132. </productMenu>
  11133. <productMenu id="intercomSetting"
  11134. type="1" >
  11135. </productMenu>
  11136. <productMenu id="phone"
  11137. type="2" >
  11138. </productMenu>
  11139. <productMenu id="fmradio"
  11140. type="3" >
  11141. </productMenu>
  11142. <productMenu id="deviceSetting"
  11143. type="1"
  11144. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11145. <productMenuURL version="2.4"
  11146. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11147. />
  11148. <productMenuURL version="1.5"
  11149. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11150. />
  11151. <productMenuURL version="1.4.1"
  11152. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11153. />
  11154. <productMenuURL version="1.1"
  11155. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11156. />
  11157. <productMenuURL version="1.0"
  11158. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11159. />
  11160. </productMenu>
  11161. <productMenu id="quickGuide"
  11162. type="1"
  11163. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11164. size="321KB" >
  11165. </productMenu>
  11166. <productMenu id="userGuide"
  11167. type="1"
  11168. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11169. size="2.46MB" >
  11170. </productMenu>
  11171. <productID id="4230"
  11172. />
  11173. <productProductKey key="27"
  11174. />
  11175. <productGroupable type="1"
  11176. />
  11177. </product>
  11178. <product id="HD50S"
  11179. name="Boom! Audio 10S"
  11180. series="50"
  11181. latestVersion="1.1.3"
  11182. show = "0" >
  11183. <productMenu id="protocol"
  11184. type="0">
  11185. </productMenu>
  11186. <productMenu id="sip"
  11187. type="1" >
  11188. </productMenu>
  11189. <productMenu id="bluetoothIntercom"
  11190. type="1" >
  11191. </productMenu>
  11192. <productMenu id="phone"
  11193. type="2" >
  11194. </productMenu>
  11195. <productMenu id="fmradio"
  11196. type="3" >
  11197. </productMenu>
  11198. <productMenu id="deviceSetting"
  11199. type="1"
  11200. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  11201. </productMenu>
  11202. <productMenu id="quickGuide"
  11203. type="1"
  11204. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11205. size="538KB" >
  11206. </productMenu>
  11207. <productMenu id="userGuide"
  11208. type="1"
  11209. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11210. size="1.55MB" >
  11211. </productMenu>
  11212. <productID id="5532"
  11213. />
  11214. <productGroupable type="0"
  11215. />
  11216. </product>
  11217. <product id="HD50S"
  11218. name="Boom! Audio N01 10R"
  11219. series="50"
  11220. latestVersion="1.1.3"
  11221. show = "0" >
  11222. <productMenu id="protocol"
  11223. type="0">
  11224. </productMenu>
  11225. <productMenu id="sip"
  11226. type="1" >
  11227. </productMenu>
  11228. <productMenu id="bluetoothIntercom"
  11229. type="1" >
  11230. </productMenu>
  11231. <productMenu id="phone"
  11232. type="2" >
  11233. </productMenu>
  11234. <productMenu id="fmradio"
  11235. type="3" >
  11236. </productMenu>
  11237. <productMenu id="deviceSetting"
  11238. type="1"
  11239. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  11240. </productMenu>
  11241. <productMenu id="quickGuide"
  11242. type="1"
  11243. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  11244. size="766KB" >
  11245. </productMenu>
  11246. <productMenu id="userGuide"
  11247. type="1"
  11248. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  11249. size="1.45MB" >
  11250. </productMenu>
  11251. <productID id="5522"
  11252. />
  11253. <productGroupable type="0"
  11254. />
  11255. </product>
  11256. <product id="HD50S"
  11257. name="OUTRUSH-R N03"
  11258. series="50"
  11259. latestVersion="1.2.1"
  11260. show = "-1" >
  11261. <productMenu id="protocol"
  11262. type="0">
  11263. </productMenu>
  11264. <productMenu id="sip"
  11265. type="1" >
  11266. </productMenu>
  11267. <productMenu id="bluetoothIntercom"
  11268. type="1" >
  11269. </productMenu>
  11270. <productMenu id="phone"
  11271. type="2" >
  11272. </productMenu>
  11273. <productMenu id="fmradio"
  11274. type="3" >
  11275. </productMenu>
  11276. <productMenu id="deviceSetting"
  11277. type="1"
  11278. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  11279. </productMenu>
  11280. <productMenu id="userGuide"
  11281. type="1"
  11282. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  11283. size="660KB" >
  11284. </productMenu>
  11285. <productID id="5434"
  11286. />
  11287. <productGroupable type="0"
  11288. />
  11289. </product>
  11290. <product id="HD50S"
  11291. name="OUTRUSH-R N03"
  11292. series="50"
  11293. latestVersion="2.0"
  11294. show = "0" >
  11295. <productMenu id="protocol"
  11296. type="3" >
  11297. </productMenu>
  11298. <productMenu id="sip"
  11299. type="1" >
  11300. </productMenu>
  11301. <productMenu id="bluetoothIntercom"
  11302. type="1" >
  11303. </productMenu>
  11304. <productMenu id="phone"
  11305. type="1" >
  11306. </productMenu>
  11307. <productMenu id="fmradio"
  11308. type="1" >
  11309. </productMenu>
  11310. <productMenu id="deviceSetting"
  11311. type="1"
  11312. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  11313. </productMenu>
  11314. <productMenu id="userGuide"
  11315. type="1"
  11316. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  11317. size="1.14MB" >
  11318. </productMenu>
  11319. <productID id="5441"
  11320. />
  11321. <productGroupable type="0"
  11322. />
  11323. </product>
  11324. <product id="5R"
  11325. name="5R"
  11326. series="5"
  11327. latestVersion="1.0.1"
  11328. show = "1" >
  11329. <productMenu id="protocol"
  11330. type="3" >
  11331. </productMenu>
  11332. <productMenu id="sip"
  11333. type="1" >
  11334. </productMenu>
  11335. <productMenu id="bluetoothIntercom"
  11336. type="1" >
  11337. </productMenu>
  11338. <productMenu id="phone"
  11339. type="1" >
  11340. </productMenu>
  11341. <productMenu id="fmradio"
  11342. type="1" >
  11343. </productMenu>
  11344. <productMenu id="deviceSetting"
  11345. type="1"
  11346. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11347. </productMenu>
  11348. <productMenu id="quickGuide"
  11349. type="0"
  11350. url=""
  11351. size="934KB" >
  11352. </productMenu>
  11353. <productMenu id="userGuide"
  11354. type="1"
  11355. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  11356. size="1.14MB" >
  11357. </productMenu>
  11358. <productMenu id="connectGuide"
  11359. type="1"
  11360. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  11361. size="1.12MB" >
  11362. </productMenu>
  11363. <productID id="5591"
  11364. />
  11365. <productGroupable type="0"
  11366. />
  11367. </product>
  11368. <product id="5R"
  11369. name="5R LITE"
  11370. series="5"
  11371. latestVersion="1.0.1"
  11372. show = "1" >
  11373. <productMenu id="protocol"
  11374. type="3" >
  11375. </productMenu>
  11376. <productMenu id="sip"
  11377. type="1" >
  11378. </productMenu>
  11379. <productMenu id="bluetoothIntercom"
  11380. type="1" >
  11381. </productMenu>
  11382. <productMenu id="phone"
  11383. type="1" >
  11384. </productMenu>
  11385. <productMenu id="fmradio"
  11386. type="1" >
  11387. </productMenu>
  11388. <productMenu id="deviceSetting"
  11389. type="1"
  11390. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  11391. </productMenu>
  11392. <productMenu id="quickGuide"
  11393. type="0"
  11394. url=""
  11395. size="934KB" >
  11396. </productMenu>
  11397. <productMenu id="userGuide"
  11398. type="1"
  11399. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  11400. size="1.14MB" >
  11401. </productMenu>
  11402. <productMenu id="connectGuide"
  11403. type="1"
  11404. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  11405. size="1.12MB" >
  11406. </productMenu>
  11407. <productID id="5592"
  11408. />
  11409. <productGroupable type="0"
  11410. />
  11411. </product>
  11412. <product id="50RLE"
  11413. name="50R LE"
  11414. series="50"
  11415. latestVersion="1.1"
  11416. show = "0" >
  11417. <productMenu id="protocol"
  11418. type="2" >
  11419. </productMenu>
  11420. <productMenu id="alexa"
  11421. type="0" >
  11422. </productMenu>
  11423. <productMenu id="sip"
  11424. type="1" >
  11425. </productMenu>
  11426. <productMenu id="meshIntercom"
  11427. type="30" >
  11428. </productMenu>
  11429. <productMenu id="meshIntercom+"
  11430. type="3"
  11431. url="2" >
  11432. <productMenuType version="1.0.9"
  11433. type="2"
  11434. />
  11435. </productMenu>
  11436. <productMenu id="waveIntercom"
  11437. type="1" >
  11438. <productMenuType version="1.0.9"
  11439. type="0"
  11440. />
  11441. </productMenu>
  11442. <productMenu id="bluetoothIntercom"
  11443. type="1" >
  11444. </productMenu>
  11445. <productMenu id="phone"
  11446. type="1" >
  11447. </productMenu>
  11448. <productMenu id="music"
  11449. type="1" >
  11450. </productMenu>
  11451. <productMenu id="fmradio"
  11452. type="0" >
  11453. </productMenu>
  11454. <productMenu id="deviceSetting"
  11455. type="1"
  11456. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  11457. <productMenuURL version="1.0.9"
  11458. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  11459. />
  11460. </productMenu>
  11461. <productMenu id="quickGuide"
  11462. type="0"
  11463. url=""
  11464. size="344KB" >
  11465. </productMenu>
  11466. <productMenu id="userGuide"
  11467. type="0"
  11468. url=""
  11469. size="3.41MB" >
  11470. </productMenu>
  11471. <productMenu id="volume"
  11472. type="11" >
  11473. </productMenu>
  11474. <productMenu id="battery"
  11475. type="1" >
  11476. </productMenu>
  11477. <productID id="3223"
  11478. />
  11479. <productGroupable type="0"
  11480. />
  11481. </product>
  11482. <product id="5RLOUIS"
  11483. name="5R LOUIS EDITION"
  11484. series="5"
  11485. latestVersion="1.0"
  11486. show = "-1" >
  11487. <productMenu id="protocol"
  11488. type="3" >
  11489. </productMenu>
  11490. <productMenu id="sip"
  11491. type="1" >
  11492. </productMenu>
  11493. <productMenu id="bluetoothIntercom"
  11494. type="1" >
  11495. </productMenu>
  11496. <productMenu id="phone"
  11497. type="1" >
  11498. </productMenu>
  11499. <productMenu id="fmradio"
  11500. type="1" >
  11501. </productMenu>
  11502. <productMenu id="deviceSetting"
  11503. type="1"
  11504. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11505. </productMenu>
  11506. <productMenu id="quickGuide"
  11507. type="0"
  11508. url=""
  11509. size="934KB" >
  11510. </productMenu>
  11511. <productMenu id="userGuide"
  11512. type="0"
  11513. url=""
  11514. size="1.14MB" >
  11515. </productMenu>
  11516. <productID id="5597"
  11517. />
  11518. <productGroupable type="0"
  11519. />
  11520. </product>
  11521. <product id="5S"
  11522. name="Ridekont 5S"
  11523. series="5"
  11524. latestVersion="2.3"
  11525. show = "-1" >
  11526. <productMenu id="protocol"
  11527. type="3" >
  11528. </productMenu>
  11529. <productMenu id="sip"
  11530. type="1" >
  11531. </productMenu>
  11532. <productMenu id="bluetoothIntercom"
  11533. type="1" >
  11534. </productMenu>
  11535. <productMenu id="phone"
  11536. type="1" >
  11537. </productMenu>
  11538. <productMenu id="fmradio"
  11539. type="0" >
  11540. </productMenu>
  11541. <productMenu id="deviceSetting"
  11542. type="1"
  11543. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11544. </productMenu>
  11545. <productMenu id="quickGuide"
  11546. type="0"
  11547. url=""
  11548. size="934KB" >
  11549. </productMenu>
  11550. <productMenu id="userGuide"
  11551. type="1"
  11552. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  11553. size="1.14MB" >
  11554. </productMenu>
  11555. <productID id="5589"
  11556. />
  11557. <productGroupable type="0"
  11558. />
  11559. </product>
  11560. <product id="5R"
  11561. name="Ridekont 5R"
  11562. series="5"
  11563. latestVersion="1.0"
  11564. show = "0" >
  11565. <productMenu id="protocol"
  11566. type="3" >
  11567. </productMenu>
  11568. <productMenu id="sip"
  11569. type="1" >
  11570. </productMenu>
  11571. <productMenu id="bluetoothIntercom"
  11572. type="1" >
  11573. </productMenu>
  11574. <productMenu id="phone"
  11575. type="1" >
  11576. </productMenu>
  11577. <productMenu id="fmradio"
  11578. type="1" >
  11579. </productMenu>
  11580. <productMenu id="deviceSetting"
  11581. type="1"
  11582. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11583. </productMenu>
  11584. <productMenu id="quickGuide"
  11585. type="1"
  11586. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  11587. size="934KB" >
  11588. </productMenu>
  11589. <productMenu id="userGuide"
  11590. type="1"
  11591. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  11592. size="1.14MB" >
  11593. </productMenu>
  11594. <productID id="5593"
  11595. />
  11596. <productGroupable type="0"
  11597. />
  11598. </product>
  11599. <product id="5R"
  11600. name="Ridekont 5R LITE"
  11601. series="5"
  11602. latestVersion="1.0"
  11603. show = "0" >
  11604. <productMenu id="protocol"
  11605. type="3" >
  11606. </productMenu>
  11607. <productMenu id="sip"
  11608. type="1" >
  11609. </productMenu>
  11610. <productMenu id="bluetoothIntercom"
  11611. type="1" >
  11612. </productMenu>
  11613. <productMenu id="phone"
  11614. type="1" >
  11615. </productMenu>
  11616. <productMenu id="fmradio"
  11617. type="1" >
  11618. </productMenu>
  11619. <productMenu id="deviceSetting"
  11620. type="1"
  11621. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  11622. </productMenu>
  11623. <productMenu id="quickGuide"
  11624. type="0"
  11625. url=""
  11626. size="934KB" >
  11627. </productMenu>
  11628. <productMenu id="userGuide"
  11629. type="1"
  11630. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  11631. size="1.14MB" >
  11632. </productMenu>
  11633. <productID id="5594"
  11634. />
  11635. <productGroupable type="0"
  11636. />
  11637. </product>
  11638. <product id="SA30"
  11639. name="SA30"
  11640. series="SA"
  11641. latestVersion="1.0"
  11642. latestVersionVoicePrompt="0.14"
  11643. show = "-1" >
  11644. <productMenu id="protocol"
  11645. type="2" >
  11646. </productMenu>
  11647. <productMenu id="ota"
  11648. type="2" >
  11649. <otaPackages>
  11650. <package
  11651. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0-build1.img"
  11652. size="3144148"
  11653. />
  11654. </otaPackages>
  11655. </productMenu>
  11656. <productMenu id="meshIntercom"
  11657. type="30" >
  11658. </productMenu>
  11659. <productMenu id="meshIntercom+"
  11660. type="3"
  11661. url="2" >
  11662. </productMenu>
  11663. <productMenu id="phone"
  11664. type="1" >
  11665. </productMenu>
  11666. <productMenu id="music"
  11667. type="1" >
  11668. </productMenu>
  11669. <productMenu id="musicSharing"
  11670. type="0" >
  11671. </productMenu>
  11672. <productMenu id="deviceSetting"
  11673. type="1"
  11674. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  11675. </productMenu>
  11676. <productMenu id="quickGuide"
  11677. type="0"
  11678. url=""
  11679. size="1.12MB" >
  11680. </productMenu>
  11681. <productMenu id="userGuide"
  11682. type="1"
  11683. url=""
  11684. size="2.0MB" >
  11685. </productMenu>
  11686. <productMenu id="videoGuide"
  11687. type="0"
  11688. url=""
  11689. size="3.41MB" >
  11690. </productMenu>
  11691. <productMenu id="volume"
  11692. type="12" >
  11693. </productMenu>
  11694. <productMenu id="battery"
  11695. type="1" >
  11696. </productMenu>
  11697. <productID id="6852"
  11698. />
  11699. <productGroupable type="0"
  11700. />
  11701. </product>
  11702. <product id="I30"
  11703. name="I30"
  11704. series="I"
  11705. latestVersion="1.0"
  11706. latestVersionVoicePrompt="0.1"
  11707. show = "-1" >
  11708. <productMenu id="protocol"
  11709. type="2" >
  11710. </productMenu>
  11711. <productMenu id="ota"
  11712. type="2" >
  11713. <otaPackages>
  11714. <package
  11715. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0-build0.img"
  11716. size="3144148"
  11717. />
  11718. </otaPackages>
  11719. </productMenu>
  11720. <productMenu id="meshIntercom"
  11721. type="30" >
  11722. </productMenu>
  11723. <productMenu id="meshIntercom+"
  11724. type="3"
  11725. url="2" >
  11726. </productMenu>
  11727. <productMenu id="phone"
  11728. type="1" >
  11729. </productMenu>
  11730. <productMenu id="music"
  11731. type="1" >
  11732. </productMenu>
  11733. <productMenu id="musicSharing"
  11734. type="0" >
  11735. </productMenu>
  11736. <productMenu id="deviceSetting"
  11737. type="1"
  11738. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  11739. </productMenu>
  11740. <productMenu id="quickGuide"
  11741. type="0"
  11742. url=""
  11743. size="1.12MB" >
  11744. </productMenu>
  11745. <productMenu id="userGuide"
  11746. type="1"
  11747. url=""
  11748. size="2.10MB" >
  11749. </productMenu>
  11750. <productMenu id="videoGuide"
  11751. type="0"
  11752. url=""
  11753. size="3.11MB" >
  11754. </productMenu>
  11755. <productMenu id="volume"
  11756. type="12" >
  11757. </productMenu>
  11758. <productMenu id="battery"
  11759. type="1" >
  11760. </productMenu>
  11761. <productID id="6853"
  11762. />
  11763. <productGroupable type="0"
  11764. />
  11765. </product>
  11766. <product id="C30"
  11767. name="SENA C30"
  11768. series="C"
  11769. latestVersion="1.2"
  11770. latestVersionVoicePrompt="0.12"
  11771. show = "1" >
  11772. <productMenu id="protocol"
  11773. type="2" >
  11774. </productMenu>
  11775. <productMenu id="alexa"
  11776. type="0" >
  11777. </productMenu>
  11778. <productMenu id="ota"
  11779. type="2" >
  11780. <otaPackages>
  11781. <package
  11782. url="https://api.sena.com/support/OTA/C30/SENA_C30-v1.2-build0.img"
  11783. size="3144148"
  11784. />
  11785. </otaPackages>
  11786. </productMenu>
  11787. <productMenu id="wa"
  11788. type="0" >
  11789. </productMenu>
  11790. <productMenu id="meshIntercom"
  11791. type="30" >
  11792. </productMenu>
  11793. <productMenu id="meshIntercom+"
  11794. type="3"
  11795. url="2" >
  11796. <productMenuType version="1.0.9"
  11797. type="2"
  11798. />
  11799. </productMenu>
  11800. <productMenu id="waveIntercom"
  11801. type="1" >
  11802. <productMenuType version="1.1.9"
  11803. type="0"
  11804. />
  11805. </productMenu>
  11806. <productMenu id="phone"
  11807. type="1" >
  11808. </productMenu>
  11809. <productMenu id="music"
  11810. type="1" >
  11811. </productMenu>
  11812. <productMenu id="musicSharing"
  11813. type="0" >
  11814. </productMenu>
  11815. <productMenu id="deviceSetting"
  11816. type="1"
  11817. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml" >
  11818. <productMenuURL version="1.1.3"
  11819. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  11820. />
  11821. <productMenuURL version="1.0.9"
  11822. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  11823. />
  11824. </productMenu>
  11825. <productMenu id="quickGuide"
  11826. type="1"
  11827. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  11828. size="1.12MB" >
  11829. </productMenu>
  11830. <productMenu id="userGuide"
  11831. type="0"
  11832. url=""
  11833. size="2.0MB" >
  11834. </productMenu>
  11835. <productMenu id="videoGuide"
  11836. type="0"
  11837. url=""
  11838. size="3.41MB" >
  11839. </productMenu>
  11840. <productMenu id="volume"
  11841. type="12" >
  11842. </productMenu>
  11843. <productMenu id="battery"
  11844. type="1" >
  11845. </productMenu>
  11846. <productID id="683A"
  11847. />
  11848. <productGroupable type="0"
  11849. />
  11850. </product>
  11851. <product id="C20"
  11852. name="C20"
  11853. series="C"
  11854. latestVersion="1.0"
  11855. show = "1" >
  11856. <productMenu id="protocol"
  11857. type="3" >
  11858. </productMenu>
  11859. <productMenu id="sip"
  11860. type="1" >
  11861. </productMenu>
  11862. <productMenu id="bluetoothIntercom"
  11863. type="1" >
  11864. </productMenu>
  11865. <productMenu id="phone"
  11866. type="1" >
  11867. </productMenu>
  11868. <productMenu id="deviceSetting"
  11869. type="1"
  11870. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  11871. </productMenu>
  11872. <productMenu id="quickGuide"
  11873. type="1"
  11874. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  11875. size="934KB" >
  11876. </productMenu>
  11877. <productMenu id="userGuide"
  11878. type="1"
  11879. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  11880. size="1.14MB" >
  11881. </productMenu>
  11882. <productID id="3701"
  11883. />
  11884. <productGroupable type="0"
  11885. />
  11886. </product>
  11887. <product id="C10"
  11888. name="C10"
  11889. series="C"
  11890. latestVersion="1.4.4"
  11891. show = "1" >
  11892. <productMenu id="protocol"
  11893. type="3" >
  11894. </productMenu>
  11895. <productMenu id="sip"
  11896. type="1" >
  11897. </productMenu>
  11898. <productMenu id="bluetoothIntercom"
  11899. type="1" >
  11900. </productMenu>
  11901. <productMenu id="phone"
  11902. type="1" >
  11903. </productMenu>
  11904. <productMenu id="fmradio"
  11905. type="0" >
  11906. </productMenu>
  11907. <productMenu id="deviceSetting"
  11908. type="1"
  11909. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  11910. </productMenu>
  11911. <productMenu id="userGuide"
  11912. type="1"
  11913. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  11914. size="1.14MB" >
  11915. </productMenu>
  11916. <productID id="5595"
  11917. />
  11918. <productGroupable type="0"
  11919. />
  11920. </product>
  11921. <product id="J30"
  11922. name="J30"
  11923. series="J"
  11924. latestVersion="1.2.1"
  11925. latestVersionVoicePrompt="0.13"
  11926. show = "0" >
  11927. <productMenu id="protocol"
  11928. type="2" >
  11929. </productMenu>
  11930. <productMenu id="alexa"
  11931. type="0" >
  11932. </productMenu>
  11933. <productMenu id="ota"
  11934. type="2" >
  11935. <otaPackages>
  11936. <package
  11937. url="https://api.sena.com/support/OTA/J30/SENA_J30-v1.2.1-build0.img"
  11938. size="3144148"
  11939. />
  11940. </otaPackages>
  11941. </productMenu>
  11942. <productMenu id="wa"
  11943. type="0" >
  11944. </productMenu>
  11945. <productMenu id="meshIntercom"
  11946. type="30" >
  11947. </productMenu>
  11948. <productMenu id="meshIntercom+"
  11949. type="3"
  11950. url="2" >
  11951. <productMenuType version="1.0.9"
  11952. type="2"
  11953. />
  11954. </productMenu>
  11955. <productMenu id="waveIntercom"
  11956. type="1" >
  11957. <productMenuType version="1.1.9"
  11958. type="0"
  11959. />
  11960. </productMenu>
  11961. <productMenu id="phone"
  11962. type="1" >
  11963. </productMenu>
  11964. <productMenu id="music"
  11965. type="1" >
  11966. </productMenu>
  11967. <productMenu id="musicSharing"
  11968. type="0" >
  11969. </productMenu>
  11970. <productMenu id="deviceSetting"
  11971. type="1"
  11972. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  11973. <productMenuURL version="1.0.9"
  11974. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  11975. />
  11976. </productMenu>
  11977. <productMenu id="quickGuide"
  11978. type="0"
  11979. url=""
  11980. size="1.12MB" >
  11981. </productMenu>
  11982. <productMenu id="userGuide"
  11983. type="1"
  11984. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  11985. size="2.0MB" >
  11986. </productMenu>
  11987. <productMenu id="videoGuide"
  11988. type="0"
  11989. url=""
  11990. size="3.41MB" >
  11991. </productMenu>
  11992. <productMenu id="volume"
  11993. type="12" >
  11994. </productMenu>
  11995. <productMenu id="battery"
  11996. type="1" >
  11997. </productMenu>
  11998. <productID id="6848"
  11999. />
  12000. <productGroupable type="0"
  12001. />
  12002. </product>
  12003. <product id="J10"
  12004. name="J10"
  12005. series="5"
  12006. latestVersion="1.1.4"
  12007. show = "0" >
  12008. <productMenu id="protocol"
  12009. type="3" >
  12010. </productMenu>
  12011. <productMenu id="sip"
  12012. type="1" >
  12013. </productMenu>
  12014. <productMenu id="bluetoothIntercom"
  12015. type="1" >
  12016. </productMenu>
  12017. <productMenu id="phone"
  12018. type="1" >
  12019. </productMenu>
  12020. <productMenu id="fmradio"
  12021. type="0" >
  12022. </productMenu>
  12023. <productMenu id="deviceSetting"
  12024. type="1"
  12025. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12026. </productMenu>
  12027. <productMenu id="userGuide"
  12028. type="1"
  12029. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  12030. size="1.14MB" >
  12031. </productMenu>
  12032. <productID id="5598"
  12033. />
  12034. <productGroupable type="0"
  12035. />
  12036. </product>
  12037. <product id="B20"
  12038. name="B20"
  12039. series="B"
  12040. latestVersion="1.1.1"
  12041. latestVersionVoicePrompt="0.13"
  12042. show = "0" >
  12043. <productMenu id="protocol"
  12044. type="2" >
  12045. </productMenu>
  12046. <productMenu id="alexa"
  12047. type="0" >
  12048. </productMenu>
  12049. <productMenu id="ota"
  12050. type="2" >
  12051. <otaPackages>
  12052. <package
  12053. url="https://api.sena.com/support/OTA/B20/SENA_B20-v1.1.1-build0.img"
  12054. size="3144148"
  12055. />
  12056. </otaPackages>
  12057. </productMenu>
  12058. <productMenu id="wa"
  12059. type="0" >
  12060. </productMenu>
  12061. <productMenu id="meshIntercom"
  12062. type="30" >
  12063. </productMenu>
  12064. <productMenu id="phone"
  12065. type="1" >
  12066. </productMenu>
  12067. <productMenu id="music"
  12068. type="1" >
  12069. </productMenu>
  12070. <productMenu id="musicSharing"
  12071. type="0" >
  12072. </productMenu>
  12073. <productMenu id="deviceSetting"
  12074. type="1"
  12075. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  12076. <productMenuURL version="1.0.9"
  12077. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  12078. />
  12079. </productMenu>
  12080. <productMenu id="quickGuide"
  12081. type="0"
  12082. url=""
  12083. size="1.12MB" >
  12084. </productMenu>
  12085. <productMenu id="userGuide"
  12086. type="1"
  12087. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  12088. size="2.0MB" >
  12089. </productMenu>
  12090. <productMenu id="videoGuide"
  12091. type="0"
  12092. url=""
  12093. size="3.41MB" >
  12094. </productMenu>
  12095. <productMenu id="volume"
  12096. type="12" >
  12097. </productMenu>
  12098. <productMenu id="battery"
  12099. type="1" >
  12100. </productMenu>
  12101. <productID id="6847"
  12102. />
  12103. <productGroupable type="0"
  12104. />
  12105. </product>
  12106. <product id="B10"
  12107. name="B10"
  12108. series="5"
  12109. latestVersion="1.2.4"
  12110. show = "0" >
  12111. <productMenu id="protocol"
  12112. type="3" >
  12113. </productMenu>
  12114. <productMenu id="sip"
  12115. type="1" >
  12116. </productMenu>
  12117. <productMenu id="bluetoothIntercom"
  12118. type="1" >
  12119. </productMenu>
  12120. <productMenu id="phone"
  12121. type="1" >
  12122. </productMenu>
  12123. <productMenu id="fmradio"
  12124. type="0" >
  12125. </productMenu>
  12126. <productMenu id="deviceSetting"
  12127. type="1"
  12128. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  12129. </productMenu>
  12130. <productMenu id="userGuide"
  12131. type="1"
  12132. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  12133. size="1.14MB" >
  12134. </productMenu>
  12135. <productID id="5596"
  12136. />
  12137. <productGroupable type="0"
  12138. />
  12139. </product>
  12140. <product id="E30"
  12141. name="E30"
  12142. series="E"
  12143. latestVersion="1.1.1"
  12144. latestVersionVoicePrompt="0.13"
  12145. show = "0" >
  12146. <productMenu id="protocol"
  12147. type="2" >
  12148. </productMenu>
  12149. <productMenu id="alexa"
  12150. type="0" >
  12151. </productMenu>
  12152. <productMenu id="ota"
  12153. type="2" >
  12154. <otaPackages>
  12155. <package
  12156. url="https://api.sena.com/support/OTA/E30/SENA_E30-v1.1.1-build0.img"
  12157. size="3144148"
  12158. />
  12159. </otaPackages>
  12160. </productMenu>
  12161. <productMenu id="wa"
  12162. type="0" >
  12163. </productMenu>
  12164. <productMenu id="meshIntercom"
  12165. type="30" >
  12166. </productMenu>
  12167. <productMenu id="meshIntercom+"
  12168. type="3"
  12169. url="2" >
  12170. </productMenu>
  12171. <productMenu id="waveIntercom"
  12172. type="1" >
  12173. <productMenuType version="1.0.9"
  12174. type="0"
  12175. />
  12176. </productMenu>
  12177. <productMenu id="phone"
  12178. type="1" >
  12179. </productMenu>
  12180. <productMenu id="music"
  12181. type="1" >
  12182. </productMenu>
  12183. <productMenu id="musicSharing"
  12184. type="0" >
  12185. </productMenu>
  12186. <productMenu id="deviceSetting"
  12187. type="1"
  12188. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  12189. </productMenu>
  12190. <productMenu id="quickGuide"
  12191. type="0"
  12192. url=""
  12193. size="1.12MB" >
  12194. </productMenu>
  12195. <productMenu id="userGuide"
  12196. type="1"
  12197. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  12198. size="2.0MB" >
  12199. </productMenu>
  12200. <productMenu id="videoGuide"
  12201. type="0"
  12202. url=""
  12203. size="3.41MB" >
  12204. </productMenu>
  12205. <productMenu id="volume"
  12206. type="12" >
  12207. </productMenu>
  12208. <productMenu id="battery"
  12209. type="1" >
  12210. </productMenu>
  12211. <productID id="6846"
  12212. />
  12213. <productGroupable type="0"
  12214. />
  12215. </product>
  12216. <product id="ACSRAM"
  12217. name="ACS-RAM"
  12218. series="ACS"
  12219. latestVersion="1.0.5"
  12220. show = "1" >
  12221. <productMenu id="protocol"
  12222. type="3" >
  12223. </productMenu>
  12224. <productMenu id="sip"
  12225. type="1" >
  12226. </productMenu>
  12227. <productMenu id="bluetoothIntercom"
  12228. type="1" >
  12229. </productMenu>
  12230. <productMenu id="deviceSetting"
  12231. type="1"
  12232. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  12233. </productMenu>
  12234. <productMenu id="quickGuide"
  12235. type="1"
  12236. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  12237. size="344KB" >
  12238. </productMenu>
  12239. <productMenu id="userGuide"
  12240. type="1"
  12241. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  12242. size="1.14MB" >
  12243. </productMenu>
  12244. <productMenu id="connectGuide"
  12245. type="1"
  12246. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  12247. size="1.12MB" >
  12248. </productMenu>
  12249. <productID id="3400"
  12250. />
  12251. <productGroupable type="0"
  12252. />
  12253. </product>
  12254. <product id="ACS10"
  12255. name="ACS10"
  12256. series="ACS"
  12257. latestVersion="1.0.2"
  12258. show = "1" >
  12259. <productMenu id="protocol"
  12260. type="0">
  12261. </productMenu>
  12262. <productMenu id="sip"
  12263. type="1" >
  12264. </productMenu>
  12265. <productMenu id="bluetoothIntercom"
  12266. type="1" >
  12267. </productMenu>
  12268. <productMenu id="phone"
  12269. type="2" >
  12270. </productMenu>
  12271. <productMenu id="deviceSetting"
  12272. type="1"
  12273. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  12274. </productMenu>
  12275. <productMenu id="quickGuide"
  12276. type="1"
  12277. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  12278. size="970KB" >
  12279. </productMenu>
  12280. <productMenu id="userGuide"
  12281. type="1"
  12282. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  12283. size="1.26MB" >
  12284. </productMenu>
  12285. <productMenu id="connectGuide"
  12286. type="1"
  12287. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  12288. size="1.12MB" >
  12289. </productMenu>
  12290. <productID id="3300"
  12291. />
  12292. <productGroupable type="0"
  12293. />
  12294. </product>
  12295. <product id="DWO7ProMesh"
  12296. name="DWO 7 Pro Mesh"
  12297. series="50"
  12298. latestVersion="1.1"
  12299. latestVersionVoicePrompt="0.9"
  12300. show = "0" >
  12301. <productMenu id="protocol"
  12302. type="2" >
  12303. </productMenu>
  12304. <productMenu id="alexa"
  12305. type="0" >
  12306. </productMenu>
  12307. <productMenu id="ota"
  12308. type="2" >
  12309. <otaPackages>
  12310. <package
  12311. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  12312. size="2945812"
  12313. />
  12314. </otaPackages>
  12315. </productMenu>
  12316. <productMenu id="wa"
  12317. type="0" >
  12318. </productMenu>
  12319. <productMenu id="meshIntercom"
  12320. type="20" >
  12321. </productMenu>
  12322. <productMenu id="meshIntercom+"
  12323. type="3"
  12324. url="2" >
  12325. <productMenuType version="1.0.9"
  12326. type="2"
  12327. />
  12328. <productMenuURL version="2.1.1"
  12329. url="0"
  12330. />
  12331. </productMenu>
  12332. <productMenu id="waveIntercom"
  12333. type="1" >
  12334. <productMenuType version="1.0.9"
  12335. type="0"
  12336. />
  12337. </productMenu>
  12338. <productMenu id="phone"
  12339. type="1" >
  12340. </productMenu>
  12341. <productMenu id="music"
  12342. type="1" >
  12343. </productMenu>
  12344. <productMenu id="fmradio"
  12345. type="1" >
  12346. </productMenu>
  12347. <productMenu id="musicSharing"
  12348. type="0" >
  12349. </productMenu>
  12350. <productMenu id="deviceSetting"
  12351. type="1"
  12352. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  12353. <productMenuURL version="1.0.9"
  12354. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  12355. />
  12356. </productMenu>
  12357. <productMenu id="quickGuide"
  12358. type="1"
  12359. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  12360. size="1.12MB" >
  12361. </productMenu>
  12362. <productMenu id="userGuide"
  12363. type="1"
  12364. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  12365. size="2.0MB" >
  12366. </productMenu>
  12367. <productMenu id="volume"
  12368. type="12" >
  12369. </productMenu>
  12370. <productMenu id="battery"
  12371. type="1" >
  12372. </productMenu>
  12373. <productID id="6806"
  12374. />
  12375. <productGroupable type="0"
  12376. />
  12377. </product>
  12378. <product id="ERA1X"
  12379. name="ERA 1 X"
  12380. series="UCOM"
  12381. latestVersion="0.2.1"
  12382. latestVersionMesh="0.19"
  12383. latestVersionVoicePrompt="1.2"
  12384. show = "-1" >
  12385. <productMenu id="protocol"
  12386. type="2" >
  12387. </productMenu>
  12388. <productMenu id="ota"
  12389. type="2" >
  12390. <otaLanguages>
  12391. <otaLanguage
  12392. id="0"
  12393. name="English"
  12394. package="0"
  12395. />
  12396. <otaLanguage
  12397. id="0"
  12398. name="French"
  12399. package="1"
  12400. />
  12401. <otaLanguage
  12402. id="0"
  12403. name="Spanish"
  12404. package="2"
  12405. />
  12406. <otaLanguage
  12407. id="0"
  12408. name="Italian"
  12409. package="3"
  12410. />
  12411. <otaLanguage
  12412. id="0"
  12413. name="German"
  12414. package="4"
  12415. />
  12416. <otaLanguage
  12417. id="0"
  12418. name="Dutch"
  12419. package="5"
  12420. />
  12421. <otaLanguage
  12422. id="0"
  12423. name="Russian"
  12424. package="6"
  12425. />
  12426. <otaLanguage
  12427. id="0"
  12428. name="Chinese"
  12429. package="7"
  12430. />
  12431. <otaLanguage
  12432. id="0"
  12433. name="Korean"
  12434. package="8"
  12435. />
  12436. <otaLanguage
  12437. id="0"
  12438. name="Japanese"
  12439. package="9"
  12440. />
  12441. <otaLanguage
  12442. id="0"
  12443. name="Finnish"
  12444. package="10"
  12445. />
  12446. <otaLanguage
  12447. id="0"
  12448. name="Polish"
  12449. package="11"
  12450. />
  12451. <otaLanguage
  12452. id="0"
  12453. name="Czech"
  12454. package="12"
  12455. />
  12456. <otaLanguage
  12457. id="0"
  12458. name="Danish"
  12459. package="13"
  12460. />
  12461. <otaLanguage
  12462. id="0"
  12463. name="Norwegian"
  12464. package="14"
  12465. />
  12466. <otaLanguage
  12467. id="0"
  12468. name="Swedish"
  12469. package="15"
  12470. />
  12471. <otaLanguage
  12472. id="0"
  12473. name="Turkish"
  12474. package="16"
  12475. />
  12476. <otaLanguage
  12477. id="0"
  12478. name="Hungarian"
  12479. package="17"
  12480. />
  12481. <otaLanguage
  12482. id="0"
  12483. name="Portuguese"
  12484. package="18"
  12485. />
  12486. <otaLanguage
  12487. id="0"
  12488. name="Hebrew"
  12489. package="19"
  12490. />
  12491. <otaLanguage
  12492. id="0"
  12493. name="Greek"
  12494. package="20"
  12495. />
  12496. </otaLanguages>
  12497. <otaPackages>
  12498. <package
  12499. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  12500. size="5183988"
  12501. />
  12502. <package
  12503. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  12504. size="5183988"
  12505. />
  12506. <package
  12507. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  12508. size="5183988"
  12509. />
  12510. <package
  12511. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  12512. size="5183988"
  12513. />
  12514. <package
  12515. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  12516. size="5183988"
  12517. />
  12518. <package
  12519. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  12520. size="5183988"
  12521. />
  12522. <package
  12523. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  12524. size="5183988"
  12525. />
  12526. <package
  12527. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  12528. size="5183988"
  12529. />
  12530. <package
  12531. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  12532. size="5183988"
  12533. />
  12534. <package
  12535. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  12536. size="5183988"
  12537. />
  12538. <package
  12539. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  12540. size="5183988"
  12541. />
  12542. <package
  12543. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  12544. size="5183988"
  12545. />
  12546. <package
  12547. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  12548. size="5183988"
  12549. />
  12550. <package
  12551. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  12552. size="5183988"
  12553. />
  12554. <package
  12555. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  12556. size="5183988"
  12557. />
  12558. <package
  12559. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  12560. size="5183988"
  12561. />
  12562. <package
  12563. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  12564. size="5183988"
  12565. />
  12566. <package
  12567. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  12568. size="5183988"
  12569. />
  12570. <package
  12571. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  12572. size="5183988"
  12573. />
  12574. <package
  12575. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  12576. size="5183988"
  12577. />
  12578. <package
  12579. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  12580. size="5183988"
  12581. />
  12582. </otaPackages>
  12583. </productMenu>
  12584. <productMenu id="wa"
  12585. type="0" >
  12586. </productMenu>
  12587. <productMenu id="sip"
  12588. type="1" >
  12589. </productMenu>
  12590. <productMenu id="led"
  12591. type="0" >
  12592. </productMenu>
  12593. <productMenu id="illusion"
  12594. type="1" >
  12595. </productMenu>
  12596. <productMenu id="meshIntercom"
  12597. type="30" >
  12598. </productMenu>
  12599. <productMenu id="meshIntercom+"
  12600. type="3"
  12601. url="2" >
  12602. </productMenu>
  12603. <productMenu id="waveIntercom"
  12604. type="0" >
  12605. </productMenu>
  12606. <productMenu id="bluetoothIntercom"
  12607. type="1" >
  12608. </productMenu>
  12609. <productMenu id="bluetoothIntercomGrouping"
  12610. type="0" >
  12611. </productMenu>
  12612. <productMenu id="fmradio"
  12613. type="1"
  12614. url="1" >
  12615. </productMenu>
  12616. <productMenu id="phone"
  12617. type="1" >
  12618. </productMenu>
  12619. <productMenu id="music"
  12620. type="1" >
  12621. </productMenu>
  12622. <productMenu id="musicSharing"
  12623. type="0" >
  12624. </productMenu>
  12625. <productMenu id="deviceSetting"
  12626. type="1"
  12627. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  12628. </productMenu>
  12629. <productMenu id="quickGuide"
  12630. type="0"
  12631. url=""
  12632. size="1.12MB" >
  12633. </productMenu>
  12634. <productMenu id="userGuide"
  12635. type="1"
  12636. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  12637. size="2.0MB" >
  12638. </productMenu>
  12639. <productMenu id="videoGuide"
  12640. type="0"
  12641. url=""
  12642. size="3.41MB" >
  12643. </productMenu>
  12644. <productMenu id="volume"
  12645. type="16" >
  12646. </productMenu>
  12647. <productMenu id="soundMode"
  12648. type="1" >
  12649. </productMenu>
  12650. <productMenu id="battery"
  12651. type="1" >
  12652. </productMenu>
  12653. <productID id="6A83"
  12654. />
  12655. <productGroupable type="0"
  12656. />
  12657. </product>
  12658. <product id="MeshStation"
  12659. name="Mesh Station"
  12660. series="50"
  12661. latestVersion="0.9"
  12662. show = "-1" >
  12663. <productMenu id="protocol"
  12664. type="2" >
  12665. </productMenu>
  12666. <productMenu id="meshIntercom"
  12667. type="20"
  12668. url="99" >
  12669. </productMenu>
  12670. <productID id="3161"
  12671. />
  12672. <productGroupable type="0"
  12673. />
  12674. </product>
  12675. </products>
  12676. </sna>