snm.xml 370 KB

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