snm.xml 402 KB

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