snm.xml 460 KB

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