snm.xml 395 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20250231" appVer="2.14" iosAppVer="2.14" central="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="60SEVO"
  122. name="60S EVO"
  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/60SEVO-v1.2.1-build1.img"
  198. size="5183988"
  199. />
  200. <package
  201. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-fr-FR.img"
  202. size="5183988"
  203. />
  204. <package
  205. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-es-ES.img"
  206. size="5183988"
  207. />
  208. <package
  209. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-it-IT.img"
  210. size="5183988"
  211. />
  212. <package
  213. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-de-DE.img"
  214. size="5183988"
  215. />
  216. <package
  217. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-nl-NL.img"
  218. size="5183988"
  219. />
  220. <package
  221. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-ru-RU.img"
  222. size="5183988"
  223. />
  224. <package
  225. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-cmn-CN.img"
  226. size="5183988"
  227. />
  228. <package
  229. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-ko-KR.img"
  230. size="5183988"
  231. />
  232. <package
  233. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-ja-JP.img"
  234. size="5183988"
  235. />
  236. <package
  237. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-fi-FI.img"
  238. size="5183988"
  239. />
  240. <package
  241. url="https://api.sena.com/support/OTA/60S/60SEVO-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="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.0_en_250808.pdf"
  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="1"
  303. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  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="6A15"
  316. />
  317. <productGroupable type="0"
  318. />
  319. </product>
  320. <product id="60S"
  321. name="60S"
  322. series="60"
  323. latestVersion="1.2.2"
  324. latestVersionMesh="1.2"
  325. latestVersionVoicePrompt="1.2"
  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/60S/60S_REV2-v1.2.2-build1.img"
  397. size="5183988"
  398. />
  399. <package
  400. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-build1-fr-FR.img"
  401. size="5183988"
  402. />
  403. <package
  404. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-build1-es-ES.img"
  405. size="5183988"
  406. />
  407. <package
  408. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-build1-it-IT.img"
  409. size="5183988"
  410. />
  411. <package
  412. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-build1-de-DE.img"
  413. size="5183988"
  414. />
  415. <package
  416. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-build1-nl-NL.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-build1-ru-RU.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-build1-cmn-CN.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-build1-ko-KR.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-build1-ja-JP.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-build1-fi-FI.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.2-build1-pl-PL.img"
  441. size="5183988"
  442. />
  443. </otaPackages>
  444. </productMenu>
  445. <productMenu id="sip"
  446. type="1" >
  447. </productMenu>
  448. <productMenu id="illusion"
  449. type="1" >
  450. </productMenu>
  451. <productMenu id="meshIntercom"
  452. type="30" >
  453. </productMenu>
  454. <productMenu id="meshIntercom+"
  455. type="3"
  456. url="2" >
  457. </productMenu>
  458. <productMenu id="waveIntercom"
  459. type="1" >
  460. </productMenu>
  461. <productMenu id="bluetoothIntercom"
  462. type="1"
  463. url="2" >
  464. </productMenu>
  465. <productMenu id="bluetoothIntercomGrouping"
  466. type="0" >
  467. </productMenu>
  468. <productMenu id="fmradio"
  469. type="1"
  470. url="1" >
  471. </productMenu>
  472. <productMenu id="phone"
  473. type="1" >
  474. </productMenu>
  475. <productMenu id="music"
  476. type="1" >
  477. </productMenu>
  478. <productMenu id="musicSharing"
  479. type="0" >
  480. </productMenu>
  481. <productMenu id="deviceSetting"
  482. type="1"
  483. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.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="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.0_en_250808.pdf"
  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="1"
  502. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  503. size="1.12MB" >
  504. </productMenu>
  505. <productMenu id="volume"
  506. type="16" >
  507. </productMenu>
  508. <productMenu id="soundMode"
  509. type="0" >
  510. </productMenu>
  511. <productMenu id="battery"
  512. type="1" >
  513. </productMenu>
  514. <productID id="6A0D"
  515. />
  516. <productGroupable type="0"
  517. />
  518. </product>
  519. <product id="60S"
  520. name="60S"
  521. series="60"
  522. latestVersion="1.2.2"
  523. latestVersionMesh="1.2"
  524. latestVersionVoicePrompt="1.2"
  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-v1.2.2-build1.img"
  596. size="5183988"
  597. />
  598. <package
  599. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-fr-FR.img"
  600. size="5183988"
  601. />
  602. <package
  603. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-es-ES.img"
  604. size="5183988"
  605. />
  606. <package
  607. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-it-IT.img"
  608. size="5183988"
  609. />
  610. <package
  611. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-de-DE.img"
  612. size="5183988"
  613. />
  614. <package
  615. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-nl-NL.img"
  616. size="5183988"
  617. />
  618. <package
  619. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-ru-RU.img"
  620. size="5183988"
  621. />
  622. <package
  623. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-cmn-CN.img"
  624. size="5183988"
  625. />
  626. <package
  627. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-ko-KR.img"
  628. size="5183988"
  629. />
  630. <package
  631. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-ja-JP.img"
  632. size="5183988"
  633. />
  634. <package
  635. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-fi-FI.img"
  636. size="5183988"
  637. />
  638. <package
  639. url="https://api.sena.com/support/OTA/60S/60S-v1.2.2-build1-pl-PL.img"
  640. size="5183988"
  641. />
  642. </otaPackages>
  643. </productMenu>
  644. <productMenu id="wa"
  645. type="0" >
  646. </productMenu>
  647. <productMenu id="sip"
  648. type="1" >
  649. </productMenu>
  650. <productMenu id="led"
  651. type="0" >
  652. </productMenu>
  653. <productMenu id="illusion"
  654. type="1" >
  655. </productMenu>
  656. <productMenu id="meshIntercom"
  657. type="30" >
  658. </productMenu>
  659. <productMenu id="meshIntercom+"
  660. type="3"
  661. url="2" >
  662. <productMenuURL version="1.0.2"
  663. url="10"
  664. />
  665. </productMenu>
  666. <productMenu id="waveIntercom"
  667. type="1" >
  668. <productMenuType version="1.0.9"
  669. type="0"
  670. />
  671. </productMenu>
  672. <productMenu id="bluetoothIntercom"
  673. type="1"
  674. url="2" >
  675. </productMenu>
  676. <productMenu id="bluetoothIntercomGrouping"
  677. type="0" >
  678. </productMenu>
  679. <productMenu id="fmradio"
  680. type="1"
  681. url="1" >
  682. </productMenu>
  683. <productMenu id="phone"
  684. type="1" >
  685. </productMenu>
  686. <productMenu id="music"
  687. type="1" >
  688. </productMenu>
  689. <productMenu id="musicSharing"
  690. type="0" >
  691. </productMenu>
  692. <productMenu id="deviceSetting"
  693. type="1"
  694. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  695. <productMenuURL version="1.0.2"
  696. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  697. />
  698. <productMenuURL version="1.0"
  699. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  700. />
  701. <productMenuURL version="0.9.11"
  702. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  703. />
  704. </productMenu>
  705. <productMenu id="quickGuide"
  706. type="0"
  707. url=""
  708. size="1.12MB" >
  709. </productMenu>
  710. <productMenu id="userGuide"
  711. type="1"
  712. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.0_en_250808.pdf"
  713. size="2.0MB" >
  714. </productMenu>
  715. <productMenu id="videoGuide"
  716. type="0"
  717. url=""
  718. size="3.41MB" >
  719. </productMenu>
  720. <productMenu id="connectGuide"
  721. type="1"
  722. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  723. size="1.12MB" >
  724. </productMenu>
  725. <productMenu id="volume"
  726. type="16" >
  727. <productMenuType version="0.9.11"
  728. type="13"
  729. />
  730. </productMenu>
  731. <productMenu id="soundMode"
  732. type="0" >
  733. <productMenuType version="0.9.11"
  734. type="0"
  735. />
  736. </productMenu>
  737. <productMenu id="battery"
  738. type="1" >
  739. </productMenu>
  740. <productID id="6A02"
  741. />
  742. <productGroupable type="0"
  743. />
  744. </product>
  745. <product id="60X"
  746. name="60X"
  747. series="60"
  748. latestVersion="0.2"
  749. latestVersionMesh="1.2"
  750. latestVersionVoicePrompt="1.2"
  751. show = "-1" >
  752. <productMenu id="protocol"
  753. type="2" >
  754. </productMenu>
  755. <productMenu id="ota"
  756. type="0" >
  757. <otaLanguages>
  758. <otaLanguage
  759. id="0"
  760. name="English"
  761. package="0"
  762. />
  763. <otaLanguage
  764. id="0"
  765. name="Korean"
  766. package="1"
  767. />
  768. </otaLanguages>
  769. <otaPackages>
  770. <package
  771. url="https://api.sena.com/support/test/60R-v0.7-build0_en_US.img"
  772. size="5183988"
  773. />
  774. <package
  775. url="https://api.sena.com/support/test/60R-v0.6.4-build0_kr_KR.img"
  776. size="5183988"
  777. />
  778. </otaPackages>
  779. </productMenu>
  780. <productMenu id="wa"
  781. type="0" >
  782. </productMenu>
  783. <productMenu id="sip"
  784. type="1" >
  785. </productMenu>
  786. <productMenu id="led"
  787. type="1" >
  788. </productMenu>
  789. <productMenu id="illusion"
  790. type="1" >
  791. </productMenu>
  792. <productMenu id="meshIntercom"
  793. type="30" >
  794. </productMenu>
  795. <productMenu id="bluetoothIntercom"
  796. type="1" >
  797. </productMenu>
  798. <productMenu id="fmradio"
  799. type="1"
  800. url="1" >
  801. </productMenu>
  802. <productMenu id="phone"
  803. type="1" >
  804. </productMenu>
  805. <productMenu id="music"
  806. type="1" >
  807. </productMenu>
  808. <productMenu id="musicSharing"
  809. type="0" >
  810. </productMenu>
  811. <productMenu id="deviceSetting"
  812. type="1"
  813. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  814. </productMenu>
  815. <productMenu id="quickGuide"
  816. type="0"
  817. url=""
  818. size="1.12MB" >
  819. </productMenu>
  820. <productMenu id="userGuide"
  821. type="0"
  822. url=""
  823. size="2.0MB" >
  824. </productMenu>
  825. <productMenu id="videoGuide"
  826. type="0"
  827. url=""
  828. size="3.41MB" >
  829. </productMenu>
  830. <productMenu id="volume"
  831. type="13" >
  832. </productMenu>
  833. <productMenu id="battery"
  834. type="1" >
  835. </productMenu>
  836. <productID id="6A03"
  837. />
  838. <productGroupable type="0"
  839. />
  840. </product>
  841. <product id="R35"
  842. name="R35"
  843. series="R"
  844. latestVersion="0.9"
  845. latestVersionVoicePrompt="1.2"
  846. show = "-1" >
  847. <productMenu id="protocol"
  848. type="2" >
  849. </productMenu>
  850. <productMenu id="ota"
  851. type="0" >
  852. <otaLanguages>
  853. <otaLanguage
  854. id="0"
  855. name="English"
  856. package="0"
  857. />
  858. <otaLanguage
  859. id="0"
  860. name="French"
  861. package="1"
  862. />
  863. <otaLanguage
  864. id="0"
  865. name="Spanish"
  866. package="2"
  867. />
  868. <otaLanguage
  869. id="0"
  870. name="Italian"
  871. package="3"
  872. />
  873. <otaLanguage
  874. id="0"
  875. name="German"
  876. package="4"
  877. />
  878. <otaLanguage
  879. id="0"
  880. name="Dutch"
  881. package="5"
  882. />
  883. <otaLanguage
  884. id="0"
  885. name="Russian"
  886. package="6"
  887. />
  888. <otaLanguage
  889. id="0"
  890. name="Chinese"
  891. package="7"
  892. />
  893. <otaLanguage
  894. id="0"
  895. name="Korean"
  896. package="8"
  897. />
  898. <otaLanguage
  899. id="0"
  900. name="Japanese"
  901. package="9"
  902. />
  903. <otaLanguage
  904. id="0"
  905. name="Finnish"
  906. package="10"
  907. />
  908. <otaLanguage
  909. id="0"
  910. name="Polish"
  911. package="11"
  912. />
  913. </otaLanguages>
  914. <otaPackages>
  915. <package
  916. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1.img"
  917. size="5183988"
  918. />
  919. <package
  920. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-fr-FR.img"
  921. size="5183988"
  922. />
  923. <package
  924. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-es-ES.img"
  925. size="5183988"
  926. />
  927. <package
  928. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-it-IT.img"
  929. size="5183988"
  930. />
  931. <package
  932. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-de-DE.img"
  933. size="5183988"
  934. />
  935. <package
  936. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-nl-NL.img"
  937. size="5183988"
  938. />
  939. <package
  940. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-ru-RU.img"
  941. size="5183988"
  942. />
  943. <package
  944. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-cmn-CN.img"
  945. size="5183988"
  946. />
  947. <package
  948. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-ko-KR.img"
  949. size="5183988"
  950. />
  951. <package
  952. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-ja-JP.img"
  953. size="5183988"
  954. />
  955. <package
  956. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-fi-FI.img"
  957. size="5183988"
  958. />
  959. <package
  960. url="https://api.sena.com/support/OTA/R35-v1.2.1-build1-pl-PL.img"
  961. size="5183988"
  962. />
  963. </otaPackages>
  964. </productMenu>
  965. <productMenu id="sip"
  966. type="1" >
  967. </productMenu>
  968. <productMenu id="illusion"
  969. type="1" >
  970. </productMenu>
  971. <productMenu id="meshIntercom"
  972. type="30" >
  973. </productMenu>
  974. <productMenu id="meshIntercom+"
  975. type="3"
  976. url="2" >
  977. </productMenu>
  978. <productMenu id="waveIntercom"
  979. type="1" >
  980. </productMenu>
  981. <productMenu id="phone"
  982. type="1" >
  983. </productMenu>
  984. <productMenu id="music"
  985. type="1" >
  986. </productMenu>
  987. <productMenu id="musicSharing"
  988. type="0" >
  989. </productMenu>
  990. <productMenu id="deviceSetting"
  991. type="1"
  992. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  993. </productMenu>
  994. <productMenu id="quickGuide"
  995. type="0"
  996. url=""
  997. size="1.12MB" >
  998. </productMenu>
  999. <productMenu id="userGuide"
  1000. type="1"
  1001. url=""
  1002. size="2.0MB" >
  1003. </productMenu>
  1004. <productMenu id="videoGuide"
  1005. type="0"
  1006. url=""
  1007. size="3.41MB" >
  1008. </productMenu>
  1009. <productMenu id="connectGuide"
  1010. type="0"
  1011. url=""
  1012. size="1.12MB" >
  1013. </productMenu>
  1014. <productMenu id="volume"
  1015. type="16" >
  1016. </productMenu>
  1017. <productMenu id="soundMode"
  1018. type="0" >
  1019. </productMenu>
  1020. <productMenu id="battery"
  1021. type="1" >
  1022. </productMenu>
  1023. <productID id="6A06"
  1024. />
  1025. <productGroupable type="0"
  1026. />
  1027. </product>
  1028. <product id="COMP1"
  1029. name="BMW COM P1"
  1030. series="60"
  1031. latestVersion="1.0.6"
  1032. latestVersionMesh="0.19"
  1033. latestVersionVoicePrompt="1.0"
  1034. show = "-1" >
  1035. <productMenu id="protocol"
  1036. type="2" >
  1037. </productMenu>
  1038. <productMenu id="ota"
  1039. type="2" >
  1040. <otaLanguages>
  1041. <otaLanguage
  1042. id="0"
  1043. name="English"
  1044. package="0"
  1045. />
  1046. <otaLanguage
  1047. id="0"
  1048. name="French"
  1049. package="1"
  1050. />
  1051. <otaLanguage
  1052. id="0"
  1053. name="Spanish"
  1054. package="2"
  1055. />
  1056. <otaLanguage
  1057. id="0"
  1058. name="Italian"
  1059. package="3"
  1060. />
  1061. <otaLanguage
  1062. id="0"
  1063. name="German"
  1064. package="4"
  1065. />
  1066. <otaLanguage
  1067. id="0"
  1068. name="Dutch"
  1069. package="5"
  1070. />
  1071. <otaLanguage
  1072. id="0"
  1073. name="Russian"
  1074. package="6"
  1075. />
  1076. <otaLanguage
  1077. id="0"
  1078. name="Chinese"
  1079. package="7"
  1080. />
  1081. <otaLanguage
  1082. id="0"
  1083. name="Korean"
  1084. package="8"
  1085. />
  1086. <otaLanguage
  1087. id="0"
  1088. name="Japanese"
  1089. package="9"
  1090. />
  1091. <otaLanguage
  1092. id="0"
  1093. name="Finnish"
  1094. package="10"
  1095. />
  1096. </otaLanguages>
  1097. <otaPackages>
  1098. <package
  1099. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0.img"
  1100. size="5183988"
  1101. />
  1102. <package
  1103. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fr-FR.img"
  1104. size="5183988"
  1105. />
  1106. <package
  1107. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-es-ES.img"
  1108. size="5183988"
  1109. />
  1110. <package
  1111. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-it-IT.img"
  1112. size="5183988"
  1113. />
  1114. <package
  1115. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-de-DE.img"
  1116. size="5183988"
  1117. />
  1118. <package
  1119. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-nl-NL.img"
  1120. size="5183988"
  1121. />
  1122. <package
  1123. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ru-RU.img"
  1124. size="5183988"
  1125. />
  1126. <package
  1127. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-cmn-CN.img"
  1128. size="5183988"
  1129. />
  1130. <package
  1131. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ko-KR.img"
  1132. size="5183988"
  1133. />
  1134. <package
  1135. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ja-JP.img"
  1136. size="5183988"
  1137. />
  1138. <package
  1139. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fi-FI.img"
  1140. size="5183988"
  1141. />
  1142. </otaPackages>
  1143. </productMenu>
  1144. <productMenu id="wa"
  1145. type="0" >
  1146. </productMenu>
  1147. <productMenu id="sip"
  1148. type="1" >
  1149. </productMenu>
  1150. <productMenu id="led"
  1151. type="0" >
  1152. </productMenu>
  1153. <productMenu id="illusion"
  1154. type="0" >
  1155. </productMenu>
  1156. <productMenu id="meshIntercom"
  1157. type="30" >
  1158. </productMenu>
  1159. <productMenu id="bluetoothIntercom"
  1160. type="1" >
  1161. </productMenu>
  1162. <productMenu id="bluetoothIntercomGrouping"
  1163. type="0" >
  1164. </productMenu>
  1165. <productMenu id="fmradio"
  1166. type="0" >
  1167. </productMenu>
  1168. <productMenu id="phone"
  1169. type="1" >
  1170. </productMenu>
  1171. <productMenu id="music"
  1172. type="1" >
  1173. </productMenu>
  1174. <productMenu id="musicSharing"
  1175. type="0" >
  1176. </productMenu>
  1177. <productMenu id="deviceSetting"
  1178. type="1"
  1179. url="https://api.sena.com/support/test/xml/NS_COMP1_Test_13.xml" >
  1180. </productMenu>
  1181. <productMenu id="quickGuide"
  1182. type="0"
  1183. url=""
  1184. size="1.12MB" >
  1185. </productMenu>
  1186. <productMenu id="userGuide"
  1187. type="0"
  1188. url=""
  1189. size="2.0MB" >
  1190. </productMenu>
  1191. <productMenu id="videoGuide"
  1192. type="0"
  1193. url=""
  1194. size="3.41MB" >
  1195. </productMenu>
  1196. <productMenu id="volume"
  1197. type="16" >
  1198. </productMenu>
  1199. <productMenu id="battery"
  1200. type="1" >
  1201. </productMenu>
  1202. <productID id="6A80"
  1203. />
  1204. <productGroupable type="0"
  1205. />
  1206. </product>
  1207. <product id="50S"
  1208. name="50S"
  1209. series="50"
  1210. latestVersion="2.7.1"
  1211. show = "1" >
  1212. <productMenu id="protocol"
  1213. type="2" >
  1214. </productMenu>
  1215. <productMenu id="alexa"
  1216. type="0" >
  1217. </productMenu>
  1218. <productMenu id="ota"
  1219. type="0"
  1220. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1221. size="1150234" >
  1222. </productMenu>
  1223. <productMenu id="wa"
  1224. type="1" >
  1225. </productMenu>
  1226. <productMenu id="sip"
  1227. type="1" >
  1228. </productMenu>
  1229. <productMenu id="meshIntercom"
  1230. type="30" >
  1231. <productMenuType version="2.1.1"
  1232. type="20"
  1233. />
  1234. </productMenu>
  1235. <productMenu id="meshIntercom+"
  1236. type="3"
  1237. url="2" >
  1238. <productMenuType version="2.5.9"
  1239. type="2"
  1240. />
  1241. <productMenuURL version="2.1.1"
  1242. url="0"
  1243. />
  1244. </productMenu>
  1245. <productMenu id="waveIntercom"
  1246. type="1" >
  1247. <productMenuType version="2.6"
  1248. type="0"
  1249. />
  1250. </productMenu>
  1251. <productMenu id="bluetoothIntercom"
  1252. type="1" >
  1253. </productMenu>
  1254. <productMenu id="phone"
  1255. type="1" >
  1256. </productMenu>
  1257. <productMenu id="music"
  1258. type="1" >
  1259. </productMenu>
  1260. <productMenu id="fmradio"
  1261. type="1" >
  1262. </productMenu>
  1263. <productMenu id="deviceSetting"
  1264. type="1"
  1265. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1266. <productMenuURL version="2.5.9"
  1267. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1268. />
  1269. <productMenuURL version="2.1.1"
  1270. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1271. />
  1272. <productMenuURL version="2.0.3"
  1273. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1274. />
  1275. </productMenu>
  1276. <productMenu id="quickGuide"
  1277. type="0"
  1278. url=""
  1279. size="934KB" >
  1280. </productMenu>
  1281. <productMenu id="userGuide"
  1282. type="1"
  1283. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1284. size="1.14MB" >
  1285. </productMenu>
  1286. <productMenu id="videoGuide"
  1287. type="1"
  1288. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1289. size="3.41MB" >
  1290. </productMenu>
  1291. <productMenu id="connectGuide"
  1292. type="1"
  1293. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1294. size="1.12MB" >
  1295. </productMenu>
  1296. <productMenu id="volume"
  1297. type="11" >
  1298. </productMenu>
  1299. <productMenu id="battery"
  1300. type="1" >
  1301. </productMenu>
  1302. <productID id="3210"
  1303. />
  1304. <productGroupable type="0"
  1305. />
  1306. </product>
  1307. <product id="50S"
  1308. name="50S"
  1309. series="50"
  1310. latestVersion="1.5"
  1311. show = "-1" >
  1312. <productMenu id="protocol"
  1313. type="2" >
  1314. </productMenu>
  1315. <productMenu id="alexa"
  1316. type="0" >
  1317. </productMenu>
  1318. <productMenu id="wa"
  1319. type="1" >
  1320. </productMenu>
  1321. <productMenu id="sip"
  1322. type="1" >
  1323. </productMenu>
  1324. <productMenu id="meshIntercom"
  1325. type="30" >
  1326. <productMenuType version="1.2.2"
  1327. type="20"
  1328. />
  1329. </productMenu>
  1330. <productMenu id="meshIntercom+"
  1331. type="3"
  1332. url="2" >
  1333. <productMenuType version="1.4.9"
  1334. type="2"
  1335. />
  1336. <productMenuURL version="1.2.2"
  1337. url="0"
  1338. />
  1339. </productMenu>
  1340. <productMenu id="waveIntercom"
  1341. type="1" >
  1342. <productMenuType version="1.3.9"
  1343. type="0"
  1344. />
  1345. </productMenu>
  1346. <productMenu id="bluetoothIntercom"
  1347. type="1" >
  1348. </productMenu>
  1349. <productMenu id="phone"
  1350. type="1" >
  1351. </productMenu>
  1352. <productMenu id="music"
  1353. type="1" >
  1354. </productMenu>
  1355. <productMenu id="fmradio"
  1356. type="1" >
  1357. </productMenu>
  1358. <productMenu id="deviceSetting"
  1359. type="1"
  1360. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1361. <productMenuURL version="1.4.9"
  1362. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1363. />
  1364. <productMenuURL version="1.3.9"
  1365. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1366. />
  1367. <productMenuURL version="1.2.2"
  1368. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1369. />
  1370. <productMenuURL version="1.1.1"
  1371. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1372. />
  1373. </productMenu>
  1374. <productMenu id="quickGuide"
  1375. type="0"
  1376. url=""
  1377. size="934KB" >
  1378. </productMenu>
  1379. <productMenu id="userGuide"
  1380. type="1"
  1381. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  1382. size="1.14MB" >
  1383. </productMenu>
  1384. <productMenu id="videoGuide"
  1385. type="1"
  1386. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1387. size="3.41MB" >
  1388. </productMenu>
  1389. <productMenu id="volume"
  1390. type="11" >
  1391. </productMenu>
  1392. <productMenu id="battery"
  1393. type="1" >
  1394. </productMenu>
  1395. <productID id="3132"
  1396. />
  1397. <productGroupable type="0"
  1398. />
  1399. </product>
  1400. <product id="50R"
  1401. name="50R"
  1402. series="50"
  1403. latestVersion="2.7"
  1404. show = "1" >
  1405. <productMenu id="protocol"
  1406. type="2" >
  1407. </productMenu>
  1408. <productMenu id="alexa"
  1409. type="0" >
  1410. </productMenu>
  1411. <productMenu id="ota"
  1412. type="0"
  1413. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1414. size="1150234" >
  1415. </productMenu>
  1416. <productMenu id="wa"
  1417. type="1" >
  1418. </productMenu>
  1419. <productMenu id="sip"
  1420. type="1" >
  1421. </productMenu>
  1422. <productMenu id="meshIntercom"
  1423. type="30" >
  1424. <productMenuType version="2.1.1"
  1425. type="20"
  1426. />
  1427. </productMenu>
  1428. <productMenu id="meshIntercom+"
  1429. type="3"
  1430. url="2" >
  1431. <productMenuType version="2.5.9"
  1432. type="2"
  1433. />
  1434. <productMenuURL version="2.1.1"
  1435. url="0"
  1436. />
  1437. </productMenu>
  1438. <productMenu id="bluetoothIntercom"
  1439. type="1" >
  1440. </productMenu>
  1441. <productMenu id="phone"
  1442. type="1" >
  1443. </productMenu>
  1444. <productMenu id="music"
  1445. type="1" >
  1446. </productMenu>
  1447. <productMenu id="fmradio"
  1448. type="1" >
  1449. </productMenu>
  1450. <productMenu id="deviceSetting"
  1451. type="1"
  1452. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1453. <productMenuURL version="2.5.9"
  1454. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1455. />
  1456. <productMenuURL version="2.1.1"
  1457. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1458. />
  1459. <productMenuURL version="2.0"
  1460. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1461. />
  1462. </productMenu>
  1463. <productMenu id="quickGuide"
  1464. type="0"
  1465. url=""
  1466. size="344KB" >
  1467. </productMenu>
  1468. <productMenu id="userGuide"
  1469. type="1"
  1470. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  1471. size="3.41MB" >
  1472. </productMenu>
  1473. <productMenu id="videoGuide"
  1474. type="1"
  1475. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1476. size="3.41MB" >
  1477. </productMenu>
  1478. <productMenu id="connectGuide"
  1479. type="1"
  1480. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  1481. size="1.12MB" >
  1482. </productMenu>
  1483. <productMenu id="volume"
  1484. type="11" >
  1485. </productMenu>
  1486. <productMenu id="battery"
  1487. type="1" >
  1488. </productMenu>
  1489. <productID id="3218"
  1490. />
  1491. <productGroupable type="0"
  1492. />
  1493. </product>
  1494. <product id="50R"
  1495. name="50R"
  1496. series="50"
  1497. latestVersion="1.5"
  1498. show = "-1" >
  1499. <productMenu id="protocol"
  1500. type="2" >
  1501. </productMenu>
  1502. <productMenu id="alexa"
  1503. type="0" >
  1504. </productMenu>
  1505. <productMenu id="wa"
  1506. type="1" >
  1507. </productMenu>
  1508. <productMenu id="sip"
  1509. type="1" >
  1510. </productMenu>
  1511. <productMenu id="meshIntercom"
  1512. type="30" >
  1513. <productMenuType version="1.2.2"
  1514. type="20"
  1515. />
  1516. </productMenu>
  1517. <productMenu id="meshIntercom+"
  1518. type="3"
  1519. url="2" >
  1520. <productMenuType version="1.4.9"
  1521. type="2"
  1522. />
  1523. <productMenuURL version="1.2.2"
  1524. url="0"
  1525. />
  1526. </productMenu>
  1527. <productMenu id="waveIntercom"
  1528. type="1" >
  1529. <productMenuType version="1.3.9"
  1530. type="0"
  1531. />
  1532. </productMenu>
  1533. <productMenu id="bluetoothIntercom"
  1534. type="1" >
  1535. </productMenu>
  1536. <productMenu id="phone"
  1537. type="1" >
  1538. </productMenu>
  1539. <productMenu id="music"
  1540. type="1" >
  1541. </productMenu>
  1542. <productMenu id="fmradio"
  1543. type="1" >
  1544. </productMenu>
  1545. <productMenu id="deviceSetting"
  1546. type="1"
  1547. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1548. <productMenuURL version="1.4.9"
  1549. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1550. />
  1551. <productMenuURL version="1.3.9"
  1552. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1553. />
  1554. <productMenuURL version="1.2.2"
  1555. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1556. />
  1557. <productMenuURL version="1.1.1"
  1558. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1559. />
  1560. </productMenu>
  1561. <productMenu id="quickGuide"
  1562. type="0"
  1563. url=""
  1564. size="344KB" >
  1565. </productMenu>
  1566. <productMenu id="userGuide"
  1567. type="1"
  1568. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  1569. size="3.41MB" >
  1570. </productMenu>
  1571. <productMenu id="videoGuide"
  1572. type="1"
  1573. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1574. size="3.41MB" >
  1575. </productMenu>
  1576. <productMenu id="volume"
  1577. type="11" >
  1578. </productMenu>
  1579. <productMenu id="battery"
  1580. type="1" >
  1581. </productMenu>
  1582. <productID id="3134"
  1583. />
  1584. <productGroupable type="0"
  1585. />
  1586. </product>
  1587. <product id="50C"
  1588. name="50C"
  1589. series="50"
  1590. latestVersion="1.4.2"
  1591. show = "1" >
  1592. <productMenu id="protocol"
  1593. type="2" >
  1594. </productMenu>
  1595. <productMenu id="ota"
  1596. type="0" >
  1597. </productMenu>
  1598. <productMenu id="wa"
  1599. type="1" >
  1600. </productMenu>
  1601. <productMenu id="sip"
  1602. type="1" >
  1603. </productMenu>
  1604. <productMenu id="meshIntercom"
  1605. type="30" >
  1606. <productMenuType version="1.1.1"
  1607. type="20"
  1608. />
  1609. </productMenu>
  1610. <productMenu id="meshIntercom+"
  1611. type="3"
  1612. url="2" >
  1613. <productMenuType version="1.3.9"
  1614. type="2"
  1615. />
  1616. <productMenuURL version="1.1.1"
  1617. url="0"
  1618. />
  1619. </productMenu>
  1620. <productMenu id="waveIntercom"
  1621. type="1" >
  1622. <productMenuType version="1.2.9"
  1623. type="0"
  1624. />
  1625. </productMenu>
  1626. <productMenu id="bluetoothIntercom"
  1627. type="1" >
  1628. </productMenu>
  1629. <productMenu id="phone"
  1630. type="1" >
  1631. </productMenu>
  1632. <productMenu id="music"
  1633. type="1" >
  1634. </productMenu>
  1635. <productMenu id="fmradio"
  1636. type="1" >
  1637. </productMenu>
  1638. <productMenu id="deviceSetting"
  1639. type="1"
  1640. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  1641. <productMenuURL version="1.3.9"
  1642. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  1643. />
  1644. <productMenuURL version="1.1.1"
  1645. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1646. />
  1647. <productMenuURL version="1.0.1"
  1648. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1649. />
  1650. </productMenu>
  1651. <productMenu id="quickGuide"
  1652. type="0"
  1653. url=""
  1654. size="344KB" >
  1655. </productMenu>
  1656. <productMenu id="userGuide"
  1657. type="1"
  1658. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  1659. size="3.41MB" >
  1660. </productMenu>
  1661. <productMenu id="connectGuide"
  1662. type="1"
  1663. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  1664. size="1.12MB" >
  1665. </productMenu>
  1666. <productMenu id="volume"
  1667. type="11" >
  1668. </productMenu>
  1669. <productMenu id="battery"
  1670. type="1" >
  1671. </productMenu>
  1672. <productID id="3232"
  1673. />
  1674. <productGroupable type="0"
  1675. />
  1676. </product>
  1677. <product id="PHANTOMXB"
  1678. name="PHANTOM XB"
  1679. series="Helmet"
  1680. latestVersion="1.2.2"
  1681. latestVersionVoicePrompt="1.2"
  1682. show = "-1" >
  1683. <productMenu id="protocol"
  1684. type="2" >
  1685. </productMenu>
  1686. <productMenu id="ota"
  1687. type="2" >
  1688. <otaLanguages>
  1689. <otaLanguage
  1690. id="0"
  1691. name="English"
  1692. package="0"
  1693. />
  1694. <otaLanguage
  1695. id="0"
  1696. name="French"
  1697. package="1"
  1698. />
  1699. <otaLanguage
  1700. id="0"
  1701. name="Spanish"
  1702. package="2"
  1703. />
  1704. <otaLanguage
  1705. id="0"
  1706. name="Italian"
  1707. package="3"
  1708. />
  1709. <otaLanguage
  1710. id="0"
  1711. name="German"
  1712. package="4"
  1713. />
  1714. <otaLanguage
  1715. id="0"
  1716. name="Dutch"
  1717. package="5"
  1718. />
  1719. <otaLanguage
  1720. id="0"
  1721. name="Russian"
  1722. package="6"
  1723. />
  1724. <otaLanguage
  1725. id="0"
  1726. name="Chinese"
  1727. package="7"
  1728. />
  1729. <otaLanguage
  1730. id="0"
  1731. name="Korean"
  1732. package="8"
  1733. />
  1734. <otaLanguage
  1735. id="0"
  1736. name="Japanese"
  1737. package="9"
  1738. />
  1739. <otaLanguage
  1740. id="0"
  1741. name="Finnish"
  1742. package="10"
  1743. />
  1744. <otaLanguage
  1745. id="0"
  1746. name="Polish"
  1747. package="11"
  1748. />
  1749. </otaLanguages>
  1750. <otaPackages>
  1751. <package
  1752. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1.img"
  1753. size="5183988"
  1754. />
  1755. <package
  1756. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-fr-FR.img"
  1757. size="5183988"
  1758. />
  1759. <package
  1760. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-es-ES.img"
  1761. size="5183988"
  1762. />
  1763. <package
  1764. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-it-IT.img"
  1765. size="5183988"
  1766. />
  1767. <package
  1768. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-de-DE.img"
  1769. size="5183988"
  1770. />
  1771. <package
  1772. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-nl-NL.img"
  1773. size="5183988"
  1774. />
  1775. <package
  1776. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-ru-RU.img"
  1777. size="5183988"
  1778. />
  1779. <package
  1780. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-cmn-CN.img"
  1781. size="5183988"
  1782. />
  1783. <package
  1784. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-ko-KR.img"
  1785. size="5183988"
  1786. />
  1787. <package
  1788. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-ja-JP.img"
  1789. size="5183988"
  1790. />
  1791. <package
  1792. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-fi-FI.img"
  1793. size="5183988"
  1794. />
  1795. <package
  1796. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-pl-PL.img"
  1797. size="5183988"
  1798. />
  1799. </otaPackages>
  1800. </productMenu>
  1801. <productMenu id="wa"
  1802. type="0" >
  1803. </productMenu>
  1804. <productMenu id="led"
  1805. type="5" >
  1806. </productMenu>
  1807. <productMenu id="led+"
  1808. type="2"
  1809. url="1" >
  1810. </productMenu>
  1811. <productMenu id="meshIntercom"
  1812. type="30" >
  1813. </productMenu>
  1814. <productMenu id="meshIntercom+"
  1815. type="3"
  1816. url="2" >
  1817. </productMenu>
  1818. <productMenu id="waveIntercom"
  1819. type="1" >
  1820. </productMenu>
  1821. <productMenu id="fmradio"
  1822. type="0" >
  1823. </productMenu>
  1824. <productMenu id="phone"
  1825. type="1" >
  1826. </productMenu>
  1827. <productMenu id="music"
  1828. type="1" >
  1829. </productMenu>
  1830. <productMenu id="musicSharing"
  1831. type="0" >
  1832. </productMenu>
  1833. <productMenu id="deviceSetting"
  1834. type="1"
  1835. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  1836. </productMenu>
  1837. <productMenu id="quickGuide"
  1838. type="0"
  1839. url=""
  1840. size="1.12MB" >
  1841. </productMenu>
  1842. <productMenu id="userGuide"
  1843. type="1"
  1844. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  1845. size="2.0MB" >
  1846. </productMenu>
  1847. <productMenu id="videoGuide"
  1848. type="0"
  1849. url=""
  1850. size="3.41MB" >
  1851. </productMenu>
  1852. <productMenu id="volume"
  1853. type="16" >
  1854. </productMenu>
  1855. <productMenu id="battery"
  1856. type="1" >
  1857. </productMenu>
  1858. <productID id="6A0F"
  1859. />
  1860. <productGroupable type="0"
  1861. />
  1862. </product>
  1863. <product id="PHANTOMXB"
  1864. name="PHANTOM XB"
  1865. series="Helmet"
  1866. latestVersion="1.2.2"
  1867. latestVersionVoicePrompt="1.2"
  1868. show = "-1" >
  1869. <productMenu id="protocol"
  1870. type="2" >
  1871. </productMenu>
  1872. <productMenu id="ota"
  1873. type="2" >
  1874. <otaLanguages>
  1875. <otaLanguage
  1876. id="0"
  1877. name="English"
  1878. package="0"
  1879. />
  1880. <otaLanguage
  1881. id="0"
  1882. name="French"
  1883. package="1"
  1884. />
  1885. <otaLanguage
  1886. id="0"
  1887. name="Spanish"
  1888. package="2"
  1889. />
  1890. <otaLanguage
  1891. id="0"
  1892. name="Italian"
  1893. package="3"
  1894. />
  1895. <otaLanguage
  1896. id="0"
  1897. name="German"
  1898. package="4"
  1899. />
  1900. <otaLanguage
  1901. id="0"
  1902. name="Dutch"
  1903. package="5"
  1904. />
  1905. <otaLanguage
  1906. id="0"
  1907. name="Russian"
  1908. package="6"
  1909. />
  1910. <otaLanguage
  1911. id="0"
  1912. name="Chinese"
  1913. package="7"
  1914. />
  1915. <otaLanguage
  1916. id="0"
  1917. name="Korean"
  1918. package="8"
  1919. />
  1920. <otaLanguage
  1921. id="0"
  1922. name="Japanese"
  1923. package="9"
  1924. />
  1925. <otaLanguage
  1926. id="0"
  1927. name="Finnish"
  1928. package="10"
  1929. />
  1930. <otaLanguage
  1931. id="0"
  1932. name="Polish"
  1933. package="11"
  1934. />
  1935. </otaLanguages>
  1936. <otaPackages>
  1937. <package
  1938. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1.img"
  1939. size="5183988"
  1940. />
  1941. <package
  1942. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-fr-FR.img"
  1943. size="5183988"
  1944. />
  1945. <package
  1946. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-es-ES.img"
  1947. size="5183988"
  1948. />
  1949. <package
  1950. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-it-IT.img"
  1951. size="5183988"
  1952. />
  1953. <package
  1954. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-de-DE.img"
  1955. size="5183988"
  1956. />
  1957. <package
  1958. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-nl-NL.img"
  1959. size="5183988"
  1960. />
  1961. <package
  1962. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-ru-RU.img"
  1963. size="5183988"
  1964. />
  1965. <package
  1966. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-cmn-CN.img"
  1967. size="5183988"
  1968. />
  1969. <package
  1970. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-ko-KR.img"
  1971. size="5183988"
  1972. />
  1973. <package
  1974. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-ja-JP.img"
  1975. size="5183988"
  1976. />
  1977. <package
  1978. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-fi-FI.img"
  1979. size="5183988"
  1980. />
  1981. <package
  1982. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-pl-PL.img"
  1983. size="5183988"
  1984. />
  1985. </otaPackages>
  1986. </productMenu>
  1987. <productMenu id="wa"
  1988. type="0" >
  1989. </productMenu>
  1990. <productMenu id="led"
  1991. type="5" >
  1992. </productMenu>
  1993. <productMenu id="led+"
  1994. type="2"
  1995. url="1" >
  1996. </productMenu>
  1997. <productMenu id="meshIntercom"
  1998. type="30" >
  1999. </productMenu>
  2000. <productMenu id="meshIntercom+"
  2001. type="3"
  2002. url="2" >
  2003. </productMenu>
  2004. <productMenu id="waveIntercom"
  2005. type="1" >
  2006. </productMenu>
  2007. <productMenu id="fmradio"
  2008. type="0" >
  2009. </productMenu>
  2010. <productMenu id="phone"
  2011. type="1" >
  2012. </productMenu>
  2013. <productMenu id="music"
  2014. type="1" >
  2015. </productMenu>
  2016. <productMenu id="musicSharing"
  2017. type="0" >
  2018. </productMenu>
  2019. <productMenu id="deviceSetting"
  2020. type="1"
  2021. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2022. <productMenuURL version="1.2.1"
  2023. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2024. />
  2025. </productMenu>
  2026. <productMenu id="quickGuide"
  2027. type="0"
  2028. url=""
  2029. size="1.12MB" >
  2030. </productMenu>
  2031. <productMenu id="userGuide"
  2032. type="1"
  2033. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2034. size="2.0MB" >
  2035. </productMenu>
  2036. <productMenu id="videoGuide"
  2037. type="0"
  2038. url=""
  2039. size="3.41MB" >
  2040. </productMenu>
  2041. <productMenu id="volume"
  2042. type="16" >
  2043. </productMenu>
  2044. <productMenu id="battery"
  2045. type="1" >
  2046. </productMenu>
  2047. <productID id="6A0C"
  2048. />
  2049. <productGroupable type="0"
  2050. />
  2051. </product>
  2052. <product id="PHANTOMKV"
  2053. name="PHANTOM KV"
  2054. series="Helmet"
  2055. latestVersion="1.2.2"
  2056. latestVersionVoicePrompt="1.0"
  2057. show = "-1" >
  2058. <productMenu id="protocol"
  2059. type="2" >
  2060. </productMenu>
  2061. <productMenu id="ota"
  2062. type="0" >
  2063. <otaLanguages>
  2064. <otaLanguage
  2065. id="0"
  2066. name="English"
  2067. package="0"
  2068. />
  2069. <otaLanguage
  2070. id="0"
  2071. name="French"
  2072. package="1"
  2073. />
  2074. <otaLanguage
  2075. id="0"
  2076. name="Spanish"
  2077. package="2"
  2078. />
  2079. <otaLanguage
  2080. id="0"
  2081. name="Italian"
  2082. package="3"
  2083. />
  2084. <otaLanguage
  2085. id="0"
  2086. name="German"
  2087. package="4"
  2088. />
  2089. <otaLanguage
  2090. id="0"
  2091. name="Dutch"
  2092. package="5"
  2093. />
  2094. <otaLanguage
  2095. id="0"
  2096. name="Russian"
  2097. package="6"
  2098. />
  2099. <otaLanguage
  2100. id="0"
  2101. name="Chinese"
  2102. package="7"
  2103. />
  2104. <otaLanguage
  2105. id="0"
  2106. name="Korean"
  2107. package="8"
  2108. />
  2109. <otaLanguage
  2110. id="0"
  2111. name="Japanese"
  2112. package="9"
  2113. />
  2114. <otaLanguage
  2115. id="0"
  2116. name="Finnish"
  2117. package="10"
  2118. />
  2119. <otaLanguage
  2120. id="0"
  2121. name="Polish"
  2122. package="11"
  2123. />
  2124. </otaLanguages>
  2125. <otaPackages>
  2126. <package
  2127. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0.img"
  2128. size="5183988"
  2129. />
  2130. <package
  2131. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fr-FR.img"
  2132. size="5183988"
  2133. />
  2134. <package
  2135. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-es-ES.img"
  2136. size="5183988"
  2137. />
  2138. <package
  2139. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-it-IT.img"
  2140. size="5183988"
  2141. />
  2142. <package
  2143. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-de-DE.img"
  2144. size="5183988"
  2145. />
  2146. <package
  2147. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-nl-NL.img"
  2148. size="5183988"
  2149. />
  2150. <package
  2151. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ru-RU.img"
  2152. size="5183988"
  2153. />
  2154. <package
  2155. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-cmn-CN.img"
  2156. size="5183988"
  2157. />
  2158. <package
  2159. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ko-KR.img"
  2160. size="5183988"
  2161. />
  2162. <package
  2163. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ja-JP.img"
  2164. size="5183988"
  2165. />
  2166. <package
  2167. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fi-FI.img"
  2168. size="5183988"
  2169. />
  2170. <package
  2171. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-pl-PL.img"
  2172. size="5183988"
  2173. />
  2174. </otaPackages>
  2175. </productMenu>
  2176. <productMenu id="wa"
  2177. type="0" >
  2178. </productMenu>
  2179. <productMenu id="led"
  2180. type="5" >
  2181. </productMenu>
  2182. <productMenu id="led+"
  2183. type="2"
  2184. url="1" >
  2185. </productMenu>
  2186. <productMenu id="meshIntercom"
  2187. type="30" >
  2188. </productMenu>
  2189. <productMenu id="meshIntercom+"
  2190. type="3"
  2191. url="2" >
  2192. </productMenu>
  2193. <productMenu id="waveIntercom"
  2194. type="1" >
  2195. </productMenu>
  2196. <productMenu id="fmradio"
  2197. type="0" >
  2198. </productMenu>
  2199. <productMenu id="phone"
  2200. type="1" >
  2201. </productMenu>
  2202. <productMenu id="music"
  2203. type="1" >
  2204. </productMenu>
  2205. <productMenu id="musicSharing"
  2206. type="0" >
  2207. </productMenu>
  2208. <productMenu id="deviceSetting"
  2209. type="1"
  2210. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2211. </productMenu>
  2212. <productMenu id="quickGuide"
  2213. type="0"
  2214. url=""
  2215. size="1.12MB" >
  2216. </productMenu>
  2217. <productMenu id="userGuide"
  2218. type="1"
  2219. url=""
  2220. size="2.0MB" >
  2221. </productMenu>
  2222. <productMenu id="videoGuide"
  2223. type="0"
  2224. url=""
  2225. size="3.41MB" >
  2226. </productMenu>
  2227. <productMenu id="volume"
  2228. type="16" >
  2229. </productMenu>
  2230. <productMenu id="battery"
  2231. type="1" >
  2232. </productMenu>
  2233. <productID id="6A14"
  2234. />
  2235. <productGroupable type="0"
  2236. />
  2237. </product>
  2238. <product id="PHANTOMKV"
  2239. name="PHANTOM KV"
  2240. series="Helmet"
  2241. latestVersion="1.2.2"
  2242. latestVersionVoicePrompt="1.0"
  2243. show = "-1" >
  2244. <productMenu id="protocol"
  2245. type="2" >
  2246. </productMenu>
  2247. <productMenu id="ota"
  2248. type="0" >
  2249. <otaLanguages>
  2250. <otaLanguage
  2251. id="0"
  2252. name="English"
  2253. package="0"
  2254. />
  2255. <otaLanguage
  2256. id="0"
  2257. name="French"
  2258. package="1"
  2259. />
  2260. <otaLanguage
  2261. id="0"
  2262. name="Spanish"
  2263. package="2"
  2264. />
  2265. <otaLanguage
  2266. id="0"
  2267. name="Italian"
  2268. package="3"
  2269. />
  2270. <otaLanguage
  2271. id="0"
  2272. name="German"
  2273. package="4"
  2274. />
  2275. <otaLanguage
  2276. id="0"
  2277. name="Dutch"
  2278. package="5"
  2279. />
  2280. <otaLanguage
  2281. id="0"
  2282. name="Russian"
  2283. package="6"
  2284. />
  2285. <otaLanguage
  2286. id="0"
  2287. name="Chinese"
  2288. package="7"
  2289. />
  2290. <otaLanguage
  2291. id="0"
  2292. name="Korean"
  2293. package="8"
  2294. />
  2295. <otaLanguage
  2296. id="0"
  2297. name="Japanese"
  2298. package="9"
  2299. />
  2300. <otaLanguage
  2301. id="0"
  2302. name="Finnish"
  2303. package="10"
  2304. />
  2305. <otaLanguage
  2306. id="0"
  2307. name="Polish"
  2308. package="11"
  2309. />
  2310. </otaLanguages>
  2311. <otaPackages>
  2312. <package
  2313. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0.img"
  2314. size="5183988"
  2315. />
  2316. <package
  2317. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fr-FR.img"
  2318. size="5183988"
  2319. />
  2320. <package
  2321. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-es-ES.img"
  2322. size="5183988"
  2323. />
  2324. <package
  2325. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-it-IT.img"
  2326. size="5183988"
  2327. />
  2328. <package
  2329. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-de-DE.img"
  2330. size="5183988"
  2331. />
  2332. <package
  2333. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-nl-NL.img"
  2334. size="5183988"
  2335. />
  2336. <package
  2337. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ru-RU.img"
  2338. size="5183988"
  2339. />
  2340. <package
  2341. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-cmn-CN.img"
  2342. size="5183988"
  2343. />
  2344. <package
  2345. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ko-KR.img"
  2346. size="5183988"
  2347. />
  2348. <package
  2349. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ja-JP.img"
  2350. size="5183988"
  2351. />
  2352. <package
  2353. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fi-FI.img"
  2354. size="5183988"
  2355. />
  2356. <package
  2357. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-pl-PL.img"
  2358. size="5183988"
  2359. />
  2360. </otaPackages>
  2361. </productMenu>
  2362. <productMenu id="wa"
  2363. type="0" >
  2364. </productMenu>
  2365. <productMenu id="led"
  2366. type="5" >
  2367. </productMenu>
  2368. <productMenu id="led+"
  2369. type="2"
  2370. url="1" >
  2371. </productMenu>
  2372. <productMenu id="meshIntercom"
  2373. type="30" >
  2374. </productMenu>
  2375. <productMenu id="meshIntercom+"
  2376. type="3"
  2377. url="2" >
  2378. </productMenu>
  2379. <productMenu id="waveIntercom"
  2380. type="1" >
  2381. </productMenu>
  2382. <productMenu id="fmradio"
  2383. type="0" >
  2384. </productMenu>
  2385. <productMenu id="phone"
  2386. type="1" >
  2387. </productMenu>
  2388. <productMenu id="music"
  2389. type="1" >
  2390. </productMenu>
  2391. <productMenu id="musicSharing"
  2392. type="0" >
  2393. </productMenu>
  2394. <productMenu id="deviceSetting"
  2395. type="1"
  2396. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2397. </productMenu>
  2398. <productMenu id="quickGuide"
  2399. type="0"
  2400. url=""
  2401. size="1.12MB" >
  2402. </productMenu>
  2403. <productMenu id="userGuide"
  2404. type="1"
  2405. url=""
  2406. size="2.0MB" >
  2407. </productMenu>
  2408. <productMenu id="videoGuide"
  2409. type="0"
  2410. url=""
  2411. size="3.41MB" >
  2412. </productMenu>
  2413. <productMenu id="volume"
  2414. type="16" >
  2415. </productMenu>
  2416. <productMenu id="battery"
  2417. type="1" >
  2418. </productMenu>
  2419. <productID id="6A13"
  2420. />
  2421. <productGroupable type="0"
  2422. />
  2423. </product>
  2424. <product id="PHANTOMCamera"
  2425. name="PHANTOM Camera"
  2426. series="Helmet"
  2427. latestVersion="0.9"
  2428. latestVersionVoicePrompt="0.3"
  2429. show = "-1" >
  2430. <productMenu id="protocol"
  2431. type="2" >
  2432. </productMenu>
  2433. <productMenu id="ota"
  2434. type="0" >
  2435. <otaLanguages>
  2436. <otaLanguage
  2437. id="0"
  2438. name="English"
  2439. package="0"
  2440. />
  2441. <otaLanguage
  2442. id="0"
  2443. name="French"
  2444. package="1"
  2445. />
  2446. <otaLanguage
  2447. id="0"
  2448. name="Spanish"
  2449. package="2"
  2450. />
  2451. <otaLanguage
  2452. id="0"
  2453. name="Italian"
  2454. package="3"
  2455. />
  2456. <otaLanguage
  2457. id="0"
  2458. name="German"
  2459. package="4"
  2460. />
  2461. <otaLanguage
  2462. id="0"
  2463. name="Dutch"
  2464. package="5"
  2465. />
  2466. <otaLanguage
  2467. id="0"
  2468. name="Russian"
  2469. package="6"
  2470. />
  2471. <otaLanguage
  2472. id="0"
  2473. name="Chinese"
  2474. package="7"
  2475. />
  2476. <otaLanguage
  2477. id="0"
  2478. name="Korean"
  2479. package="8"
  2480. />
  2481. <otaLanguage
  2482. id="0"
  2483. name="Japanese"
  2484. package="9"
  2485. />
  2486. <otaLanguage
  2487. id="0"
  2488. name="Finnish"
  2489. package="10"
  2490. />
  2491. <otaLanguage
  2492. id="0"
  2493. name="Polish"
  2494. package="11"
  2495. />
  2496. </otaLanguages>
  2497. <otaPackages>
  2498. <package
  2499. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2500. size="5183988"
  2501. />
  2502. <package
  2503. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  2504. size="5183988"
  2505. />
  2506. <package
  2507. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  2508. size="5183988"
  2509. />
  2510. <package
  2511. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  2512. size="5183988"
  2513. />
  2514. <package
  2515. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  2516. size="5183988"
  2517. />
  2518. <package
  2519. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  2520. size="5183988"
  2521. />
  2522. <package
  2523. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  2524. size="5183988"
  2525. />
  2526. <package
  2527. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  2528. size="5183988"
  2529. />
  2530. <package
  2531. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  2532. size="5183988"
  2533. />
  2534. <package
  2535. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  2536. size="5183988"
  2537. />
  2538. <package
  2539. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  2540. size="5183988"
  2541. />
  2542. <package
  2543. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  2544. size="5183988"
  2545. />
  2546. </otaPackages>
  2547. </productMenu>
  2548. <productMenu id="wa"
  2549. type="0" >
  2550. </productMenu>
  2551. <productMenu id="led"
  2552. type="5" >
  2553. </productMenu>
  2554. <productMenu id="led+"
  2555. type="2"
  2556. url="1" >
  2557. </productMenu>
  2558. <productMenu id="meshIntercom"
  2559. type="30" >
  2560. </productMenu>
  2561. <productMenu id="meshIntercom+"
  2562. type="3"
  2563. url="2" >
  2564. </productMenu>
  2565. <productMenu id="waveIntercom"
  2566. type="1" >
  2567. </productMenu>
  2568. <productMenu id="fmradio"
  2569. type="0" >
  2570. </productMenu>
  2571. <productMenu id="phone"
  2572. type="1" >
  2573. </productMenu>
  2574. <productMenu id="music"
  2575. type="1" >
  2576. </productMenu>
  2577. <productMenu id="musicSharing"
  2578. type="0" >
  2579. </productMenu>
  2580. <productMenu id="deviceSetting"
  2581. type="1"
  2582. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2583. </productMenu>
  2584. <productMenu id="quickGuide"
  2585. type="0"
  2586. url=""
  2587. size="1.12MB" >
  2588. </productMenu>
  2589. <productMenu id="userGuide"
  2590. type="1"
  2591. url=""
  2592. size="2.0MB" >
  2593. </productMenu>
  2594. <productMenu id="videoGuide"
  2595. type="0"
  2596. url=""
  2597. size="3.41MB" >
  2598. </productMenu>
  2599. <productMenu id="volume"
  2600. type="16" >
  2601. </productMenu>
  2602. <productMenu id="battery"
  2603. type="1" >
  2604. </productMenu>
  2605. <productID id="6A10"
  2606. />
  2607. <productGroupable type="0"
  2608. />
  2609. </product>
  2610. <product id="PHANTOMCamera"
  2611. name="PHANTOM Camera"
  2612. series="Helmet"
  2613. latestVersion="0.9"
  2614. latestVersionVoicePrompt="0.3"
  2615. show = "-1" >
  2616. <productMenu id="protocol"
  2617. type="2" >
  2618. </productMenu>
  2619. <productMenu id="ota"
  2620. type="0" >
  2621. <otaLanguages>
  2622. <otaLanguage
  2623. id="0"
  2624. name="English"
  2625. package="0"
  2626. />
  2627. <otaLanguage
  2628. id="0"
  2629. name="French"
  2630. package="1"
  2631. />
  2632. <otaLanguage
  2633. id="0"
  2634. name="Spanish"
  2635. package="2"
  2636. />
  2637. <otaLanguage
  2638. id="0"
  2639. name="Italian"
  2640. package="3"
  2641. />
  2642. <otaLanguage
  2643. id="0"
  2644. name="German"
  2645. package="4"
  2646. />
  2647. <otaLanguage
  2648. id="0"
  2649. name="Dutch"
  2650. package="5"
  2651. />
  2652. <otaLanguage
  2653. id="0"
  2654. name="Russian"
  2655. package="6"
  2656. />
  2657. <otaLanguage
  2658. id="0"
  2659. name="Chinese"
  2660. package="7"
  2661. />
  2662. <otaLanguage
  2663. id="0"
  2664. name="Korean"
  2665. package="8"
  2666. />
  2667. <otaLanguage
  2668. id="0"
  2669. name="Japanese"
  2670. package="9"
  2671. />
  2672. <otaLanguage
  2673. id="0"
  2674. name="Finnish"
  2675. package="10"
  2676. />
  2677. <otaLanguage
  2678. id="0"
  2679. name="Polish"
  2680. package="11"
  2681. />
  2682. </otaLanguages>
  2683. <otaPackages>
  2684. <package
  2685. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  2686. size="5183988"
  2687. />
  2688. <package
  2689. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  2690. size="5183988"
  2691. />
  2692. <package
  2693. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  2694. size="5183988"
  2695. />
  2696. <package
  2697. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  2698. size="5183988"
  2699. />
  2700. <package
  2701. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  2702. size="5183988"
  2703. />
  2704. <package
  2705. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  2706. size="5183988"
  2707. />
  2708. <package
  2709. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  2710. size="5183988"
  2711. />
  2712. <package
  2713. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  2714. size="5183988"
  2715. />
  2716. <package
  2717. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  2718. size="5183988"
  2719. />
  2720. <package
  2721. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  2722. size="5183988"
  2723. />
  2724. <package
  2725. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  2726. size="5183988"
  2727. />
  2728. <package
  2729. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  2730. size="5183988"
  2731. />
  2732. </otaPackages>
  2733. </productMenu>
  2734. <productMenu id="wa"
  2735. type="0" >
  2736. </productMenu>
  2737. <productMenu id="led"
  2738. type="5" >
  2739. </productMenu>
  2740. <productMenu id="led+"
  2741. type="2"
  2742. url="1" >
  2743. </productMenu>
  2744. <productMenu id="meshIntercom"
  2745. type="30" >
  2746. </productMenu>
  2747. <productMenu id="meshIntercom+"
  2748. type="3"
  2749. url="2" >
  2750. </productMenu>
  2751. <productMenu id="waveIntercom"
  2752. type="1" >
  2753. </productMenu>
  2754. <productMenu id="fmradio"
  2755. type="0" >
  2756. </productMenu>
  2757. <productMenu id="phone"
  2758. type="1" >
  2759. </productMenu>
  2760. <productMenu id="music"
  2761. type="1" >
  2762. </productMenu>
  2763. <productMenu id="musicSharing"
  2764. type="0" >
  2765. </productMenu>
  2766. <productMenu id="deviceSetting"
  2767. type="1"
  2768. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2769. </productMenu>
  2770. <productMenu id="quickGuide"
  2771. type="0"
  2772. url=""
  2773. size="1.12MB" >
  2774. </productMenu>
  2775. <productMenu id="userGuide"
  2776. type="1"
  2777. url=""
  2778. size="2.0MB" >
  2779. </productMenu>
  2780. <productMenu id="videoGuide"
  2781. type="0"
  2782. url=""
  2783. size="3.41MB" >
  2784. </productMenu>
  2785. <productMenu id="volume"
  2786. type="16" >
  2787. </productMenu>
  2788. <productMenu id="battery"
  2789. type="1" >
  2790. </productMenu>
  2791. <productID id="6A09"
  2792. />
  2793. <productGroupable type="0"
  2794. />
  2795. </product>
  2796. <product id="PHANTOM"
  2797. name="PHANTOM ANC"
  2798. series="Helmet"
  2799. latestVersion="1.2.2"
  2800. latestVersionVoicePrompt="1.2"
  2801. show = "1" >
  2802. <productMenu id="protocol"
  2803. type="2" >
  2804. </productMenu>
  2805. <productMenu id="ota"
  2806. type="2" >
  2807. <productMenuType version="0.6.9"
  2808. type="0"
  2809. />
  2810. <otaLanguages>
  2811. <otaLanguage
  2812. id="0"
  2813. name="English"
  2814. package="0"
  2815. />
  2816. <otaLanguage
  2817. id="0"
  2818. name="French"
  2819. package="1"
  2820. />
  2821. <otaLanguage
  2822. id="0"
  2823. name="Spanish"
  2824. package="2"
  2825. />
  2826. <otaLanguage
  2827. id="0"
  2828. name="Italian"
  2829. package="3"
  2830. />
  2831. <otaLanguage
  2832. id="0"
  2833. name="German"
  2834. package="4"
  2835. />
  2836. <otaLanguage
  2837. id="0"
  2838. name="Dutch"
  2839. package="5"
  2840. />
  2841. <otaLanguage
  2842. id="0"
  2843. name="Russian"
  2844. package="6"
  2845. />
  2846. <otaLanguage
  2847. id="0"
  2848. name="Chinese"
  2849. package="7"
  2850. />
  2851. <otaLanguage
  2852. id="0"
  2853. name="Korean"
  2854. package="8"
  2855. />
  2856. <otaLanguage
  2857. id="0"
  2858. name="Japanese"
  2859. package="9"
  2860. />
  2861. <otaLanguage
  2862. id="0"
  2863. name="Finnish"
  2864. package="10"
  2865. />
  2866. <otaLanguage
  2867. id="0"
  2868. name="Polish"
  2869. package="11"
  2870. />
  2871. </otaLanguages>
  2872. <otaPackages>
  2873. <package
  2874. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1.img"
  2875. size="5183988"
  2876. />
  2877. <package
  2878. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-fr-FR.img"
  2879. size="5183988"
  2880. />
  2881. <package
  2882. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-es-ES.img"
  2883. size="5183988"
  2884. />
  2885. <package
  2886. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-it-IT.img"
  2887. size="5183988"
  2888. />
  2889. <package
  2890. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-de-DE.img"
  2891. size="5183988"
  2892. />
  2893. <package
  2894. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-nl-NL.img"
  2895. size="5183988"
  2896. />
  2897. <package
  2898. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-ru-RU.img"
  2899. size="5183988"
  2900. />
  2901. <package
  2902. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-cmn-CN.img"
  2903. size="5183988"
  2904. />
  2905. <package
  2906. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-ko-KR.img"
  2907. size="5183988"
  2908. />
  2909. <package
  2910. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-ja-JP.img"
  2911. size="5183988"
  2912. />
  2913. <package
  2914. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-fi-FI.img"
  2915. size="5183988"
  2916. />
  2917. <package
  2918. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-pl-PL.img"
  2919. size="5183988"
  2920. />
  2921. </otaPackages>
  2922. </productMenu>
  2923. <productMenu id="wa"
  2924. type="0" >
  2925. </productMenu>
  2926. <productMenu id="led"
  2927. type="5" >
  2928. </productMenu>
  2929. <productMenu id="led+"
  2930. type="2"
  2931. url="1" >
  2932. </productMenu>
  2933. <productMenu id="meshIntercom"
  2934. type="30" >
  2935. </productMenu>
  2936. <productMenu id="meshIntercom+"
  2937. type="3"
  2938. url="2" >
  2939. <productMenuURL version="1.0.4"
  2940. url="10"
  2941. />
  2942. </productMenu>
  2943. <productMenu id="waveIntercom"
  2944. type="1" >
  2945. <productMenuType version="1.0.9"
  2946. type="0"
  2947. />
  2948. </productMenu>
  2949. <productMenu id="fmradio"
  2950. type="0" >
  2951. </productMenu>
  2952. <productMenu id="phone"
  2953. type="1" >
  2954. </productMenu>
  2955. <productMenu id="music"
  2956. type="1" >
  2957. </productMenu>
  2958. <productMenu id="musicSharing"
  2959. type="0" >
  2960. </productMenu>
  2961. <productMenu id="deviceSetting"
  2962. type="1"
  2963. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2964. <productMenuURL version="1.2.1"
  2965. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2966. />
  2967. <productMenuURL version="1.1.2"
  2968. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  2969. />
  2970. <productMenuURL version="1.0.4"
  2971. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  2972. />
  2973. </productMenu>
  2974. <productMenu id="quickGuide"
  2975. type="0"
  2976. url=""
  2977. size="1.12MB" >
  2978. </productMenu>
  2979. <productMenu id="userGuide"
  2980. type="1"
  2981. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2982. size="2.0MB" >
  2983. </productMenu>
  2984. <productMenu id="videoGuide"
  2985. type="0"
  2986. url=""
  2987. size="3.41MB" >
  2988. </productMenu>
  2989. <productMenu id="volume"
  2990. type="16" >
  2991. </productMenu>
  2992. <productMenu id="soundMode"
  2993. type="1" >
  2994. <productMenuType version="0.9.11"
  2995. type="0"
  2996. />
  2997. </productMenu>
  2998. <productMenu id="battery"
  2999. type="1" >
  3000. </productMenu>
  3001. <productID id="6A01"
  3002. />
  3003. <productGroupable type="0"
  3004. />
  3005. </product>
  3006. <product id="PHANTOM"
  3007. name="PHANTOM"
  3008. series="Helmet"
  3009. latestVersion="1.2.2"
  3010. latestVersionVoicePrompt="1.2"
  3011. show = "-1" >
  3012. <productMenu id="protocol"
  3013. type="2" >
  3014. </productMenu>
  3015. <productMenu id="ota"
  3016. type="2" >
  3017. <otaLanguages>
  3018. <otaLanguage
  3019. id="0"
  3020. name="English"
  3021. package="0"
  3022. />
  3023. <otaLanguage
  3024. id="0"
  3025. name="French"
  3026. package="1"
  3027. />
  3028. <otaLanguage
  3029. id="0"
  3030. name="Spanish"
  3031. package="2"
  3032. />
  3033. <otaLanguage
  3034. id="0"
  3035. name="Italian"
  3036. package="3"
  3037. />
  3038. <otaLanguage
  3039. id="0"
  3040. name="German"
  3041. package="4"
  3042. />
  3043. <otaLanguage
  3044. id="0"
  3045. name="Dutch"
  3046. package="5"
  3047. />
  3048. <otaLanguage
  3049. id="0"
  3050. name="Russian"
  3051. package="6"
  3052. />
  3053. <otaLanguage
  3054. id="0"
  3055. name="Chinese"
  3056. package="7"
  3057. />
  3058. <otaLanguage
  3059. id="0"
  3060. name="Korean"
  3061. package="8"
  3062. />
  3063. <otaLanguage
  3064. id="0"
  3065. name="Japanese"
  3066. package="9"
  3067. />
  3068. <otaLanguage
  3069. id="0"
  3070. name="Finnish"
  3071. package="10"
  3072. />
  3073. <otaLanguage
  3074. id="0"
  3075. name="Polish"
  3076. package="11"
  3077. />
  3078. </otaLanguages>
  3079. <otaPackages>
  3080. <package
  3081. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1.img"
  3082. size="5183988"
  3083. />
  3084. <package
  3085. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-fr-FR.img"
  3086. size="5183988"
  3087. />
  3088. <package
  3089. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-es-ES.img"
  3090. size="5183988"
  3091. />
  3092. <package
  3093. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-it-IT.img"
  3094. size="5183988"
  3095. />
  3096. <package
  3097. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-de-DE.img"
  3098. size="5183988"
  3099. />
  3100. <package
  3101. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-nl-NL.img"
  3102. size="5183988"
  3103. />
  3104. <package
  3105. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-ru-RU.img"
  3106. size="5183988"
  3107. />
  3108. <package
  3109. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-cmn-CN.img"
  3110. size="5183988"
  3111. />
  3112. <package
  3113. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-ko-KR.img"
  3114. size="5183988"
  3115. />
  3116. <package
  3117. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-ja-JP.img"
  3118. size="5183988"
  3119. />
  3120. <package
  3121. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-fi-FI.img"
  3122. size="5183988"
  3123. />
  3124. <package
  3125. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-pl-PL.img"
  3126. size="5183988"
  3127. />
  3128. </otaPackages>
  3129. </productMenu>
  3130. <productMenu id="wa"
  3131. type="0" >
  3132. </productMenu>
  3133. <productMenu id="led"
  3134. type="5" >
  3135. </productMenu>
  3136. <productMenu id="led+"
  3137. type="2"
  3138. url="1" >
  3139. </productMenu>
  3140. <productMenu id="meshIntercom"
  3141. type="30" >
  3142. </productMenu>
  3143. <productMenu id="meshIntercom+"
  3144. type="3"
  3145. url="2" >
  3146. </productMenu>
  3147. <productMenu id="waveIntercom"
  3148. type="1" >
  3149. </productMenu>
  3150. <productMenu id="fmradio"
  3151. type="0" >
  3152. </productMenu>
  3153. <productMenu id="phone"
  3154. type="1" >
  3155. </productMenu>
  3156. <productMenu id="music"
  3157. type="1" >
  3158. </productMenu>
  3159. <productMenu id="musicSharing"
  3160. type="0" >
  3161. </productMenu>
  3162. <productMenu id="deviceSetting"
  3163. type="1"
  3164. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  3165. </productMenu>
  3166. <productMenu id="quickGuide"
  3167. type="0"
  3168. url=""
  3169. size="1.52MB" >
  3170. </productMenu>
  3171. <productMenu id="userGuide"
  3172. type="1"
  3173. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3174. size="2.01MB" >
  3175. </productMenu>
  3176. <productMenu id="videoGuide"
  3177. type="0"
  3178. url=""
  3179. size="3.46MB" >
  3180. </productMenu>
  3181. <productMenu id="connectGuide"
  3182. type="1"
  3183. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3184. size="1.1MB" >
  3185. </productMenu>
  3186. <productMenu id="volume"
  3187. type="16" >
  3188. </productMenu>
  3189. <productMenu id="battery"
  3190. type="1" >
  3191. </productMenu>
  3192. <productID id="6A0E"
  3193. />
  3194. <productGroupable type="0"
  3195. />
  3196. </product>
  3197. <product id="PHANTOM"
  3198. name="PHANTOM"
  3199. series="Helmet"
  3200. latestVersion="1.2.2"
  3201. latestVersionVoicePrompt="1.2"
  3202. show = "1" >
  3203. <productMenu id="protocol"
  3204. type="2" >
  3205. </productMenu>
  3206. <productMenu id="ota"
  3207. type="2" >
  3208. <otaLanguages>
  3209. <otaLanguage
  3210. id="0"
  3211. name="English"
  3212. package="0"
  3213. />
  3214. <otaLanguage
  3215. id="0"
  3216. name="French"
  3217. package="1"
  3218. />
  3219. <otaLanguage
  3220. id="0"
  3221. name="Spanish"
  3222. package="2"
  3223. />
  3224. <otaLanguage
  3225. id="0"
  3226. name="Italian"
  3227. package="3"
  3228. />
  3229. <otaLanguage
  3230. id="0"
  3231. name="German"
  3232. package="4"
  3233. />
  3234. <otaLanguage
  3235. id="0"
  3236. name="Dutch"
  3237. package="5"
  3238. />
  3239. <otaLanguage
  3240. id="0"
  3241. name="Russian"
  3242. package="6"
  3243. />
  3244. <otaLanguage
  3245. id="0"
  3246. name="Chinese"
  3247. package="7"
  3248. />
  3249. <otaLanguage
  3250. id="0"
  3251. name="Korean"
  3252. package="8"
  3253. />
  3254. <otaLanguage
  3255. id="0"
  3256. name="Japanese"
  3257. package="9"
  3258. />
  3259. <otaLanguage
  3260. id="0"
  3261. name="Finnish"
  3262. package="10"
  3263. />
  3264. <otaLanguage
  3265. id="0"
  3266. name="Polish"
  3267. package="11"
  3268. />
  3269. </otaLanguages>
  3270. <otaPackages>
  3271. <package
  3272. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1.img"
  3273. size="5183988"
  3274. />
  3275. <package
  3276. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-fr-FR.img"
  3277. size="5183988"
  3278. />
  3279. <package
  3280. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-es-ES.img"
  3281. size="5183988"
  3282. />
  3283. <package
  3284. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-it-IT.img"
  3285. size="5183988"
  3286. />
  3287. <package
  3288. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-de-DE.img"
  3289. size="5183988"
  3290. />
  3291. <package
  3292. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-nl-NL.img"
  3293. size="5183988"
  3294. />
  3295. <package
  3296. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-ru-RU.img"
  3297. size="5183988"
  3298. />
  3299. <package
  3300. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-cmn-CN.img"
  3301. size="5183988"
  3302. />
  3303. <package
  3304. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-ko-KR.img"
  3305. size="5183988"
  3306. />
  3307. <package
  3308. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-ja-JP.img"
  3309. size="5183988"
  3310. />
  3311. <package
  3312. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-fi-FI.img"
  3313. size="5183988"
  3314. />
  3315. <package
  3316. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-pl-PL.img"
  3317. size="5183988"
  3318. />
  3319. </otaPackages>
  3320. </productMenu>
  3321. <productMenu id="wa"
  3322. type="0" >
  3323. </productMenu>
  3324. <productMenu id="led"
  3325. type="5" >
  3326. <productMenuType version="1.0.1"
  3327. type="4"
  3328. />
  3329. </productMenu>
  3330. <productMenu id="led+"
  3331. type="2"
  3332. url="1" >
  3333. <productMenuType version="1.0.1"
  3334. type="-1"
  3335. />
  3336. </productMenu>
  3337. <productMenu id="meshIntercom"
  3338. type="30" >
  3339. </productMenu>
  3340. <productMenu id="meshIntercom+"
  3341. type="3"
  3342. url="2" >
  3343. <productMenuURL version="1.0.4"
  3344. url="10"
  3345. />
  3346. </productMenu>
  3347. <productMenu id="waveIntercom"
  3348. type="1" >
  3349. <productMenuType version="1.0.9"
  3350. type="0"
  3351. />
  3352. </productMenu>
  3353. <productMenu id="fmradio"
  3354. type="0" >
  3355. </productMenu>
  3356. <productMenu id="phone"
  3357. type="1" >
  3358. </productMenu>
  3359. <productMenu id="music"
  3360. type="1" >
  3361. </productMenu>
  3362. <productMenu id="musicSharing"
  3363. type="0" >
  3364. </productMenu>
  3365. <productMenu id="deviceSetting"
  3366. type="1"
  3367. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  3368. <productMenuURL version="1.2.1"
  3369. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3370. />
  3371. <productMenuURL version="1.0.4"
  3372. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  3373. />
  3374. <productMenuURL version="1.0.1"
  3375. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  3376. />
  3377. </productMenu>
  3378. <productMenu id="quickGuide"
  3379. type="0"
  3380. url=""
  3381. size="1.12MB" >
  3382. </productMenu>
  3383. <productMenu id="userGuide"
  3384. type="1"
  3385. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3386. size="2.0MB" >
  3387. </productMenu>
  3388. <productMenu id="videoGuide"
  3389. type="0"
  3390. url=""
  3391. size="3.41MB" >
  3392. </productMenu>
  3393. <productMenu id="connectGuide"
  3394. type="1"
  3395. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3396. size="1.12MB" >
  3397. </productMenu>
  3398. <productMenu id="volume"
  3399. type="16" >
  3400. <productMenuType version="1.0"
  3401. type="13"
  3402. />
  3403. </productMenu>
  3404. <productMenu id="battery"
  3405. type="1" >
  3406. </productMenu>
  3407. <productID id="6A04"
  3408. />
  3409. <productGroupable type="0"
  3410. />
  3411. </product>
  3412. <product id="PHANTOMEasyLink"
  3413. name="PHANTOM EasyLink"
  3414. series="Helmet"
  3415. latestVersion="0.1"
  3416. latestVersionVoicePrompt="1.2"
  3417. show = "-1" >
  3418. <productMenu id="protocol"
  3419. type="2" >
  3420. </productMenu>
  3421. <productMenu id="ota"
  3422. type="0" >
  3423. <otaLanguages>
  3424. <otaLanguage
  3425. id="0"
  3426. name="English"
  3427. package="0"
  3428. />
  3429. <otaLanguage
  3430. id="0"
  3431. name="French"
  3432. package="1"
  3433. />
  3434. <otaLanguage
  3435. id="0"
  3436. name="Spanish"
  3437. package="2"
  3438. />
  3439. <otaLanguage
  3440. id="0"
  3441. name="Italian"
  3442. package="3"
  3443. />
  3444. <otaLanguage
  3445. id="0"
  3446. name="German"
  3447. package="4"
  3448. />
  3449. <otaLanguage
  3450. id="0"
  3451. name="Dutch"
  3452. package="5"
  3453. />
  3454. <otaLanguage
  3455. id="0"
  3456. name="Russian"
  3457. package="6"
  3458. />
  3459. <otaLanguage
  3460. id="0"
  3461. name="Chinese"
  3462. package="7"
  3463. />
  3464. <otaLanguage
  3465. id="0"
  3466. name="Korean"
  3467. package="8"
  3468. />
  3469. <otaLanguage
  3470. id="0"
  3471. name="Japanese"
  3472. package="9"
  3473. />
  3474. <otaLanguage
  3475. id="0"
  3476. name="Finnish"
  3477. package="10"
  3478. />
  3479. <otaLanguage
  3480. id="0"
  3481. name="Polish"
  3482. package="11"
  3483. />
  3484. </otaLanguages>
  3485. <otaPackages>
  3486. <package
  3487. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  3488. size="5183988"
  3489. />
  3490. <package
  3491. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  3492. size="5183988"
  3493. />
  3494. <package
  3495. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  3496. size="5183988"
  3497. />
  3498. <package
  3499. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  3500. size="5183988"
  3501. />
  3502. <package
  3503. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  3504. size="5183988"
  3505. />
  3506. <package
  3507. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  3508. size="5183988"
  3509. />
  3510. <package
  3511. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  3512. size="5183988"
  3513. />
  3514. <package
  3515. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  3516. size="5183988"
  3517. />
  3518. <package
  3519. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  3520. size="5183988"
  3521. />
  3522. <package
  3523. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  3524. size="5183988"
  3525. />
  3526. <package
  3527. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  3528. size="5183988"
  3529. />
  3530. <package
  3531. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  3532. size="5183988"
  3533. />
  3534. </otaPackages>
  3535. </productMenu>
  3536. <productMenu id="meshIntercom"
  3537. type="30" >
  3538. </productMenu>
  3539. <productMenu id="meshIntercom+"
  3540. type="3"
  3541. url="2" >
  3542. </productMenu>
  3543. <productMenu id="waveIntercom"
  3544. type="1" >
  3545. </productMenu>
  3546. <productMenu id="fmradio"
  3547. type="0" >
  3548. </productMenu>
  3549. <productMenu id="phone"
  3550. type="1" >
  3551. </productMenu>
  3552. <productMenu id="music"
  3553. type="1" >
  3554. </productMenu>
  3555. <productMenu id="musicSharing"
  3556. type="0" >
  3557. </productMenu>
  3558. <productMenu id="deviceSetting"
  3559. type="1"
  3560. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  3561. </productMenu>
  3562. <productMenu id="quickGuide"
  3563. type="0"
  3564. url=""
  3565. size="1.12MB" >
  3566. </productMenu>
  3567. <productMenu id="userGuide"
  3568. type="1"
  3569. url=""
  3570. size="2.0MB" >
  3571. </productMenu>
  3572. <productMenu id="videoGuide"
  3573. type="0"
  3574. url=""
  3575. size="3.41MB" >
  3576. </productMenu>
  3577. <productMenu id="connectGuide"
  3578. type="0"
  3579. url=""
  3580. size="1.12MB" >
  3581. </productMenu>
  3582. <productMenu id="volume"
  3583. type="16" >
  3584. </productMenu>
  3585. <productMenu id="battery"
  3586. type="1" >
  3587. </productMenu>
  3588. <productID id="6A18"
  3589. />
  3590. <productGroupable type="0"
  3591. />
  3592. </product>
  3593. <product id="SPIDERXSlim"
  3594. name="SPIDER X Slim"
  3595. series="SPIDER"
  3596. latestVersion="0.1.11"
  3597. latestVersionVoicePrompt="1.1"
  3598. show = "-1" >
  3599. <productMenu id="protocol"
  3600. type="2" >
  3601. </productMenu>
  3602. <productMenu id="ota"
  3603. type="0" >
  3604. <otaLanguages>
  3605. <otaLanguage
  3606. id="0"
  3607. name="English"
  3608. package="0"
  3609. />
  3610. <otaLanguage
  3611. id="0"
  3612. name="French"
  3613. package="1"
  3614. />
  3615. <otaLanguage
  3616. id="0"
  3617. name="Spanish"
  3618. package="2"
  3619. />
  3620. <otaLanguage
  3621. id="0"
  3622. name="Italian"
  3623. package="3"
  3624. />
  3625. <otaLanguage
  3626. id="0"
  3627. name="German"
  3628. package="4"
  3629. />
  3630. <otaLanguage
  3631. id="0"
  3632. name="Dutch"
  3633. package="5"
  3634. />
  3635. <otaLanguage
  3636. id="0"
  3637. name="Russian"
  3638. package="6"
  3639. />
  3640. <otaLanguage
  3641. id="0"
  3642. name="Chinese"
  3643. package="7"
  3644. />
  3645. <otaLanguage
  3646. id="0"
  3647. name="Korean"
  3648. package="8"
  3649. />
  3650. <otaLanguage
  3651. id="0"
  3652. name="Japanese"
  3653. package="9"
  3654. />
  3655. <otaLanguage
  3656. id="0"
  3657. name="Finnish"
  3658. package="10"
  3659. />
  3660. <otaLanguage
  3661. id="0"
  3662. name="Polish"
  3663. package="11"
  3664. />
  3665. </otaLanguages>
  3666. <otaPackages>
  3667. <package
  3668. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0.img"
  3669. size="5183988"
  3670. />
  3671. <package
  3672. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-fr-FR.img"
  3673. size="5183988"
  3674. />
  3675. <package
  3676. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-es-ES.img"
  3677. size="5183988"
  3678. />
  3679. <package
  3680. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-it-IT.img"
  3681. size="5183988"
  3682. />
  3683. <package
  3684. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-de-DE.img"
  3685. size="5183988"
  3686. />
  3687. <package
  3688. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-nl-NL.img"
  3689. size="5183988"
  3690. />
  3691. <package
  3692. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-ru-RU.img"
  3693. size="5183988"
  3694. />
  3695. <package
  3696. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-cmn-CN.img"
  3697. size="5183988"
  3698. />
  3699. <package
  3700. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-ko-KR.img"
  3701. size="5183988"
  3702. />
  3703. <package
  3704. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-ja-JP.img"
  3705. size="5183988"
  3706. />
  3707. <package
  3708. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-fi-FI.img"
  3709. size="5183988"
  3710. />
  3711. <package
  3712. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-pl-PL.img"
  3713. size="5183988"
  3714. />
  3715. </otaPackages>
  3716. </productMenu>
  3717. <productMenu id="wa"
  3718. type="0" >
  3719. </productMenu>
  3720. <productMenu id="led"
  3721. type="5" >
  3722. </productMenu>
  3723. <productMenu id="led+"
  3724. type="2"
  3725. url="1" >
  3726. </productMenu>
  3727. <productMenu id="meshIntercom"
  3728. type="30" >
  3729. </productMenu>
  3730. <productMenu id="meshIntercom+"
  3731. type="3"
  3732. url="2" >
  3733. </productMenu>
  3734. <productMenu id="waveIntercom"
  3735. type="1" >
  3736. </productMenu>
  3737. <productMenu id="fmradio"
  3738. type="0" >
  3739. </productMenu>
  3740. <productMenu id="phone"
  3741. type="1" >
  3742. </productMenu>
  3743. <productMenu id="music"
  3744. type="1" >
  3745. </productMenu>
  3746. <productMenu id="musicSharing"
  3747. type="0" >
  3748. </productMenu>
  3749. <productMenu id="deviceSetting"
  3750. type="1"
  3751. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  3752. </productMenu>
  3753. <productMenu id="quickGuide"
  3754. type="0"
  3755. url=""
  3756. size="1.12MB" >
  3757. </productMenu>
  3758. <productMenu id="userGuide"
  3759. type="1"
  3760. url=""
  3761. size="2.0MB" >
  3762. </productMenu>
  3763. <productMenu id="videoGuide"
  3764. type="0"
  3765. url=""
  3766. size="3.41MB" >
  3767. </productMenu>
  3768. <productMenu id="volume"
  3769. type="16" >
  3770. </productMenu>
  3771. <productMenu id="battery"
  3772. type="1" >
  3773. </productMenu>
  3774. <productID id="6A07"
  3775. />
  3776. <productGroupable type="0"
  3777. />
  3778. </product>
  3779. <product id="VORTEXMESH"
  3780. name="VORTEX MESH"
  3781. series="Helmet"
  3782. latestVersion="0.1.11"
  3783. latestVersionVoicePrompt="1.1"
  3784. show = "-1" >
  3785. <productMenu id="protocol"
  3786. type="2" >
  3787. </productMenu>
  3788. <productMenu id="ota"
  3789. type="0" >
  3790. <otaLanguages>
  3791. <otaLanguage
  3792. id="0"
  3793. name="English"
  3794. package="0"
  3795. />
  3796. <otaLanguage
  3797. id="0"
  3798. name="French"
  3799. package="1"
  3800. />
  3801. <otaLanguage
  3802. id="0"
  3803. name="Spanish"
  3804. package="2"
  3805. />
  3806. <otaLanguage
  3807. id="0"
  3808. name="Italian"
  3809. package="3"
  3810. />
  3811. <otaLanguage
  3812. id="0"
  3813. name="German"
  3814. package="4"
  3815. />
  3816. <otaLanguage
  3817. id="0"
  3818. name="Dutch"
  3819. package="5"
  3820. />
  3821. <otaLanguage
  3822. id="0"
  3823. name="Russian"
  3824. package="6"
  3825. />
  3826. <otaLanguage
  3827. id="0"
  3828. name="Chinese"
  3829. package="7"
  3830. />
  3831. <otaLanguage
  3832. id="0"
  3833. name="Korean"
  3834. package="8"
  3835. />
  3836. <otaLanguage
  3837. id="0"
  3838. name="Japanese"
  3839. package="9"
  3840. />
  3841. <otaLanguage
  3842. id="0"
  3843. name="Finnish"
  3844. package="10"
  3845. />
  3846. <otaLanguage
  3847. id="0"
  3848. name="Polish"
  3849. package="11"
  3850. />
  3851. </otaLanguages>
  3852. <otaPackages>
  3853. <package
  3854. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  3855. size="5183988"
  3856. />
  3857. <package
  3858. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  3859. size="5183988"
  3860. />
  3861. <package
  3862. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  3863. size="5183988"
  3864. />
  3865. <package
  3866. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  3867. size="5183988"
  3868. />
  3869. <package
  3870. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  3871. size="5183988"
  3872. />
  3873. <package
  3874. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  3875. size="5183988"
  3876. />
  3877. <package
  3878. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  3879. size="5183988"
  3880. />
  3881. <package
  3882. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  3883. size="5183988"
  3884. />
  3885. <package
  3886. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  3887. size="5183988"
  3888. />
  3889. <package
  3890. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  3891. size="5183988"
  3892. />
  3893. <package
  3894. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  3895. size="5183988"
  3896. />
  3897. <package
  3898. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  3899. size="5183988"
  3900. />
  3901. </otaPackages>
  3902. </productMenu>
  3903. <productMenu id="wa"
  3904. type="0" >
  3905. </productMenu>
  3906. <productMenu id="led"
  3907. type="5" >
  3908. </productMenu>
  3909. <productMenu id="led+"
  3910. type="2"
  3911. url="1" >
  3912. </productMenu>
  3913. <productMenu id="meshIntercom"
  3914. type="30" >
  3915. </productMenu>
  3916. <productMenu id="meshIntercom+"
  3917. type="3"
  3918. url="2" >
  3919. </productMenu>
  3920. <productMenu id="waveIntercom"
  3921. type="1" >
  3922. </productMenu>
  3923. <productMenu id="fmradio"
  3924. type="0" >
  3925. </productMenu>
  3926. <productMenu id="phone"
  3927. type="1" >
  3928. </productMenu>
  3929. <productMenu id="music"
  3930. type="1" >
  3931. </productMenu>
  3932. <productMenu id="musicSharing"
  3933. type="0" >
  3934. </productMenu>
  3935. <productMenu id="deviceSetting"
  3936. type="1"
  3937. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  3938. </productMenu>
  3939. <productMenu id="quickGuide"
  3940. type="0"
  3941. url=""
  3942. size="1.12MB" >
  3943. </productMenu>
  3944. <productMenu id="userGuide"
  3945. type="1"
  3946. url=""
  3947. size="2.0MB" >
  3948. </productMenu>
  3949. <productMenu id="videoGuide"
  3950. type="0"
  3951. url=""
  3952. size="3.41MB" >
  3953. </productMenu>
  3954. <productMenu id="volume"
  3955. type="16" >
  3956. </productMenu>
  3957. <productMenu id="battery"
  3958. type="1" >
  3959. </productMenu>
  3960. <productID id="6A12"
  3961. />
  3962. <productGroupable type="0"
  3963. />
  3964. </product>
  3965. <product id="Impulse"
  3966. name="Impulse"
  3967. series="Helmet"
  3968. latestVersion="1.4"
  3969. show = "1" >
  3970. <productMenu id="protocol"
  3971. type="2" >
  3972. </productMenu>
  3973. <productMenu id="alexa"
  3974. type="0" >
  3975. </productMenu>
  3976. <productMenu id="ota"
  3977. type="0" >
  3978. </productMenu>
  3979. <productMenu id="wa"
  3980. type="24" >
  3981. </productMenu>
  3982. <productMenu id="manager"
  3983. type="0" >
  3984. </productMenu>
  3985. <productMenu id="sip"
  3986. type="1" >
  3987. </productMenu>
  3988. <productMenu id="led"
  3989. type="1" >
  3990. <productMenuType version="1.0.1"
  3991. type="2"
  3992. />
  3993. <productMenuType version="1.0"
  3994. type="1"
  3995. />
  3996. </productMenu>
  3997. <productMenu id="meshIntercom"
  3998. type="30" >
  3999. <productMenuType version="1.1.1"
  4000. type="20"
  4001. />
  4002. </productMenu>
  4003. <productMenu id="meshIntercom+"
  4004. type="3"
  4005. url="2" >
  4006. <productMenuType version="1.3.9"
  4007. type="2"
  4008. />
  4009. <productMenuURL version="1.1.1"
  4010. url="0"
  4011. />
  4012. </productMenu>
  4013. <productMenu id="waveIntercom"
  4014. type="1" >
  4015. <productMenuType version="1.3.9"
  4016. type="0"
  4017. />
  4018. </productMenu>
  4019. <productMenu id="bluetoothIntercom"
  4020. type="1" >
  4021. </productMenu>
  4022. <productMenu id="phone"
  4023. type="1" >
  4024. </productMenu>
  4025. <productMenu id="music"
  4026. type="1" >
  4027. </productMenu>
  4028. <productMenu id="fmradio"
  4029. type="1" >
  4030. </productMenu>
  4031. <productMenu id="deviceSetting"
  4032. type="1"
  4033. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4034. <productMenuURL version="1.3.9"
  4035. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4036. />
  4037. <productMenuURL version="1.1.1"
  4038. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4039. />
  4040. <productMenuURL version="1.0.4"
  4041. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4042. />
  4043. </productMenu>
  4044. <productMenu id="quickGuide"
  4045. type="0"
  4046. url=""
  4047. size="344KB" >
  4048. </productMenu>
  4049. <productMenu id="userGuide"
  4050. type="1"
  4051. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  4052. size="3.41MB" >
  4053. </productMenu>
  4054. <productMenu id="connectGuide"
  4055. type="1"
  4056. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4057. size="1.12MB" >
  4058. </productMenu>
  4059. <productMenu id="volume"
  4060. type="11" >
  4061. </productMenu>
  4062. <productMenu id="battery"
  4063. type="1" >
  4064. </productMenu>
  4065. <productID id="3148"
  4066. />
  4067. <productGroupable type="0"
  4068. />
  4069. </product>
  4070. <product id="Impulse"
  4071. name="Impulse"
  4072. series="Helmet"
  4073. latestVersion="2.0"
  4074. show = "-1" >
  4075. <productMenu id="protocol"
  4076. type="2" >
  4077. </productMenu>
  4078. <productMenu id="alexa"
  4079. type="0" >
  4080. </productMenu>
  4081. <productMenu id="ota"
  4082. type="0" >
  4083. </productMenu>
  4084. <productMenu id="wa"
  4085. type="8" >
  4086. </productMenu>
  4087. <productMenu id="manager"
  4088. type="0" >
  4089. </productMenu>
  4090. <productMenu id="sip"
  4091. type="1" >
  4092. </productMenu>
  4093. <productMenu id="led"
  4094. type="3" >
  4095. </productMenu>
  4096. <productMenu id="meshIntercom"
  4097. type="20" >
  4098. </productMenu>
  4099. <productMenu id="bluetoothIntercom"
  4100. type="1" >
  4101. </productMenu>
  4102. <productMenu id="phone"
  4103. type="1" >
  4104. </productMenu>
  4105. <productMenu id="music"
  4106. type="1" >
  4107. </productMenu>
  4108. <productMenu id="fmradio"
  4109. type="1" >
  4110. </productMenu>
  4111. <productMenu id="deviceSetting"
  4112. type="1"
  4113. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  4114. </productMenu>
  4115. <productMenu id="quickGuide"
  4116. type="1"
  4117. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  4118. size="344KB" >
  4119. </productMenu>
  4120. <productMenu id="userGuide"
  4121. type="1"
  4122. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  4123. size="3.41MB" >
  4124. </productMenu>
  4125. <productMenu id="volume"
  4126. type="11" >
  4127. </productMenu>
  4128. <productMenu id="battery"
  4129. type="1" >
  4130. </productMenu>
  4131. <productID id="3221"
  4132. />
  4133. <productGroupable type="0"
  4134. />
  4135. </product>
  4136. <product id="Stryker"
  4137. name="Stryker"
  4138. series="Helmet"
  4139. latestVersion="1.4"
  4140. show = "1" >
  4141. <productMenu id="protocol"
  4142. type="2" >
  4143. </productMenu>
  4144. <productMenu id="alexa"
  4145. type="0" >
  4146. </productMenu>
  4147. <productMenu id="ota"
  4148. type="0" >
  4149. </productMenu>
  4150. <productMenu id="wa"
  4151. type="40" >
  4152. </productMenu>
  4153. <productMenu id="manager"
  4154. type="0" >
  4155. </productMenu>
  4156. <productMenu id="sip"
  4157. type="1" >
  4158. </productMenu>
  4159. <productMenu id="led"
  4160. type="1" >
  4161. <productMenuType version="1.0.1"
  4162. type="2"
  4163. />
  4164. <productMenuType version="1.0"
  4165. type="1"
  4166. />
  4167. </productMenu>
  4168. <productMenu id="meshIntercom"
  4169. type="30" >
  4170. <productMenuType version="1.1.1"
  4171. type="20"
  4172. />
  4173. </productMenu>
  4174. <productMenu id="meshIntercom+"
  4175. type="3"
  4176. url="2" >
  4177. <productMenuType version="1.3.9"
  4178. type="2"
  4179. />
  4180. <productMenuURL version="1.1.1"
  4181. url="0"
  4182. />
  4183. </productMenu>
  4184. <productMenu id="waveIntercom"
  4185. type="1" >
  4186. <productMenuType version="1.2.9"
  4187. type="0"
  4188. />
  4189. </productMenu>
  4190. <productMenu id="bluetoothIntercom"
  4191. type="1" >
  4192. </productMenu>
  4193. <productMenu id="phone"
  4194. type="1" >
  4195. </productMenu>
  4196. <productMenu id="music"
  4197. type="1" >
  4198. </productMenu>
  4199. <productMenu id="fmradio"
  4200. type="1" >
  4201. </productMenu>
  4202. <productMenu id="deviceSetting"
  4203. type="1"
  4204. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4205. <productMenuURL version="1.3.9"
  4206. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4207. />
  4208. <productMenuURL version="1.1.1"
  4209. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4210. />
  4211. <productMenuURL version="1.0.4"
  4212. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4213. />
  4214. </productMenu>
  4215. <productMenu id="quickGuide"
  4216. type="0"
  4217. url=""
  4218. size="344KB" >
  4219. </productMenu>
  4220. <productMenu id="userGuide"
  4221. type="1"
  4222. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  4223. size="3.41MB" >
  4224. </productMenu>
  4225. <productMenu id="connectGuide"
  4226. type="1"
  4227. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4228. size="1.12MB" >
  4229. </productMenu>
  4230. <productMenu id="volume"
  4231. type="11" >
  4232. </productMenu>
  4233. <productMenu id="battery"
  4234. type="1" >
  4235. </productMenu>
  4236. <productID id="3154"
  4237. />
  4238. <productGroupable type="0"
  4239. />
  4240. </product>
  4241. <product id="SRL3Plus"
  4242. name="SRL3 Plus"
  4243. series="60"
  4244. latestVersion="1.0"
  4245. latestVersionMesh="1.0"
  4246. latestVersionVoicePrompt="1.0"
  4247. show = "-1" >
  4248. <productMenu id="protocol"
  4249. type="2" >
  4250. </productMenu>
  4251. <productMenu id="ota"
  4252. type="0" >
  4253. <otaLanguages>
  4254. <otaLanguage
  4255. id="0"
  4256. name="English"
  4257. package="0"
  4258. />
  4259. <otaLanguage
  4260. id="0"
  4261. name="French"
  4262. package="1"
  4263. />
  4264. <otaLanguage
  4265. id="0"
  4266. name="Spanish"
  4267. package="2"
  4268. />
  4269. <otaLanguage
  4270. id="0"
  4271. name="Italian"
  4272. package="3"
  4273. />
  4274. <otaLanguage
  4275. id="0"
  4276. name="German"
  4277. package="4"
  4278. />
  4279. <otaLanguage
  4280. id="0"
  4281. name="Dutch"
  4282. package="5"
  4283. />
  4284. <otaLanguage
  4285. id="0"
  4286. name="Russian"
  4287. package="6"
  4288. />
  4289. <otaLanguage
  4290. id="0"
  4291. name="Chinese"
  4292. package="7"
  4293. />
  4294. <otaLanguage
  4295. id="0"
  4296. name="Korean"
  4297. package="8"
  4298. />
  4299. <otaLanguage
  4300. id="0"
  4301. name="Japanese"
  4302. package="9"
  4303. />
  4304. <otaLanguage
  4305. id="0"
  4306. name="Finnish"
  4307. package="10"
  4308. />
  4309. </otaLanguages>
  4310. <otaPackages>
  4311. <package
  4312. url="https://api.sena.com/support/OTA/60S/SRL3Plus-v1.1.5-build0.img"
  4313. size="5183988"
  4314. />
  4315. <package
  4316. url="https://api.sena.com/support/OTA/60S/SRL3Plus-v1.1.5-build0-fr-FR.img"
  4317. size="5183988"
  4318. />
  4319. <package
  4320. url="https://api.sena.com/support/OTA/60S/SRL3Plus-v1.1.5-build0-es-ES.img"
  4321. size="5183988"
  4322. />
  4323. <package
  4324. url="https://api.sena.com/support/OTA/60S/SRL3Plus-v1.1.5-build0-it-IT.img"
  4325. size="5183988"
  4326. />
  4327. <package
  4328. url="https://api.sena.com/support/OTA/60S/SRL3Plus-v1.1.5-build0-de-DE.img"
  4329. size="5183988"
  4330. />
  4331. <package
  4332. url="https://api.sena.com/support/OTA/60S/SRL3Plus-v1.1.5-build0-nl-NL.img"
  4333. size="5183988"
  4334. />
  4335. <package
  4336. url="https://api.sena.com/support/OTA/60S/SRL3Plus-v1.1.5-build0-ru-RU.img"
  4337. size="5183988"
  4338. />
  4339. <package
  4340. url="https://api.sena.com/support/OTA/60S/SRL3Plus-v1.1.5-build0-cmn-CN.img"
  4341. size="5183988"
  4342. />
  4343. <package
  4344. url="https://api.sena.com/support/OTA/60S/SRL3Plus-v1.1.5-build0-ko-KR.img"
  4345. size="5183988"
  4346. />
  4347. <package
  4348. url="https://api.sena.com/support/OTA/60S/SRL3Plus-v1.1.5-build0-ja-JP.img"
  4349. size="5183988"
  4350. />
  4351. <package
  4352. url="https://api.sena.com/support/OTA/60S/SRL3Plus-v1.1.5-build0-fi-FI.img"
  4353. size="5183988"
  4354. />
  4355. </otaPackages>
  4356. </productMenu>
  4357. <productMenu id="sip"
  4358. type="1" >
  4359. </productMenu>
  4360. <productMenu id="illusion"
  4361. type="1" >
  4362. </productMenu>
  4363. <productMenu id="meshIntercom+"
  4364. type="3"
  4365. url="2" >
  4366. </productMenu>
  4367. <productMenu id="waveIntercom"
  4368. type="1" >
  4369. </productMenu>
  4370. <productMenu id="bluetoothIntercom"
  4371. type="1"
  4372. url="2" >
  4373. </productMenu>
  4374. <productMenu id="bluetoothIntercomGrouping"
  4375. type="0" >
  4376. </productMenu>
  4377. <productMenu id="fmradio"
  4378. type="1"
  4379. url="1" >
  4380. </productMenu>
  4381. <productMenu id="phone"
  4382. type="1" >
  4383. </productMenu>
  4384. <productMenu id="music"
  4385. type="1" >
  4386. </productMenu>
  4387. <productMenu id="musicSharing"
  4388. type="0" >
  4389. </productMenu>
  4390. <productMenu id="deviceSetting"
  4391. type="1"
  4392. url="https://api.sena.com/support/test/xml/NS_SRL60_UCOM16R_ALPINESTARS_Only_Test.xml" >
  4393. </productMenu>
  4394. <productMenu id="quickGuide"
  4395. type="0"
  4396. url=""
  4397. size="1.12MB" >
  4398. </productMenu>
  4399. <productMenu id="userGuide"
  4400. type="0"
  4401. url=""
  4402. size="2.0MB" >
  4403. </productMenu>
  4404. <productMenu id="videoGuide"
  4405. type="0"
  4406. url=""
  4407. size="3.41MB" >
  4408. </productMenu>
  4409. <productMenu id="volume"
  4410. type="16" >
  4411. </productMenu>
  4412. <productMenu id="soundMode"
  4413. type="1" >
  4414. </productMenu>
  4415. <productMenu id="battery"
  4416. type="1" >
  4417. </productMenu>
  4418. <productID id="6A08"
  4419. />
  4420. <productGroupable type="0"
  4421. />
  4422. </product>
  4423. <product id="SRL3"
  4424. name="SRL3"
  4425. series="SRL"
  4426. latestVersion="1.5"
  4427. show = "1" >
  4428. <productMenu id="protocol"
  4429. type="2" >
  4430. </productMenu>
  4431. <productMenu id="alexa"
  4432. type="0" >
  4433. </productMenu>
  4434. <productMenu id="ota"
  4435. type="0" >
  4436. </productMenu>
  4437. <productMenu id="wa"
  4438. type="1" >
  4439. </productMenu>
  4440. <productMenu id="sip"
  4441. type="1" >
  4442. </productMenu>
  4443. <productMenu id="meshIntercom"
  4444. type="30" >
  4445. </productMenu>
  4446. <productMenu id="meshIntercom+"
  4447. type="3"
  4448. url="2" >
  4449. <productMenuType version="1.3.9"
  4450. type="2"
  4451. />
  4452. </productMenu>
  4453. <productMenu id="waveIntercom"
  4454. type="1" >
  4455. <productMenuType version="1.4.9"
  4456. type="0"
  4457. />
  4458. </productMenu>
  4459. <productMenu id="bluetoothIntercom"
  4460. type="1" >
  4461. </productMenu>
  4462. <productMenu id="phone"
  4463. type="1" >
  4464. </productMenu>
  4465. <productMenu id="music"
  4466. type="1" >
  4467. </productMenu>
  4468. <productMenu id="fmradio"
  4469. type="1" >
  4470. </productMenu>
  4471. <productMenu id="deviceSetting"
  4472. type="1"
  4473. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  4474. <productMenuURL version="1.3"
  4475. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  4476. />
  4477. </productMenu>
  4478. <productMenu id="quickGuide"
  4479. type="0"
  4480. url=""
  4481. size="344KB" >
  4482. </productMenu>
  4483. <productMenu id="userGuide"
  4484. type="1"
  4485. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  4486. size="3.41MB" >
  4487. </productMenu>
  4488. <productMenu id="connectGuide"
  4489. type="1"
  4490. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4491. size="1.12MB" >
  4492. </productMenu>
  4493. <productMenu id="volume"
  4494. type="11" >
  4495. </productMenu>
  4496. <productMenu id="battery"
  4497. type="1" >
  4498. </productMenu>
  4499. <productID id="3219"
  4500. />
  4501. <productGroupable type="0"
  4502. />
  4503. </product>
  4504. <product id="SRL_Mesh"
  4505. name="SRL-Mesh"
  4506. series="SRL"
  4507. latestVersion="1.7"
  4508. show = "1" >
  4509. <productMenu id="protocol"
  4510. type="2" >
  4511. </productMenu>
  4512. <productMenu id="alexa"
  4513. type="0" >
  4514. </productMenu>
  4515. <productMenu id="ota"
  4516. type="0" >
  4517. </productMenu>
  4518. <productMenu id="wa"
  4519. type="1" >
  4520. </productMenu>
  4521. <productMenu id="sip"
  4522. type="1" >
  4523. </productMenu>
  4524. <productMenu id="meshIntercom"
  4525. type="30" >
  4526. <productMenuType version="1.1.1"
  4527. type="20"
  4528. />
  4529. </productMenu>
  4530. <productMenu id="meshIntercom+"
  4531. type="3"
  4532. url="2" >
  4533. <productMenuType version="1.5.9"
  4534. type="2"
  4535. />
  4536. <productMenuURL version="1.1.1"
  4537. url="0"
  4538. />
  4539. </productMenu>
  4540. <productMenu id="waveIntercom"
  4541. type="1" >
  4542. <productMenuType version="1.6.9"
  4543. type="0"
  4544. />
  4545. </productMenu>
  4546. <productMenu id="bluetoothIntercom"
  4547. type="1" >
  4548. </productMenu>
  4549. <productMenu id="phone"
  4550. type="1" >
  4551. </productMenu>
  4552. <productMenu id="music"
  4553. type="1" >
  4554. </productMenu>
  4555. <productMenu id="fmradio"
  4556. type="1" >
  4557. </productMenu>
  4558. <productMenu id="deviceSetting"
  4559. type="1"
  4560. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  4561. <productMenuURL version="1.5"
  4562. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  4563. />
  4564. <productMenuURL version="1.1.1"
  4565. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  4566. />
  4567. <productMenuURL version="1.0.3"
  4568. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  4569. />
  4570. </productMenu>
  4571. <productMenu id="quickGuide"
  4572. type="0"
  4573. url=""
  4574. size="344KB" >
  4575. </productMenu>
  4576. <productMenu id="userGuide"
  4577. type="1"
  4578. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  4579. size="3.41MB" >
  4580. </productMenu>
  4581. <productMenu id="connectGuide"
  4582. type="1"
  4583. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4584. size="1.12MB" >
  4585. </productMenu>
  4586. <productMenu id="volume"
  4587. type="11" >
  4588. </productMenu>
  4589. <productMenu id="battery"
  4590. type="1" >
  4591. </productMenu>
  4592. <productID id="3216"
  4593. />
  4594. <productGroupable type="0"
  4595. />
  4596. </product>
  4597. <product id="SRL_EXT"
  4598. name="SRL-EXT"
  4599. series="SRL"
  4600. latestVersion="1.7"
  4601. show = "1" >
  4602. <productMenu id="protocol"
  4603. type="2" >
  4604. </productMenu>
  4605. <productMenu id="alexa"
  4606. type="0" >
  4607. </productMenu>
  4608. <productMenu id="ota"
  4609. type="0" >
  4610. </productMenu>
  4611. <productMenu id="wa"
  4612. type="0" >
  4613. </productMenu>
  4614. <productMenu id="sip"
  4615. type="1" >
  4616. </productMenu>
  4617. <productMenu id="meshIntercom"
  4618. type="30" >
  4619. <productMenuType version="1.1.1"
  4620. type="20"
  4621. />
  4622. </productMenu>
  4623. <productMenu id="meshIntercom+"
  4624. type="3"
  4625. url="2" >
  4626. <productMenuType version="1.5.9"
  4627. type="2"
  4628. />
  4629. <productMenuURL version="1.1.1"
  4630. url="0"
  4631. />
  4632. </productMenu>
  4633. <productMenu id="waveIntercom"
  4634. type="1" >
  4635. <productMenuType version="1.6.9"
  4636. type="0"
  4637. />
  4638. </productMenu>
  4639. <productMenu id="bluetoothIntercom"
  4640. type="1" >
  4641. </productMenu>
  4642. <productMenu id="phone"
  4643. type="1" >
  4644. </productMenu>
  4645. <productMenu id="music"
  4646. type="1" >
  4647. </productMenu>
  4648. <productMenu id="fmradio"
  4649. type="1" >
  4650. </productMenu>
  4651. <productMenu id="deviceSetting"
  4652. type="1"
  4653. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  4654. <productMenuURL version="1.5"
  4655. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  4656. />
  4657. <productMenuURL version="1.1.1"
  4658. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  4659. />
  4660. <productMenuURL version="1.0.3"
  4661. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  4662. />
  4663. </productMenu>
  4664. <productMenu id="quickGuide"
  4665. type="0"
  4666. url=""
  4667. size="344KB" >
  4668. </productMenu>
  4669. <productMenu id="userGuide"
  4670. type="1"
  4671. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  4672. size="3.41MB" >
  4673. </productMenu>
  4674. <productMenu id="connectGuide"
  4675. type="1"
  4676. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4677. size="1.12MB" >
  4678. </productMenu>
  4679. <productMenu id="volume"
  4680. type="11" >
  4681. </productMenu>
  4682. <productMenu id="battery"
  4683. type="1" >
  4684. </productMenu>
  4685. <productID id="3212"
  4686. />
  4687. <productGroupable type="0"
  4688. />
  4689. </product>
  4690. <product id="SRL2"
  4691. name="SRL2"
  4692. series="SRL"
  4693. latestVersion="1.0.9"
  4694. show = "1" >
  4695. <productMenu id="protocol"
  4696. type="0">
  4697. </productMenu>
  4698. <productMenu id="sip"
  4699. type="1" >
  4700. </productMenu>
  4701. <productMenu id="bluetoothIntercom"
  4702. type="1" >
  4703. </productMenu>
  4704. <productMenu id="intercomSetting"
  4705. type="1" >
  4706. </productMenu>
  4707. <productMenu id="phone"
  4708. type="2" >
  4709. </productMenu>
  4710. <productMenu id="fmradio"
  4711. type="3" >
  4712. </productMenu>
  4713. <productMenu id="deviceSetting"
  4714. type="1"
  4715. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  4716. </productMenu>
  4717. <productMenu id="quickGuide"
  4718. type="1"
  4719. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  4720. size="846KB" >
  4721. </productMenu>
  4722. <productMenu id="userGuide"
  4723. type="1"
  4724. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  4725. size="1.18MB" >
  4726. </productMenu>
  4727. <productMenu id="connectGuide"
  4728. type="1"
  4729. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  4730. size="1.12MB" >
  4731. </productMenu>
  4732. <productID id="4530"
  4733. />
  4734. <productGroupable type="1"
  4735. />
  4736. </product>
  4737. <product id="Neotec2"
  4738. name="SRL Neotec2"
  4739. series="SRL"
  4740. latestVersion="1.1.5"
  4741. show = "1" >
  4742. <productMenu id="protocol"
  4743. type="0">
  4744. </productMenu>
  4745. <productMenu id="sip"
  4746. type="1" >
  4747. </productMenu>
  4748. <productMenu id="bluetoothIntercom"
  4749. type="1" >
  4750. </productMenu>
  4751. <productMenu id="intercomSetting"
  4752. type="1" >
  4753. </productMenu>
  4754. <productMenu id="phone"
  4755. type="2" >
  4756. </productMenu>
  4757. <productMenu id="fmradio"
  4758. type="3" >
  4759. </productMenu>
  4760. <productMenu id="deviceSetting"
  4761. type="1"
  4762. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  4763. </productMenu>
  4764. <productMenu id="quickGuide"
  4765. type="0"
  4766. url=""
  4767. size="796KB" >
  4768. </productMenu>
  4769. <productMenu id="userGuide"
  4770. type="1"
  4771. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  4772. size="1.90MB" >
  4773. </productMenu>
  4774. <productMenu id="connectGuide"
  4775. type="1"
  4776. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  4777. size="1.12MB" >
  4778. </productMenu>
  4779. <productID id="4510"
  4780. />
  4781. <productGroupable type="1"
  4782. />
  4783. </product>
  4784. <product id="SPIDERST2ANC"
  4785. name="SPIDER ST2 ANC"
  4786. series="SPIDER"
  4787. latestVersion="0.5.1"
  4788. latestVersionVoicePrompt="0.2"
  4789. latestVersionMesh="0.8"
  4790. show = "-1" >
  4791. <productMenu id="protocol"
  4792. type="2" >
  4793. </productMenu>
  4794. <productMenu id="ota"
  4795. type="0" >
  4796. <otaPackages>
  4797. <package
  4798. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  4799. size="2945812"
  4800. />
  4801. </otaPackages>
  4802. </productMenu>
  4803. <productMenu id="wa"
  4804. type="0" >
  4805. </productMenu>
  4806. <productMenu id="led"
  4807. type="1" >
  4808. </productMenu>
  4809. <productMenu id="meshIntercom"
  4810. type="30" >
  4811. </productMenu>
  4812. <productMenu id="fmradio"
  4813. type="1" >
  4814. </productMenu>
  4815. <productMenu id="phone"
  4816. type="1" >
  4817. </productMenu>
  4818. <productMenu id="music"
  4819. type="1" >
  4820. </productMenu>
  4821. <productMenu id="musicSharing"
  4822. type="0" >
  4823. </productMenu>
  4824. <productMenu id="deviceSetting"
  4825. type="1"
  4826. url="https://api.sena.com/support/test/xml/NS_60R_OTATest_02.xml" >
  4827. </productMenu>
  4828. <productMenu id="quickGuide"
  4829. type="1"
  4830. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  4831. size="1.12MB" >
  4832. </productMenu>
  4833. <productMenu id="userGuide"
  4834. type="1"
  4835. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  4836. size="2.0MB" >
  4837. </productMenu>
  4838. <productMenu id="videoGuide"
  4839. type="1"
  4840. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  4841. size="3.41MB" >
  4842. </productMenu>
  4843. <productMenu id="volume"
  4844. type="12" >
  4845. </productMenu>
  4846. <productMenu id="battery"
  4847. type="1" >
  4848. </productMenu>
  4849. <productID id="6A00"
  4850. />
  4851. <productGroupable type="0"
  4852. />
  4853. </product>
  4854. <product id="SPIDER_ST1"
  4855. name="SPIDER ST1"
  4856. series="SPIDER"
  4857. latestVersion="2.5"
  4858. latestVersionVoicePrompt="1.1"
  4859. show = "1" >
  4860. <productMenu id="protocol"
  4861. type="2" >
  4862. </productMenu>
  4863. <productMenu id="alexa"
  4864. type="0" >
  4865. </productMenu>
  4866. <productMenu id="ota"
  4867. type="2" >
  4868. <productMenuType version="2.1.9"
  4869. type="0"
  4870. />
  4871. <otaPackages>
  4872. <package
  4873. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_ST1-v2.5-build1.img"
  4874. size="2945812"
  4875. />
  4876. </otaPackages>
  4877. </productMenu>
  4878. <productMenu id="wa"
  4879. type="0" >
  4880. </productMenu>
  4881. <productMenu id="meshIntercom"
  4882. type="30" >
  4883. <productMenuType version="2.1.1"
  4884. type="20"
  4885. />
  4886. </productMenu>
  4887. <productMenu id="meshIntercom+"
  4888. type="3"
  4889. url="2" >
  4890. <productMenuType version="2.2.9"
  4891. type="2"
  4892. />
  4893. <productMenuURL version="2.1.1"
  4894. url="0"
  4895. />
  4896. </productMenu>
  4897. <productMenu id="waveIntercom"
  4898. type="1" >
  4899. <productMenuType version="2.3.9"
  4900. type="0"
  4901. />
  4902. </productMenu>
  4903. <productMenu id="phone"
  4904. type="1" >
  4905. </productMenu>
  4906. <productMenu id="music"
  4907. type="1" >
  4908. </productMenu>
  4909. <productMenu id="musicSharing"
  4910. type="0" >
  4911. </productMenu>
  4912. <productMenu id="deviceSetting"
  4913. type="1"
  4914. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  4915. <productMenuURL version="2.4.9"
  4916. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  4917. />
  4918. <productMenuURL version="2.2.2"
  4919. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  4920. />
  4921. <productMenuURL version="2.1.1"
  4922. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  4923. />
  4924. </productMenu>
  4925. <productMenu id="quickGuide"
  4926. type="0"
  4927. url=""
  4928. size="1.12MB" >
  4929. </productMenu>
  4930. <productMenu id="userGuide"
  4931. type="1"
  4932. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  4933. size="2.0MB" >
  4934. </productMenu>
  4935. <productMenu id="videoGuide"
  4936. type="1"
  4937. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  4938. size="3.41MB" >
  4939. </productMenu>
  4940. <productMenu id="connectGuide"
  4941. type="1"
  4942. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  4943. size="1.12MB" >
  4944. </productMenu>
  4945. <productMenu id="volume"
  4946. type="12" >
  4947. </productMenu>
  4948. <productMenu id="battery"
  4949. type="1" >
  4950. </productMenu>
  4951. <productID id="6800"
  4952. />
  4953. <productGroupable type="0"
  4954. />
  4955. </product>
  4956. <product id="SPIDER_ST1"
  4957. name="SPIDER ST1"
  4958. series="SPIDER"
  4959. latestVersion="1.2.2"
  4960. show = "-1" >
  4961. <productMenu id="protocol"
  4962. type="2" >
  4963. </productMenu>
  4964. <productMenu id="alexa"
  4965. type="0" >
  4966. </productMenu>
  4967. <productMenu id="ota"
  4968. type="0" >
  4969. </productMenu>
  4970. <productMenu id="wa"
  4971. type="0" >
  4972. </productMenu>
  4973. <productMenu id="meshIntercom"
  4974. type="20" >
  4975. </productMenu>
  4976. <productMenu id="phone"
  4977. type="1" >
  4978. </productMenu>
  4979. <productMenu id="music"
  4980. type="1" >
  4981. </productMenu>
  4982. <productMenu id="deviceSetting"
  4983. type="1"
  4984. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  4985. </productMenu>
  4986. <productMenu id="quickGuide"
  4987. type="0"
  4988. url=""
  4989. size="1.12MB" >
  4990. </productMenu>
  4991. <productMenu id="userGuide"
  4992. type="1"
  4993. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  4994. size="2.0MB" >
  4995. </productMenu>
  4996. <productMenu id="videoGuide"
  4997. type="1"
  4998. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  4999. size="3.41MB" >
  5000. </productMenu>
  5001. <productMenu id="volume"
  5002. type="13" >
  5003. <productMenuType version="1.1.6"
  5004. type="14"/>
  5005. </productMenu>
  5006. <productMenu id="battery"
  5007. type="1" >
  5008. </productMenu>
  5009. <productID id="6510"
  5010. />
  5011. <productGroupable type="0"
  5012. />
  5013. </product>
  5014. <product id="SPIDER_RT1"
  5015. name="SPIDER RT1"
  5016. series="SPIDER"
  5017. latestVersion="2.5"
  5018. latestVersionVoicePrompt="1.1"
  5019. show = "1" >
  5020. <productMenu id="protocol"
  5021. type="2" >
  5022. </productMenu>
  5023. <productMenu id="alexa"
  5024. type="0" >
  5025. </productMenu>
  5026. <productMenu id="ota"
  5027. type="2" >
  5028. <productMenuType version="2.1.9"
  5029. type="0"
  5030. />
  5031. <otaPackages>
  5032. <package
  5033. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_RT1-v2.5-build1.img"
  5034. size="2945812"
  5035. />
  5036. </otaPackages>
  5037. </productMenu>
  5038. <productMenu id="wa"
  5039. type="0" >
  5040. </productMenu>
  5041. <productMenu id="meshIntercom"
  5042. type="30" >
  5043. <productMenuType version="2.1.1"
  5044. type="20"
  5045. />
  5046. </productMenu>
  5047. <productMenu id="meshIntercom+"
  5048. type="3"
  5049. url="2" >
  5050. <productMenuType version="2.2.9"
  5051. type="2"
  5052. />
  5053. <productMenuURL version="2.1.1"
  5054. url="0"
  5055. />
  5056. </productMenu>
  5057. <productMenu id="waveIntercom"
  5058. type="1" >
  5059. <productMenuType version="2.3.9"
  5060. type="0"
  5061. />
  5062. </productMenu>
  5063. <productMenu id="phone"
  5064. type="1" >
  5065. </productMenu>
  5066. <productMenu id="music"
  5067. type="1" >
  5068. </productMenu>
  5069. <productMenu id="musicSharing"
  5070. type="0" >
  5071. </productMenu>
  5072. <productMenu id="deviceSetting"
  5073. type="1"
  5074. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5075. <productMenuURL version="2.4.9"
  5076. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5077. />
  5078. <productMenuURL version="2.2.2"
  5079. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5080. />
  5081. <productMenuURL version="2.1.1"
  5082. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5083. />
  5084. </productMenu>
  5085. <productMenu id="quickGuide"
  5086. type="0"
  5087. url=""
  5088. size="1.12MB" >
  5089. </productMenu>
  5090. <productMenu id="userGuide"
  5091. type="1"
  5092. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  5093. size="2.0MB" >
  5094. </productMenu>
  5095. <productMenu id="videoGuide"
  5096. type="1"
  5097. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5098. size="3.41MB" >
  5099. </productMenu>
  5100. <productMenu id="connectGuide"
  5101. type="1"
  5102. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  5103. size="1.12MB" >
  5104. </productMenu>
  5105. <productMenu id="volume"
  5106. type="12" >
  5107. </productMenu>
  5108. <productMenu id="battery"
  5109. type="1" >
  5110. </productMenu>
  5111. <productID id="6810"
  5112. />
  5113. <productGroupable type="0"
  5114. />
  5115. </product>
  5116. <product id="SPIDER_RT1"
  5117. name="SPIDER RT1"
  5118. series="SPIDER"
  5119. latestVersion="1.2.2"
  5120. show = "-1" >
  5121. <productMenu id="protocol"
  5122. type="2" >
  5123. </productMenu>
  5124. <productMenu id="alexa"
  5125. type="0" >
  5126. </productMenu>
  5127. <productMenu id="ota"
  5128. type="0" >
  5129. </productMenu>
  5130. <productMenu id="wa"
  5131. type="0" >
  5132. </productMenu>
  5133. <productMenu id="meshIntercom"
  5134. type="20" >
  5135. </productMenu>
  5136. <productMenu id="phone"
  5137. type="1" >
  5138. </productMenu>
  5139. <productMenu id="music"
  5140. type="1" >
  5141. </productMenu>
  5142. <productMenu id="deviceSetting"
  5143. type="1"
  5144. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5145. </productMenu>
  5146. <productMenu id="quickGuide"
  5147. type="0"
  5148. url=""
  5149. size="1.32MB" >
  5150. </productMenu>
  5151. <productMenu id="userGuide"
  5152. type="1"
  5153. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  5154. size="1.79MB" >
  5155. </productMenu>
  5156. <productMenu id="videoGuide"
  5157. type="1"
  5158. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5159. size="3.41MB" >
  5160. </productMenu>
  5161. <productMenu id="volume"
  5162. type="13" >
  5163. <productMenuType version="1.1.6"
  5164. type="14"/>
  5165. </productMenu>
  5166. <productMenu id="battery"
  5167. type="1" >
  5168. </productMenu>
  5169. <productID id="6500"
  5170. />
  5171. <productGroupable type="0"
  5172. />
  5173. </product>
  5174. <product id="30K"
  5175. name="30K"
  5176. series="30"
  5177. latestVersion="4.5"
  5178. show = "1" >
  5179. <productMenu id="protocol"
  5180. type="2" >
  5181. </productMenu>
  5182. <productMenu id="alexa"
  5183. type="0" >
  5184. </productMenu>
  5185. <productMenu id="wa"
  5186. type="1" >
  5187. </productMenu>
  5188. <productMenu id="sip"
  5189. type="1" >
  5190. </productMenu>
  5191. <productMenu id="meshIntercom"
  5192. type="30" >
  5193. <productMenuType version="4.0.4"
  5194. type="20"
  5195. />
  5196. </productMenu>
  5197. <productMenu id="meshIntercom+"
  5198. type="3"
  5199. url="2" >
  5200. <productMenuType version="4.3.9"
  5201. type="2"
  5202. />
  5203. <productMenuURL version="4.0.4"
  5204. url="0"
  5205. />
  5206. </productMenu>
  5207. <productMenu id="waveIntercom"
  5208. type="1" >
  5209. <productMenuType version="4.4.9"
  5210. type="0"
  5211. />
  5212. </productMenu>
  5213. <productMenu id="bluetoothIntercom"
  5214. type="1" >
  5215. </productMenu>
  5216. <productMenu id="phone"
  5217. type="1" >
  5218. </productMenu>
  5219. <productMenu id="music"
  5220. type="1" >
  5221. </productMenu>
  5222. <productMenu id="fmradio"
  5223. type="1" >
  5224. </productMenu>
  5225. <productMenu id="deviceSetting"
  5226. type="1"
  5227. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  5228. <productMenuURL version="4.3"
  5229. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  5230. />
  5231. <productMenuURL version="4.2"
  5232. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  5233. />
  5234. <productMenuURL version="4.0.4"
  5235. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  5236. />
  5237. </productMenu>
  5238. <productMenu id="quickGuide"
  5239. type="0"
  5240. url=""
  5241. size="934KB" >
  5242. </productMenu>
  5243. <productMenu id="userGuide"
  5244. type="1"
  5245. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  5246. size="1.14MB" >
  5247. </productMenu>
  5248. <productMenu id="connectGuide"
  5249. type="1"
  5250. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5251. size="1.12MB" >
  5252. </productMenu>
  5253. <productMenu id="volume"
  5254. type="11" >
  5255. </productMenu>
  5256. <productMenu id="battery"
  5257. type="1" >
  5258. </productMenu>
  5259. <productID id="3211"
  5260. />
  5261. <productGroupable type="0"
  5262. />
  5263. </product>
  5264. <product id="30K"
  5265. name="30K"
  5266. series="30"
  5267. latestVersion="3.5"
  5268. show = "-1" >
  5269. <productMenu id="protocol"
  5270. type="1"
  5271. url="0">
  5272. </productMenu>
  5273. <productMenu id="wa"
  5274. type="7" >
  5275. </productMenu>
  5276. <productMenu id="sip"
  5277. type="1" >
  5278. </productMenu>
  5279. <productMenu id="meshIntercom"
  5280. type="20" >
  5281. <productMenuType version="2.9.9"
  5282. type="10"
  5283. />
  5284. </productMenu>
  5285. <productMenu id="meshIntercom+"
  5286. type="3"
  5287. url="2" >
  5288. <productMenuType version="3.4.9"
  5289. type="2"
  5290. />
  5291. <productMenuType version="2.9.9"
  5292. type="1"
  5293. />
  5294. <productMenuURL version="3.3.1"
  5295. url="0"
  5296. />
  5297. </productMenu>
  5298. <productMenu id="bluetoothIntercom"
  5299. type="1" >
  5300. </productMenu>
  5301. <productMenu id="phone"
  5302. type="1" >
  5303. </productMenu>
  5304. <productMenu id="music"
  5305. type="1" >
  5306. </productMenu>
  5307. <productMenu id="fmradio"
  5308. type="1" >
  5309. </productMenu>
  5310. <productMenu id="deviceSetting"
  5311. type="1"
  5312. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  5313. <productMenuURL version="3.4.9"
  5314. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  5315. />
  5316. <productMenuURL version="3.3.1"
  5317. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  5318. />
  5319. <productMenuURL version="3.0.1"
  5320. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  5321. />
  5322. <productMenuURL version="2.3.1"
  5323. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  5324. />
  5325. <productMenuURL version="2.0"
  5326. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  5327. />
  5328. <productMenuURL version="1.0.3"
  5329. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  5330. />
  5331. </productMenu>
  5332. <productMenu id="quickGuide"
  5333. type="0"
  5334. url=""
  5335. size="1.06MB" >
  5336. </productMenu>
  5337. <productMenu id="userGuide"
  5338. type="1"
  5339. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  5340. size="3.15MB" >
  5341. </productMenu>
  5342. <productMenu id="volume"
  5343. type="1" >
  5344. </productMenu>
  5345. <productID id="3110"
  5346. />
  5347. <productGroupable type="0"
  5348. />
  5349. </product>
  5350. <product id="FURY"
  5351. name="FURY"
  5352. series="Helmet"
  5353. latestVersion="1.0"
  5354. show = "-1" >
  5355. <productMenu id="protocol"
  5356. type="2" >
  5357. </productMenu>
  5358. <productMenu id="alexa"
  5359. type="0" >
  5360. </productMenu>
  5361. <productMenu id="ota"
  5362. type="0" >
  5363. </productMenu>
  5364. <productMenu id="wa"
  5365. type="0" >
  5366. </productMenu>
  5367. <productMenu id="meshIntercom"
  5368. type="20" >
  5369. </productMenu>
  5370. <productMenu id="phone"
  5371. type="1" >
  5372. </productMenu>
  5373. <productMenu id="music"
  5374. type="1" >
  5375. </productMenu>
  5376. <productMenu id="fmradio"
  5377. type="1" >
  5378. </productMenu>
  5379. <productMenu id="deviceSetting"
  5380. type="1"
  5381. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  5382. </productMenu>
  5383. <productMenu id="quickGuide"
  5384. type="1"
  5385. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  5386. size="1.12MB" >
  5387. </productMenu>
  5388. <productMenu id="userGuide"
  5389. type="1"
  5390. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  5391. size="2.0MB" >
  5392. </productMenu>
  5393. <productMenu id="volume"
  5394. type="13" >
  5395. </productMenu>
  5396. <productMenu id="battery"
  5397. type="1" >
  5398. </productMenu>
  5399. <productID id="5552"
  5400. />
  5401. <productGroupable type="0"
  5402. />
  5403. </product>
  5404. <product id="MomentumM"
  5405. name="Momentum EVO"
  5406. series="Helmet"
  5407. latestVersion="2.1.2"
  5408. show = "1" >
  5409. <productMenu id="protocol"
  5410. type="1"
  5411. url="0">
  5412. </productMenu>
  5413. <productMenu id="wa"
  5414. type="3" >
  5415. </productMenu>
  5416. <productMenu id="sip"
  5417. type="1" >
  5418. </productMenu>
  5419. <productMenu id="meshIntercom"
  5420. type="20" >
  5421. <productMenuType version="1.9.9"
  5422. type="10"
  5423. />
  5424. </productMenu>
  5425. <productMenu id="bluetoothIntercom"
  5426. type="1" >
  5427. </productMenu>
  5428. <productMenu id="phone"
  5429. type="1" >
  5430. </productMenu>
  5431. <productMenu id="music"
  5432. type="1" >
  5433. </productMenu>
  5434. <productMenu id="fmradio"
  5435. type="1" >
  5436. </productMenu>
  5437. <productMenu id="deviceSetting"
  5438. type="1"
  5439. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  5440. <productMenuURL version="1.0.1"
  5441. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  5442. />
  5443. </productMenu>
  5444. <productMenu id="quickGuide"
  5445. type="1"
  5446. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  5447. size="1.06MB" >
  5448. </productMenu>
  5449. <productMenu id="userGuide"
  5450. type="1"
  5451. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  5452. size="3.15MB" >
  5453. </productMenu>
  5454. <productMenu id="connectGuide"
  5455. type="1"
  5456. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  5457. size="1.12MB" >
  5458. </productMenu>
  5459. <productMenu id="volume"
  5460. type="2" >
  5461. </productMenu>
  5462. <productID id="3116"
  5463. />
  5464. <productGroupable type="0"
  5465. />
  5466. </product>
  5467. <product id="Momentum"
  5468. name="Momentum"
  5469. series="Helmet"
  5470. latestVersion="1.0.9"
  5471. show = "1" >
  5472. <productMenu id="protocol"
  5473. type="0">
  5474. </productMenu>
  5475. <productMenu id="sip"
  5476. type="1" >
  5477. </productMenu>
  5478. <productMenu id="bluetoothIntercom"
  5479. type="1" >
  5480. </productMenu>
  5481. <productMenu id="intercomSetting"
  5482. type="1" >
  5483. </productMenu>
  5484. <productMenu id="phone"
  5485. type="2" >
  5486. </productMenu>
  5487. <productMenu id="fmradio"
  5488. type="3" >
  5489. </productMenu>
  5490. <productMenu id="deviceSetting"
  5491. type="1"
  5492. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5493. </productMenu>
  5494. <productMenu id="quickGuide"
  5495. type="1"
  5496. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  5497. size="796KB" >
  5498. </productMenu>
  5499. <productMenu id="userGuide"
  5500. type="1"
  5501. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  5502. size="1.90MB" >
  5503. </productMenu>
  5504. <productMenu id="connectGuide"
  5505. type="1"
  5506. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5507. size="1.12MB" >
  5508. </productMenu>
  5509. <productID id="4310"
  5510. />
  5511. <productGroupable type="1"
  5512. />
  5513. </product>
  5514. <product id="Momentum_Pro"
  5515. name="Momentum Pro"
  5516. series="Helmet"
  5517. latestVersion="1.0.6"
  5518. show = "1" >
  5519. <productMenu id="protocol"
  5520. type="0">
  5521. </productMenu>
  5522. <productMenu id="sip"
  5523. type="1" >
  5524. </productMenu>
  5525. <productMenu id="bluetoothIntercom"
  5526. type="1" >
  5527. </productMenu>
  5528. <productMenu id="intercomSetting"
  5529. type="1" >
  5530. </productMenu>
  5531. <productMenu id="phone"
  5532. type="2" >
  5533. </productMenu>
  5534. <productMenu id="fmradio"
  5535. type="3" >
  5536. </productMenu>
  5537. <productMenu id="deviceSetting"
  5538. type="1"
  5539. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5540. </productMenu>
  5541. <productMenu id="quickGuide"
  5542. type="1"
  5543. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  5544. size="796KB" >
  5545. </productMenu>
  5546. <productMenu id="userGuide"
  5547. type="1"
  5548. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  5549. size="1.90MB" >
  5550. </productMenu>
  5551. <productMenu id="connectGuide"
  5552. type="1"
  5553. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5554. size="1.12MB" >
  5555. </productMenu>
  5556. <productID id="4330"
  5557. />
  5558. <productGroupable type="1"
  5559. />
  5560. </product>
  5561. <product id="Momentum_INC"
  5562. name="Momentum INC"
  5563. series="Helmet"
  5564. latestVersion="1.0.7"
  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_INC.xml" >
  5587. </productMenu>
  5588. <productMenu id="quickGuide"
  5589. type="1"
  5590. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  5591. size="794KB" >
  5592. </productMenu>
  5593. <productMenu id="userGuide"
  5594. type="1"
  5595. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  5596. size="1.53MB" >
  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="4410"
  5604. />
  5605. <productGroupable type="1"
  5606. />
  5607. </product>
  5608. <product id="Momentum_INCP"
  5609. name="Momentum INC Pro"
  5610. series="Helmet"
  5611. latestVersion="1.0.4"
  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_INC.xml" >
  5634. </productMenu>
  5635. <productMenu id="quickGuide"
  5636. type="1"
  5637. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  5638. size="794KB" >
  5639. </productMenu>
  5640. <productMenu id="userGuide"
  5641. type="1"
  5642. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  5643. size="1.53MB" >
  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="4430"
  5651. />
  5652. <productGroupable type="1"
  5653. />
  5654. </product>
  5655. <product id="Momentum_Lite"
  5656. name="Momentum Lite"
  5657. series="Helmet"
  5658. latestVersion="2.0.3"
  5659. show = "1" >
  5660. <productMenu id="protocol"
  5661. type="0">
  5662. </productMenu>
  5663. <productMenu id="sip"
  5664. type="1" >
  5665. </productMenu>
  5666. <productMenu id="bluetoothIntercom"
  5667. type="1" >
  5668. </productMenu>
  5669. <productMenu id="phone"
  5670. type="2" >
  5671. </productMenu>
  5672. <productMenu id="fmradio"
  5673. type="3" >
  5674. </productMenu>
  5675. <productMenu id="deviceSetting"
  5676. type="1"
  5677. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  5678. <productMenuURL version="1.1"
  5679. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  5680. />
  5681. </productMenu>
  5682. <productMenu id="quickGuide"
  5683. type="1"
  5684. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  5685. size="790KB" >
  5686. </productMenu>
  5687. <productMenu id="userGuide"
  5688. type="1"
  5689. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  5690. size="1.42MB" >
  5691. </productMenu>
  5692. <productMenu id="connectGuide"
  5693. type="1"
  5694. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  5695. size="1.12MB" >
  5696. </productMenu>
  5697. <productID id="5526"
  5698. />
  5699. <productGroupable type="0"
  5700. />
  5701. </product>
  5702. <product id="OUTRUSHM"
  5703. name="OUTRUSH M"
  5704. series="Helmet"
  5705. latestVersion="1.0"
  5706. show = "-1" >
  5707. <productMenu id="protocol"
  5708. type="2" >
  5709. </productMenu>
  5710. <productMenu id="alexa"
  5711. type="0" >
  5712. </productMenu>
  5713. <productMenu id="ota"
  5714. type="0" >
  5715. </productMenu>
  5716. <productMenu id="wa"
  5717. type="0" >
  5718. </productMenu>
  5719. <productMenu id="meshIntercom"
  5720. type="30" >
  5721. </productMenu>
  5722. <productMenu id="phone"
  5723. type="1" >
  5724. </productMenu>
  5725. <productMenu id="music"
  5726. type="1" >
  5727. </productMenu>
  5728. <productMenu id="fmradio"
  5729. type="1" >
  5730. </productMenu>
  5731. <productMenu id="deviceSetting"
  5732. type="1"
  5733. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  5734. </productMenu>
  5735. <productMenu id="quickGuide"
  5736. type="1"
  5737. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  5738. size="1.12MB" >
  5739. </productMenu>
  5740. <productMenu id="userGuide"
  5741. type="1"
  5742. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  5743. size="2.0MB" >
  5744. </productMenu>
  5745. <productMenu id="volume"
  5746. type="13" >
  5747. </productMenu>
  5748. <productMenu id="battery"
  5749. type="1" >
  5750. </productMenu>
  5751. <productID id="5600"
  5752. />
  5753. <productGroupable type="0"
  5754. />
  5755. </product>
  5756. <product id="ProRideEVO"
  5757. name="ProRide EVO"
  5758. series="Helmet"
  5759. latestVersion="1.1.2"
  5760. show = "1" >
  5761. <productMenu id="protocol"
  5762. type="0">
  5763. </productMenu>
  5764. <productMenu id="sip"
  5765. type="1" >
  5766. </productMenu>
  5767. <productMenu id="bluetoothIntercom"
  5768. type="1" >
  5769. </productMenu>
  5770. <productMenu id="phone"
  5771. type="2" >
  5772. </productMenu>
  5773. <productMenu id="fmradio"
  5774. type="3" >
  5775. </productMenu>
  5776. <productMenu id="deviceSetting"
  5777. type="1"
  5778. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  5779. </productMenu>
  5780. <productMenu id="userGuide"
  5781. type="1"
  5782. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  5783. size="778KB" >
  5784. </productMenu>
  5785. <productMenu id="connectGuide"
  5786. type="1"
  5787. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  5788. size="1.12MB" >
  5789. </productMenu>
  5790. <productID id="5426"
  5791. />
  5792. <productGroupable type="0"
  5793. />
  5794. </product>
  5795. <product id="OUTRUSHR"
  5796. name="OUTRUSH R"
  5797. series="Helmet"
  5798. latestVersion="2.1"
  5799. show = "1" >
  5800. <productMenu id="protocol"
  5801. type="3" >
  5802. </productMenu>
  5803. <productMenu id="sip"
  5804. type="1" >
  5805. </productMenu>
  5806. <productMenu id="bluetoothIntercom"
  5807. type="1" >
  5808. </productMenu>
  5809. <productMenu id="phone"
  5810. type="1" >
  5811. </productMenu>
  5812. <productMenu id="fmradio"
  5813. type="0" >
  5814. </productMenu>
  5815. <productMenu id="deviceSetting"
  5816. type="1"
  5817. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  5818. </productMenu>
  5819. <productMenu id="userGuide"
  5820. type="1"
  5821. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  5822. size="1.14MB" >
  5823. </productMenu>
  5824. <productMenu id="connectGuide"
  5825. type="1"
  5826. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  5827. size="1.12MB" >
  5828. </productMenu>
  5829. <productID id="5440"
  5830. />
  5831. <productGroupable type="0"
  5832. />
  5833. </product>
  5834. <product id="OUTRUSHR"
  5835. name="OUTRUSH R"
  5836. series="Helmet"
  5837. latestVersion="1.1.4"
  5838. show = "-1" >
  5839. <productMenu id="protocol"
  5840. type="0">
  5841. </productMenu>
  5842. <productMenu id="sip"
  5843. type="1" >
  5844. </productMenu>
  5845. <productMenu id="bluetoothIntercom"
  5846. type="1" >
  5847. </productMenu>
  5848. <productMenu id="phone"
  5849. type="2" >
  5850. </productMenu>
  5851. <productMenu id="fmradio"
  5852. type="3" >
  5853. </productMenu>
  5854. <productMenu id="deviceSetting"
  5855. type="1"
  5856. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  5857. </productMenu>
  5858. <productMenu id="userGuide"
  5859. type="1"
  5860. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  5861. size="660KB" >
  5862. </productMenu>
  5863. <productMenu id="connectGuide"
  5864. type="1"
  5865. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  5866. size="1.12MB" >
  5867. </productMenu>
  5868. <productID id="5424"
  5869. />
  5870. <productGroupable type="0"
  5871. />
  5872. </product>
  5873. <product id="OUTSTARS"
  5874. name="OUTSTAR S"
  5875. series="Helmet"
  5876. latestVersion="2.0.1"
  5877. show = "-1" >
  5878. <productMenu id="protocol"
  5879. type="3" >
  5880. </productMenu>
  5881. <productMenu id="sip"
  5882. type="1" >
  5883. </productMenu>
  5884. <productMenu id="bluetoothIntercom"
  5885. type="1" >
  5886. </productMenu>
  5887. <productMenu id="phone"
  5888. type="1" >
  5889. </productMenu>
  5890. <productMenu id="fmradio"
  5891. type="0" >
  5892. </productMenu>
  5893. <productMenu id="deviceSetting"
  5894. type="1"
  5895. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  5896. </productMenu>
  5897. <productMenu id="userGuide"
  5898. type="0"
  5899. url=""
  5900. size="1.14MB" >
  5901. </productMenu>
  5902. <productID id="5443"
  5903. />
  5904. <productGroupable type="0"
  5905. />
  5906. </product>
  5907. <product id="OUTSTARS"
  5908. name="OUTSTAR S"
  5909. series="Helmet"
  5910. latestVersion="1.1.4"
  5911. show = "1" >
  5912. <productMenu id="protocol"
  5913. type="0">
  5914. </productMenu>
  5915. <productMenu id="sip"
  5916. type="1" >
  5917. </productMenu>
  5918. <productMenu id="bluetoothIntercom"
  5919. type="1" >
  5920. </productMenu>
  5921. <productMenu id="phone"
  5922. type="2" >
  5923. </productMenu>
  5924. <productMenu id="fmradio"
  5925. type="3" >
  5926. </productMenu>
  5927. <productMenu id="deviceSetting"
  5928. type="1"
  5929. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  5930. </productMenu>
  5931. <productMenu id="quickGuide"
  5932. type="1"
  5933. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  5934. size="643KB" >
  5935. </productMenu>
  5936. <productMenu id="userGuide"
  5937. type="1"
  5938. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  5939. size="1.15MB" >
  5940. </productMenu>
  5941. <productMenu id="connectGuide"
  5942. type="1"
  5943. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  5944. size="1.12MB" >
  5945. </productMenu>
  5946. <productID id="5428"
  5947. />
  5948. <productGroupable type="0"
  5949. />
  5950. </product>
  5951. <product id="OUTRIDE"
  5952. name="OUTRIDE"
  5953. series="Helmet"
  5954. latestVersion="1.0.1"
  5955. show = "1" >
  5956. <productMenu id="protocol"
  5957. type="0">
  5958. </productMenu>
  5959. <productMenu id="sip"
  5960. type="1" >
  5961. </productMenu>
  5962. <productMenu id="bluetoothIntercom"
  5963. type="1" >
  5964. </productMenu>
  5965. <productMenu id="phone"
  5966. type="2" >
  5967. </productMenu>
  5968. <productMenu id="fmradio"
  5969. type="3" >
  5970. </productMenu>
  5971. <productMenu id="deviceSetting"
  5972. type="1"
  5973. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  5974. </productMenu>
  5975. <productMenu id="quickGuide"
  5976. type="1"
  5977. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  5978. size="643KB" >
  5979. </productMenu>
  5980. <productMenu id="userGuide"
  5981. type="1"
  5982. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  5983. size="660KB" >
  5984. </productMenu>
  5985. <productMenu id="connectGuide"
  5986. type="1"
  5987. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  5988. size="1.12MB" >
  5989. </productMenu>
  5990. <productID id="5432"
  5991. />
  5992. <productGroupable type="0"
  5993. />
  5994. </product>
  5995. <product id="OUTFORCE"
  5996. name="OUTFORCE"
  5997. series="Helmet"
  5998. latestVersion="1.0.1"
  5999. show = "1" >
  6000. <productMenu id="protocol"
  6001. type="0">
  6002. </productMenu>
  6003. <productMenu id="sip"
  6004. type="1" >
  6005. </productMenu>
  6006. <productMenu id="bluetoothIntercom"
  6007. type="1" >
  6008. </productMenu>
  6009. <productMenu id="phone"
  6010. type="2" >
  6011. </productMenu>
  6012. <productMenu id="fmradio"
  6013. type="3" >
  6014. </productMenu>
  6015. <productMenu id="deviceSetting"
  6016. type="1"
  6017. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6018. </productMenu>
  6019. <productMenu id="quickGuide"
  6020. type="1"
  6021. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6022. size="643KB" >
  6023. </productMenu>
  6024. <productMenu id="userGuide"
  6025. type="1"
  6026. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6027. size="660KB" >
  6028. </productMenu>
  6029. <productMenu id="connectGuide"
  6030. type="1"
  6031. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6032. size="1.12MB" >
  6033. </productMenu>
  6034. <productID id="5430"
  6035. />
  6036. <productGroupable type="0"
  6037. />
  6038. </product>
  6039. <product id="Rumba"
  6040. name="Rumba"
  6041. series="30"
  6042. latestVersion="2.0"
  6043. show = "-1" >
  6044. <productMenu id="protocol"
  6045. type="3" >
  6046. </productMenu>
  6047. <productMenu id="sip"
  6048. type="1" >
  6049. </productMenu>
  6050. <productMenu id="bluetoothIntercom"
  6051. type="1" >
  6052. </productMenu>
  6053. <productMenu id="deviceSetting"
  6054. type="1"
  6055. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  6056. </productMenu>
  6057. <productMenu id="quickGuide"
  6058. type="1"
  6059. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  6060. size="344KB" >
  6061. </productMenu>
  6062. <productMenu id="userGuide"
  6063. type="1"
  6064. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  6065. size="1.14MB" >
  6066. </productMenu>
  6067. <productID id="6322"
  6068. />
  6069. <productGroupable type="0"
  6070. />
  6071. </product>
  6072. <product id="Savage"
  6073. name="Savage"
  6074. series="Helmet"
  6075. latestVersion="1.2.2"
  6076. show = "1" >
  6077. <productMenu id="protocol"
  6078. type="0">
  6079. </productMenu>
  6080. <productMenu id="sip"
  6081. type="1" >
  6082. </productMenu>
  6083. <productMenu id="bluetoothIntercom"
  6084. type="1" >
  6085. </productMenu>
  6086. <productMenu id="phone"
  6087. type="2" >
  6088. </productMenu>
  6089. <productMenu id="fmradio"
  6090. type="3" >
  6091. </productMenu>
  6092. <productMenu id="deviceSetting"
  6093. type="1"
  6094. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  6095. <productMenuURL version="1.9"
  6096. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  6097. />
  6098. <productMenuURL version="1.1"
  6099. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  6100. />
  6101. </productMenu>
  6102. <productMenu id="quickGuide"
  6103. type="1"
  6104. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  6105. size="796KB" >
  6106. </productMenu>
  6107. <productMenu id="userGuide"
  6108. type="1"
  6109. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  6110. size="910KB" >
  6111. </productMenu>
  6112. <productMenu id="connectGuide"
  6113. type="1"
  6114. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  6115. size="1.12MB" >
  6116. </productMenu>
  6117. <productID id="5550"
  6118. />
  6119. <productGroupable type="0"
  6120. />
  6121. </product>
  6122. <product id="SPECTER"
  6123. name="SPECTER"
  6124. series="Helmet"
  6125. latestVersion="1.0.1"
  6126. latestVersionVoicePrompt="1.2"
  6127. show = "-1" >
  6128. <productMenu id="protocol"
  6129. type="2" >
  6130. </productMenu>
  6131. <productMenu id="ota"
  6132. type="2" >
  6133. <otaLanguages>
  6134. <otaLanguage
  6135. id="0"
  6136. name="English"
  6137. package="0"
  6138. />
  6139. <otaLanguage
  6140. id="0"
  6141. name="French"
  6142. package="1"
  6143. />
  6144. <otaLanguage
  6145. id="0"
  6146. name="Spanish"
  6147. package="2"
  6148. />
  6149. <otaLanguage
  6150. id="0"
  6151. name="Italian"
  6152. package="3"
  6153. />
  6154. <otaLanguage
  6155. id="0"
  6156. name="German"
  6157. package="4"
  6158. />
  6159. <otaLanguage
  6160. id="0"
  6161. name="Dutch"
  6162. package="5"
  6163. />
  6164. <otaLanguage
  6165. id="0"
  6166. name="Russian"
  6167. package="6"
  6168. />
  6169. <otaLanguage
  6170. id="0"
  6171. name="Chinese"
  6172. package="7"
  6173. />
  6174. <otaLanguage
  6175. id="0"
  6176. name="Korean"
  6177. package="8"
  6178. />
  6179. <otaLanguage
  6180. id="0"
  6181. name="Japanese"
  6182. package="9"
  6183. />
  6184. <otaLanguage
  6185. id="0"
  6186. name="Finnish"
  6187. package="10"
  6188. />
  6189. <otaLanguage
  6190. id="0"
  6191. name="Polish"
  6192. package="11"
  6193. />
  6194. </otaLanguages>
  6195. <otaPackages>
  6196. <package
  6197. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1.img"
  6198. size="5183988"
  6199. />
  6200. <package
  6201. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-fr-FR.img"
  6202. size="5183988"
  6203. />
  6204. <package
  6205. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-es-ES.img"
  6206. size="5183988"
  6207. />
  6208. <package
  6209. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-it-IT.img"
  6210. size="5183988"
  6211. />
  6212. <package
  6213. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-de-DE.img"
  6214. size="5183988"
  6215. />
  6216. <package
  6217. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-nl-NL.img"
  6218. size="5183988"
  6219. />
  6220. <package
  6221. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-ru-RU.img"
  6222. size="5183988"
  6223. />
  6224. <package
  6225. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-cmn-CN.img"
  6226. size="5183988"
  6227. />
  6228. <package
  6229. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-ko-KR.img"
  6230. size="5183988"
  6231. />
  6232. <package
  6233. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-ja-JP.img"
  6234. size="5183988"
  6235. />
  6236. <package
  6237. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-fi-FI.img"
  6238. size="5183988"
  6239. />
  6240. <package
  6241. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-pl-PL.img"
  6242. size="5183988"
  6243. />
  6244. </otaPackages>
  6245. </productMenu>
  6246. <productMenu id="wa"
  6247. type="0" >
  6248. </productMenu>
  6249. <productMenu id="led"
  6250. type="5" >
  6251. </productMenu>
  6252. <productMenu id="led+"
  6253. type="2"
  6254. url="1" >
  6255. </productMenu>
  6256. <productMenu id="meshIntercom+"
  6257. type="3"
  6258. url="2" >
  6259. </productMenu>
  6260. <productMenu id="waveIntercom"
  6261. type="1" >
  6262. </productMenu>
  6263. <productMenu id="fmradio"
  6264. type="0" >
  6265. </productMenu>
  6266. <productMenu id="phone"
  6267. type="1" >
  6268. </productMenu>
  6269. <productMenu id="music"
  6270. type="1" >
  6271. </productMenu>
  6272. <productMenu id="musicSharing"
  6273. type="0" >
  6274. </productMenu>
  6275. <productMenu id="deviceSetting"
  6276. type="1"
  6277. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  6278. </productMenu>
  6279. <productMenu id="quickGuide"
  6280. type="0"
  6281. url=""
  6282. size="1.12MB" >
  6283. </productMenu>
  6284. <productMenu id="userGuide"
  6285. type="0"
  6286. url=""
  6287. size="2.0MB" >
  6288. </productMenu>
  6289. <productMenu id="videoGuide"
  6290. type="0"
  6291. url=""
  6292. size="3.41MB" >
  6293. </productMenu>
  6294. <productMenu id="volume"
  6295. type="16" >
  6296. </productMenu>
  6297. <productMenu id="battery"
  6298. type="1" >
  6299. </productMenu>
  6300. <productID id="6A11"
  6301. />
  6302. <productGroupable type="0"
  6303. />
  6304. </product>
  6305. <product id="SPECTER"
  6306. name="SPECTER"
  6307. series="Helmet"
  6308. latestVersion="1.0.1"
  6309. latestVersionVoicePrompt="1.2"
  6310. show = "-1" >
  6311. <productMenu id="protocol"
  6312. type="2" >
  6313. </productMenu>
  6314. <productMenu id="ota"
  6315. type="2" >
  6316. <otaLanguages>
  6317. <otaLanguage
  6318. id="0"
  6319. name="English"
  6320. package="0"
  6321. />
  6322. <otaLanguage
  6323. id="0"
  6324. name="French"
  6325. package="1"
  6326. />
  6327. <otaLanguage
  6328. id="0"
  6329. name="Spanish"
  6330. package="2"
  6331. />
  6332. <otaLanguage
  6333. id="0"
  6334. name="Italian"
  6335. package="3"
  6336. />
  6337. <otaLanguage
  6338. id="0"
  6339. name="German"
  6340. package="4"
  6341. />
  6342. <otaLanguage
  6343. id="0"
  6344. name="Dutch"
  6345. package="5"
  6346. />
  6347. <otaLanguage
  6348. id="0"
  6349. name="Russian"
  6350. package="6"
  6351. />
  6352. <otaLanguage
  6353. id="0"
  6354. name="Chinese"
  6355. package="7"
  6356. />
  6357. <otaLanguage
  6358. id="0"
  6359. name="Korean"
  6360. package="8"
  6361. />
  6362. <otaLanguage
  6363. id="0"
  6364. name="Japanese"
  6365. package="9"
  6366. />
  6367. <otaLanguage
  6368. id="0"
  6369. name="Finnish"
  6370. package="10"
  6371. />
  6372. <otaLanguage
  6373. id="0"
  6374. name="Polish"
  6375. package="11"
  6376. />
  6377. </otaLanguages>
  6378. <otaPackages>
  6379. <package
  6380. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1.img"
  6381. size="5183988"
  6382. />
  6383. <package
  6384. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-fr-FR.img"
  6385. size="5183988"
  6386. />
  6387. <package
  6388. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-es-ES.img"
  6389. size="5183988"
  6390. />
  6391. <package
  6392. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-it-IT.img"
  6393. size="5183988"
  6394. />
  6395. <package
  6396. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-de-DE.img"
  6397. size="5183988"
  6398. />
  6399. <package
  6400. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-nl-NL.img"
  6401. size="5183988"
  6402. />
  6403. <package
  6404. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-ru-RU.img"
  6405. size="5183988"
  6406. />
  6407. <package
  6408. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-cmn-CN.img"
  6409. size="5183988"
  6410. />
  6411. <package
  6412. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-ko-KR.img"
  6413. size="5183988"
  6414. />
  6415. <package
  6416. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-ja-JP.img"
  6417. size="5183988"
  6418. />
  6419. <package
  6420. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-fi-FI.img"
  6421. size="5183988"
  6422. />
  6423. <package
  6424. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-pl-PL.img"
  6425. size="5183988"
  6426. />
  6427. </otaPackages>
  6428. </productMenu>
  6429. <productMenu id="wa"
  6430. type="0" >
  6431. </productMenu>
  6432. <productMenu id="led"
  6433. type="5" >
  6434. </productMenu>
  6435. <productMenu id="led+"
  6436. type="2"
  6437. url="1" >
  6438. </productMenu>
  6439. <productMenu id="meshIntercom+"
  6440. type="3"
  6441. url="2" >
  6442. </productMenu>
  6443. <productMenu id="waveIntercom"
  6444. type="1" >
  6445. </productMenu>
  6446. <productMenu id="fmradio"
  6447. type="0" >
  6448. </productMenu>
  6449. <productMenu id="phone"
  6450. type="1" >
  6451. </productMenu>
  6452. <productMenu id="music"
  6453. type="1" >
  6454. </productMenu>
  6455. <productMenu id="musicSharing"
  6456. type="0" >
  6457. </productMenu>
  6458. <productMenu id="deviceSetting"
  6459. type="1"
  6460. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  6461. <productMenuURL version="1.0"
  6462. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  6463. />
  6464. </productMenu>
  6465. <productMenu id="quickGuide"
  6466. type="0"
  6467. url=""
  6468. size="1.12MB" >
  6469. </productMenu>
  6470. <productMenu id="userGuide"
  6471. type="0"
  6472. url=""
  6473. size="2.0MB" >
  6474. </productMenu>
  6475. <productMenu id="videoGuide"
  6476. type="0"
  6477. url=""
  6478. size="3.41MB" >
  6479. </productMenu>
  6480. <productMenu id="volume"
  6481. type="16" >
  6482. </productMenu>
  6483. <productMenu id="battery"
  6484. type="1" >
  6485. </productMenu>
  6486. <productID id="6A0A"
  6487. />
  6488. <productGroupable type="0"
  6489. />
  6490. </product>
  6491. <product id="OUTLANDER"
  6492. name="OUTLANDER"
  6493. series="Helmet"
  6494. latestVersion="1.0.2"
  6495. latestVersionVoicePrompt="1.2"
  6496. show = "-1" >
  6497. <productMenu id="protocol"
  6498. type="2" >
  6499. </productMenu>
  6500. <productMenu id="ota"
  6501. type="2" >
  6502. <otaLanguages>
  6503. <otaLanguage
  6504. id="0"
  6505. name="English"
  6506. package="0"
  6507. />
  6508. <otaLanguage
  6509. id="0"
  6510. name="French"
  6511. package="1"
  6512. />
  6513. <otaLanguage
  6514. id="0"
  6515. name="Spanish"
  6516. package="2"
  6517. />
  6518. <otaLanguage
  6519. id="0"
  6520. name="Italian"
  6521. package="3"
  6522. />
  6523. <otaLanguage
  6524. id="0"
  6525. name="German"
  6526. package="4"
  6527. />
  6528. <otaLanguage
  6529. id="0"
  6530. name="Dutch"
  6531. package="5"
  6532. />
  6533. <otaLanguage
  6534. id="0"
  6535. name="Russian"
  6536. package="6"
  6537. />
  6538. <otaLanguage
  6539. id="0"
  6540. name="Chinese"
  6541. package="7"
  6542. />
  6543. <otaLanguage
  6544. id="0"
  6545. name="Korean"
  6546. package="8"
  6547. />
  6548. <otaLanguage
  6549. id="0"
  6550. name="Japanese"
  6551. package="9"
  6552. />
  6553. <otaLanguage
  6554. id="0"
  6555. name="Finnish"
  6556. package="10"
  6557. />
  6558. <otaLanguage
  6559. id="0"
  6560. name="Polish"
  6561. package="11"
  6562. />
  6563. </otaLanguages>
  6564. <otaPackages>
  6565. <package
  6566. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1.img"
  6567. size="5183988"
  6568. />
  6569. <package
  6570. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-fr-FR.img"
  6571. size="5183988"
  6572. />
  6573. <package
  6574. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-es-ES.img"
  6575. size="5183988"
  6576. />
  6577. <package
  6578. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-it-IT.img"
  6579. size="5183988"
  6580. />
  6581. <package
  6582. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-de-DE.img"
  6583. size="5183988"
  6584. />
  6585. <package
  6586. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-nl-NL.img"
  6587. size="5183988"
  6588. />
  6589. <package
  6590. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-ru-RU.img"
  6591. size="5183988"
  6592. />
  6593. <package
  6594. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-cmn-CN.img"
  6595. size="5183988"
  6596. />
  6597. <package
  6598. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-ko-KR.img"
  6599. size="5183988"
  6600. />
  6601. <package
  6602. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-ja-JP.img"
  6603. size="5183988"
  6604. />
  6605. <package
  6606. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-fi-FI.img"
  6607. size="5183988"
  6608. />
  6609. <package
  6610. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-pl-PL.img"
  6611. size="5183988"
  6612. />
  6613. </otaPackages>
  6614. </productMenu>
  6615. <productMenu id="wa"
  6616. type="0" >
  6617. </productMenu>
  6618. <productMenu id="led"
  6619. type="5" >
  6620. </productMenu>
  6621. <productMenu id="led+"
  6622. type="2"
  6623. url="1" >
  6624. </productMenu>
  6625. <productMenu id="meshIntercom+"
  6626. type="3"
  6627. url="2" >
  6628. </productMenu>
  6629. <productMenu id="waveIntercom"
  6630. type="1" >
  6631. </productMenu>
  6632. <productMenu id="fmradio"
  6633. type="0" >
  6634. </productMenu>
  6635. <productMenu id="phone"
  6636. type="1" >
  6637. </productMenu>
  6638. <productMenu id="music"
  6639. type="1" >
  6640. </productMenu>
  6641. <productMenu id="musicSharing"
  6642. type="0" >
  6643. </productMenu>
  6644. <productMenu id="deviceSetting"
  6645. type="1"
  6646. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  6647. </productMenu>
  6648. <productMenu id="quickGuide"
  6649. type="0"
  6650. url=""
  6651. size="1.12MB" >
  6652. </productMenu>
  6653. <productMenu id="userGuide"
  6654. type="0"
  6655. url=""
  6656. size="2.0MB" >
  6657. </productMenu>
  6658. <productMenu id="videoGuide"
  6659. type="0"
  6660. url=""
  6661. size="3.41MB" >
  6662. </productMenu>
  6663. <productMenu id="volume"
  6664. type="16" >
  6665. </productMenu>
  6666. <productMenu id="battery"
  6667. type="1" >
  6668. </productMenu>
  6669. <productID id="6A05"
  6670. />
  6671. <productGroupable type="0"
  6672. />
  6673. </product>
  6674. <product id="OUTRUSH2"
  6675. name="OUTRUSH 2"
  6676. series="Helmet"
  6677. latestVersion="1.0.2"
  6678. latestVersionVoicePrompt="1.1"
  6679. show = "-1" >
  6680. <productMenu id="protocol"
  6681. type="2" >
  6682. </productMenu>
  6683. <productMenu id="alexa"
  6684. type="0" >
  6685. </productMenu>
  6686. <productMenu id="ota"
  6687. type="2" >
  6688. <otaPackages>
  6689. <package
  6690. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  6691. size="2945812"
  6692. />
  6693. </otaPackages>
  6694. </productMenu>
  6695. <productMenu id="meshIntercom+"
  6696. type="3"
  6697. url="2" >
  6698. </productMenu>
  6699. <productMenu id="waveIntercom"
  6700. type="1" >
  6701. </productMenu>
  6702. <productMenu id="phone"
  6703. type="1" >
  6704. </productMenu>
  6705. <productMenu id="music"
  6706. type="1" >
  6707. </productMenu>
  6708. <productMenu id="musicSharing"
  6709. type="0" >
  6710. </productMenu>
  6711. <productMenu id="deviceSetting"
  6712. type="1"
  6713. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  6714. <productMenuURL version="1.0"
  6715. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  6716. />
  6717. </productMenu>
  6718. <productMenu id="quickGuide"
  6719. type="0"
  6720. url=""
  6721. size="1.12MB" >
  6722. </productMenu>
  6723. <productMenu id="userGuide"
  6724. type="1"
  6725. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.0_en_250730.pdf"
  6726. size="2.0MB" >
  6727. </productMenu>
  6728. <productMenu id="volume"
  6729. type="12" >
  6730. </productMenu>
  6731. <productMenu id="battery"
  6732. type="1" >
  6733. </productMenu>
  6734. <productID id="684A"
  6735. />
  6736. <productGroupable type="0"
  6737. />
  6738. </product>
  6739. <product id="OUTSTAR2"
  6740. name="OUTSTAR 2"
  6741. series="Helmet"
  6742. latestVersion="1.0.1"
  6743. latestVersionVoicePrompt="1.1"
  6744. show = "-1" >
  6745. <productMenu id="protocol"
  6746. type="2" >
  6747. </productMenu>
  6748. <productMenu id="alexa"
  6749. type="0" >
  6750. </productMenu>
  6751. <productMenu id="ota"
  6752. type="2" >
  6753. <otaPackages>
  6754. <package
  6755. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.1-build0.img"
  6756. size="2945812"
  6757. />
  6758. </otaPackages>
  6759. </productMenu>
  6760. <productMenu id="meshIntercom+"
  6761. type="3"
  6762. url="2" >
  6763. </productMenu>
  6764. <productMenu id="waveIntercom"
  6765. type="1" >
  6766. </productMenu>
  6767. <productMenu id="phone"
  6768. type="1" >
  6769. </productMenu>
  6770. <productMenu id="music"
  6771. type="1" >
  6772. </productMenu>
  6773. <productMenu id="musicSharing"
  6774. type="0" >
  6775. </productMenu>
  6776. <productMenu id="deviceSetting"
  6777. type="1"
  6778. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  6779. </productMenu>
  6780. <productMenu id="quickGuide"
  6781. type="0"
  6782. url=""
  6783. size="1.12MB" >
  6784. </productMenu>
  6785. <productMenu id="userGuide"
  6786. type="1"
  6787. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.0_en_250903.pdf"
  6788. size="2.0MB" >
  6789. </productMenu>
  6790. <productMenu id="volume"
  6791. type="12" >
  6792. </productMenu>
  6793. <productMenu id="battery"
  6794. type="1" >
  6795. </productMenu>
  6796. <productID id="684B"
  6797. />
  6798. <productGroupable type="0"
  6799. />
  6800. </product>
  6801. <product id="SURGE"
  6802. name="SURGE"
  6803. series="Helmet"
  6804. latestVersion="1.2"
  6805. latestVersionVoicePrompt="1.3"
  6806. show = "1" >
  6807. <productMenu id="protocol"
  6808. type="2" >
  6809. </productMenu>
  6810. <productMenu id="alexa"
  6811. type="0" >
  6812. </productMenu>
  6813. <productMenu id="ota"
  6814. type="2" >
  6815. <otaPackages>
  6816. <package
  6817. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  6818. size="2945812"
  6819. />
  6820. </otaPackages>
  6821. </productMenu>
  6822. <productMenu id="meshIntercom"
  6823. type="30" >
  6824. </productMenu>
  6825. <productMenu id="meshIntercom+"
  6826. type="3"
  6827. url="2" >
  6828. <productMenuType version="1.0.1"
  6829. type="2"
  6830. />
  6831. </productMenu>
  6832. <productMenu id="waveIntercom"
  6833. type="1" >
  6834. <productMenuType version="1.0.9"
  6835. type="0"
  6836. />
  6837. </productMenu>
  6838. <productMenu id="phone"
  6839. type="1" >
  6840. </productMenu>
  6841. <productMenu id="music"
  6842. type="1" >
  6843. </productMenu>
  6844. <productMenu id="musicSharing"
  6845. type="0" >
  6846. </productMenu>
  6847. <productMenu id="deviceSetting"
  6848. type="1"
  6849. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  6850. <productMenuURL version="1.1.9"
  6851. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  6852. />
  6853. <productMenuURL version="1.0.1"
  6854. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6855. />
  6856. </productMenu>
  6857. <productMenu id="quickGuide"
  6858. type="0"
  6859. url=""
  6860. size="1.12MB" >
  6861. </productMenu>
  6862. <productMenu id="userGuide"
  6863. type="1"
  6864. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  6865. size="2.0MB" >
  6866. </productMenu>
  6867. <productMenu id="volume"
  6868. type="12" >
  6869. </productMenu>
  6870. <productMenu id="battery"
  6871. type="1" >
  6872. </productMenu>
  6873. <productID id="6840"
  6874. />
  6875. <productGroupable type="0"
  6876. />
  6877. </product>
  6878. <product id="Cavalry2"
  6879. name="Cavalry 2"
  6880. series="Helmet"
  6881. latestVersion="1.2"
  6882. latestVersionVoicePrompt="1.3"
  6883. show = "1" >
  6884. <productMenu id="protocol"
  6885. type="2" >
  6886. </productMenu>
  6887. <productMenu id="alexa"
  6888. type="0" >
  6889. </productMenu>
  6890. <productMenu id="ota"
  6891. type="2" >
  6892. <otaPackages>
  6893. <package
  6894. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  6895. size="3144148"
  6896. />
  6897. </otaPackages>
  6898. </productMenu>
  6899. <productMenu id="wa"
  6900. type="0" >
  6901. </productMenu>
  6902. <productMenu id="meshIntercom"
  6903. type="30" >
  6904. </productMenu>
  6905. <productMenu id="meshIntercom+"
  6906. type="3"
  6907. url="2" >
  6908. <productMenuType version="1.0"
  6909. type="2"
  6910. />
  6911. </productMenu>
  6912. <productMenu id="waveIntercom"
  6913. type="1" >
  6914. <productMenuType version="1.0.9"
  6915. type="0"
  6916. />
  6917. </productMenu>
  6918. <productMenu id="phone"
  6919. type="1" >
  6920. </productMenu>
  6921. <productMenu id="music"
  6922. type="1" >
  6923. </productMenu>
  6924. <productMenu id="musicSharing"
  6925. type="0" >
  6926. </productMenu>
  6927. <productMenu id="deviceSetting"
  6928. type="1"
  6929. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  6930. <productMenuURL version="1.1.9"
  6931. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  6932. />
  6933. <productMenuURL version="1.0"
  6934. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  6935. />
  6936. </productMenu>
  6937. <productMenu id="quickGuide"
  6938. type="0"
  6939. url=""
  6940. size="1.12MB" >
  6941. </productMenu>
  6942. <productMenu id="userGuide"
  6943. type="1"
  6944. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  6945. size="2.0MB" >
  6946. </productMenu>
  6947. <productMenu id="connectGuide"
  6948. type="1"
  6949. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6950. size="1.12MB" >
  6951. </productMenu>
  6952. <productMenu id="volume"
  6953. type="12" >
  6954. </productMenu>
  6955. <productMenu id="battery"
  6956. type="1" >
  6957. </productMenu>
  6958. <productID id="6839"
  6959. />
  6960. <productGroupable type="0"
  6961. />
  6962. </product>
  6963. <product id="Cavalry"
  6964. name="Cavalry"
  6965. series="Helmet"
  6966. latestVersion="1.2.2"
  6967. show = "1" >
  6968. <productMenu id="protocol"
  6969. type="0">
  6970. </productMenu>
  6971. <productMenu id="sip"
  6972. type="1" >
  6973. </productMenu>
  6974. <productMenu id="bluetoothIntercom"
  6975. type="1" >
  6976. </productMenu>
  6977. <productMenu id="phone"
  6978. type="2" >
  6979. </productMenu>
  6980. <productMenu id="fmradio"
  6981. type="3" >
  6982. </productMenu>
  6983. <productMenu id="deviceSetting"
  6984. type="1"
  6985. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  6986. <productMenuURL version="1.9"
  6987. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  6988. />
  6989. <productMenuURL version="1.0.1"
  6990. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  6991. />
  6992. </productMenu>
  6993. <productMenu id="quickGuide"
  6994. type="1"
  6995. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  6996. size="795KB" >
  6997. </productMenu>
  6998. <productMenu id="userGuide"
  6999. type="1"
  7000. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  7001. size="1.87MB" >
  7002. </productMenu>
  7003. <productMenu id="connectGuide"
  7004. type="1"
  7005. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7006. size="1.12MB" >
  7007. </productMenu>
  7008. <productID id="5524"
  7009. />
  7010. <productGroupable type="0"
  7011. />
  7012. </product>
  7013. <product id="Cavalry_Lite"
  7014. name="Cavalry Lite"
  7015. series="Helmet"
  7016. latestVersion="1.0.2"
  7017. show = "1" >
  7018. <productMenu id="protocol"
  7019. type="0">
  7020. </productMenu>
  7021. <productMenu id="sip"
  7022. type="1" >
  7023. </productMenu>
  7024. <productMenu id="bluetoothIntercom"
  7025. type="1" >
  7026. </productMenu>
  7027. <productMenu id="phone"
  7028. type="2" >
  7029. </productMenu>
  7030. <productMenu id="fmradio"
  7031. type="3" >
  7032. </productMenu>
  7033. <productMenu id="deviceSetting"
  7034. type="1"
  7035. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7036. </productMenu>
  7037. <productMenu id="userGuide"
  7038. type="1"
  7039. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  7040. size="1.74MB" >
  7041. </productMenu>
  7042. <productMenu id="connectGuide"
  7043. type="1"
  7044. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7045. size="1.12MB" >
  7046. </productMenu>
  7047. <productID id="5536"
  7048. />
  7049. <productGroupable type="0"
  7050. />
  7051. </product>
  7052. <product id="SF4"
  7053. name="SF4"
  7054. series="SF"
  7055. latestVersion="1.1.5"
  7056. show = "-1" >
  7057. <productMenu id="protocol"
  7058. type="1"
  7059. url="3">
  7060. </productMenu>
  7061. <productMenu id="sip"
  7062. type="1" >
  7063. </productMenu>
  7064. <productMenu id="bluetoothIntercom"
  7065. type="1" >
  7066. </productMenu>
  7067. <productMenu id="phone"
  7068. type="1" >
  7069. </productMenu>
  7070. <productMenu id="music"
  7071. type="1" >
  7072. </productMenu>
  7073. <productMenu id="fmradio"
  7074. type="1" >
  7075. </productMenu>
  7076. <productMenu id="deviceSetting"
  7077. type="1"
  7078. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  7079. <productMenuURL version="1.0.1"
  7080. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  7081. />
  7082. </productMenu>
  7083. <productMenu id="quickGuide"
  7084. type="1"
  7085. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  7086. size="607KB" >
  7087. </productMenu>
  7088. <productMenu id="userGuide"
  7089. type="1"
  7090. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  7091. size="1.91MB" >
  7092. </productMenu>
  7093. <productMenu id="volume"
  7094. type="4" >
  7095. </productMenu>
  7096. <productID id="5414"
  7097. />
  7098. <productGroupable type="0"
  7099. />
  7100. </product>
  7101. <product id="SF4"
  7102. name="SF4"
  7103. series="SF"
  7104. latestVersion="3.4.2"
  7105. show = "1" >
  7106. <productMenu id="protocol"
  7107. type="2" >
  7108. </productMenu>
  7109. <productMenu id="sip"
  7110. type="1" >
  7111. </productMenu>
  7112. <productMenu id="bluetoothIntercom"
  7113. type="1" >
  7114. </productMenu>
  7115. <productMenu id="phone"
  7116. type="1" >
  7117. </productMenu>
  7118. <productMenu id="music"
  7119. type="1" >
  7120. </productMenu>
  7121. <productMenu id="fmradio"
  7122. type="1" >
  7123. </productMenu>
  7124. <productMenu id="deviceSetting"
  7125. type="1"
  7126. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  7127. <productMenuURL version="3.0"
  7128. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  7129. />
  7130. </productMenu>
  7131. <productMenu id="quickGuide"
  7132. type="0"
  7133. url=""
  7134. size="934KB" >
  7135. </productMenu>
  7136. <productMenu id="userGuide"
  7137. type="1"
  7138. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  7139. size="1.14MB" >
  7140. </productMenu>
  7141. <productMenu id="connectGuide"
  7142. type="1"
  7143. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  7144. size="1.12MB" >
  7145. </productMenu>
  7146. <productMenu id="volume"
  7147. type="15" >
  7148. </productMenu>
  7149. <productID id="3370"
  7150. />
  7151. <productGroupable type="0"
  7152. />
  7153. </product>
  7154. <product id="SF2"
  7155. name="SF2"
  7156. series="SF"
  7157. latestVersion="1.2.1"
  7158. show = "-1" >
  7159. <productMenu id="protocol"
  7160. type="1"
  7161. url="2">
  7162. </productMenu>
  7163. <productMenu id="sip"
  7164. type="1" >
  7165. </productMenu>
  7166. <productMenu id="bluetoothIntercom"
  7167. type="1" >
  7168. </productMenu>
  7169. <productMenu id="phone"
  7170. type="1" >
  7171. </productMenu>
  7172. <productMenu id="music"
  7173. type="1" >
  7174. </productMenu>
  7175. <productMenu id="fmradio"
  7176. type="1" >
  7177. </productMenu>
  7178. <productMenu id="deviceSetting"
  7179. type="1"
  7180. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  7181. <productMenuURL version="1.0.1"
  7182. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  7183. />
  7184. </productMenu>
  7185. <productMenu id="quickGuide"
  7186. type="1"
  7187. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  7188. size="607KB" >
  7189. </productMenu>
  7190. <productMenu id="userGuide"
  7191. type="1"
  7192. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  7193. size="1.91MB" >
  7194. </productMenu>
  7195. <productMenu id="volume"
  7196. type="4" >
  7197. </productMenu>
  7198. <productID id="5412"
  7199. />
  7200. <productGroupable type="0"
  7201. />
  7202. </product>
  7203. <product id="SF2"
  7204. name="SF2"
  7205. series="SF"
  7206. latestVersion="3.3.3"
  7207. show = "1" >
  7208. <productMenu id="protocol"
  7209. type="2" >
  7210. </productMenu>
  7211. <productMenu id="sip"
  7212. type="1" >
  7213. </productMenu>
  7214. <productMenu id="bluetoothIntercom"
  7215. type="1" >
  7216. </productMenu>
  7217. <productMenu id="phone"
  7218. type="1" >
  7219. </productMenu>
  7220. <productMenu id="music"
  7221. type="1" >
  7222. </productMenu>
  7223. <productMenu id="fmradio"
  7224. type="0" >
  7225. </productMenu>
  7226. <productMenu id="deviceSetting"
  7227. type="1"
  7228. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  7229. <productMenuURL version="3.0"
  7230. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  7231. />
  7232. </productMenu>
  7233. <productMenu id="quickGuide"
  7234. type="0"
  7235. url=""
  7236. size="934KB" >
  7237. </productMenu>
  7238. <productMenu id="userGuide"
  7239. type="1"
  7240. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  7241. size="1.14MB" >
  7242. </productMenu>
  7243. <productMenu id="connectGuide"
  7244. type="1"
  7245. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  7246. size="1.12MB" >
  7247. </productMenu>
  7248. <productMenu id="volume"
  7249. type="15" >
  7250. </productMenu>
  7251. <productID id="3360"
  7252. />
  7253. <productGroupable type="0"
  7254. />
  7255. </product>
  7256. <product id="SF1"
  7257. name="SF1"
  7258. series="SF"
  7259. latestVersion="2.0.5"
  7260. show = "-1" >
  7261. <productMenu id="protocol"
  7262. type="1"
  7263. url="1">
  7264. </productMenu>
  7265. <productMenu id="sip"
  7266. type="1" >
  7267. </productMenu>
  7268. <productMenu id="bluetoothIntercom"
  7269. type="1" >
  7270. <productMenuType version="1.1"
  7271. type="0"
  7272. />
  7273. </productMenu>
  7274. <productMenu id="phone"
  7275. type="1" >
  7276. </productMenu>
  7277. <productMenu id="music"
  7278. type="1" >
  7279. </productMenu>
  7280. <productMenu id="deviceSetting"
  7281. type="1"
  7282. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  7283. <productMenuURL version="1.1"
  7284. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  7285. />
  7286. <productMenuURL version="1.0"
  7287. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  7288. />
  7289. </productMenu>
  7290. <productMenu id="quickGuide"
  7291. type="1"
  7292. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  7293. size="401KB" >
  7294. </productMenu>
  7295. <productMenu id="userGuide"
  7296. type="1"
  7297. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  7298. size="1.91MB" >
  7299. </productMenu>
  7300. <productMenu id="volume"
  7301. type="3" >
  7302. </productMenu>
  7303. <productID id="5410"
  7304. />
  7305. <productGroupable type="0"
  7306. />
  7307. </product>
  7308. <product id="SF1"
  7309. name="SF1"
  7310. series="SF"
  7311. latestVersion="3.3.3"
  7312. show = "1" >
  7313. <productMenu id="protocol"
  7314. type="2" >
  7315. </productMenu>
  7316. <productMenu id="sip"
  7317. type="1" >
  7318. </productMenu>
  7319. <productMenu id="bluetoothIntercom"
  7320. type="1" >
  7321. </productMenu>
  7322. <productMenu id="phone"
  7323. type="1" >
  7324. </productMenu>
  7325. <productMenu id="music"
  7326. type="1" >
  7327. </productMenu>
  7328. <productMenu id="fmradio"
  7329. type="0" >
  7330. </productMenu>
  7331. <productMenu id="deviceSetting"
  7332. type="1"
  7333. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  7334. <productMenuURL version="3.0"
  7335. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  7336. />
  7337. </productMenu>
  7338. <productMenu id="quickGuide"
  7339. type="0"
  7340. url=""
  7341. size="934KB" >
  7342. </productMenu>
  7343. <productMenu id="userGuide"
  7344. type="1"
  7345. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  7346. size="1.14MB" >
  7347. </productMenu>
  7348. <productMenu id="connectGuide"
  7349. type="1"
  7350. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  7351. size="1.12MB" >
  7352. </productMenu>
  7353. <productMenu id="volume"
  7354. type="15" >
  7355. </productMenu>
  7356. <productID id="3350"
  7357. />
  7358. <productGroupable type="0"
  7359. />
  7360. </product>
  7361. <product id="SFR"
  7362. name="SFR"
  7363. series="SF"
  7364. latestVersion="1.1.1"
  7365. show = "1" >
  7366. <productMenu id="protocol"
  7367. type="1"
  7368. url="3">
  7369. </productMenu>
  7370. <productMenu id="sip"
  7371. type="1" >
  7372. </productMenu>
  7373. <productMenu id="bluetoothIntercom"
  7374. type="1" >
  7375. </productMenu>
  7376. <productMenu id="phone"
  7377. type="1" >
  7378. </productMenu>
  7379. <productMenu id="music"
  7380. type="1" >
  7381. </productMenu>
  7382. <productMenu id="fmradio"
  7383. type="1" >
  7384. </productMenu>
  7385. <productMenu id="deviceSetting"
  7386. type="1"
  7387. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  7388. </productMenu>
  7389. <productMenu id="quickGuide"
  7390. type="1"
  7391. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  7392. size="607KB" >
  7393. </productMenu>
  7394. <productMenu id="userGuide"
  7395. type="1"
  7396. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  7397. size="1.91MB" >
  7398. </productMenu>
  7399. <productMenu id="volume"
  7400. type="4" >
  7401. </productMenu>
  7402. <productID id="5418"
  7403. />
  7404. <productGroupable type="0"
  7405. />
  7406. </product>
  7407. <product id="20S"
  7408. name="20S"
  7409. series="20"
  7410. latestVersion="2.2.3"
  7411. show = "1" >
  7412. <productMenu id="protocol"
  7413. type="0">
  7414. </productMenu>
  7415. <productMenu id="wa"
  7416. type="5" >
  7417. </productMenu>
  7418. <productMenu id="sip"
  7419. type="1" >
  7420. <productMenuType version="1.0"
  7421. type="0"
  7422. />
  7423. </productMenu>
  7424. <productMenu id="bluetoothIntercom"
  7425. type="1" >
  7426. <productMenuType version="1.0"
  7427. type="0"
  7428. />
  7429. </productMenu>
  7430. <productMenu id="intercomSetting"
  7431. type="1" >
  7432. </productMenu>
  7433. <productMenu id="phone"
  7434. type="2" >
  7435. </productMenu>
  7436. <productMenu id="fmradio"
  7437. type="3" >
  7438. </productMenu>
  7439. <productMenu id="deviceSetting"
  7440. type="1"
  7441. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  7442. <productMenuURL version="2.0.2"
  7443. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  7444. />
  7445. <productMenuURL version="1.5"
  7446. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  7447. />
  7448. <productMenuURL version="1.4.1"
  7449. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  7450. />
  7451. <productMenuURL version="1.1"
  7452. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  7453. />
  7454. <productMenuURL version="1.0"
  7455. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  7456. />
  7457. </productMenu>
  7458. <productMenu id="quickGuide"
  7459. type="0"
  7460. url=""
  7461. size="264KB" >
  7462. </productMenu>
  7463. <productMenu id="userGuide"
  7464. type="1"
  7465. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  7466. size="3.09MB" >
  7467. </productMenu>
  7468. <productMenu id="connectGuide"
  7469. type="1"
  7470. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7471. size="1.12MB" >
  7472. </productMenu>
  7473. <productID id="4210"
  7474. />
  7475. <productGroupable type="1"
  7476. />
  7477. </product>
  7478. <product id="20S_EVO"
  7479. name="20S EVO"
  7480. series="20"
  7481. latestVersion="2.2.3"
  7482. show = "1" >
  7483. <productMenu id="protocol"
  7484. type="0">
  7485. </productMenu>
  7486. <productMenu id="wa"
  7487. type="5" >
  7488. </productMenu>
  7489. <productMenu id="sip"
  7490. type="1" >
  7491. <productMenuType version="1.0"
  7492. type="0"
  7493. />
  7494. </productMenu>
  7495. <productMenu id="bluetoothIntercom"
  7496. type="1" >
  7497. <productMenuType version="1.0"
  7498. type="0"
  7499. />
  7500. </productMenu>
  7501. <productMenu id="intercomSetting"
  7502. type="1" >
  7503. </productMenu>
  7504. <productMenu id="phone"
  7505. type="2" >
  7506. </productMenu>
  7507. <productMenu id="fmradio"
  7508. type="3" >
  7509. </productMenu>
  7510. <productMenu id="deviceSetting"
  7511. type="1"
  7512. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  7513. <productMenuURL version="2.0.2"
  7514. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  7515. />
  7516. <productMenuURL version="1.5"
  7517. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  7518. />
  7519. <productMenuURL version="1.4.1"
  7520. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  7521. />
  7522. <productMenuURL version="1.1"
  7523. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  7524. />
  7525. <productMenuURL version="1.0"
  7526. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  7527. />
  7528. </productMenu>
  7529. <productMenu id="quickGuide"
  7530. type="0"
  7531. url=""
  7532. size="264KB" >
  7533. </productMenu>
  7534. <productMenu id="userGuide"
  7535. type="1"
  7536. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  7537. size="3.09MB" >
  7538. </productMenu>
  7539. <productMenu id="connectGuide"
  7540. type="1"
  7541. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7542. size="1.12MB" >
  7543. </productMenu>
  7544. <productID id="4210"
  7545. />
  7546. <productProductKey key="16"
  7547. />
  7548. <productGroupable type="1"
  7549. />
  7550. </product>
  7551. <product id="10S"
  7552. name="10S"
  7553. series="10"
  7554. latestVersion="3.0.1"
  7555. show = "1" >
  7556. <productMenu id="protocol"
  7557. type="3" >
  7558. </productMenu>
  7559. <productMenu id="sip"
  7560. type="1" >
  7561. </productMenu>
  7562. <productMenu id="bluetoothIntercom"
  7563. type="1" >
  7564. </productMenu>
  7565. <productMenu id="phone"
  7566. type="1" >
  7567. </productMenu>
  7568. <productMenu id="deviceSetting"
  7569. type="1"
  7570. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  7571. </productMenu>
  7572. <productMenu id="quickGuide"
  7573. type="1"
  7574. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  7575. size="934KB" >
  7576. </productMenu>
  7577. <productMenu id="userGuide"
  7578. type="1"
  7579. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  7580. size="1.14MB" >
  7581. </productMenu>
  7582. <productMenu id="connectGuide"
  7583. type="1"
  7584. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  7585. size="1.12MB" >
  7586. </productMenu>
  7587. <productID id="3380"
  7588. />
  7589. <productGroupable type="0"
  7590. />
  7591. </product>
  7592. <product id="10S"
  7593. name="10S"
  7594. series="10"
  7595. latestVersion="2.1.1"
  7596. show = "-1" >
  7597. <productMenu id="protocol"
  7598. type="0">
  7599. </productMenu>
  7600. <productMenu id="sip"
  7601. type="1" >
  7602. </productMenu>
  7603. <productMenu id="bluetoothIntercom"
  7604. type="1" >
  7605. </productMenu>
  7606. <productMenu id="phone"
  7607. type="2" >
  7608. </productMenu>
  7609. <productMenu id="fmradio"
  7610. type="3" >
  7611. </productMenu>
  7612. <productMenu id="deviceSetting"
  7613. type="1"
  7614. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  7615. <productMenuURL version="1.5"
  7616. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  7617. />
  7618. <productMenuURL version="1.3.1"
  7619. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  7620. />
  7621. </productMenu>
  7622. <productMenu id="quickGuide"
  7623. type="1"
  7624. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  7625. size="310KB" >
  7626. </productMenu>
  7627. <productMenu id="userGuide"
  7628. type="1"
  7629. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  7630. size="1.57MB" >
  7631. </productMenu>
  7632. <productID id="5530"
  7633. />
  7634. <productGroupable type="0"
  7635. />
  7636. </product>
  7637. <product id="10R"
  7638. name="10R"
  7639. series="10"
  7640. latestVersion="2.1.1"
  7641. show = "1" >
  7642. <productMenu id="protocol"
  7643. type="0">
  7644. </productMenu>
  7645. <productMenu id="sip"
  7646. type="1" >
  7647. <productMenuType version="1.0.2"
  7648. type="0"
  7649. />
  7650. </productMenu>
  7651. <productMenu id="bluetoothIntercom"
  7652. type="1" >
  7653. <productMenuType version="1.0.2"
  7654. type="0"
  7655. />
  7656. </productMenu>
  7657. <productMenu id="phone"
  7658. type="2" >
  7659. </productMenu>
  7660. <productMenu id="fmradio"
  7661. type="3" >
  7662. </productMenu>
  7663. <productMenu id="deviceSetting"
  7664. type="1"
  7665. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  7666. <productMenuURL version="1.4"
  7667. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  7668. />
  7669. <productMenuURL version="1.2.1"
  7670. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  7671. />
  7672. <productMenuURL version="1.0.2"
  7673. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  7674. />
  7675. <productMenuURL version="1.0"
  7676. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  7677. />
  7678. </productMenu>
  7679. <productMenu id="quickGuide"
  7680. type="1"
  7681. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  7682. size="400KB" >
  7683. </productMenu>
  7684. <productMenu id="userGuide"
  7685. type="1"
  7686. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  7687. size="2.75MB" >
  7688. </productMenu>
  7689. <productMenu id="connectGuide"
  7690. type="1"
  7691. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7692. size="1.12MB" >
  7693. </productMenu>
  7694. <productID id="5520"
  7695. />
  7696. <productGroupable type="0"
  7697. />
  7698. </product>
  7699. <product id="10C_EVO"
  7700. name="10C EVO"
  7701. series="10"
  7702. latestVersion="1.7"
  7703. show = "1" >
  7704. <productMenu id="protocol"
  7705. type="0">
  7706. </productMenu>
  7707. <productMenu id="sip"
  7708. type="1" >
  7709. </productMenu>
  7710. <productMenu id="bluetoothIntercom"
  7711. type="1" >
  7712. </productMenu>
  7713. <productMenu id="phone"
  7714. type="2" >
  7715. </productMenu>
  7716. <productMenu id="fmradio"
  7717. type="3" >
  7718. </productMenu>
  7719. <productMenu id="deviceSetting"
  7720. type="1"
  7721. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  7722. <productMenuURL version="1.3.1"
  7723. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  7724. />
  7725. </productMenu>
  7726. <productMenu id="quickGuide"
  7727. type="1"
  7728. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  7729. size="1.32MB" >
  7730. </productMenu>
  7731. <productMenu id="userGuide"
  7732. type="1"
  7733. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  7734. size="1.68MB" >
  7735. </productMenu>
  7736. <productMenu id="connectGuide"
  7737. type="1"
  7738. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7739. size="1.12MB" >
  7740. </productMenu>
  7741. <productID id="5570"
  7742. />
  7743. <productGroupable type="0"
  7744. />
  7745. </product>
  7746. <product id="10C_Pro"
  7747. name="10C Pro"
  7748. series="10"
  7749. latestVersion="2.7.1"
  7750. show = "1" >
  7751. <productMenu id="protocol"
  7752. type="0">
  7753. </productMenu>
  7754. <productMenu id="sip"
  7755. type="1" >
  7756. </productMenu>
  7757. <productMenu id="bluetoothIntercom"
  7758. type="1" >
  7759. </productMenu>
  7760. <productMenu id="phone"
  7761. type="2" >
  7762. </productMenu>
  7763. <productMenu id="fmradio"
  7764. type="3" >
  7765. </productMenu>
  7766. <productMenu id="deviceSetting"
  7767. type="1"
  7768. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  7769. <productMenuURL version="2.5.1"
  7770. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  7771. />
  7772. <productMenuURL version="1.0"
  7773. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  7774. />
  7775. </productMenu>
  7776. <productMenu id="quickGuide"
  7777. type="1"
  7778. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  7779. size="651KB" >
  7780. </productMenu>
  7781. <productMenu id="userGuide"
  7782. type="1"
  7783. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  7784. size="2.34MB" >
  7785. </productMenu>
  7786. <productMenu id="connectGuide"
  7787. type="1"
  7788. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7789. size="1.12MB" >
  7790. </productMenu>
  7791. <productID id="5580"
  7792. />
  7793. <productGroupable type="0"
  7794. />
  7795. </product>
  7796. <product id="10C"
  7797. name="10C"
  7798. series="10"
  7799. latestVersion="3.0.4"
  7800. show = "1" >
  7801. <productMenu id="protocol"
  7802. type="0">
  7803. </productMenu>
  7804. <productMenu id="sip"
  7805. type="1" >
  7806. <productMenuType version="1.0.4"
  7807. type="0"
  7808. />
  7809. </productMenu>
  7810. <productMenu id="bluetoothIntercom"
  7811. type="1" >
  7812. <productMenuType version="1.0.4"
  7813. type="0"
  7814. />
  7815. </productMenu>
  7816. <productMenu id="phone"
  7817. type="2" >
  7818. </productMenu>
  7819. <productMenu id="fmradio"
  7820. type="3" >
  7821. </productMenu>
  7822. <productMenu id="deviceSetting"
  7823. type="1"
  7824. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  7825. <productMenuURL version="2.3"
  7826. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  7827. />
  7828. <productMenuURL version="2.1.1"
  7829. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  7830. />
  7831. <productMenuURL version="1.0.4"
  7832. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  7833. />
  7834. <productMenuURL version="1.0.2"
  7835. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  7836. />
  7837. </productMenu>
  7838. <productMenu id="quickGuide"
  7839. type="1"
  7840. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  7841. size="935KB" >
  7842. </productMenu>
  7843. <productMenu id="userGuide"
  7844. type="1"
  7845. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  7846. size="2.82MB" >
  7847. </productMenu>
  7848. <productMenu id="connectGuide"
  7849. type="1"
  7850. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7851. size="1.12MB" >
  7852. </productMenu>
  7853. <productID id="5510"
  7854. />
  7855. <productGroupable type="0"
  7856. />
  7857. </product>
  7858. <product id="10U_GT_AIR"
  7859. name="10U GT-Air"
  7860. series="10"
  7861. latestVersion="2.0.4"
  7862. show = "1" >
  7863. <productMenu id="protocol"
  7864. type="0">
  7865. </productMenu>
  7866. <productMenu id="sip"
  7867. type="1" >
  7868. <productMenuType version="1.0.2"
  7869. type="0"
  7870. />
  7871. </productMenu>
  7872. <productMenu id="bluetoothIntercom"
  7873. type="1" >
  7874. <productMenuType version="1.0.2"
  7875. type="0"
  7876. />
  7877. </productMenu>
  7878. <productMenu id="phone"
  7879. type="2" >
  7880. </productMenu>
  7881. <productMenu id="fmradio"
  7882. type="3" >
  7883. </productMenu>
  7884. <productMenu id="deviceSetting"
  7885. type="1"
  7886. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  7887. <productMenuURL version="1.3.2"
  7888. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  7889. />
  7890. <productMenuURL version="1.0.2"
  7891. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  7892. />
  7893. </productMenu>
  7894. <productMenu id="quickGuide"
  7895. type="1"
  7896. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  7897. size="685KB" >
  7898. </productMenu>
  7899. <productMenu id="userGuide"
  7900. type="1"
  7901. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  7902. size="684KB" >
  7903. </productMenu>
  7904. <productMenu id="connectGuide"
  7905. type="1"
  7906. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  7907. size="1.12MB" >
  7908. </productMenu>
  7909. <productID id="5610"
  7910. />
  7911. <productGroupable type="0"
  7912. />
  7913. </product>
  7914. <product id="10U_NEOTEC"
  7915. name="10U Neotec"
  7916. series="10"
  7917. latestVersion="2.0.4"
  7918. show = "1" >
  7919. <productMenu id="protocol"
  7920. type="0">
  7921. </productMenu>
  7922. <productMenu id="sip"
  7923. type="1" >
  7924. <productMenuType version="1.0.2"
  7925. type="0"
  7926. />
  7927. </productMenu>
  7928. <productMenu id="bluetoothIntercom"
  7929. type="1" >
  7930. <productMenuType version="1.0.2"
  7931. type="0"
  7932. />
  7933. </productMenu>
  7934. <productMenu id="phone"
  7935. type="2" >
  7936. </productMenu>
  7937. <productMenu id="fmradio"
  7938. type="3" >
  7939. </productMenu>
  7940. <productMenu id="deviceSetting"
  7941. type="1"
  7942. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  7943. <productMenuURL version="1.3.2"
  7944. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  7945. />
  7946. <productMenuURL version="1.0.2"
  7947. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  7948. />
  7949. </productMenu>
  7950. <productMenu id="quickGuide"
  7951. type="1"
  7952. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  7953. size="689KB" >
  7954. </productMenu>
  7955. <productMenu id="userGuide"
  7956. type="1"
  7957. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  7958. size="684KB" >
  7959. </productMenu>
  7960. <productMenu id="connectGuide"
  7961. type="1"
  7962. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  7963. size="1.12MB" >
  7964. </productMenu>
  7965. <productID id="5611"
  7966. />
  7967. <productGroupable type="0"
  7968. />
  7969. </product>
  7970. <product id="10U_J_CRUISE"
  7971. name="10U J-Cruise"
  7972. series="10"
  7973. latestVersion="2.0.4"
  7974. show = "1" >
  7975. <productMenu id="protocol"
  7976. type="0">
  7977. </productMenu>
  7978. <productMenu id="sip"
  7979. type="1" >
  7980. <productMenuType version="1.0.2"
  7981. type="0"
  7982. />
  7983. </productMenu>
  7984. <productMenu id="bluetoothIntercom"
  7985. type="1" >
  7986. <productMenuType version="1.0.2"
  7987. type="0"
  7988. />
  7989. </productMenu>
  7990. <productMenu id="phone"
  7991. type="2" >
  7992. </productMenu>
  7993. <productMenu id="fmradio"
  7994. type="3" >
  7995. </productMenu>
  7996. <productMenu id="deviceSetting"
  7997. type="1"
  7998. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  7999. <productMenuURL version="1.3.2"
  8000. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  8001. />
  8002. <productMenuURL version="1.0.2"
  8003. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  8004. />
  8005. </productMenu>
  8006. <productMenu id="quickGuide"
  8007. type="1"
  8008. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  8009. size="686KB" >
  8010. </productMenu>
  8011. <productMenu id="userGuide"
  8012. type="1"
  8013. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  8014. size="684KB" >
  8015. </productMenu>
  8016. <productMenu id="connectGuide"
  8017. type="1"
  8018. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  8019. size="1.12MB" >
  8020. </productMenu>
  8021. <productID id="5612"
  8022. />
  8023. <productGroupable type="0"
  8024. />
  8025. </product>
  8026. <product id="10U_C3"
  8027. name="10U C3/C3Pro"
  8028. series="10"
  8029. latestVersion="2.0.4"
  8030. show = "1" >
  8031. <productMenu id="protocol"
  8032. type="0">
  8033. </productMenu>
  8034. <productMenu id="sip"
  8035. type="1" >
  8036. <productMenuType version="1.0.2"
  8037. type="0"
  8038. />
  8039. </productMenu>
  8040. <productMenu id="bluetoothIntercom"
  8041. type="1" >
  8042. <productMenuType version="1.0.2"
  8043. type="0"
  8044. />
  8045. </productMenu>
  8046. <productMenu id="phone"
  8047. type="2" >
  8048. </productMenu>
  8049. <productMenu id="fmradio"
  8050. type="3" >
  8051. </productMenu>
  8052. <productMenu id="deviceSetting"
  8053. type="1"
  8054. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  8055. <productMenuURL version="1.3.2"
  8056. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  8057. />
  8058. <productMenuURL version="1.0.2"
  8059. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  8060. />
  8061. </productMenu>
  8062. <productMenu id="quickGuide"
  8063. type="1"
  8064. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  8065. size="199KB" >
  8066. </productMenu>
  8067. <productMenu id="userGuide"
  8068. type="1"
  8069. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  8070. size="684KB" >
  8071. </productMenu>
  8072. <productMenu id="connectGuide"
  8073. type="1"
  8074. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  8075. size="1.12MB" >
  8076. </productMenu>
  8077. <productID id="5620"
  8078. />
  8079. <productGroupable type="0"
  8080. />
  8081. </product>
  8082. <product id="10U_ARAI"
  8083. name="10U Arai"
  8084. series="10"
  8085. latestVersion="2.0.4"
  8086. show = "1" >
  8087. <productMenu id="protocol"
  8088. type="0">
  8089. </productMenu>
  8090. <productMenu id="sip"
  8091. type="1" >
  8092. <productMenuType version="1.0.2"
  8093. type="0"
  8094. />
  8095. </productMenu>
  8096. <productMenu id="bluetoothIntercom"
  8097. type="1" >
  8098. <productMenuType version="1.0.2"
  8099. type="0"
  8100. />
  8101. </productMenu>
  8102. <productMenu id="phone"
  8103. type="2" >
  8104. </productMenu>
  8105. <productMenu id="fmradio"
  8106. type="3" >
  8107. </productMenu>
  8108. <productMenu id="deviceSetting"
  8109. type="1"
  8110. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  8111. <productMenuURL version="1.3.2"
  8112. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  8113. />
  8114. <productMenuURL version="1.0.2"
  8115. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  8116. />
  8117. </productMenu>
  8118. <productMenu id="quickGuide"
  8119. type="1"
  8120. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  8121. size="689KB" >
  8122. </productMenu>
  8123. <productMenu id="userGuide"
  8124. type="1"
  8125. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  8126. size="684KB" >
  8127. </productMenu>
  8128. <productMenu id="connectGuide"
  8129. type="1"
  8130. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  8131. size="1.12MB" >
  8132. </productMenu>
  8133. <productID id="5621"
  8134. />
  8135. <productGroupable type="0"
  8136. />
  8137. </product>
  8138. <product id="10Upad"
  8139. name="10Upad"
  8140. series="10"
  8141. latestVersion="2.0.3"
  8142. show = "1" >
  8143. <productMenu id="protocol"
  8144. type="0">
  8145. </productMenu>
  8146. <productMenu id="sip"
  8147. type="1" >
  8148. </productMenu>
  8149. <productMenu id="bluetoothIntercom"
  8150. type="1" >
  8151. </productMenu>
  8152. <productMenu id="phone"
  8153. type="2" >
  8154. </productMenu>
  8155. <productMenu id="fmradio"
  8156. type="3" >
  8157. </productMenu>
  8158. <productMenu id="deviceSetting"
  8159. type="1"
  8160. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  8161. <productMenuURL version="1.0.3"
  8162. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  8163. />
  8164. </productMenu>
  8165. <productMenu id="quickGuide"
  8166. type="1"
  8167. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  8168. size="615KB" >
  8169. </productMenu>
  8170. <productMenu id="userGuide"
  8171. type="1"
  8172. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  8173. size="0.99MB" >
  8174. </productMenu>
  8175. <productMenu id="connectGuide"
  8176. type="1"
  8177. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8178. size="1.12MB" >
  8179. </productMenu>
  8180. <productID id="6210"
  8181. />
  8182. <productGroupable type="0"
  8183. />
  8184. </product>
  8185. <product id="5S"
  8186. name="5S"
  8187. series="5"
  8188. latestVersion="2.2.1"
  8189. show = "1" >
  8190. <productMenu id="protocol"
  8191. type="3" >
  8192. </productMenu>
  8193. <productMenu id="sip"
  8194. type="1" >
  8195. </productMenu>
  8196. <productMenu id="bluetoothIntercom"
  8197. type="1" >
  8198. </productMenu>
  8199. <productMenu id="phone"
  8200. type="1" >
  8201. </productMenu>
  8202. <productMenu id="fmradio"
  8203. type="0" >
  8204. </productMenu>
  8205. <productMenu id="deviceSetting"
  8206. type="1"
  8207. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  8208. </productMenu>
  8209. <productMenu id="quickGuide"
  8210. type="0"
  8211. url=""
  8212. size="934KB" >
  8213. </productMenu>
  8214. <productMenu id="userGuide"
  8215. type="1"
  8216. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  8217. size="1.14MB" >
  8218. </productMenu>
  8219. <productMenu id="connectGuide"
  8220. type="1"
  8221. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  8222. size="1.12MB" >
  8223. </productMenu>
  8224. <productID id="5590"
  8225. />
  8226. <productGroupable type="0"
  8227. />
  8228. </product>
  8229. <product id="5S"
  8230. name="5S"
  8231. series="5"
  8232. latestVersion="1.2"
  8233. show = "-1" >
  8234. <productMenu id="protocol"
  8235. type="0">
  8236. </productMenu>
  8237. <productMenu id="sip"
  8238. type="1" >
  8239. </productMenu>
  8240. <productMenu id="bluetoothIntercom"
  8241. type="1" >
  8242. </productMenu>
  8243. <productMenu id="phone"
  8244. type="2" >
  8245. </productMenu>
  8246. <productMenu id="fmradio"
  8247. type="0" >
  8248. </productMenu>
  8249. <productMenu id="deviceSetting"
  8250. type="1"
  8251. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  8252. </productMenu>
  8253. <productMenu id="quickGuide"
  8254. type="0"
  8255. url=""
  8256. size="970KB" >
  8257. </productMenu>
  8258. <productMenu id="userGuide"
  8259. type="1"
  8260. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  8261. size="1.26MB" >
  8262. </productMenu>
  8263. <productID id="5534"
  8264. />
  8265. <productGroupable type="0"
  8266. />
  8267. </product>
  8268. <product id="5S"
  8269. name="5S"
  8270. series="5"
  8271. latestVersion="3.0.1"
  8272. show = "-1" >
  8273. <productMenu id="protocol"
  8274. type="0">
  8275. </productMenu>
  8276. <productMenu id="sip"
  8277. type="1" >
  8278. </productMenu>
  8279. <productMenu id="bluetoothIntercom"
  8280. type="1" >
  8281. </productMenu>
  8282. <productMenu id="phone"
  8283. type="2" >
  8284. </productMenu>
  8285. <productMenu id="fmradio"
  8286. type="0" >
  8287. </productMenu>
  8288. <productMenu id="deviceSetting"
  8289. type="1"
  8290. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  8291. </productMenu>
  8292. <productMenu id="quickGuide"
  8293. type="0"
  8294. url=""
  8295. size="970KB" >
  8296. </productMenu>
  8297. <productMenu id="userGuide"
  8298. type="1"
  8299. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  8300. size="1.26MB" >
  8301. </productMenu>
  8302. <productID id="5538"
  8303. />
  8304. <productGroupable type="0"
  8305. />
  8306. </product>
  8307. <product id="3SPLUS"
  8308. name="3S PLUS"
  8309. series="3"
  8310. latestVersion="2.2"
  8311. show = "1" >
  8312. <productMenu id="protocol"
  8313. type="3" >
  8314. </productMenu>
  8315. <productMenu id="sip"
  8316. type="1" >
  8317. </productMenu>
  8318. <productMenu id="bluetoothIntercom"
  8319. type="1" >
  8320. </productMenu>
  8321. <productMenu id="deviceSetting"
  8322. type="1"
  8323. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  8324. <productMenuURL version="2.2.1"
  8325. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  8326. />
  8327. </productMenu>
  8328. <productMenu id="quickGuide"
  8329. type="1"
  8330. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  8331. size="344KB" >
  8332. </productMenu>
  8333. <productMenu id="userGuide"
  8334. type="1"
  8335. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  8336. size="1.14MB" >
  8337. </productMenu>
  8338. <productMenu id="connectGuide"
  8339. type="1"
  8340. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  8341. size="1.12MB" >
  8342. </productMenu>
  8343. <productID id="4023"
  8344. />
  8345. <productGroupable type="0"
  8346. />
  8347. </product>
  8348. <product id="3SPLUS"
  8349. name="3S PLUS"
  8350. series="3"
  8351. latestVersion="1.1"
  8352. show = "-1" >
  8353. <productMenu id="protocol"
  8354. type="0">
  8355. </productMenu>
  8356. <productMenu id="sip"
  8357. type="1" >
  8358. </productMenu>
  8359. <productMenu id="bluetoothIntercom"
  8360. type="1" >
  8361. </productMenu>
  8362. <productMenu id="deviceSetting"
  8363. type="1"
  8364. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  8365. </productMenu>
  8366. <productMenu id="quickGuide"
  8367. type="1"
  8368. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  8369. size="842KB" >
  8370. </productMenu>
  8371. <productMenu id="userGuide"
  8372. type="1"
  8373. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  8374. size="1.02MB" >
  8375. </productMenu>
  8376. <productID id="6320"
  8377. />
  8378. <productGroupable type="0"
  8379. />
  8380. </product>
  8381. <product id="iCon"
  8382. name="iCon"
  8383. series="50"
  8384. latestVersion="1.2"
  8385. show = "0" >
  8386. <productMenu id="protocol"
  8387. type="2" >
  8388. </productMenu>
  8389. <productMenu id="alexa"
  8390. type="0" >
  8391. </productMenu>
  8392. <productMenu id="wa"
  8393. type="0" >
  8394. </productMenu>
  8395. <productMenu id="sip"
  8396. type="1" >
  8397. </productMenu>
  8398. <productMenu id="led"
  8399. type="3" >
  8400. </productMenu>
  8401. <productMenu id="meshIntercom"
  8402. type="20" >
  8403. </productMenu>
  8404. <productMenu id="meshIntercom+"
  8405. type="3"
  8406. url="0" >
  8407. <productMenuType version="1.0.9"
  8408. type="2"
  8409. />
  8410. </productMenu>
  8411. <productMenu id="bluetoothIntercom"
  8412. type="1" >
  8413. </productMenu>
  8414. <productMenu id="phone"
  8415. type="1" >
  8416. </productMenu>
  8417. <productMenu id="music"
  8418. type="1" >
  8419. </productMenu>
  8420. <productMenu id="fmradio"
  8421. type="1" >
  8422. </productMenu>
  8423. <productMenu id="deviceSetting"
  8424. type="1"
  8425. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  8426. <productMenuURL version="1.0.9"
  8427. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  8428. />
  8429. </productMenu>
  8430. <productMenu id="quickGuide"
  8431. type="1"
  8432. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  8433. size="344KB" >
  8434. </productMenu>
  8435. <productMenu id="userGuide"
  8436. type="1"
  8437. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  8438. size="3.41MB" >
  8439. </productMenu>
  8440. <productMenu id="volume"
  8441. type="11" >
  8442. </productMenu>
  8443. <productMenu id="battery"
  8444. type="1" >
  8445. </productMenu>
  8446. <productID id="3900"
  8447. />
  8448. <productGroupable type="0"
  8449. />
  8450. </product>
  8451. <product id="HD50S"
  8452. name="H-D Audio 50S"
  8453. series="50"
  8454. latestVersion="1.0.1"
  8455. show = "-1" >
  8456. <productMenu id="protocol"
  8457. type="2" >
  8458. </productMenu>
  8459. <productMenu id="alexa"
  8460. type="0" >
  8461. </productMenu>
  8462. <productMenu id="ota"
  8463. type="0"
  8464. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  8465. size="1150234" >
  8466. </productMenu>
  8467. <productMenu id="wa"
  8468. type="1" >
  8469. </productMenu>
  8470. <productMenu id="sip"
  8471. type="1" >
  8472. </productMenu>
  8473. <productMenu id="meshIntercom"
  8474. type="20" >
  8475. </productMenu>
  8476. <productMenu id="bluetoothIntercom"
  8477. type="1" >
  8478. </productMenu>
  8479. <productMenu id="phone"
  8480. type="1" >
  8481. </productMenu>
  8482. <productMenu id="music"
  8483. type="1" >
  8484. </productMenu>
  8485. <productMenu id="fmradio"
  8486. type="1" >
  8487. </productMenu>
  8488. <productMenu id="deviceSetting"
  8489. type="1"
  8490. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  8491. </productMenu>
  8492. <productMenu id="quickGuide"
  8493. type="1"
  8494. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  8495. size="934KB" >
  8496. </productMenu>
  8497. <productMenu id="userGuide"
  8498. type="1"
  8499. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  8500. size="1.14MB" >
  8501. </productMenu>
  8502. <productMenu id="volume"
  8503. type="11" >
  8504. </productMenu>
  8505. <productMenu id="battery"
  8506. type="1" >
  8507. </productMenu>
  8508. <productID id="3156"
  8509. />
  8510. <productGroupable type="0"
  8511. />
  8512. </product>
  8513. <product id="HD50S"
  8514. name="H-D Audio 50S"
  8515. series="50"
  8516. latestVersion="2.0.2"
  8517. show = "0" >
  8518. <productMenu id="protocol"
  8519. type="2" >
  8520. </productMenu>
  8521. <productMenu id="alexa"
  8522. type="0" >
  8523. </productMenu>
  8524. <productMenu id="ota"
  8525. type="0"
  8526. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  8527. size="1150234" >
  8528. </productMenu>
  8529. <productMenu id="wa"
  8530. type="1" >
  8531. </productMenu>
  8532. <productMenu id="sip"
  8533. type="1" >
  8534. </productMenu>
  8535. <productMenu id="meshIntercom"
  8536. type="20" >
  8537. </productMenu>
  8538. <productMenu id="bluetoothIntercom"
  8539. type="1" >
  8540. </productMenu>
  8541. <productMenu id="phone"
  8542. type="1" >
  8543. </productMenu>
  8544. <productMenu id="music"
  8545. type="1" >
  8546. </productMenu>
  8547. <productMenu id="fmradio"
  8548. type="1" >
  8549. </productMenu>
  8550. <productMenu id="deviceSetting"
  8551. type="1"
  8552. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  8553. </productMenu>
  8554. <productMenu id="quickGuide"
  8555. type="1"
  8556. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  8557. size="934KB" >
  8558. </productMenu>
  8559. <productMenu id="userGuide"
  8560. type="1"
  8561. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  8562. size="1.14MB" >
  8563. </productMenu>
  8564. <productMenu id="volume"
  8565. type="11" >
  8566. </productMenu>
  8567. <productMenu id="battery"
  8568. type="1" >
  8569. </productMenu>
  8570. <productID id="3213"
  8571. />
  8572. <productGroupable type="0"
  8573. />
  8574. </product>
  8575. <product id="HD50C"
  8576. name="H-D Audio 50C"
  8577. series="50"
  8578. latestVersion="1.0.1"
  8579. show = "0" >
  8580. <productMenu id="protocol"
  8581. type="2" >
  8582. </productMenu>
  8583. <productMenu id="ota"
  8584. type="0" >
  8585. </productMenu>
  8586. <productMenu id="wa"
  8587. type="1" >
  8588. </productMenu>
  8589. <productMenu id="sip"
  8590. type="1" >
  8591. </productMenu>
  8592. <productMenu id="meshIntercom"
  8593. type="20" >
  8594. </productMenu>
  8595. <productMenu id="bluetoothIntercom"
  8596. type="1" >
  8597. </productMenu>
  8598. <productMenu id="phone"
  8599. type="1" >
  8600. </productMenu>
  8601. <productMenu id="music"
  8602. type="1" >
  8603. </productMenu>
  8604. <productMenu id="fmradio"
  8605. type="1" >
  8606. </productMenu>
  8607. <productMenu id="deviceSetting"
  8608. type="1"
  8609. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  8610. </productMenu>
  8611. <productMenu id="quickGuide"
  8612. type="1"
  8613. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  8614. size="344KB" >
  8615. </productMenu>
  8616. <productMenu id="userGuide"
  8617. type="1"
  8618. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  8619. size="3.41MB" >
  8620. </productMenu>
  8621. <productMenu id="volume"
  8622. type="11" >
  8623. </productMenu>
  8624. <productMenu id="battery"
  8625. type="1" >
  8626. </productMenu>
  8627. <productID id="3240"
  8628. />
  8629. <productGroupable type="0"
  8630. />
  8631. </product>
  8632. <product id="HD50S"
  8633. name="FURY N04"
  8634. series="Helmet"
  8635. latestVersion="1.0"
  8636. show = "0" >
  8637. <productMenu id="protocol"
  8638. type="2" >
  8639. </productMenu>
  8640. <productMenu id="alexa"
  8641. type="0" >
  8642. </productMenu>
  8643. <productMenu id="ota"
  8644. type="0" >
  8645. </productMenu>
  8646. <productMenu id="wa"
  8647. type="0" >
  8648. </productMenu>
  8649. <productMenu id="meshIntercom"
  8650. type="20" >
  8651. </productMenu>
  8652. <productMenu id="meshIntercom+"
  8653. type="3"
  8654. url="0" >
  8655. <productMenuType version="1.0.9"
  8656. type="2"
  8657. />
  8658. </productMenu>
  8659. <productMenu id="phone"
  8660. type="1" >
  8661. </productMenu>
  8662. <productMenu id="music"
  8663. type="1" >
  8664. </productMenu>
  8665. <productMenu id="fmradio"
  8666. type="1" >
  8667. </productMenu>
  8668. <productMenu id="deviceSetting"
  8669. type="1"
  8670. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  8671. <productMenuURL version="1.0.9"
  8672. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  8673. />
  8674. </productMenu>
  8675. <productMenu id="quickGuide"
  8676. type="1"
  8677. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  8678. size="1.12MB" >
  8679. </productMenu>
  8680. <productMenu id="userGuide"
  8681. type="1"
  8682. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  8683. size="2.0MB" >
  8684. </productMenu>
  8685. <productMenu id="volume"
  8686. type="13" >
  8687. </productMenu>
  8688. <productMenu id="battery"
  8689. type="1" >
  8690. </productMenu>
  8691. <productID id="5553"
  8692. />
  8693. <productGroupable type="0"
  8694. />
  8695. </product>
  8696. <product id="XCOM3Pro"
  8697. name="X-COM3 Pro"
  8698. series="50"
  8699. latestVersion="1.1"
  8700. show = "0" >
  8701. <productMenu id="protocol"
  8702. type="2" >
  8703. </productMenu>
  8704. <productMenu id="alexa"
  8705. type="0" >
  8706. </productMenu>
  8707. <productMenu id="ota"
  8708. type="0" >
  8709. </productMenu>
  8710. <productMenu id="wa"
  8711. type="0" >
  8712. </productMenu>
  8713. <productMenu id="sip"
  8714. type="1" >
  8715. </productMenu>
  8716. <productMenu id="meshIntercom"
  8717. type="30" >
  8718. </productMenu>
  8719. <productMenu id="meshIntercom+"
  8720. type="3"
  8721. url="2" >
  8722. <productMenuType version="1.1"
  8723. type="2"
  8724. />
  8725. </productMenu>
  8726. <productMenu id="waveIntercom"
  8727. type="1" >
  8728. <productMenuType version="1.1"
  8729. type="0"
  8730. />
  8731. </productMenu>
  8732. <productMenu id="bluetoothIntercom"
  8733. type="1" >
  8734. </productMenu>
  8735. <productMenu id="phone"
  8736. type="1" >
  8737. </productMenu>
  8738. <productMenu id="music"
  8739. type="1" >
  8740. </productMenu>
  8741. <productMenu id="fmradio"
  8742. type="1" >
  8743. </productMenu>
  8744. <productMenu id="deviceSetting"
  8745. type="1"
  8746. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  8747. <productMenuURL version="1.1"
  8748. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  8749. />
  8750. </productMenu>
  8751. <productMenu id="quickGuide"
  8752. type="0"
  8753. url=""
  8754. size="344KB" >
  8755. </productMenu>
  8756. <productMenu id="userGuide"
  8757. type="1"
  8758. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  8759. size="3.41MB" >
  8760. </productMenu>
  8761. <productMenu id="volume"
  8762. type="11" >
  8763. </productMenu>
  8764. <productMenu id="battery"
  8765. type="1" >
  8766. </productMenu>
  8767. <productID id="321A"
  8768. />
  8769. <productGroupable type="0"
  8770. />
  8771. </product>
  8772. <product id="XCOM3"
  8773. name="X-COM3"
  8774. series="20"
  8775. latestVersion="1.0"
  8776. show = "0" >
  8777. <productMenu id="protocol"
  8778. type="2" >
  8779. </productMenu>
  8780. <productMenu id="sip"
  8781. type="1" >
  8782. </productMenu>
  8783. <productMenu id="bluetoothIntercom"
  8784. type="1" >
  8785. </productMenu>
  8786. <productMenu id="phone"
  8787. type="1" >
  8788. </productMenu>
  8789. <productMenu id="music"
  8790. type="1" >
  8791. </productMenu>
  8792. <productMenu id="fmradio"
  8793. type="1" >
  8794. </productMenu>
  8795. <productMenu id="deviceSetting"
  8796. type="1"
  8797. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  8798. </productMenu>
  8799. <productMenu id="quickGuide"
  8800. type="0"
  8801. url=""
  8802. size="934KB" >
  8803. </productMenu>
  8804. <productMenu id="userGuide"
  8805. type="1"
  8806. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  8807. size="1.14MB" >
  8808. </productMenu>
  8809. <productMenu id="volume"
  8810. type="15" >
  8811. </productMenu>
  8812. <productID id="3410"
  8813. />
  8814. <productGroupable type="0"
  8815. />
  8816. </product>
  8817. <product id="X-COM2"
  8818. name="X-COM2"
  8819. series="20"
  8820. latestVersion="1.0.5"
  8821. show = "0" >
  8822. <productMenu id="protocol"
  8823. type="0">
  8824. </productMenu>
  8825. <productMenu id="sip"
  8826. type="1" >
  8827. </productMenu>
  8828. <productMenu id="bluetoothIntercom"
  8829. type="1" >
  8830. </productMenu>
  8831. <productMenu id="intercomSetting"
  8832. type="1" >
  8833. </productMenu>
  8834. <productMenu id="phone"
  8835. type="2" >
  8836. </productMenu>
  8837. <productMenu id="fmradio"
  8838. type="3" >
  8839. </productMenu>
  8840. <productMenu id="deviceSetting"
  8841. type="1"
  8842. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  8843. </productMenu>
  8844. <productMenu id="quickGuide"
  8845. type="1"
  8846. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  8847. size="796KB" >
  8848. </productMenu>
  8849. <productMenu id="userGuide"
  8850. type="1"
  8851. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  8852. size="1.90MB" >
  8853. </productMenu>
  8854. <productID id="2030"
  8855. />
  8856. <productGroupable type="1"
  8857. />
  8858. </product>
  8859. <product id="AVAABC"
  8860. name="AVA ABC"
  8861. series="SPIDER"
  8862. latestVersion="1.0"
  8863. show = "0" >
  8864. <productMenu id="protocol"
  8865. type="2" >
  8866. </productMenu>
  8867. <productMenu id="alexa"
  8868. type="0" >
  8869. </productMenu>
  8870. <productMenu id="ota"
  8871. type="0" >
  8872. </productMenu>
  8873. <productMenu id="wa"
  8874. type="0" >
  8875. </productMenu>
  8876. <productMenu id="meshIntercom"
  8877. type="20" >
  8878. </productMenu>
  8879. <productMenu id="phone"
  8880. type="1" >
  8881. </productMenu>
  8882. <productMenu id="music"
  8883. type="1" >
  8884. </productMenu>
  8885. <productMenu id="musicSharing"
  8886. type="0" >
  8887. </productMenu>
  8888. <productMenu id="deviceSetting"
  8889. type="1"
  8890. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml" >
  8891. </productMenu>
  8892. <productMenu id="quickGuide"
  8893. type="1"
  8894. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  8895. size="1.12MB" >
  8896. </productMenu>
  8897. <productMenu id="userGuide"
  8898. type="1"
  8899. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  8900. size="2.0MB" >
  8901. </productMenu>
  8902. <productMenu id="volume"
  8903. type="12" >
  8904. </productMenu>
  8905. <productMenu id="battery"
  8906. type="1" >
  8907. </productMenu>
  8908. <productID id="6808"
  8909. />
  8910. <productGroupable type="0"
  8911. />
  8912. </product>
  8913. <product id="ADVANCEPROCOMMP"
  8914. name="ADVANCE PROCOM MP"
  8915. series="Helmet"
  8916. latestVersion="0.3"
  8917. latestVersionVoicePrompt="0.2"
  8918. show = "-1" >
  8919. <productMenu id="protocol"
  8920. type="2" >
  8921. </productMenu>
  8922. <productMenu id="ota"
  8923. type="2" >
  8924. <otaLanguages>
  8925. <otaLanguage
  8926. id="0"
  8927. name="English"
  8928. package="0"
  8929. />
  8930. <otaLanguage
  8931. id="0"
  8932. name="French"
  8933. package="1"
  8934. />
  8935. <otaLanguage
  8936. id="0"
  8937. name="Spanish"
  8938. package="2"
  8939. />
  8940. <otaLanguage
  8941. id="0"
  8942. name="Italian"
  8943. package="3"
  8944. />
  8945. <otaLanguage
  8946. id="0"
  8947. name="German"
  8948. package="4"
  8949. />
  8950. <otaLanguage
  8951. id="0"
  8952. name="Dutch"
  8953. package="5"
  8954. />
  8955. <otaLanguage
  8956. id="0"
  8957. name="Russian"
  8958. package="6"
  8959. />
  8960. <otaLanguage
  8961. id="0"
  8962. name="Chinese"
  8963. package="7"
  8964. />
  8965. <otaLanguage
  8966. id="0"
  8967. name="Korean"
  8968. package="8"
  8969. />
  8970. <otaLanguage
  8971. id="0"
  8972. name="Japanese"
  8973. package="9"
  8974. />
  8975. <otaLanguage
  8976. id="0"
  8977. name="Finnish"
  8978. package="10"
  8979. />
  8980. <otaLanguage
  8981. id="0"
  8982. name="Polish"
  8983. package="11"
  8984. />
  8985. </otaLanguages>
  8986. <otaPackages>
  8987. <package
  8988. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0.img"
  8989. size="5183988"
  8990. />
  8991. <package
  8992. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-fr-FR.img"
  8993. size="5183988"
  8994. />
  8995. <package
  8996. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-es-ES.img"
  8997. size="5183988"
  8998. />
  8999. <package
  9000. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-it-IT.img"
  9001. size="5183988"
  9002. />
  9003. <package
  9004. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-de-DE.img"
  9005. size="5183988"
  9006. />
  9007. <package
  9008. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-nl-NL.img"
  9009. size="5183988"
  9010. />
  9011. <package
  9012. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-ru-RU.img"
  9013. size="5183988"
  9014. />
  9015. <package
  9016. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-cmn-CN.img"
  9017. size="5183988"
  9018. />
  9019. <package
  9020. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-ko-KR.img"
  9021. size="5183988"
  9022. />
  9023. <package
  9024. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-ja-JP.img"
  9025. size="5183988"
  9026. />
  9027. <package
  9028. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-fi-FI.img"
  9029. size="5183988"
  9030. />
  9031. <package
  9032. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-pl-PL.img"
  9033. size="5183988"
  9034. />
  9035. </otaPackages>
  9036. </productMenu>
  9037. <productMenu id="wa"
  9038. type="0" >
  9039. </productMenu>
  9040. <productMenu id="meshIntercom"
  9041. type="30" >
  9042. </productMenu>
  9043. <productMenu id="meshIntercom+"
  9044. type="3"
  9045. url="2" >
  9046. </productMenu>
  9047. <productMenu id="waveIntercom"
  9048. type="1" >
  9049. </productMenu>
  9050. <productMenu id="fmradio"
  9051. type="1" >
  9052. </productMenu>
  9053. <productMenu id="phone"
  9054. type="0" >
  9055. </productMenu>
  9056. <productMenu id="music"
  9057. type="1" >
  9058. </productMenu>
  9059. <productMenu id="musicSharing"
  9060. type="0" >
  9061. </productMenu>
  9062. <productMenu id="deviceSetting"
  9063. type="1"
  9064. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  9065. </productMenu>
  9066. <productMenu id="quickGuide"
  9067. type="0"
  9068. url=""
  9069. size="1.12MB" >
  9070. </productMenu>
  9071. <productMenu id="userGuide"
  9072. type="1"
  9073. url=""
  9074. size="2.0MB" >
  9075. </productMenu>
  9076. <productMenu id="videoGuide"
  9077. type="0"
  9078. url=""
  9079. size="3.41MB" >
  9080. </productMenu>
  9081. <productMenu id="connectGuide"
  9082. type="1"
  9083. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  9084. size="1.12MB" >
  9085. </productMenu>
  9086. <productMenu id="volume"
  9087. type="16" >
  9088. </productMenu>
  9089. <productMenu id="battery"
  9090. type="1" >
  9091. </productMenu>
  9092. <productID id="6A85"
  9093. />
  9094. <productGroupable type="0"
  9095. />
  9096. </product>
  9097. <product id="Triumph_50S"
  9098. name="Triumph 50S"
  9099. series="50"
  9100. latestVersion="1.5"
  9101. show = "0" >
  9102. <productMenu id="protocol"
  9103. type="2" >
  9104. </productMenu>
  9105. <productMenu id="alexa"
  9106. type="0" >
  9107. </productMenu>
  9108. <productMenu id="ota"
  9109. type="0"
  9110. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  9111. size="1150234" >
  9112. </productMenu>
  9113. <productMenu id="wa"
  9114. type="1" >
  9115. </productMenu>
  9116. <productMenu id="sip"
  9117. type="1" >
  9118. </productMenu>
  9119. <productMenu id="meshIntercom"
  9120. type="20" >
  9121. </productMenu>
  9122. <productMenu id="bluetoothIntercom"
  9123. type="1" >
  9124. </productMenu>
  9125. <productMenu id="meshIntercom+"
  9126. type="3"
  9127. url="2" >
  9128. <productMenuType version="1.2.9"
  9129. type="2"
  9130. />
  9131. <productMenuURL version="1.2.9"
  9132. url="0"
  9133. />
  9134. </productMenu>
  9135. <productMenu id="waveIntercom"
  9136. type="1" >
  9137. <productMenuType version="1.2.9"
  9138. type="0"
  9139. />
  9140. </productMenu>
  9141. <productMenu id="phone"
  9142. type="1" >
  9143. </productMenu>
  9144. <productMenu id="music"
  9145. type="1" >
  9146. </productMenu>
  9147. <productMenu id="fmradio"
  9148. type="1" >
  9149. </productMenu>
  9150. <productMenu id="deviceSetting"
  9151. type="1"
  9152. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  9153. <productMenuURL version="1.2.9"
  9154. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  9155. />
  9156. <productMenuURL version="1.0"
  9157. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  9158. />
  9159. </productMenu>
  9160. <productMenu id="quickGuide"
  9161. type="1"
  9162. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  9163. size="934KB" >
  9164. </productMenu>
  9165. <productMenu id="userGuide"
  9166. type="1"
  9167. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  9168. size="1.14MB" >
  9169. </productMenu>
  9170. <productMenu id="volume"
  9171. type="11" >
  9172. </productMenu>
  9173. <productMenu id="battery"
  9174. type="1" >
  9175. </productMenu>
  9176. <productID id="3264"
  9177. />
  9178. <productGroupable type="0"
  9179. />
  9180. </product>
  9181. <product id="RE50S"
  9182. name="RE 50S"
  9183. series="50"
  9184. latestVersion="2.7"
  9185. show = "0" >
  9186. <productMenu id="protocol"
  9187. type="2" >
  9188. </productMenu>
  9189. <productMenu id="alexa"
  9190. type="0" >
  9191. </productMenu>
  9192. <productMenu id="ota"
  9193. type="0"
  9194. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  9195. size="1150234" >
  9196. </productMenu>
  9197. <productMenu id="wa"
  9198. type="1" >
  9199. </productMenu>
  9200. <productMenu id="sip"
  9201. type="1" >
  9202. </productMenu>
  9203. <productMenu id="meshIntercom"
  9204. type="30" >
  9205. </productMenu>
  9206. <productMenu id="meshIntercom+"
  9207. type="3"
  9208. url="2" >
  9209. <productMenuType version="2.5"
  9210. type="2"
  9211. />
  9212. </productMenu>
  9213. <productMenu id="waveIntercom"
  9214. type="1" >
  9215. <productMenuType version="2.5"
  9216. type="0"
  9217. />
  9218. </productMenu>
  9219. <productMenu id="bluetoothIntercom"
  9220. type="1" >
  9221. </productMenu>
  9222. <productMenu id="phone"
  9223. type="1" >
  9224. </productMenu>
  9225. <productMenu id="music"
  9226. type="1" >
  9227. </productMenu>
  9228. <productMenu id="fmradio"
  9229. type="1" >
  9230. </productMenu>
  9231. <productMenu id="deviceSetting"
  9232. type="1"
  9233. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  9234. <productMenuURL version="2.5.9"
  9235. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  9236. />
  9237. </productMenu>
  9238. <productMenu id="quickGuide"
  9239. type="1"
  9240. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  9241. size="934KB" >
  9242. </productMenu>
  9243. <productMenu id="userGuide"
  9244. type="1"
  9245. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  9246. size="1.14MB" >
  9247. </productMenu>
  9248. <productMenu id="videoGuide"
  9249. type="0"
  9250. url=""
  9251. size="3.41MB" >
  9252. </productMenu>
  9253. <productMenu id="volume"
  9254. type="11" >
  9255. </productMenu>
  9256. <productMenu id="battery"
  9257. type="1" >
  9258. </productMenu>
  9259. <productID id="321C"
  9260. />
  9261. <productGroupable type="0"
  9262. />
  9263. </product>
  9264. <product id="BMW_HELMET_II_U1"
  9265. name="BMW HELMET II U1"
  9266. series="50"
  9267. latestVersion="1.0"
  9268. show = "0" >
  9269. <productMenu id="protocol"
  9270. type="2" >
  9271. </productMenu>
  9272. <productMenu id="alexa"
  9273. type="0" >
  9274. </productMenu>
  9275. <productMenu id="sip"
  9276. type="1" >
  9277. </productMenu>
  9278. <productMenu id="meshIntercom"
  9279. type="20" >
  9280. </productMenu>
  9281. <productMenu id="bluetoothIntercom"
  9282. type="1" >
  9283. </productMenu>
  9284. <productMenu id="bluetoothIntercom2"
  9285. type="1" >
  9286. </productMenu>
  9287. <productMenu id="phone"
  9288. type="1" >
  9289. </productMenu>
  9290. <productMenu id="music"
  9291. type="1" >
  9292. </productMenu>
  9293. <productMenu id="fmradio"
  9294. type="1" >
  9295. </productMenu>
  9296. <productMenu id="deviceSetting"
  9297. type="1"
  9298. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  9299. </productMenu>
  9300. <productMenu id="quickGuide"
  9301. type="1"
  9302. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  9303. size="934KB" >
  9304. </productMenu>
  9305. <productMenu id="userGuide"
  9306. type="1"
  9307. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  9308. size="1.14MB" >
  9309. </productMenu>
  9310. <productMenu id="volume"
  9311. type="11" >
  9312. </productMenu>
  9313. <productMenu id="battery"
  9314. type="1" >
  9315. </productMenu>
  9316. <productID id="3260"
  9317. />
  9318. <productGroupable type="0"
  9319. />
  9320. </product>
  9321. <product id="OUTRUSHR"
  9322. name="CX935"
  9323. series="Helmet"
  9324. latestVersion="1.1.3"
  9325. show = "-1" >
  9326. <productMenu id="protocol"
  9327. type="0">
  9328. </productMenu>
  9329. <productMenu id="sip"
  9330. type="1" >
  9331. </productMenu>
  9332. <productMenu id="bluetoothIntercom"
  9333. type="1" >
  9334. </productMenu>
  9335. <productMenu id="phone"
  9336. type="2" >
  9337. </productMenu>
  9338. <productMenu id="fmradio"
  9339. type="3" >
  9340. </productMenu>
  9341. <productMenu id="deviceSetting"
  9342. type="1"
  9343. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  9344. </productMenu>
  9345. <productMenu id="userGuide"
  9346. type="1"
  9347. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  9348. size="660KB" >
  9349. </productMenu>
  9350. <productID id="5446"
  9351. />
  9352. <productGroupable type="0"
  9353. />
  9354. </product>
  9355. <product id="LSE_01"
  9356. name="LSE-01"
  9357. series="SF"
  9358. latestVersion="1.2.3"
  9359. show = "0" >
  9360. <productMenu id="protocol"
  9361. type="1"
  9362. url="3">
  9363. </productMenu>
  9364. <productMenu id="sip"
  9365. type="1" >
  9366. </productMenu>
  9367. <productMenu id="bluetoothIntercom"
  9368. type="1" >
  9369. </productMenu>
  9370. <productMenu id="phone"
  9371. type="1" >
  9372. </productMenu>
  9373. <productMenu id="music"
  9374. type="1" >
  9375. </productMenu>
  9376. <productMenu id="fmradio"
  9377. type="1" >
  9378. </productMenu>
  9379. <productMenu id="deviceSetting"
  9380. type="1"
  9381. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  9382. <productMenuURL version="1.1"
  9383. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  9384. />
  9385. <productMenuURL version="1.0"
  9386. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  9387. />
  9388. </productMenu>
  9389. <productMenu id="quickGuide"
  9390. type="1"
  9391. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  9392. size="607KB" >
  9393. </productMenu>
  9394. <productMenu id="userGuide"
  9395. type="1"
  9396. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  9397. size="1.91MB" >
  9398. </productMenu>
  9399. <productMenu id="volume"
  9400. type="4" >
  9401. </productMenu>
  9402. <productID id="5416"
  9403. />
  9404. <productGroupable type="0"
  9405. />
  9406. </product>
  9407. <product id="AGV_ARK"
  9408. name="AGV ARK"
  9409. series="SF"
  9410. latestVersion="1.0.3"
  9411. show = "0" >
  9412. <productMenu id="protocol"
  9413. type="1"
  9414. url="3">
  9415. </productMenu>
  9416. <productMenu id="sip"
  9417. type="1" >
  9418. </productMenu>
  9419. <productMenu id="bluetoothIntercom"
  9420. type="1" >
  9421. </productMenu>
  9422. <productMenu id="phone"
  9423. type="1" >
  9424. </productMenu>
  9425. <productMenu id="music"
  9426. type="1" >
  9427. </productMenu>
  9428. <productMenu id="fmradio"
  9429. type="1" >
  9430. </productMenu>
  9431. <productMenu id="deviceSetting"
  9432. type="1"
  9433. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  9434. </productMenu>
  9435. <productMenu id="quickGuide"
  9436. type="1"
  9437. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  9438. size="607KB" >
  9439. </productMenu>
  9440. <productMenu id="userGuide"
  9441. type="1"
  9442. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  9443. size="1.91MB" >
  9444. </productMenu>
  9445. <productMenu id="volume"
  9446. type="4" >
  9447. </productMenu>
  9448. <productID id="5420"
  9449. />
  9450. <productGroupable type="0"
  9451. />
  9452. </product>
  9453. <product id="KLIM_KRIOS"
  9454. name="KLIM Krios"
  9455. series="10"
  9456. latestVersion="1.1.2"
  9457. show = "0" >
  9458. <productMenu id="protocol"
  9459. type="0">
  9460. </productMenu>
  9461. <productMenu id="sip"
  9462. type="1" >
  9463. </productMenu>
  9464. <productMenu id="bluetoothIntercom"
  9465. type="1" >
  9466. </productMenu>
  9467. <productMenu id="phone"
  9468. type="2" >
  9469. </productMenu>
  9470. <productMenu id="fmradio"
  9471. type="3" >
  9472. </productMenu>
  9473. <productMenu id="deviceSetting"
  9474. type="1"
  9475. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  9476. <productMenuURL version="1.0"
  9477. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  9478. />
  9479. </productMenu>
  9480. <productMenu id="quickGuide"
  9481. type="1"
  9482. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  9483. size="649KB" >
  9484. </productMenu>
  9485. <productMenu id="userGuide"
  9486. type="1"
  9487. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  9488. size="1.43MB" >
  9489. </productMenu>
  9490. <productID id="5910"
  9491. />
  9492. <productGroupable type="0"
  9493. />
  9494. </product>
  9495. <product id="POLARIS_SLINGSHOT"
  9496. name="Polaris Slingshot"
  9497. series="10"
  9498. latestVersion="1.1.2"
  9499. show = "0" >
  9500. <productMenu id="protocol"
  9501. type="0">
  9502. </productMenu>
  9503. <productMenu id="sip"
  9504. type="1" >
  9505. </productMenu>
  9506. <productMenu id="bluetoothIntercom"
  9507. type="1" >
  9508. </productMenu>
  9509. <productMenu id="phone"
  9510. type="2" >
  9511. </productMenu>
  9512. <productMenu id="fmradio"
  9513. type="3" >
  9514. </productMenu>
  9515. <productMenu id="deviceSetting"
  9516. type="1"
  9517. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  9518. <productMenuURL version="1.0"
  9519. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  9520. />
  9521. </productMenu>
  9522. <productMenu id="quickGuide"
  9523. type="1"
  9524. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  9525. size="689KB" >
  9526. </productMenu>
  9527. <productMenu id="userGuide"
  9528. type="1"
  9529. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  9530. size="1.43MB" >
  9531. </productMenu>
  9532. <productID id="5920"
  9533. />
  9534. <productGroupable type="0"
  9535. />
  9536. </product>
  9537. <product id="DWO6"
  9538. name="SEDICI DWO6-PRO"
  9539. series="10"
  9540. latestVersion="1.0.2"
  9541. show = "0" >
  9542. <productMenu id="protocol"
  9543. type="0">
  9544. </productMenu>
  9545. <productMenu id="sip"
  9546. type="1" >
  9547. </productMenu>
  9548. <productMenu id="bluetoothIntercom"
  9549. type="1" >
  9550. </productMenu>
  9551. <productMenu id="phone"
  9552. type="2" >
  9553. </productMenu>
  9554. <productMenu id="fmradio"
  9555. type="3" >
  9556. </productMenu>
  9557. <productMenu id="deviceSetting"
  9558. type="1"
  9559. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9560. </productMenu>
  9561. <productMenu id="quickGuide"
  9562. type="1"
  9563. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  9564. size="529KB" >
  9565. </productMenu>
  9566. <productMenu id="userGuide"
  9567. type="1"
  9568. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  9569. size="4.09MB" >
  9570. </productMenu>
  9571. <productID id="6112"
  9572. />
  9573. <productGroupable type="0"
  9574. />
  9575. </product>
  9576. <product id="DWO6A"
  9577. name="SEDICI DWO-6"
  9578. series="10"
  9579. latestVersion="1.0.2"
  9580. show = "0" >
  9581. <productMenu id="protocol"
  9582. type="0">
  9583. </productMenu>
  9584. <productMenu id="sip"
  9585. type="1" >
  9586. </productMenu>
  9587. <productMenu id="bluetoothIntercom"
  9588. type="1" >
  9589. </productMenu>
  9590. <productMenu id="phone"
  9591. type="2" >
  9592. </productMenu>
  9593. <productMenu id="fmradio"
  9594. type="3" >
  9595. </productMenu>
  9596. <productMenu id="deviceSetting"
  9597. type="1"
  9598. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  9599. </productMenu>
  9600. <productMenu id="quickGuide"
  9601. type="1"
  9602. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  9603. size="522KB" >
  9604. </productMenu>
  9605. <productMenu id="userGuide"
  9606. type="1"
  9607. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  9608. size="2.71MB" >
  9609. </productMenu>
  9610. <productID id="6114"
  9611. />
  9612. <productGroupable type="0"
  9613. />
  9614. </product>
  9615. <product id="3SPLUS"
  9616. name="ZILL"
  9617. series="3"
  9618. latestVersion="1.0.4"
  9619. show = "0" >
  9620. <productMenu id="protocol"
  9621. type="0">
  9622. </productMenu>
  9623. <productMenu id="sip"
  9624. type="1" >
  9625. </productMenu>
  9626. <productMenu id="bluetoothIntercom"
  9627. type="1" >
  9628. </productMenu>
  9629. <productMenu id="deviceSetting"
  9630. type="1"
  9631. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  9632. </productMenu>
  9633. <productMenu id="quickGuide"
  9634. type="1"
  9635. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9636. size="842KB" >
  9637. </productMenu>
  9638. <productMenu id="userGuide"
  9639. type="1"
  9640. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  9641. size="1.02MB" >
  9642. </productMenu>
  9643. <productID id="6335"
  9644. />
  9645. <productGroupable type="0"
  9646. />
  9647. </product>
  9648. <product id="HD50S"
  9649. name="Boom! Audio 30K"
  9650. series="30"
  9651. latestVersion="3.4"
  9652. show = "0" >
  9653. <productMenu id="protocol"
  9654. type="1"
  9655. url="0">
  9656. </productMenu>
  9657. <productMenu id="wa"
  9658. type="0" >
  9659. </productMenu>
  9660. <productMenu id="sip"
  9661. type="1" >
  9662. </productMenu>
  9663. <productMenu id="meshIntercom"
  9664. type="20" >
  9665. <productMenuType version="2.9.9"
  9666. type="10"
  9667. />
  9668. </productMenu>
  9669. <productMenu id="bluetoothIntercom"
  9670. type="1" >
  9671. </productMenu>
  9672. <productMenu id="phone"
  9673. type="1" >
  9674. </productMenu>
  9675. <productMenu id="music"
  9676. type="1" >
  9677. </productMenu>
  9678. <productMenu id="fmradio"
  9679. type="1" >
  9680. </productMenu>
  9681. <productMenu id="deviceSetting"
  9682. type="1"
  9683. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  9684. <productMenuURL version="3.2"
  9685. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  9686. />
  9687. <productMenuURL version="3.0"
  9688. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  9689. />
  9690. <productMenuURL version="2.2"
  9691. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  9692. />
  9693. </productMenu>
  9694. <productMenu id="quickGuide"
  9695. type="1"
  9696. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  9697. size="1.06MB" >
  9698. </productMenu>
  9699. <productMenu id="userGuide"
  9700. type="1"
  9701. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  9702. size="3.15MB" >
  9703. </productMenu>
  9704. <productMenu id="volume"
  9705. type="1" >
  9706. </productMenu>
  9707. <productID id="3112"
  9708. />
  9709. <productGroupable type="0"
  9710. />
  9711. </product>
  9712. <product id="HD50S"
  9713. name="Boom! Audio N02"
  9714. series="30"
  9715. latestVersion="3.1"
  9716. show = "0" >
  9717. <productMenu id="protocol"
  9718. type="1"
  9719. url="0">
  9720. </productMenu>
  9721. <productMenu id="wa"
  9722. type="2" >
  9723. </productMenu>
  9724. <productMenu id="sip"
  9725. type="1" >
  9726. </productMenu>
  9727. <productMenu id="meshIntercom"
  9728. type="20" >
  9729. <productMenuType version="2.9.9"
  9730. type="10"
  9731. />
  9732. </productMenu>
  9733. <productMenu id="bluetoothIntercom"
  9734. type="1" >
  9735. </productMenu>
  9736. <productMenu id="phone"
  9737. type="1" >
  9738. </productMenu>
  9739. <productMenu id="music"
  9740. type="1" >
  9741. </productMenu>
  9742. <productMenu id="fmradio"
  9743. type="1" >
  9744. </productMenu>
  9745. <productMenu id="deviceSetting"
  9746. type="1"
  9747. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  9748. <productMenuURL version="2.2"
  9749. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  9750. />
  9751. </productMenu>
  9752. <productMenu id="quickGuide"
  9753. type="1"
  9754. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  9755. size="1.06MB" >
  9756. </productMenu>
  9757. <productMenu id="userGuide"
  9758. type="1"
  9759. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  9760. size="3.15MB" >
  9761. </productMenu>
  9762. <productMenu id="volume"
  9763. type="2" >
  9764. </productMenu>
  9765. <productID id="3114"
  9766. />
  9767. <productGroupable type="0"
  9768. />
  9769. </product>
  9770. <product id="HD50S"
  9771. name="Boom Audio 20S"
  9772. series="50"
  9773. latestVersion="2.5.2"
  9774. show = "0" >
  9775. <productMenu id="protocol"
  9776. type="0">
  9777. </productMenu>
  9778. <productMenu id="sip"
  9779. type="1" >
  9780. <productMenuType version="1.0"
  9781. type="0"
  9782. />
  9783. </productMenu>
  9784. <productMenu id="bluetoothIntercom"
  9785. type="1" >
  9786. <productMenuType version="1.0"
  9787. type="0"
  9788. />
  9789. </productMenu>
  9790. <productMenu id="intercomSetting"
  9791. type="1" >
  9792. </productMenu>
  9793. <productMenu id="phone"
  9794. type="2" >
  9795. </productMenu>
  9796. <productMenu id="fmradio"
  9797. type="3" >
  9798. </productMenu>
  9799. <productMenu id="deviceSetting"
  9800. type="1"
  9801. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  9802. <productMenuURL version="2.4"
  9803. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9804. />
  9805. <productMenuURL version="1.5"
  9806. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9807. />
  9808. <productMenuURL version="1.4.1"
  9809. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9810. />
  9811. <productMenuURL version="1.1"
  9812. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9813. />
  9814. <productMenuURL version="1.0"
  9815. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9816. />
  9817. </productMenu>
  9818. <productMenu id="quickGuide"
  9819. type="1"
  9820. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  9821. size="264KB" >
  9822. </productMenu>
  9823. <productMenu id="userGuide"
  9824. type="1"
  9825. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  9826. size="3.09MB" >
  9827. </productMenu>
  9828. <productMenu id="connectGuide"
  9829. type="1"
  9830. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9831. size="1.12MB" >
  9832. </productMenu>
  9833. <productID id="4210"
  9834. />
  9835. <productProductKey key="11"
  9836. />
  9837. <productID id="4230"
  9838. />
  9839. <productProductKey key="11"
  9840. />
  9841. <productGroupable type="1"
  9842. />
  9843. </product>
  9844. <product id="HD50S"
  9845. name="Boom Audio 20S EVO"
  9846. series="50"
  9847. latestVersion="2.5.2"
  9848. show = "0" >
  9849. <productMenu id="protocol"
  9850. type="0">
  9851. </productMenu>
  9852. <productMenu id="sip"
  9853. type="1" >
  9854. <productMenuType version="1.0"
  9855. type="0"
  9856. />
  9857. </productMenu>
  9858. <productMenu id="bluetoothIntercom"
  9859. type="1" >
  9860. <productMenuType version="1.0"
  9861. type="0"
  9862. />
  9863. </productMenu>
  9864. <productMenu id="intercomSetting"
  9865. type="1" >
  9866. </productMenu>
  9867. <productMenu id="phone"
  9868. type="2" >
  9869. </productMenu>
  9870. <productMenu id="fmradio"
  9871. type="3" >
  9872. </productMenu>
  9873. <productMenu id="deviceSetting"
  9874. type="1"
  9875. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  9876. <productMenuURL version="2.4"
  9877. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9878. />
  9879. <productMenuURL version="1.5"
  9880. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9881. />
  9882. <productMenuURL version="1.4.1"
  9883. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9884. />
  9885. <productMenuURL version="1.1"
  9886. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9887. />
  9888. <productMenuURL version="1.0"
  9889. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9890. />
  9891. </productMenu>
  9892. <productMenu id="quickGuide"
  9893. type="1"
  9894. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  9895. size="321KB" >
  9896. </productMenu>
  9897. <productMenu id="userGuide"
  9898. type="1"
  9899. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  9900. size="2.46MB" >
  9901. </productMenu>
  9902. <productID id="4230"
  9903. />
  9904. <productProductKey key="27"
  9905. />
  9906. <productGroupable type="1"
  9907. />
  9908. </product>
  9909. <product id="HD50S"
  9910. name="Boom! Audio 10S"
  9911. series="50"
  9912. latestVersion="1.1.3"
  9913. show = "0" >
  9914. <productMenu id="protocol"
  9915. type="0">
  9916. </productMenu>
  9917. <productMenu id="sip"
  9918. type="1" >
  9919. </productMenu>
  9920. <productMenu id="bluetoothIntercom"
  9921. type="1" >
  9922. </productMenu>
  9923. <productMenu id="phone"
  9924. type="2" >
  9925. </productMenu>
  9926. <productMenu id="fmradio"
  9927. type="3" >
  9928. </productMenu>
  9929. <productMenu id="deviceSetting"
  9930. type="1"
  9931. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  9932. </productMenu>
  9933. <productMenu id="quickGuide"
  9934. type="1"
  9935. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  9936. size="538KB" >
  9937. </productMenu>
  9938. <productMenu id="userGuide"
  9939. type="1"
  9940. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  9941. size="1.55MB" >
  9942. </productMenu>
  9943. <productID id="5532"
  9944. />
  9945. <productGroupable type="0"
  9946. />
  9947. </product>
  9948. <product id="HD50S"
  9949. name="Boom! Audio N01 10R"
  9950. series="50"
  9951. latestVersion="1.1.3"
  9952. show = "0" >
  9953. <productMenu id="protocol"
  9954. type="0">
  9955. </productMenu>
  9956. <productMenu id="sip"
  9957. type="1" >
  9958. </productMenu>
  9959. <productMenu id="bluetoothIntercom"
  9960. type="1" >
  9961. </productMenu>
  9962. <productMenu id="phone"
  9963. type="2" >
  9964. </productMenu>
  9965. <productMenu id="fmradio"
  9966. type="3" >
  9967. </productMenu>
  9968. <productMenu id="deviceSetting"
  9969. type="1"
  9970. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  9971. </productMenu>
  9972. <productMenu id="quickGuide"
  9973. type="1"
  9974. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  9975. size="766KB" >
  9976. </productMenu>
  9977. <productMenu id="userGuide"
  9978. type="1"
  9979. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  9980. size="1.45MB" >
  9981. </productMenu>
  9982. <productID id="5522"
  9983. />
  9984. <productGroupable type="0"
  9985. />
  9986. </product>
  9987. <product id="HD50S"
  9988. name="OUTRUSH-R N03"
  9989. series="50"
  9990. latestVersion="1.2.1"
  9991. show = "-1" >
  9992. <productMenu id="protocol"
  9993. type="0">
  9994. </productMenu>
  9995. <productMenu id="sip"
  9996. type="1" >
  9997. </productMenu>
  9998. <productMenu id="bluetoothIntercom"
  9999. type="1" >
  10000. </productMenu>
  10001. <productMenu id="phone"
  10002. type="2" >
  10003. </productMenu>
  10004. <productMenu id="fmradio"
  10005. type="3" >
  10006. </productMenu>
  10007. <productMenu id="deviceSetting"
  10008. type="1"
  10009. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  10010. </productMenu>
  10011. <productMenu id="userGuide"
  10012. type="1"
  10013. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  10014. size="660KB" >
  10015. </productMenu>
  10016. <productID id="5434"
  10017. />
  10018. <productGroupable type="0"
  10019. />
  10020. </product>
  10021. <product id="HD50S"
  10022. name="OUTRUSH-R N03"
  10023. series="50"
  10024. latestVersion="2.0"
  10025. show = "0" >
  10026. <productMenu id="protocol"
  10027. type="3" >
  10028. </productMenu>
  10029. <productMenu id="sip"
  10030. type="1" >
  10031. </productMenu>
  10032. <productMenu id="bluetoothIntercom"
  10033. type="1" >
  10034. </productMenu>
  10035. <productMenu id="phone"
  10036. type="1" >
  10037. </productMenu>
  10038. <productMenu id="fmradio"
  10039. type="1" >
  10040. </productMenu>
  10041. <productMenu id="deviceSetting"
  10042. type="1"
  10043. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  10044. </productMenu>
  10045. <productMenu id="userGuide"
  10046. type="1"
  10047. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  10048. size="1.14MB" >
  10049. </productMenu>
  10050. <productID id="5441"
  10051. />
  10052. <productGroupable type="0"
  10053. />
  10054. </product>
  10055. <product id="5R"
  10056. name="5R"
  10057. series="5"
  10058. latestVersion="1.0.1"
  10059. show = "1" >
  10060. <productMenu id="protocol"
  10061. type="3" >
  10062. </productMenu>
  10063. <productMenu id="sip"
  10064. type="1" >
  10065. </productMenu>
  10066. <productMenu id="bluetoothIntercom"
  10067. type="1" >
  10068. </productMenu>
  10069. <productMenu id="phone"
  10070. type="1" >
  10071. </productMenu>
  10072. <productMenu id="fmradio"
  10073. type="1" >
  10074. </productMenu>
  10075. <productMenu id="deviceSetting"
  10076. type="1"
  10077. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10078. </productMenu>
  10079. <productMenu id="quickGuide"
  10080. type="0"
  10081. url=""
  10082. size="934KB" >
  10083. </productMenu>
  10084. <productMenu id="userGuide"
  10085. type="1"
  10086. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  10087. size="1.14MB" >
  10088. </productMenu>
  10089. <productMenu id="connectGuide"
  10090. type="1"
  10091. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  10092. size="1.12MB" >
  10093. </productMenu>
  10094. <productID id="5591"
  10095. />
  10096. <productGroupable type="0"
  10097. />
  10098. </product>
  10099. <product id="5R"
  10100. name="5R LITE"
  10101. series="5"
  10102. latestVersion="1.0.1"
  10103. show = "1" >
  10104. <productMenu id="protocol"
  10105. type="3" >
  10106. </productMenu>
  10107. <productMenu id="sip"
  10108. type="1" >
  10109. </productMenu>
  10110. <productMenu id="bluetoothIntercom"
  10111. type="1" >
  10112. </productMenu>
  10113. <productMenu id="phone"
  10114. type="1" >
  10115. </productMenu>
  10116. <productMenu id="fmradio"
  10117. type="1" >
  10118. </productMenu>
  10119. <productMenu id="deviceSetting"
  10120. type="1"
  10121. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  10122. </productMenu>
  10123. <productMenu id="quickGuide"
  10124. type="0"
  10125. url=""
  10126. size="934KB" >
  10127. </productMenu>
  10128. <productMenu id="userGuide"
  10129. type="1"
  10130. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  10131. size="1.14MB" >
  10132. </productMenu>
  10133. <productMenu id="connectGuide"
  10134. type="1"
  10135. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  10136. size="1.12MB" >
  10137. </productMenu>
  10138. <productID id="5592"
  10139. />
  10140. <productGroupable type="0"
  10141. />
  10142. </product>
  10143. <product id="50RLE"
  10144. name="50R LE"
  10145. series="50"
  10146. latestVersion="1.1"
  10147. show = "0" >
  10148. <productMenu id="protocol"
  10149. type="2" >
  10150. </productMenu>
  10151. <productMenu id="alexa"
  10152. type="0" >
  10153. </productMenu>
  10154. <productMenu id="sip"
  10155. type="1" >
  10156. </productMenu>
  10157. <productMenu id="meshIntercom"
  10158. type="30" >
  10159. </productMenu>
  10160. <productMenu id="meshIntercom+"
  10161. type="3"
  10162. url="2" >
  10163. <productMenuType version="1.0.9"
  10164. type="2"
  10165. />
  10166. </productMenu>
  10167. <productMenu id="waveIntercom"
  10168. type="1" >
  10169. <productMenuType version="1.0.9"
  10170. type="0"
  10171. />
  10172. </productMenu>
  10173. <productMenu id="bluetoothIntercom"
  10174. type="1" >
  10175. </productMenu>
  10176. <productMenu id="phone"
  10177. type="1" >
  10178. </productMenu>
  10179. <productMenu id="music"
  10180. type="1" >
  10181. </productMenu>
  10182. <productMenu id="fmradio"
  10183. type="0" >
  10184. </productMenu>
  10185. <productMenu id="deviceSetting"
  10186. type="1"
  10187. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  10188. <productMenuURL version="1.0.9"
  10189. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  10190. />
  10191. </productMenu>
  10192. <productMenu id="quickGuide"
  10193. type="0"
  10194. url=""
  10195. size="344KB" >
  10196. </productMenu>
  10197. <productMenu id="userGuide"
  10198. type="0"
  10199. url=""
  10200. size="3.41MB" >
  10201. </productMenu>
  10202. <productMenu id="volume"
  10203. type="11" >
  10204. </productMenu>
  10205. <productMenu id="battery"
  10206. type="1" >
  10207. </productMenu>
  10208. <productID id="3223"
  10209. />
  10210. <productGroupable type="0"
  10211. />
  10212. </product>
  10213. <product id="5RLOUIS"
  10214. name="5R LOUIS EDITION"
  10215. series="5"
  10216. latestVersion="1.0"
  10217. show = "-1" >
  10218. <productMenu id="protocol"
  10219. type="3" >
  10220. </productMenu>
  10221. <productMenu id="sip"
  10222. type="1" >
  10223. </productMenu>
  10224. <productMenu id="bluetoothIntercom"
  10225. type="1" >
  10226. </productMenu>
  10227. <productMenu id="phone"
  10228. type="1" >
  10229. </productMenu>
  10230. <productMenu id="fmradio"
  10231. type="1" >
  10232. </productMenu>
  10233. <productMenu id="deviceSetting"
  10234. type="1"
  10235. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10236. </productMenu>
  10237. <productMenu id="quickGuide"
  10238. type="0"
  10239. url=""
  10240. size="934KB" >
  10241. </productMenu>
  10242. <productMenu id="userGuide"
  10243. type="0"
  10244. url=""
  10245. size="1.14MB" >
  10246. </productMenu>
  10247. <productID id="5597"
  10248. />
  10249. <productGroupable type="0"
  10250. />
  10251. </product>
  10252. <product id="5S"
  10253. name="Ridekont 5S"
  10254. series="5"
  10255. latestVersion="2.3"
  10256. show = "-1" >
  10257. <productMenu id="protocol"
  10258. type="3" >
  10259. </productMenu>
  10260. <productMenu id="sip"
  10261. type="1" >
  10262. </productMenu>
  10263. <productMenu id="bluetoothIntercom"
  10264. type="1" >
  10265. </productMenu>
  10266. <productMenu id="phone"
  10267. type="1" >
  10268. </productMenu>
  10269. <productMenu id="fmradio"
  10270. type="0" >
  10271. </productMenu>
  10272. <productMenu id="deviceSetting"
  10273. type="1"
  10274. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10275. </productMenu>
  10276. <productMenu id="quickGuide"
  10277. type="0"
  10278. url=""
  10279. size="934KB" >
  10280. </productMenu>
  10281. <productMenu id="userGuide"
  10282. type="1"
  10283. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  10284. size="1.14MB" >
  10285. </productMenu>
  10286. <productID id="5589"
  10287. />
  10288. <productGroupable type="0"
  10289. />
  10290. </product>
  10291. <product id="5R"
  10292. name="Ridekont 5R"
  10293. series="5"
  10294. latestVersion="1.0"
  10295. show = "0" >
  10296. <productMenu id="protocol"
  10297. type="3" >
  10298. </productMenu>
  10299. <productMenu id="sip"
  10300. type="1" >
  10301. </productMenu>
  10302. <productMenu id="bluetoothIntercom"
  10303. type="1" >
  10304. </productMenu>
  10305. <productMenu id="phone"
  10306. type="1" >
  10307. </productMenu>
  10308. <productMenu id="fmradio"
  10309. type="1" >
  10310. </productMenu>
  10311. <productMenu id="deviceSetting"
  10312. type="1"
  10313. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10314. </productMenu>
  10315. <productMenu id="quickGuide"
  10316. type="1"
  10317. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  10318. size="934KB" >
  10319. </productMenu>
  10320. <productMenu id="userGuide"
  10321. type="1"
  10322. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  10323. size="1.14MB" >
  10324. </productMenu>
  10325. <productID id="5593"
  10326. />
  10327. <productGroupable type="0"
  10328. />
  10329. </product>
  10330. <product id="5R"
  10331. name="Ridekont 5R LITE"
  10332. series="5"
  10333. latestVersion="1.0"
  10334. show = "0" >
  10335. <productMenu id="protocol"
  10336. type="3" >
  10337. </productMenu>
  10338. <productMenu id="sip"
  10339. type="1" >
  10340. </productMenu>
  10341. <productMenu id="bluetoothIntercom"
  10342. type="1" >
  10343. </productMenu>
  10344. <productMenu id="phone"
  10345. type="1" >
  10346. </productMenu>
  10347. <productMenu id="fmradio"
  10348. type="1" >
  10349. </productMenu>
  10350. <productMenu id="deviceSetting"
  10351. type="1"
  10352. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  10353. </productMenu>
  10354. <productMenu id="quickGuide"
  10355. type="0"
  10356. url=""
  10357. size="934KB" >
  10358. </productMenu>
  10359. <productMenu id="userGuide"
  10360. type="1"
  10361. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  10362. size="1.14MB" >
  10363. </productMenu>
  10364. <productID id="5594"
  10365. />
  10366. <productGroupable type="0"
  10367. />
  10368. </product>
  10369. <product id="SA30"
  10370. name="SA30"
  10371. series="SA"
  10372. latestVersion="1.0"
  10373. latestVersionVoicePrompt="0.14"
  10374. show = "-1" >
  10375. <productMenu id="protocol"
  10376. type="2" >
  10377. </productMenu>
  10378. <productMenu id="ota"
  10379. type="0" >
  10380. <otaPackages>
  10381. <package
  10382. url="https://api.sena.com/support/OTA/C30/SENA_SA30-v1.1.4-build0.img"
  10383. size="3144148"
  10384. />
  10385. </otaPackages>
  10386. </productMenu>
  10387. <productMenu id="meshIntercom"
  10388. type="30" >
  10389. </productMenu>
  10390. <productMenu id="meshIntercom+"
  10391. type="3"
  10392. url="2" >
  10393. </productMenu>
  10394. <productMenu id="phone"
  10395. type="1" >
  10396. </productMenu>
  10397. <productMenu id="music"
  10398. type="1" >
  10399. </productMenu>
  10400. <productMenu id="musicSharing"
  10401. type="0" >
  10402. </productMenu>
  10403. <productMenu id="deviceSetting"
  10404. type="1"
  10405. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  10406. </productMenu>
  10407. <productMenu id="quickGuide"
  10408. type="0"
  10409. url=""
  10410. size="1.12MB" >
  10411. </productMenu>
  10412. <productMenu id="userGuide"
  10413. type="1"
  10414. url=""
  10415. size="2.0MB" >
  10416. </productMenu>
  10417. <productMenu id="videoGuide"
  10418. type="0"
  10419. url=""
  10420. size="3.41MB" >
  10421. </productMenu>
  10422. <productMenu id="volume"
  10423. type="12" >
  10424. </productMenu>
  10425. <productMenu id="battery"
  10426. type="1" >
  10427. </productMenu>
  10428. <productID id="6852"
  10429. />
  10430. <productGroupable type="0"
  10431. />
  10432. </product>
  10433. <product id="I30"
  10434. name="I30"
  10435. series="I"
  10436. latestVersion="1.0"
  10437. latestVersionVoicePrompt="0.14"
  10438. show = "-1" >
  10439. <productMenu id="protocol"
  10440. type="2" >
  10441. </productMenu>
  10442. <productMenu id="ota"
  10443. type="0" >
  10444. <otaPackages>
  10445. <package
  10446. url="https://api.sena.com/support/OTA/C30/SENA_I30-v1.1.4-build0.img"
  10447. size="3144148"
  10448. />
  10449. </otaPackages>
  10450. </productMenu>
  10451. <productMenu id="meshIntercom"
  10452. type="30" >
  10453. </productMenu>
  10454. <productMenu id="meshIntercom+"
  10455. type="3"
  10456. url="2" >
  10457. </productMenu>
  10458. <productMenu id="phone"
  10459. type="1" >
  10460. </productMenu>
  10461. <productMenu id="music"
  10462. type="1" >
  10463. </productMenu>
  10464. <productMenu id="musicSharing"
  10465. type="0" >
  10466. </productMenu>
  10467. <productMenu id="deviceSetting"
  10468. type="1"
  10469. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  10470. </productMenu>
  10471. <productMenu id="quickGuide"
  10472. type="0"
  10473. url=""
  10474. size="1.12MB" >
  10475. </productMenu>
  10476. <productMenu id="userGuide"
  10477. type="1"
  10478. url=""
  10479. size="2.10MB" >
  10480. </productMenu>
  10481. <productMenu id="videoGuide"
  10482. type="0"
  10483. url=""
  10484. size="3.11MB" >
  10485. </productMenu>
  10486. <productMenu id="volume"
  10487. type="12" >
  10488. </productMenu>
  10489. <productMenu id="battery"
  10490. type="1" >
  10491. </productMenu>
  10492. <productID id="6853"
  10493. />
  10494. <productGroupable type="0"
  10495. />
  10496. </product>
  10497. <product id="C30"
  10498. name="SENA C30"
  10499. series="C"
  10500. latestVersion="1.1.4"
  10501. latestVersionVoicePrompt="0.11"
  10502. show = "1" >
  10503. <productMenu id="protocol"
  10504. type="2" >
  10505. </productMenu>
  10506. <productMenu id="alexa"
  10507. type="0" >
  10508. </productMenu>
  10509. <productMenu id="ota"
  10510. type="2" >
  10511. <otaPackages>
  10512. <package
  10513. url="https://api.sena.com/support/OTA/C30/SENA_C30-v1.1.4-build0.img"
  10514. size="3144148"
  10515. />
  10516. </otaPackages>
  10517. </productMenu>
  10518. <productMenu id="wa"
  10519. type="0" >
  10520. </productMenu>
  10521. <productMenu id="meshIntercom"
  10522. type="30" >
  10523. </productMenu>
  10524. <productMenu id="meshIntercom+"
  10525. type="3"
  10526. url="2" >
  10527. <productMenuType version="1.0.9"
  10528. type="2"
  10529. />
  10530. </productMenu>
  10531. <productMenu id="phone"
  10532. type="1" >
  10533. </productMenu>
  10534. <productMenu id="music"
  10535. type="1" >
  10536. </productMenu>
  10537. <productMenu id="musicSharing"
  10538. type="0" >
  10539. </productMenu>
  10540. <productMenu id="deviceSetting"
  10541. type="1"
  10542. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_06_zh_rCN.xml" >
  10543. <productMenuURL version="1.0.9"
  10544. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  10545. />
  10546. </productMenu>
  10547. <productMenu id="quickGuide"
  10548. type="1"
  10549. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  10550. size="1.12MB" >
  10551. </productMenu>
  10552. <productMenu id="userGuide"
  10553. type="0"
  10554. url=""
  10555. size="2.0MB" >
  10556. </productMenu>
  10557. <productMenu id="videoGuide"
  10558. type="0"
  10559. url=""
  10560. size="3.41MB" >
  10561. </productMenu>
  10562. <productMenu id="volume"
  10563. type="12" >
  10564. </productMenu>
  10565. <productMenu id="battery"
  10566. type="1" >
  10567. </productMenu>
  10568. <productID id="683A"
  10569. />
  10570. <productGroupable type="0"
  10571. />
  10572. </product>
  10573. <product id="C20"
  10574. name="C20"
  10575. series="5"
  10576. latestVersion="1.0"
  10577. show = "0" >
  10578. <productMenu id="protocol"
  10579. type="3" >
  10580. </productMenu>
  10581. <productMenu id="sip"
  10582. type="1" >
  10583. </productMenu>
  10584. <productMenu id="bluetoothIntercom"
  10585. type="1" >
  10586. </productMenu>
  10587. <productMenu id="phone"
  10588. type="1" >
  10589. </productMenu>
  10590. <productMenu id="deviceSetting"
  10591. type="1"
  10592. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  10593. </productMenu>
  10594. <productMenu id="quickGuide"
  10595. type="1"
  10596. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  10597. size="934KB" >
  10598. </productMenu>
  10599. <productMenu id="userGuide"
  10600. type="1"
  10601. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  10602. size="1.14MB" >
  10603. </productMenu>
  10604. <productID id="3701"
  10605. />
  10606. <productGroupable type="0"
  10607. />
  10608. </product>
  10609. <product id="C10"
  10610. name="C10"
  10611. series="5"
  10612. latestVersion="1.4.3"
  10613. show = "0" >
  10614. <productMenu id="protocol"
  10615. type="3" >
  10616. </productMenu>
  10617. <productMenu id="sip"
  10618. type="1" >
  10619. </productMenu>
  10620. <productMenu id="bluetoothIntercom"
  10621. type="1" >
  10622. </productMenu>
  10623. <productMenu id="phone"
  10624. type="1" >
  10625. </productMenu>
  10626. <productMenu id="fmradio"
  10627. type="0" >
  10628. </productMenu>
  10629. <productMenu id="deviceSetting"
  10630. type="1"
  10631. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  10632. </productMenu>
  10633. <productMenu id="userGuide"
  10634. type="1"
  10635. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  10636. size="1.14MB" >
  10637. </productMenu>
  10638. <productID id="5595"
  10639. />
  10640. <productGroupable type="0"
  10641. />
  10642. </product>
  10643. <product id="J30"
  10644. name="J30"
  10645. series="J"
  10646. latestVersion="1.2.1"
  10647. latestVersionVoicePrompt="0.13"
  10648. show = "0" >
  10649. <productMenu id="protocol"
  10650. type="2" >
  10651. </productMenu>
  10652. <productMenu id="alexa"
  10653. type="0" >
  10654. </productMenu>
  10655. <productMenu id="ota"
  10656. type="2" >
  10657. <otaPackages>
  10658. <package
  10659. url="https://api.sena.com/support/OTA/J30/SENA_J30-v1.2.1-build0.img"
  10660. size="3144148"
  10661. />
  10662. </otaPackages>
  10663. </productMenu>
  10664. <productMenu id="wa"
  10665. type="0" >
  10666. </productMenu>
  10667. <productMenu id="meshIntercom"
  10668. type="30" >
  10669. </productMenu>
  10670. <productMenu id="meshIntercom+"
  10671. type="3"
  10672. url="2" >
  10673. <productMenuType version="1.0.9"
  10674. type="2"
  10675. />
  10676. </productMenu>
  10677. <productMenu id="waveIntercom"
  10678. type="1" >
  10679. <productMenuType version="1.1.9"
  10680. type="0"
  10681. />
  10682. </productMenu>
  10683. <productMenu id="phone"
  10684. type="1" >
  10685. </productMenu>
  10686. <productMenu id="music"
  10687. type="1" >
  10688. </productMenu>
  10689. <productMenu id="musicSharing"
  10690. type="0" >
  10691. </productMenu>
  10692. <productMenu id="deviceSetting"
  10693. type="1"
  10694. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  10695. <productMenuURL version="1.0.9"
  10696. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  10697. />
  10698. </productMenu>
  10699. <productMenu id="quickGuide"
  10700. type="0"
  10701. url=""
  10702. size="1.12MB" >
  10703. </productMenu>
  10704. <productMenu id="userGuide"
  10705. type="1"
  10706. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  10707. size="2.0MB" >
  10708. </productMenu>
  10709. <productMenu id="videoGuide"
  10710. type="0"
  10711. url=""
  10712. size="3.41MB" >
  10713. </productMenu>
  10714. <productMenu id="volume"
  10715. type="12" >
  10716. </productMenu>
  10717. <productMenu id="battery"
  10718. type="1" >
  10719. </productMenu>
  10720. <productID id="6848"
  10721. />
  10722. <productGroupable type="0"
  10723. />
  10724. </product>
  10725. <product id="J10"
  10726. name="J10"
  10727. series="5"
  10728. latestVersion="1.1.3"
  10729. show = "0" >
  10730. <productMenu id="protocol"
  10731. type="3" >
  10732. </productMenu>
  10733. <productMenu id="sip"
  10734. type="1" >
  10735. </productMenu>
  10736. <productMenu id="bluetoothIntercom"
  10737. type="1" >
  10738. </productMenu>
  10739. <productMenu id="phone"
  10740. type="1" >
  10741. </productMenu>
  10742. <productMenu id="fmradio"
  10743. type="0" >
  10744. </productMenu>
  10745. <productMenu id="deviceSetting"
  10746. type="1"
  10747. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  10748. </productMenu>
  10749. <productMenu id="userGuide"
  10750. type="1"
  10751. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  10752. size="1.14MB" >
  10753. </productMenu>
  10754. <productID id="5598"
  10755. />
  10756. <productGroupable type="0"
  10757. />
  10758. </product>
  10759. <product id="B20"
  10760. name="B20"
  10761. series="B"
  10762. latestVersion="1.1.1"
  10763. latestVersionVoicePrompt="0.13"
  10764. show = "0" >
  10765. <productMenu id="protocol"
  10766. type="2" >
  10767. </productMenu>
  10768. <productMenu id="alexa"
  10769. type="0" >
  10770. </productMenu>
  10771. <productMenu id="ota"
  10772. type="2" >
  10773. <otaPackages>
  10774. <package
  10775. url="https://api.sena.com/support/OTA/B20/SENA_B20-v1.1.1-build0.img"
  10776. size="3144148"
  10777. />
  10778. </otaPackages>
  10779. </productMenu>
  10780. <productMenu id="wa"
  10781. type="0" >
  10782. </productMenu>
  10783. <productMenu id="meshIntercom"
  10784. type="30" >
  10785. </productMenu>
  10786. <productMenu id="phone"
  10787. type="1" >
  10788. </productMenu>
  10789. <productMenu id="music"
  10790. type="1" >
  10791. </productMenu>
  10792. <productMenu id="musicSharing"
  10793. type="0" >
  10794. </productMenu>
  10795. <productMenu id="deviceSetting"
  10796. type="1"
  10797. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  10798. <productMenuURL version="1.0.9"
  10799. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  10800. />
  10801. </productMenu>
  10802. <productMenu id="quickGuide"
  10803. type="0"
  10804. url=""
  10805. size="1.12MB" >
  10806. </productMenu>
  10807. <productMenu id="userGuide"
  10808. type="1"
  10809. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  10810. size="2.0MB" >
  10811. </productMenu>
  10812. <productMenu id="videoGuide"
  10813. type="0"
  10814. url=""
  10815. size="3.41MB" >
  10816. </productMenu>
  10817. <productMenu id="volume"
  10818. type="12" >
  10819. </productMenu>
  10820. <productMenu id="battery"
  10821. type="1" >
  10822. </productMenu>
  10823. <productID id="6847"
  10824. />
  10825. <productGroupable type="0"
  10826. />
  10827. </product>
  10828. <product id="B10"
  10829. name="B10"
  10830. series="5"
  10831. latestVersion="1.2.3"
  10832. show = "0" >
  10833. <productMenu id="protocol"
  10834. type="3" >
  10835. </productMenu>
  10836. <productMenu id="sip"
  10837. type="1" >
  10838. </productMenu>
  10839. <productMenu id="bluetoothIntercom"
  10840. type="1" >
  10841. </productMenu>
  10842. <productMenu id="phone"
  10843. type="1" >
  10844. </productMenu>
  10845. <productMenu id="fmradio"
  10846. type="0" >
  10847. </productMenu>
  10848. <productMenu id="deviceSetting"
  10849. type="1"
  10850. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  10851. </productMenu>
  10852. <productMenu id="userGuide"
  10853. type="1"
  10854. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  10855. size="1.14MB" >
  10856. </productMenu>
  10857. <productID id="5596"
  10858. />
  10859. <productGroupable type="0"
  10860. />
  10861. </product>
  10862. <product id="E30"
  10863. name="E30"
  10864. series="E"
  10865. latestVersion="1.1.1"
  10866. latestVersionVoicePrompt="0.13"
  10867. show = "0" >
  10868. <productMenu id="protocol"
  10869. type="2" >
  10870. </productMenu>
  10871. <productMenu id="alexa"
  10872. type="0" >
  10873. </productMenu>
  10874. <productMenu id="ota"
  10875. type="2" >
  10876. <otaPackages>
  10877. <package
  10878. url="https://api.sena.com/support/OTA/E30/SENA_E30-v1.1.1-build0.img"
  10879. size="3144148"
  10880. />
  10881. </otaPackages>
  10882. </productMenu>
  10883. <productMenu id="wa"
  10884. type="0" >
  10885. </productMenu>
  10886. <productMenu id="meshIntercom"
  10887. type="30" >
  10888. </productMenu>
  10889. <productMenu id="meshIntercom+"
  10890. type="3"
  10891. url="2" >
  10892. </productMenu>
  10893. <productMenu id="waveIntercom"
  10894. type="1" >
  10895. <productMenuType version="1.0.9"
  10896. type="0"
  10897. />
  10898. </productMenu>
  10899. <productMenu id="phone"
  10900. type="1" >
  10901. </productMenu>
  10902. <productMenu id="music"
  10903. type="1" >
  10904. </productMenu>
  10905. <productMenu id="musicSharing"
  10906. type="0" >
  10907. </productMenu>
  10908. <productMenu id="deviceSetting"
  10909. type="1"
  10910. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  10911. </productMenu>
  10912. <productMenu id="quickGuide"
  10913. type="0"
  10914. url=""
  10915. size="1.12MB" >
  10916. </productMenu>
  10917. <productMenu id="userGuide"
  10918. type="1"
  10919. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  10920. size="2.0MB" >
  10921. </productMenu>
  10922. <productMenu id="videoGuide"
  10923. type="0"
  10924. url=""
  10925. size="3.41MB" >
  10926. </productMenu>
  10927. <productMenu id="volume"
  10928. type="12" >
  10929. </productMenu>
  10930. <productMenu id="battery"
  10931. type="1" >
  10932. </productMenu>
  10933. <productID id="6846"
  10934. />
  10935. <productGroupable type="0"
  10936. />
  10937. </product>
  10938. <product id="ACSRAM"
  10939. name="ACS-RAM"
  10940. series="ACS"
  10941. latestVersion="1.0.5"
  10942. show = "1" >
  10943. <productMenu id="protocol"
  10944. type="3" >
  10945. </productMenu>
  10946. <productMenu id="sip"
  10947. type="1" >
  10948. </productMenu>
  10949. <productMenu id="bluetoothIntercom"
  10950. type="1" >
  10951. </productMenu>
  10952. <productMenu id="deviceSetting"
  10953. type="1"
  10954. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  10955. </productMenu>
  10956. <productMenu id="quickGuide"
  10957. type="1"
  10958. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  10959. size="344KB" >
  10960. </productMenu>
  10961. <productMenu id="userGuide"
  10962. type="1"
  10963. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  10964. size="1.14MB" >
  10965. </productMenu>
  10966. <productMenu id="connectGuide"
  10967. type="1"
  10968. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  10969. size="1.12MB" >
  10970. </productMenu>
  10971. <productID id="3400"
  10972. />
  10973. <productGroupable type="0"
  10974. />
  10975. </product>
  10976. <product id="ACS10"
  10977. name="ACS10"
  10978. series="ACS"
  10979. latestVersion="1.0.2"
  10980. show = "1" >
  10981. <productMenu id="protocol"
  10982. type="0">
  10983. </productMenu>
  10984. <productMenu id="sip"
  10985. type="1" >
  10986. </productMenu>
  10987. <productMenu id="bluetoothIntercom"
  10988. type="1" >
  10989. </productMenu>
  10990. <productMenu id="phone"
  10991. type="2" >
  10992. </productMenu>
  10993. <productMenu id="deviceSetting"
  10994. type="1"
  10995. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  10996. </productMenu>
  10997. <productMenu id="quickGuide"
  10998. type="1"
  10999. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  11000. size="970KB" >
  11001. </productMenu>
  11002. <productMenu id="userGuide"
  11003. type="1"
  11004. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  11005. size="1.26MB" >
  11006. </productMenu>
  11007. <productMenu id="connectGuide"
  11008. type="1"
  11009. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  11010. size="1.12MB" >
  11011. </productMenu>
  11012. <productID id="3300"
  11013. />
  11014. <productGroupable type="0"
  11015. />
  11016. </product>
  11017. <product id="DWO7ProMesh"
  11018. name="DWO 7 Pro Mesh"
  11019. series="50"
  11020. latestVersion="1.1"
  11021. latestVersionVoicePrompt="0.9"
  11022. show = "0" >
  11023. <productMenu id="protocol"
  11024. type="2" >
  11025. </productMenu>
  11026. <productMenu id="alexa"
  11027. type="0" >
  11028. </productMenu>
  11029. <productMenu id="ota"
  11030. type="2" >
  11031. <otaPackages>
  11032. <package
  11033. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  11034. size="2945812"
  11035. />
  11036. </otaPackages>
  11037. </productMenu>
  11038. <productMenu id="wa"
  11039. type="0" >
  11040. </productMenu>
  11041. <productMenu id="meshIntercom"
  11042. type="20" >
  11043. </productMenu>
  11044. <productMenu id="meshIntercom+"
  11045. type="3"
  11046. url="2" >
  11047. <productMenuType version="1.0.9"
  11048. type="2"
  11049. />
  11050. <productMenuURL version="2.1.1"
  11051. url="0"
  11052. />
  11053. </productMenu>
  11054. <productMenu id="waveIntercom"
  11055. type="1" >
  11056. <productMenuType version="1.0.9"
  11057. type="0"
  11058. />
  11059. </productMenu>
  11060. <productMenu id="phone"
  11061. type="1" >
  11062. </productMenu>
  11063. <productMenu id="music"
  11064. type="1" >
  11065. </productMenu>
  11066. <productMenu id="fmradio"
  11067. type="1" >
  11068. </productMenu>
  11069. <productMenu id="musicSharing"
  11070. type="0" >
  11071. </productMenu>
  11072. <productMenu id="deviceSetting"
  11073. type="1"
  11074. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  11075. <productMenuURL version="1.0.9"
  11076. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  11077. />
  11078. </productMenu>
  11079. <productMenu id="quickGuide"
  11080. type="1"
  11081. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  11082. size="1.12MB" >
  11083. </productMenu>
  11084. <productMenu id="userGuide"
  11085. type="1"
  11086. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  11087. size="2.0MB" >
  11088. </productMenu>
  11089. <productMenu id="volume"
  11090. type="12" >
  11091. </productMenu>
  11092. <productMenu id="battery"
  11093. type="1" >
  11094. </productMenu>
  11095. <productID id="6806"
  11096. />
  11097. <productGroupable type="0"
  11098. />
  11099. </product>
  11100. <product id="ERA1X"
  11101. name="ERA 1 X"
  11102. series="UCOM"
  11103. latestVersion="0.1.14"
  11104. latestVersionMesh="0.19"
  11105. latestVersionVoicePrompt="1.2"
  11106. show = "-1" >
  11107. <productMenu id="protocol"
  11108. type="2" >
  11109. </productMenu>
  11110. <productMenu id="ota"
  11111. type="2" >
  11112. <otaLanguages>
  11113. <otaLanguage
  11114. id="0"
  11115. name="English"
  11116. package="0"
  11117. />
  11118. <otaLanguage
  11119. id="0"
  11120. name="French"
  11121. package="1"
  11122. />
  11123. <otaLanguage
  11124. id="0"
  11125. name="Spanish"
  11126. package="2"
  11127. />
  11128. <otaLanguage
  11129. id="0"
  11130. name="Italian"
  11131. package="3"
  11132. />
  11133. <otaLanguage
  11134. id="0"
  11135. name="German"
  11136. package="4"
  11137. />
  11138. <otaLanguage
  11139. id="0"
  11140. name="Dutch"
  11141. package="5"
  11142. />
  11143. <otaLanguage
  11144. id="0"
  11145. name="Russian"
  11146. package="6"
  11147. />
  11148. <otaLanguage
  11149. id="0"
  11150. name="Chinese"
  11151. package="7"
  11152. />
  11153. <otaLanguage
  11154. id="0"
  11155. name="Korean"
  11156. package="8"
  11157. />
  11158. <otaLanguage
  11159. id="0"
  11160. name="Japanese"
  11161. package="9"
  11162. />
  11163. <otaLanguage
  11164. id="0"
  11165. name="Finnish"
  11166. package="10"
  11167. />
  11168. </otaLanguages>
  11169. <otaPackages>
  11170. <package
  11171. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0.img"
  11172. size="5183988"
  11173. />
  11174. <package
  11175. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-fr-FR.img"
  11176. size="5183988"
  11177. />
  11178. <package
  11179. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-es-ES.img"
  11180. size="5183988"
  11181. />
  11182. <package
  11183. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-it-IT.img"
  11184. size="5183988"
  11185. />
  11186. <package
  11187. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-de-DE.img"
  11188. size="5183988"
  11189. />
  11190. <package
  11191. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-nl-NL.img"
  11192. size="5183988"
  11193. />
  11194. <package
  11195. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-ru-RU.img"
  11196. size="5183988"
  11197. />
  11198. <package
  11199. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-cmn-CN.img"
  11200. size="5183988"
  11201. />
  11202. <package
  11203. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-ko-KR.img"
  11204. size="5183988"
  11205. />
  11206. <package
  11207. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-ja-JP.img"
  11208. size="5183988"
  11209. />
  11210. <package
  11211. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-fi-FI.img"
  11212. size="5183988"
  11213. />
  11214. </otaPackages>
  11215. </productMenu>
  11216. <productMenu id="wa"
  11217. type="0" >
  11218. </productMenu>
  11219. <productMenu id="sip"
  11220. type="1" >
  11221. </productMenu>
  11222. <productMenu id="led"
  11223. type="0" >
  11224. </productMenu>
  11225. <productMenu id="illusion"
  11226. type="1" >
  11227. </productMenu>
  11228. <productMenu id="meshIntercom"
  11229. type="30" >
  11230. </productMenu>
  11231. <productMenu id="meshIntercom+"
  11232. type="3"
  11233. url="2" >
  11234. </productMenu>
  11235. <productMenu id="waveIntercom"
  11236. type="0" >
  11237. </productMenu>
  11238. <productMenu id="bluetoothIntercom"
  11239. type="1" >
  11240. </productMenu>
  11241. <productMenu id="bluetoothIntercomGrouping"
  11242. type="0" >
  11243. </productMenu>
  11244. <productMenu id="fmradio"
  11245. type="1"
  11246. url="1" >
  11247. </productMenu>
  11248. <productMenu id="phone"
  11249. type="1" >
  11250. </productMenu>
  11251. <productMenu id="music"
  11252. type="1" >
  11253. </productMenu>
  11254. <productMenu id="musicSharing"
  11255. type="0" >
  11256. </productMenu>
  11257. <productMenu id="deviceSetting"
  11258. type="1"
  11259. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  11260. </productMenu>
  11261. <productMenu id="quickGuide"
  11262. type="0"
  11263. url=""
  11264. size="1.12MB" >
  11265. </productMenu>
  11266. <productMenu id="userGuide"
  11267. type="1"
  11268. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  11269. size="2.0MB" >
  11270. </productMenu>
  11271. <productMenu id="videoGuide"
  11272. type="0"
  11273. url=""
  11274. size="3.41MB" >
  11275. </productMenu>
  11276. <productMenu id="volume"
  11277. type="16" >
  11278. </productMenu>
  11279. <productMenu id="soundMode"
  11280. type="1" >
  11281. </productMenu>
  11282. <productMenu id="battery"
  11283. type="1" >
  11284. </productMenu>
  11285. <productID id="6A83"
  11286. />
  11287. <productGroupable type="0"
  11288. />
  11289. </product>
  11290. <product id="MeshStation"
  11291. name="Mesh Station"
  11292. series="50"
  11293. latestVersion="0.9"
  11294. show = "-1" >
  11295. <productMenu id="protocol"
  11296. type="2" >
  11297. </productMenu>
  11298. <productMenu id="meshIntercom"
  11299. type="20"
  11300. url="99" >
  11301. </productMenu>
  11302. <productID id="3161"
  11303. />
  11304. <productGroupable type="0"
  11305. />
  11306. </product>
  11307. </products>
  11308. </sna>