snm.xml 294 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20250192" 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="60S"
  122. name="60S"
  123. series="60"
  124. latestVersion="1.2.1"
  125. latestVersionMesh="1.2"
  126. latestVersionVoicePrompt="1.1"
  127. show = "1" >
  128. <productMenu id="protocol"
  129. type="2" >
  130. </productMenu>
  131. <productMenu id="ota"
  132. type="2" >
  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/test/OTATest/60S/60S_REV2-v1.2.1-build0.img"
  198. size="5183988"
  199. />
  200. <package
  201. url="https://api.sena.com/support/test/OTATest/60S/60S_REV2-v1.2.1-build0-fr-FR.img"
  202. size="5183988"
  203. />
  204. <package
  205. url="https://api.sena.com/support/test/OTATest/60S/60S_REV2-v1.2.1-build0-es-ES.img"
  206. size="5183988"
  207. />
  208. <package
  209. url="https://api.sena.com/support/test/OTATest/60S/60S_REV2-v1.2.1-build0-it-IT.img"
  210. size="5183988"
  211. />
  212. <package
  213. url="https://api.sena.com/support/test/OTATest/60S/60S_REV2-v1.2.1-build0-de-DE.img"
  214. size="5183988"
  215. />
  216. <package
  217. url="https://api.sena.com/support/test/OTATest/60S/60S_REV2-v1.2.1-build0-nl-NL.img"
  218. size="5183988"
  219. />
  220. <package
  221. url="https://api.sena.com/support/test/OTATest/60S/60S_REV2-v1.2.1-build0-ru-RU.img"
  222. size="5183988"
  223. />
  224. <package
  225. url="https://api.sena.com/support/test/OTATest/60S/60S_REV2-v1.2.1-build0-cmn-CN.img"
  226. size="5183988"
  227. />
  228. <package
  229. url="https://api.sena.com/support/test/OTATest/60S/60S_REV2-v1.2.1-build0-ko-KR.img"
  230. size="5183988"
  231. />
  232. <package
  233. url="https://api.sena.com/support/test/OTATest/60S/60S_REV2-v1.2.1-build0-ja-JP.img"
  234. size="5183988"
  235. />
  236. <package
  237. url="https://api.sena.com/support/test/OTATest/60S/60S_REV2-v1.2.1-build0-fi-FI.img"
  238. size="5183988"
  239. />
  240. <package
  241. url="https://api.sena.com/support/test/OTATest/60S/60S_REV2-v1.2.1-build0-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="0" >
  311. </productMenu>
  312. <productMenu id="battery"
  313. type="1" >
  314. </productMenu>
  315. <productID id="6A0D"
  316. />
  317. <productGroupable type="0"
  318. />
  319. </product>
  320. <product id="60S"
  321. name="60S"
  322. series="60"
  323. latestVersion="1.2"
  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-v1.2-build2.img"
  397. size="5183988"
  398. />
  399. <package
  400. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fr-FR.img"
  401. size="5183988"
  402. />
  403. <package
  404. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-es-ES.img"
  405. size="5183988"
  406. />
  407. <package
  408. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-it-IT.img"
  409. size="5183988"
  410. />
  411. <package
  412. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-de-DE.img"
  413. size="5183988"
  414. />
  415. <package
  416. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-nl-NL.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ru-RU.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-cmn-CN.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ko-KR.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ja-JP.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fi-FI.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-pl-PL.img"
  441. size="5183988"
  442. />
  443. </otaPackages>
  444. </productMenu>
  445. <productMenu id="wa"
  446. type="0" >
  447. </productMenu>
  448. <productMenu id="sip"
  449. type="1" >
  450. </productMenu>
  451. <productMenu id="led"
  452. type="0" >
  453. </productMenu>
  454. <productMenu id="illusion"
  455. type="1" >
  456. </productMenu>
  457. <productMenu id="meshIntercom"
  458. type="30" >
  459. </productMenu>
  460. <productMenu id="meshIntercom+"
  461. type="3"
  462. url="2" >
  463. <productMenuURL version="1.0.2"
  464. url="10"
  465. />
  466. </productMenu>
  467. <productMenu id="waveIntercom"
  468. type="1" >
  469. <productMenuType version="1.0.9"
  470. type="0"
  471. />
  472. </productMenu>
  473. <productMenu id="bluetoothIntercom"
  474. type="1"
  475. url="2" >
  476. </productMenu>
  477. <productMenu id="bluetoothIntercomGrouping"
  478. type="0" >
  479. </productMenu>
  480. <productMenu id="fmradio"
  481. type="1"
  482. url="1" >
  483. </productMenu>
  484. <productMenu id="phone"
  485. type="1" >
  486. </productMenu>
  487. <productMenu id="music"
  488. type="1" >
  489. </productMenu>
  490. <productMenu id="musicSharing"
  491. type="0" >
  492. </productMenu>
  493. <productMenu id="deviceSetting"
  494. type="1"
  495. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  496. <productMenuURL version="1.0.2"
  497. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  498. />
  499. <productMenuURL version="1.0"
  500. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  501. />
  502. <productMenuURL version="0.9.11"
  503. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  504. />
  505. </productMenu>
  506. <productMenu id="quickGuide"
  507. type="0"
  508. url=""
  509. size="1.12MB" >
  510. </productMenu>
  511. <productMenu id="userGuide"
  512. type="1"
  513. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.0_en_250808.pdf"
  514. size="2.0MB" >
  515. </productMenu>
  516. <productMenu id="videoGuide"
  517. type="0"
  518. url=""
  519. size="3.41MB" >
  520. </productMenu>
  521. <productMenu id="connectGuide"
  522. type="1"
  523. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  524. size="1.12MB" >
  525. </productMenu>
  526. <productMenu id="volume"
  527. type="16" >
  528. <productMenuType version="0.9.11"
  529. type="13"
  530. />
  531. </productMenu>
  532. <productMenu id="soundMode"
  533. type="0" >
  534. <productMenuType version="0.9.11"
  535. type="0"
  536. />
  537. </productMenu>
  538. <productMenu id="battery"
  539. type="1" >
  540. </productMenu>
  541. <productID id="6A02"
  542. />
  543. <productGroupable type="0"
  544. />
  545. </product>
  546. <product id="60R"
  547. name="60R"
  548. series="60"
  549. latestVersion="0.7"
  550. latestVersionMesh="0.8"
  551. latestVersionVoicePrompt="0.2"
  552. show = "-1" >
  553. <productMenu id="protocol"
  554. type="2" >
  555. </productMenu>
  556. <productMenu id="ota"
  557. type="0" >
  558. <otaLanguages>
  559. <otaLanguage
  560. id="0"
  561. name="English"
  562. package="0"
  563. />
  564. <otaLanguage
  565. id="0"
  566. name="Korean"
  567. package="1"
  568. />
  569. </otaLanguages>
  570. <otaPackages>
  571. <package
  572. url="https://api.sena.com/support/test/60R-v0.7-build0_en_US.img"
  573. size="5183988"
  574. />
  575. <package
  576. url="https://api.sena.com/support/test/60R-v0.6.4-build0_kr_KR.img"
  577. size="5183988"
  578. />
  579. </otaPackages>
  580. </productMenu>
  581. <productMenu id="wa"
  582. type="0" >
  583. </productMenu>
  584. <productMenu id="sip"
  585. type="1" >
  586. </productMenu>
  587. <productMenu id="led"
  588. type="1" >
  589. </productMenu>
  590. <productMenu id="illusion"
  591. type="1" >
  592. </productMenu>
  593. <productMenu id="meshIntercom"
  594. type="30" >
  595. </productMenu>
  596. <productMenu id="bluetoothIntercom"
  597. type="1" >
  598. </productMenu>
  599. <productMenu id="fmradio"
  600. type="1"
  601. url="1" >
  602. </productMenu>
  603. <productMenu id="phone"
  604. type="1" >
  605. </productMenu>
  606. <productMenu id="music"
  607. type="1" >
  608. </productMenu>
  609. <productMenu id="musicSharing"
  610. type="0" >
  611. </productMenu>
  612. <productMenu id="deviceSetting"
  613. type="1"
  614. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml" >
  615. </productMenu>
  616. <productMenu id="quickGuide"
  617. type="0"
  618. url=""
  619. size="1.12MB" >
  620. </productMenu>
  621. <productMenu id="userGuide"
  622. type="0"
  623. url=""
  624. size="2.0MB" >
  625. </productMenu>
  626. <productMenu id="videoGuide"
  627. type="0"
  628. url=""
  629. size="3.41MB" >
  630. </productMenu>
  631. <productMenu id="volume"
  632. type="13" >
  633. </productMenu>
  634. <productMenu id="battery"
  635. type="1" >
  636. </productMenu>
  637. <productID id="6A03"
  638. />
  639. <productGroupable type="0"
  640. />
  641. </product>
  642. <product id="COMP1"
  643. name="BMW COM P1"
  644. series="60"
  645. latestVersion="1.0.6"
  646. latestVersionMesh="0.19"
  647. latestVersionVoicePrompt="1.0"
  648. show = "-1" >
  649. <productMenu id="protocol"
  650. type="2" >
  651. </productMenu>
  652. <productMenu id="ota"
  653. type="2" >
  654. <otaLanguages>
  655. <otaLanguage
  656. id="0"
  657. name="English"
  658. package="0"
  659. />
  660. <otaLanguage
  661. id="0"
  662. name="French"
  663. package="1"
  664. />
  665. <otaLanguage
  666. id="0"
  667. name="Spanish"
  668. package="2"
  669. />
  670. <otaLanguage
  671. id="0"
  672. name="Italian"
  673. package="3"
  674. />
  675. <otaLanguage
  676. id="0"
  677. name="German"
  678. package="4"
  679. />
  680. <otaLanguage
  681. id="0"
  682. name="Dutch"
  683. package="5"
  684. />
  685. <otaLanguage
  686. id="0"
  687. name="Russian"
  688. package="6"
  689. />
  690. <otaLanguage
  691. id="0"
  692. name="Chinese"
  693. package="7"
  694. />
  695. <otaLanguage
  696. id="0"
  697. name="Korean"
  698. package="8"
  699. />
  700. <otaLanguage
  701. id="0"
  702. name="Japanese"
  703. package="9"
  704. />
  705. <otaLanguage
  706. id="0"
  707. name="Finnish"
  708. package="10"
  709. />
  710. </otaLanguages>
  711. <otaPackages>
  712. <package
  713. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0.img"
  714. size="5183988"
  715. />
  716. <package
  717. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fr-FR.img"
  718. size="5183988"
  719. />
  720. <package
  721. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-es-ES.img"
  722. size="5183988"
  723. />
  724. <package
  725. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-it-IT.img"
  726. size="5183988"
  727. />
  728. <package
  729. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-de-DE.img"
  730. size="5183988"
  731. />
  732. <package
  733. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-nl-NL.img"
  734. size="5183988"
  735. />
  736. <package
  737. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ru-RU.img"
  738. size="5183988"
  739. />
  740. <package
  741. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-cmn-CN.img"
  742. size="5183988"
  743. />
  744. <package
  745. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ko-KR.img"
  746. size="5183988"
  747. />
  748. <package
  749. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ja-JP.img"
  750. size="5183988"
  751. />
  752. <package
  753. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fi-FI.img"
  754. size="5183988"
  755. />
  756. </otaPackages>
  757. </productMenu>
  758. <productMenu id="wa"
  759. type="0" >
  760. </productMenu>
  761. <productMenu id="sip"
  762. type="1" >
  763. </productMenu>
  764. <productMenu id="led"
  765. type="0" >
  766. </productMenu>
  767. <productMenu id="illusion"
  768. type="0" >
  769. </productMenu>
  770. <productMenu id="meshIntercom"
  771. type="30" >
  772. </productMenu>
  773. <productMenu id="bluetoothIntercom"
  774. type="1" >
  775. </productMenu>
  776. <productMenu id="bluetoothIntercomGrouping"
  777. type="0" >
  778. </productMenu>
  779. <productMenu id="fmradio"
  780. type="0" >
  781. </productMenu>
  782. <productMenu id="phone"
  783. type="1" >
  784. </productMenu>
  785. <productMenu id="music"
  786. type="1" >
  787. </productMenu>
  788. <productMenu id="musicSharing"
  789. type="0" >
  790. </productMenu>
  791. <productMenu id="deviceSetting"
  792. type="1"
  793. url="https://api.sena.com/support/test/xml/NS_COMP1_Test_13.xml" >
  794. </productMenu>
  795. <productMenu id="quickGuide"
  796. type="0"
  797. url=""
  798. size="1.12MB" >
  799. </productMenu>
  800. <productMenu id="userGuide"
  801. type="0"
  802. url=""
  803. size="2.0MB" >
  804. </productMenu>
  805. <productMenu id="videoGuide"
  806. type="0"
  807. url=""
  808. size="3.41MB" >
  809. </productMenu>
  810. <productMenu id="volume"
  811. type="16" >
  812. </productMenu>
  813. <productMenu id="battery"
  814. type="1" >
  815. </productMenu>
  816. <productID id="6A80"
  817. />
  818. <productGroupable type="0"
  819. />
  820. </product>
  821. <product id="50S"
  822. name="50S"
  823. series="50"
  824. latestVersion="2.7.1"
  825. show = "1" >
  826. <productMenu id="protocol"
  827. type="2" >
  828. </productMenu>
  829. <productMenu id="alexa"
  830. type="0" >
  831. </productMenu>
  832. <productMenu id="ota"
  833. type="0"
  834. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  835. size="1150234" >
  836. </productMenu>
  837. <productMenu id="wa"
  838. type="1" >
  839. </productMenu>
  840. <productMenu id="sip"
  841. type="1" >
  842. </productMenu>
  843. <productMenu id="meshIntercom"
  844. type="30" >
  845. <productMenuType version="2.1.1"
  846. type="20"
  847. />
  848. </productMenu>
  849. <productMenu id="meshIntercom+"
  850. type="3"
  851. url="2" >
  852. <productMenuType version="2.5"
  853. type="2"
  854. />
  855. <productMenuURL version="2.1.1"
  856. url="0"
  857. />
  858. </productMenu>
  859. <productMenu id="waveIntercom"
  860. type="1" >
  861. <productMenuType version="2.6"
  862. type="0"
  863. />
  864. </productMenu>
  865. <productMenu id="bluetoothIntercom"
  866. type="1" >
  867. </productMenu>
  868. <productMenu id="phone"
  869. type="1" >
  870. </productMenu>
  871. <productMenu id="music"
  872. type="1" >
  873. </productMenu>
  874. <productMenu id="fmradio"
  875. type="1" >
  876. </productMenu>
  877. <productMenu id="deviceSetting"
  878. type="1"
  879. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  880. <productMenuURL version="2.5"
  881. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  882. />
  883. <productMenuURL version="2.1.1"
  884. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  885. />
  886. <productMenuURL version="2.0.3"
  887. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  888. />
  889. </productMenu>
  890. <productMenu id="quickGuide"
  891. type="0"
  892. url=""
  893. size="934KB" >
  894. </productMenu>
  895. <productMenu id="userGuide"
  896. type="1"
  897. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  898. size="1.14MB" >
  899. </productMenu>
  900. <productMenu id="videoGuide"
  901. type="1"
  902. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  903. size="3.41MB" >
  904. </productMenu>
  905. <productMenu id="connectGuide"
  906. type="1"
  907. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  908. size="1.12MB" >
  909. </productMenu>
  910. <productMenu id="volume"
  911. type="11" >
  912. </productMenu>
  913. <productMenu id="battery"
  914. type="1" >
  915. </productMenu>
  916. <productID id="3210"
  917. />
  918. <productGroupable type="0"
  919. />
  920. </product>
  921. <product id="50S"
  922. name="50S"
  923. series="50"
  924. latestVersion="1.5"
  925. show = "-1" >
  926. <productMenu id="protocol"
  927. type="2" >
  928. </productMenu>
  929. <productMenu id="alexa"
  930. type="0" >
  931. </productMenu>
  932. <productMenu id="wa"
  933. type="1" >
  934. </productMenu>
  935. <productMenu id="sip"
  936. type="1" >
  937. </productMenu>
  938. <productMenu id="meshIntercom"
  939. type="30" >
  940. <productMenuType version="1.2.2"
  941. type="20"
  942. />
  943. </productMenu>
  944. <productMenu id="meshIntercom+"
  945. type="3"
  946. url="2" >
  947. <productMenuType version="1.4.9"
  948. type="2"
  949. />
  950. <productMenuURL version="1.2.2"
  951. url="0"
  952. />
  953. </productMenu>
  954. <productMenu id="waveIntercom"
  955. type="1" >
  956. <productMenuType version="1.3.9"
  957. type="0"
  958. />
  959. </productMenu>
  960. <productMenu id="bluetoothIntercom"
  961. type="1" >
  962. </productMenu>
  963. <productMenu id="phone"
  964. type="1" >
  965. </productMenu>
  966. <productMenu id="music"
  967. type="1" >
  968. </productMenu>
  969. <productMenu id="fmradio"
  970. type="1" >
  971. </productMenu>
  972. <productMenu id="deviceSetting"
  973. type="1"
  974. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  975. <productMenuURL version="1.4.9"
  976. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  977. />
  978. <productMenuURL version="1.3.9"
  979. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  980. />
  981. <productMenuURL version="1.2.2"
  982. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  983. />
  984. <productMenuURL version="1.1.1"
  985. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  986. />
  987. </productMenu>
  988. <productMenu id="quickGuide"
  989. type="0"
  990. url=""
  991. size="934KB" >
  992. </productMenu>
  993. <productMenu id="userGuide"
  994. type="1"
  995. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  996. size="1.14MB" >
  997. </productMenu>
  998. <productMenu id="videoGuide"
  999. type="1"
  1000. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1001. size="3.41MB" >
  1002. </productMenu>
  1003. <productMenu id="volume"
  1004. type="11" >
  1005. </productMenu>
  1006. <productMenu id="battery"
  1007. type="1" >
  1008. </productMenu>
  1009. <productID id="3132"
  1010. />
  1011. <productGroupable type="0"
  1012. />
  1013. </product>
  1014. <product id="50R"
  1015. name="50R"
  1016. series="50"
  1017. latestVersion="2.7"
  1018. show = "1" >
  1019. <productMenu id="protocol"
  1020. type="2" >
  1021. </productMenu>
  1022. <productMenu id="alexa"
  1023. type="0" >
  1024. </productMenu>
  1025. <productMenu id="ota"
  1026. type="0"
  1027. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1028. size="1150234" >
  1029. </productMenu>
  1030. <productMenu id="wa"
  1031. type="1" >
  1032. </productMenu>
  1033. <productMenu id="sip"
  1034. type="1" >
  1035. </productMenu>
  1036. <productMenu id="meshIntercom"
  1037. type="30" >
  1038. <productMenuType version="2.1.1"
  1039. type="20"
  1040. />
  1041. </productMenu>
  1042. <productMenu id="meshIntercom+"
  1043. type="3"
  1044. url="2" >
  1045. <productMenuType version="2.5"
  1046. type="2"
  1047. />
  1048. <productMenuURL version="2.1.1"
  1049. url="0"
  1050. />
  1051. </productMenu>
  1052. <productMenu id="bluetoothIntercom"
  1053. type="1" >
  1054. </productMenu>
  1055. <productMenu id="phone"
  1056. type="1" >
  1057. </productMenu>
  1058. <productMenu id="music"
  1059. type="1" >
  1060. </productMenu>
  1061. <productMenu id="fmradio"
  1062. type="1" >
  1063. </productMenu>
  1064. <productMenu id="deviceSetting"
  1065. type="1"
  1066. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1067. <productMenuURL version="2.5"
  1068. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1069. />
  1070. <productMenuURL version="2.1.1"
  1071. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1072. />
  1073. <productMenuURL version="2.0"
  1074. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1075. />
  1076. </productMenu>
  1077. <productMenu id="quickGuide"
  1078. type="0"
  1079. url=""
  1080. size="344KB" >
  1081. </productMenu>
  1082. <productMenu id="userGuide"
  1083. type="1"
  1084. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  1085. size="3.41MB" >
  1086. </productMenu>
  1087. <productMenu id="videoGuide"
  1088. type="1"
  1089. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1090. size="3.41MB" >
  1091. </productMenu>
  1092. <productMenu id="connectGuide"
  1093. type="1"
  1094. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  1095. size="1.12MB" >
  1096. </productMenu>
  1097. <productMenu id="volume"
  1098. type="11" >
  1099. </productMenu>
  1100. <productMenu id="battery"
  1101. type="1" >
  1102. </productMenu>
  1103. <productID id="3218"
  1104. />
  1105. <productGroupable type="0"
  1106. />
  1107. </product>
  1108. <product id="50R"
  1109. name="50R"
  1110. series="50"
  1111. latestVersion="1.5"
  1112. show = "-1" >
  1113. <productMenu id="protocol"
  1114. type="2" >
  1115. </productMenu>
  1116. <productMenu id="alexa"
  1117. type="0" >
  1118. </productMenu>
  1119. <productMenu id="wa"
  1120. type="1" >
  1121. </productMenu>
  1122. <productMenu id="sip"
  1123. type="1" >
  1124. </productMenu>
  1125. <productMenu id="meshIntercom"
  1126. type="30" >
  1127. <productMenuType version="1.2.2"
  1128. type="20"
  1129. />
  1130. </productMenu>
  1131. <productMenu id="meshIntercom+"
  1132. type="3"
  1133. url="2" >
  1134. <productMenuType version="1.4.9"
  1135. type="2"
  1136. />
  1137. <productMenuURL version="1.2.2"
  1138. url="0"
  1139. />
  1140. </productMenu>
  1141. <productMenu id="waveIntercom"
  1142. type="1" >
  1143. <productMenuType version="1.3.9"
  1144. type="0"
  1145. />
  1146. </productMenu>
  1147. <productMenu id="bluetoothIntercom"
  1148. type="1" >
  1149. </productMenu>
  1150. <productMenu id="phone"
  1151. type="1" >
  1152. </productMenu>
  1153. <productMenu id="music"
  1154. type="1" >
  1155. </productMenu>
  1156. <productMenu id="fmradio"
  1157. type="1" >
  1158. </productMenu>
  1159. <productMenu id="deviceSetting"
  1160. type="1"
  1161. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1162. <productMenuURL version="1.4.9"
  1163. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1164. />
  1165. <productMenuURL version="1.3.9"
  1166. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1167. />
  1168. <productMenuURL version="1.2.2"
  1169. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1170. />
  1171. <productMenuURL version="1.1.1"
  1172. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1173. />
  1174. </productMenu>
  1175. <productMenu id="quickGuide"
  1176. type="0"
  1177. url=""
  1178. size="344KB" >
  1179. </productMenu>
  1180. <productMenu id="userGuide"
  1181. type="1"
  1182. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  1183. size="3.41MB" >
  1184. </productMenu>
  1185. <productMenu id="videoGuide"
  1186. type="1"
  1187. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1188. size="3.41MB" >
  1189. </productMenu>
  1190. <productMenu id="volume"
  1191. type="11" >
  1192. </productMenu>
  1193. <productMenu id="battery"
  1194. type="1" >
  1195. </productMenu>
  1196. <productID id="3134"
  1197. />
  1198. <productGroupable type="0"
  1199. />
  1200. </product>
  1201. <product id="50C"
  1202. name="50C"
  1203. series="50"
  1204. latestVersion="1.4.2"
  1205. show = "1" >
  1206. <productMenu id="protocol"
  1207. type="2" >
  1208. </productMenu>
  1209. <productMenu id="ota"
  1210. type="0" >
  1211. </productMenu>
  1212. <productMenu id="wa"
  1213. type="1" >
  1214. </productMenu>
  1215. <productMenu id="sip"
  1216. type="1" >
  1217. </productMenu>
  1218. <productMenu id="meshIntercom"
  1219. type="30" >
  1220. <productMenuType version="1.1.1"
  1221. type="20"
  1222. />
  1223. </productMenu>
  1224. <productMenu id="meshIntercom+"
  1225. type="3"
  1226. url="2" >
  1227. <productMenuType version="1.3.9"
  1228. type="2"
  1229. />
  1230. <productMenuURL version="1.1.1"
  1231. url="0"
  1232. />
  1233. </productMenu>
  1234. <productMenu id="waveIntercom"
  1235. type="1" >
  1236. <productMenuType version="1.2.9"
  1237. type="0"
  1238. />
  1239. </productMenu>
  1240. <productMenu id="bluetoothIntercom"
  1241. type="1" >
  1242. </productMenu>
  1243. <productMenu id="phone"
  1244. type="1" >
  1245. </productMenu>
  1246. <productMenu id="music"
  1247. type="1" >
  1248. </productMenu>
  1249. <productMenu id="fmradio"
  1250. type="1" >
  1251. </productMenu>
  1252. <productMenu id="deviceSetting"
  1253. type="1"
  1254. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  1255. <productMenuURL version="1.3.9"
  1256. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  1257. />
  1258. <productMenuURL version="1.1.1"
  1259. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1260. />
  1261. <productMenuURL version="1.0.1"
  1262. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1263. />
  1264. </productMenu>
  1265. <productMenu id="quickGuide"
  1266. type="0"
  1267. url=""
  1268. size="344KB" >
  1269. </productMenu>
  1270. <productMenu id="userGuide"
  1271. type="1"
  1272. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  1273. size="3.41MB" >
  1274. </productMenu>
  1275. <productMenu id="connectGuide"
  1276. type="1"
  1277. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  1278. size="1.12MB" >
  1279. </productMenu>
  1280. <productMenu id="volume"
  1281. type="11" >
  1282. </productMenu>
  1283. <productMenu id="battery"
  1284. type="1" >
  1285. </productMenu>
  1286. <productID id="3232"
  1287. />
  1288. <productGroupable type="0"
  1289. />
  1290. </product>
  1291. <product id="PHANTOMXB"
  1292. name="PHANTOM XB"
  1293. series="Helmet"
  1294. latestVersion="0.1"
  1295. latestVersionVoicePrompt="1.0"
  1296. show = "-1" >
  1297. <productMenu id="protocol"
  1298. type="2" >
  1299. </productMenu>
  1300. <productMenu id="ota"
  1301. type="0" >
  1302. <otaLanguages>
  1303. <otaLanguage
  1304. id="0"
  1305. name="English"
  1306. package="0"
  1307. />
  1308. <otaLanguage
  1309. id="0"
  1310. name="French"
  1311. package="1"
  1312. />
  1313. <otaLanguage
  1314. id="0"
  1315. name="Spanish"
  1316. package="2"
  1317. />
  1318. <otaLanguage
  1319. id="0"
  1320. name="Italian"
  1321. package="3"
  1322. />
  1323. <otaLanguage
  1324. id="0"
  1325. name="German"
  1326. package="4"
  1327. />
  1328. <otaLanguage
  1329. id="0"
  1330. name="Dutch"
  1331. package="5"
  1332. />
  1333. <otaLanguage
  1334. id="0"
  1335. name="Russian"
  1336. package="6"
  1337. />
  1338. <otaLanguage
  1339. id="0"
  1340. name="Chinese"
  1341. package="7"
  1342. />
  1343. <otaLanguage
  1344. id="0"
  1345. name="Korean"
  1346. package="8"
  1347. />
  1348. <otaLanguage
  1349. id="0"
  1350. name="Japanese"
  1351. package="9"
  1352. />
  1353. <otaLanguage
  1354. id="0"
  1355. name="Finnish"
  1356. package="10"
  1357. />
  1358. <otaLanguage
  1359. id="0"
  1360. name="Polish"
  1361. package="11"
  1362. />
  1363. </otaLanguages>
  1364. <otaPackages>
  1365. <package
  1366. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0.img"
  1367. size="5183988"
  1368. />
  1369. <package
  1370. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fr-FR.img"
  1371. size="5183988"
  1372. />
  1373. <package
  1374. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-es-ES.img"
  1375. size="5183988"
  1376. />
  1377. <package
  1378. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-it-IT.img"
  1379. size="5183988"
  1380. />
  1381. <package
  1382. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-de-DE.img"
  1383. size="5183988"
  1384. />
  1385. <package
  1386. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-nl-NL.img"
  1387. size="5183988"
  1388. />
  1389. <package
  1390. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ru-RU.img"
  1391. size="5183988"
  1392. />
  1393. <package
  1394. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-cmn-CN.img"
  1395. size="5183988"
  1396. />
  1397. <package
  1398. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ko-KR.img"
  1399. size="5183988"
  1400. />
  1401. <package
  1402. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ja-JP.img"
  1403. size="5183988"
  1404. />
  1405. <package
  1406. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fi-FI.img"
  1407. size="5183988"
  1408. />
  1409. <package
  1410. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-pl-PL.img"
  1411. size="5183988"
  1412. />
  1413. </otaPackages>
  1414. </productMenu>
  1415. <productMenu id="wa"
  1416. type="0" >
  1417. </productMenu>
  1418. <productMenu id="led"
  1419. type="5" >
  1420. </productMenu>
  1421. <productMenu id="led+"
  1422. type="2"
  1423. url="1" >
  1424. </productMenu>
  1425. <productMenu id="meshIntercom"
  1426. type="30" >
  1427. </productMenu>
  1428. <productMenu id="meshIntercom+"
  1429. type="3"
  1430. url="2" >
  1431. </productMenu>
  1432. <productMenu id="waveIntercom"
  1433. type="1" >
  1434. </productMenu>
  1435. <productMenu id="fmradio"
  1436. type="0" >
  1437. </productMenu>
  1438. <productMenu id="phone"
  1439. type="1" >
  1440. </productMenu>
  1441. <productMenu id="music"
  1442. type="1" >
  1443. </productMenu>
  1444. <productMenu id="musicSharing"
  1445. type="0" >
  1446. </productMenu>
  1447. <productMenu id="deviceSetting"
  1448. type="1"
  1449. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  1450. </productMenu>
  1451. <productMenu id="quickGuide"
  1452. type="0"
  1453. url=""
  1454. size="1.12MB" >
  1455. </productMenu>
  1456. <productMenu id="userGuide"
  1457. type="1"
  1458. url=""
  1459. size="2.0MB" >
  1460. </productMenu>
  1461. <productMenu id="videoGuide"
  1462. type="0"
  1463. url=""
  1464. size="3.41MB" >
  1465. </productMenu>
  1466. <productMenu id="volume"
  1467. type="16" >
  1468. </productMenu>
  1469. <productMenu id="battery"
  1470. type="1" >
  1471. </productMenu>
  1472. <productID id="6A0C"
  1473. />
  1474. <productGroupable type="0"
  1475. />
  1476. </product>
  1477. <product id="PHANTOM"
  1478. name="PHANTOM ANC"
  1479. series="Helmet"
  1480. latestVersion="1.1.4"
  1481. latestVersionVoicePrompt="1.0"
  1482. show = "1" >
  1483. <productMenu id="protocol"
  1484. type="2" >
  1485. </productMenu>
  1486. <productMenu id="ota"
  1487. type="2" >
  1488. <productMenuType version="0.6.9"
  1489. type="0"
  1490. />
  1491. <otaLanguages>
  1492. <otaLanguage
  1493. id="0"
  1494. name="English"
  1495. package="0"
  1496. />
  1497. <otaLanguage
  1498. id="0"
  1499. name="French"
  1500. package="1"
  1501. />
  1502. <otaLanguage
  1503. id="0"
  1504. name="Spanish"
  1505. package="2"
  1506. />
  1507. <otaLanguage
  1508. id="0"
  1509. name="Italian"
  1510. package="3"
  1511. />
  1512. <otaLanguage
  1513. id="0"
  1514. name="German"
  1515. package="4"
  1516. />
  1517. <otaLanguage
  1518. id="0"
  1519. name="Dutch"
  1520. package="5"
  1521. />
  1522. <otaLanguage
  1523. id="0"
  1524. name="Russian"
  1525. package="6"
  1526. />
  1527. <otaLanguage
  1528. id="0"
  1529. name="Chinese"
  1530. package="7"
  1531. />
  1532. <otaLanguage
  1533. id="0"
  1534. name="Korean"
  1535. package="8"
  1536. />
  1537. <otaLanguage
  1538. id="0"
  1539. name="Japanese"
  1540. package="9"
  1541. />
  1542. <otaLanguage
  1543. id="0"
  1544. name="Finnish"
  1545. package="10"
  1546. />
  1547. <otaLanguage
  1548. id="0"
  1549. name="Polish"
  1550. package="11"
  1551. />
  1552. </otaLanguages>
  1553. <otaPackages>
  1554. <package
  1555. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0.img"
  1556. size="5183988"
  1557. />
  1558. <package
  1559. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-fr-FR.img"
  1560. size="5183988"
  1561. />
  1562. <package
  1563. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-es-ES.img"
  1564. size="5183988"
  1565. />
  1566. <package
  1567. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-it-IT.img"
  1568. size="5183988"
  1569. />
  1570. <package
  1571. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-de-DE.img"
  1572. size="5183988"
  1573. />
  1574. <package
  1575. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-nl-NL.img"
  1576. size="5183988"
  1577. />
  1578. <package
  1579. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-ru-RU.img"
  1580. size="5183988"
  1581. />
  1582. <package
  1583. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-cmn-CN.img"
  1584. size="5183988"
  1585. />
  1586. <package
  1587. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-ko-KR.img"
  1588. size="5183988"
  1589. />
  1590. <package
  1591. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-ja-JP.img"
  1592. size="5183988"
  1593. />
  1594. <package
  1595. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-fi-FI.img"
  1596. size="5183988"
  1597. />
  1598. <package
  1599. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-pl-PL.img"
  1600. size="5183988"
  1601. />
  1602. </otaPackages>
  1603. </productMenu>
  1604. <productMenu id="wa"
  1605. type="0" >
  1606. </productMenu>
  1607. <productMenu id="led"
  1608. type="5" >
  1609. </productMenu>
  1610. <productMenu id="led+"
  1611. type="2"
  1612. url="1" >
  1613. </productMenu>
  1614. <productMenu id="meshIntercom"
  1615. type="30" >
  1616. </productMenu>
  1617. <productMenu id="meshIntercom+"
  1618. type="3"
  1619. url="2" >
  1620. <productMenuURL version="1.0.4"
  1621. url="10"
  1622. />
  1623. </productMenu>
  1624. <productMenu id="waveIntercom"
  1625. type="1" >
  1626. <productMenuType version="1.0.9"
  1627. type="0"
  1628. />
  1629. </productMenu>
  1630. <productMenu id="fmradio"
  1631. type="0" >
  1632. </productMenu>
  1633. <productMenu id="phone"
  1634. type="1" >
  1635. </productMenu>
  1636. <productMenu id="music"
  1637. type="1" >
  1638. </productMenu>
  1639. <productMenu id="musicSharing"
  1640. type="0" >
  1641. </productMenu>
  1642. <productMenu id="deviceSetting"
  1643. type="1"
  1644. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  1645. <productMenuURL version="1.1.2"
  1646. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  1647. />
  1648. <productMenuURL version="1.0.4"
  1649. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  1650. />
  1651. </productMenu>
  1652. <productMenu id="quickGuide"
  1653. type="0"
  1654. url=""
  1655. size="1.12MB" >
  1656. </productMenu>
  1657. <productMenu id="userGuide"
  1658. type="1"
  1659. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.0.1_en_250709.pdf"
  1660. size="2.0MB" >
  1661. </productMenu>
  1662. <productMenu id="videoGuide"
  1663. type="0"
  1664. url=""
  1665. size="3.41MB" >
  1666. </productMenu>
  1667. <productMenu id="volume"
  1668. type="16" >
  1669. </productMenu>
  1670. <productMenu id="soundMode"
  1671. type="1" >
  1672. <productMenuType version="0.9.11"
  1673. type="0"
  1674. />
  1675. </productMenu>
  1676. <productMenu id="battery"
  1677. type="1" >
  1678. </productMenu>
  1679. <productID id="6A01"
  1680. />
  1681. <productGroupable type="0"
  1682. />
  1683. </product>
  1684. <product id="PHANTOM"
  1685. name="PHANTOM"
  1686. series="Helmet"
  1687. latestVersion="1.1.4"
  1688. latestVersionVoicePrompt="1.0"
  1689. show = "1" >
  1690. <productMenu id="protocol"
  1691. type="2" >
  1692. </productMenu>
  1693. <productMenu id="ota"
  1694. type="2" >
  1695. <otaLanguages>
  1696. <otaLanguage
  1697. id="0"
  1698. name="English"
  1699. package="0"
  1700. />
  1701. <otaLanguage
  1702. id="0"
  1703. name="French"
  1704. package="1"
  1705. />
  1706. <otaLanguage
  1707. id="0"
  1708. name="Spanish"
  1709. package="2"
  1710. />
  1711. <otaLanguage
  1712. id="0"
  1713. name="Italian"
  1714. package="3"
  1715. />
  1716. <otaLanguage
  1717. id="0"
  1718. name="German"
  1719. package="4"
  1720. />
  1721. <otaLanguage
  1722. id="0"
  1723. name="Dutch"
  1724. package="5"
  1725. />
  1726. <otaLanguage
  1727. id="0"
  1728. name="Russian"
  1729. package="6"
  1730. />
  1731. <otaLanguage
  1732. id="0"
  1733. name="Chinese"
  1734. package="7"
  1735. />
  1736. <otaLanguage
  1737. id="0"
  1738. name="Korean"
  1739. package="8"
  1740. />
  1741. <otaLanguage
  1742. id="0"
  1743. name="Japanese"
  1744. package="9"
  1745. />
  1746. <otaLanguage
  1747. id="0"
  1748. name="Finnish"
  1749. package="10"
  1750. />
  1751. <otaLanguage
  1752. id="0"
  1753. name="Polish"
  1754. package="11"
  1755. />
  1756. </otaLanguages>
  1757. <otaPackages>
  1758. <package
  1759. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0.img"
  1760. size="5183988"
  1761. />
  1762. <package
  1763. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fr-FR.img"
  1764. size="5183988"
  1765. />
  1766. <package
  1767. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-es-ES.img"
  1768. size="5183988"
  1769. />
  1770. <package
  1771. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-it-IT.img"
  1772. size="5183988"
  1773. />
  1774. <package
  1775. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-de-DE.img"
  1776. size="5183988"
  1777. />
  1778. <package
  1779. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-nl-NL.img"
  1780. size="5183988"
  1781. />
  1782. <package
  1783. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ru-RU.img"
  1784. size="5183988"
  1785. />
  1786. <package
  1787. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-cmn-CN.img"
  1788. size="5183988"
  1789. />
  1790. <package
  1791. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ko-KR.img"
  1792. size="5183988"
  1793. />
  1794. <package
  1795. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ja-JP.img"
  1796. size="5183988"
  1797. />
  1798. <package
  1799. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fi-FI.img"
  1800. size="5183988"
  1801. />
  1802. <package
  1803. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-pl-PL.img"
  1804. size="5183988"
  1805. />
  1806. </otaPackages>
  1807. </productMenu>
  1808. <productMenu id="wa"
  1809. type="0" >
  1810. </productMenu>
  1811. <productMenu id="led"
  1812. type="5" >
  1813. <productMenuType version="1.0.1"
  1814. type="4"
  1815. />
  1816. </productMenu>
  1817. <productMenu id="led+"
  1818. type="2"
  1819. url="1" >
  1820. <productMenuType version="1.0.1"
  1821. type="-1"
  1822. />
  1823. </productMenu>
  1824. <productMenu id="meshIntercom"
  1825. type="30" >
  1826. </productMenu>
  1827. <productMenu id="meshIntercom+"
  1828. type="3"
  1829. url="2" >
  1830. <productMenuURL version="1.0.4"
  1831. url="10"
  1832. />
  1833. </productMenu>
  1834. <productMenu id="waveIntercom"
  1835. type="1" >
  1836. <productMenuType version="1.0.9"
  1837. type="0"
  1838. />
  1839. </productMenu>
  1840. <productMenu id="fmradio"
  1841. type="0" >
  1842. </productMenu>
  1843. <productMenu id="phone"
  1844. type="1" >
  1845. </productMenu>
  1846. <productMenu id="music"
  1847. type="1" >
  1848. </productMenu>
  1849. <productMenu id="musicSharing"
  1850. type="0" >
  1851. </productMenu>
  1852. <productMenu id="deviceSetting"
  1853. type="1"
  1854. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  1855. <productMenuURL version="1.0.4"
  1856. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  1857. />
  1858. <productMenuURL version="1.0.1"
  1859. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  1860. />
  1861. </productMenu>
  1862. <productMenu id="quickGuide"
  1863. type="0"
  1864. url=""
  1865. size="1.12MB" >
  1866. </productMenu>
  1867. <productMenu id="userGuide"
  1868. type="1"
  1869. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.0.1_en_250709.pdf"
  1870. size="2.0MB" >
  1871. </productMenu>
  1872. <productMenu id="videoGuide"
  1873. type="0"
  1874. url=""
  1875. size="3.41MB" >
  1876. </productMenu>
  1877. <productMenu id="connectGuide"
  1878. type="1"
  1879. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  1880. size="1.12MB" >
  1881. </productMenu>
  1882. <productMenu id="volume"
  1883. type="16" >
  1884. <productMenuType version="1.0"
  1885. type="13"
  1886. />
  1887. </productMenu>
  1888. <productMenu id="battery"
  1889. type="1" >
  1890. </productMenu>
  1891. <productID id="6A04"
  1892. />
  1893. <productGroupable type="0"
  1894. />
  1895. </product>
  1896. <product id="10R2MESH"
  1897. name="10R2 MESH"
  1898. series="10"
  1899. latestVersion="0.1.11"
  1900. latestVersionVoicePrompt="1.1"
  1901. show = "-1" >
  1902. <productMenu id="protocol"
  1903. type="2" >
  1904. </productMenu>
  1905. <productMenu id="ota"
  1906. type="0" >
  1907. <otaLanguages>
  1908. <otaLanguage
  1909. id="0"
  1910. name="English"
  1911. package="0"
  1912. />
  1913. <otaLanguage
  1914. id="0"
  1915. name="French"
  1916. package="1"
  1917. />
  1918. <otaLanguage
  1919. id="0"
  1920. name="Spanish"
  1921. package="2"
  1922. />
  1923. <otaLanguage
  1924. id="0"
  1925. name="Italian"
  1926. package="3"
  1927. />
  1928. <otaLanguage
  1929. id="0"
  1930. name="German"
  1931. package="4"
  1932. />
  1933. <otaLanguage
  1934. id="0"
  1935. name="Dutch"
  1936. package="5"
  1937. />
  1938. <otaLanguage
  1939. id="0"
  1940. name="Russian"
  1941. package="6"
  1942. />
  1943. <otaLanguage
  1944. id="0"
  1945. name="Chinese"
  1946. package="7"
  1947. />
  1948. <otaLanguage
  1949. id="0"
  1950. name="Korean"
  1951. package="8"
  1952. />
  1953. <otaLanguage
  1954. id="0"
  1955. name="Japanese"
  1956. package="9"
  1957. />
  1958. <otaLanguage
  1959. id="0"
  1960. name="Finnish"
  1961. package="10"
  1962. />
  1963. <otaLanguage
  1964. id="0"
  1965. name="Polish"
  1966. package="11"
  1967. />
  1968. </otaLanguages>
  1969. <otaPackages>
  1970. <package
  1971. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0.img"
  1972. size="5183988"
  1973. />
  1974. <package
  1975. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fr-FR.img"
  1976. size="5183988"
  1977. />
  1978. <package
  1979. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-es-ES.img"
  1980. size="5183988"
  1981. />
  1982. <package
  1983. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-it-IT.img"
  1984. size="5183988"
  1985. />
  1986. <package
  1987. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-de-DE.img"
  1988. size="5183988"
  1989. />
  1990. <package
  1991. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-nl-NL.img"
  1992. size="5183988"
  1993. />
  1994. <package
  1995. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ru-RU.img"
  1996. size="5183988"
  1997. />
  1998. <package
  1999. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-cmn-CN.img"
  2000. size="5183988"
  2001. />
  2002. <package
  2003. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ko-KR.img"
  2004. size="5183988"
  2005. />
  2006. <package
  2007. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ja-JP.img"
  2008. size="5183988"
  2009. />
  2010. <package
  2011. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fi-FI.img"
  2012. size="5183988"
  2013. />
  2014. <package
  2015. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-pl-PL.img"
  2016. size="5183988"
  2017. />
  2018. </otaPackages>
  2019. </productMenu>
  2020. <productMenu id="wa"
  2021. type="0" >
  2022. </productMenu>
  2023. <productMenu id="led"
  2024. type="5" >
  2025. </productMenu>
  2026. <productMenu id="led+"
  2027. type="2"
  2028. url="1" >
  2029. </productMenu>
  2030. <productMenu id="meshIntercom"
  2031. type="30" >
  2032. </productMenu>
  2033. <productMenu id="meshIntercom+"
  2034. type="3"
  2035. url="2" >
  2036. </productMenu>
  2037. <productMenu id="waveIntercom"
  2038. type="1" >
  2039. </productMenu>
  2040. <productMenu id="fmradio"
  2041. type="0" >
  2042. </productMenu>
  2043. <productMenu id="phone"
  2044. type="1" >
  2045. </productMenu>
  2046. <productMenu id="music"
  2047. type="1" >
  2048. </productMenu>
  2049. <productMenu id="musicSharing"
  2050. type="0" >
  2051. </productMenu>
  2052. <productMenu id="deviceSetting"
  2053. type="1"
  2054. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  2055. </productMenu>
  2056. <productMenu id="quickGuide"
  2057. type="0"
  2058. url=""
  2059. size="1.12MB" >
  2060. </productMenu>
  2061. <productMenu id="userGuide"
  2062. type="1"
  2063. url=""
  2064. size="2.0MB" >
  2065. </productMenu>
  2066. <productMenu id="videoGuide"
  2067. type="0"
  2068. url=""
  2069. size="3.41MB" >
  2070. </productMenu>
  2071. <productMenu id="volume"
  2072. type="16" >
  2073. </productMenu>
  2074. <productMenu id="battery"
  2075. type="1" >
  2076. </productMenu>
  2077. <productID id="6A07"
  2078. />
  2079. <productGroupable type="0"
  2080. />
  2081. </product>
  2082. <product id="Impulse"
  2083. name="Impulse"
  2084. series="Helmet"
  2085. latestVersion="1.4"
  2086. show = "1" >
  2087. <productMenu id="protocol"
  2088. type="2" >
  2089. </productMenu>
  2090. <productMenu id="alexa"
  2091. type="0" >
  2092. </productMenu>
  2093. <productMenu id="ota"
  2094. type="0" >
  2095. </productMenu>
  2096. <productMenu id="wa"
  2097. type="24" >
  2098. </productMenu>
  2099. <productMenu id="manager"
  2100. type="0" >
  2101. </productMenu>
  2102. <productMenu id="sip"
  2103. type="1" >
  2104. </productMenu>
  2105. <productMenu id="led"
  2106. type="1" >
  2107. <productMenuType version="1.0.1"
  2108. type="2"
  2109. />
  2110. <productMenuType version="1.0"
  2111. type="1"
  2112. />
  2113. </productMenu>
  2114. <productMenu id="meshIntercom"
  2115. type="30" >
  2116. <productMenuType version="1.1.1"
  2117. type="20"
  2118. />
  2119. </productMenu>
  2120. <productMenu id="meshIntercom+"
  2121. type="3"
  2122. url="2" >
  2123. <productMenuType version="1.3.9"
  2124. type="2"
  2125. />
  2126. <productMenuURL version="1.1.1"
  2127. url="0"
  2128. />
  2129. </productMenu>
  2130. <productMenu id="waveIntercom"
  2131. type="1" >
  2132. <productMenuType version="1.3.9"
  2133. type="0"
  2134. />
  2135. </productMenu>
  2136. <productMenu id="bluetoothIntercom"
  2137. type="1" >
  2138. </productMenu>
  2139. <productMenu id="phone"
  2140. type="1" >
  2141. </productMenu>
  2142. <productMenu id="music"
  2143. type="1" >
  2144. </productMenu>
  2145. <productMenu id="fmradio"
  2146. type="1" >
  2147. </productMenu>
  2148. <productMenu id="deviceSetting"
  2149. type="1"
  2150. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  2151. <productMenuURL version="1.3.9"
  2152. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  2153. />
  2154. <productMenuURL version="1.1.1"
  2155. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  2156. />
  2157. <productMenuURL version="1.0.4"
  2158. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  2159. />
  2160. </productMenu>
  2161. <productMenu id="quickGuide"
  2162. type="0"
  2163. url=""
  2164. size="344KB" >
  2165. </productMenu>
  2166. <productMenu id="userGuide"
  2167. type="1"
  2168. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  2169. size="3.41MB" >
  2170. </productMenu>
  2171. <productMenu id="volume"
  2172. type="11" >
  2173. </productMenu>
  2174. <productMenu id="battery"
  2175. type="1" >
  2176. </productMenu>
  2177. <productID id="3148"
  2178. />
  2179. <productGroupable type="0"
  2180. />
  2181. </product>
  2182. <product id="Impulse"
  2183. name="Impulse"
  2184. series="Helmet"
  2185. latestVersion="2.0"
  2186. show = "-1" >
  2187. <productMenu id="protocol"
  2188. type="2" >
  2189. </productMenu>
  2190. <productMenu id="alexa"
  2191. type="0" >
  2192. </productMenu>
  2193. <productMenu id="ota"
  2194. type="0" >
  2195. </productMenu>
  2196. <productMenu id="wa"
  2197. type="8" >
  2198. </productMenu>
  2199. <productMenu id="manager"
  2200. type="0" >
  2201. </productMenu>
  2202. <productMenu id="sip"
  2203. type="1" >
  2204. </productMenu>
  2205. <productMenu id="led"
  2206. type="3" >
  2207. </productMenu>
  2208. <productMenu id="meshIntercom"
  2209. type="20" >
  2210. </productMenu>
  2211. <productMenu id="bluetoothIntercom"
  2212. type="1" >
  2213. </productMenu>
  2214. <productMenu id="phone"
  2215. type="1" >
  2216. </productMenu>
  2217. <productMenu id="music"
  2218. type="1" >
  2219. </productMenu>
  2220. <productMenu id="fmradio"
  2221. type="1" >
  2222. </productMenu>
  2223. <productMenu id="deviceSetting"
  2224. type="1"
  2225. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  2226. </productMenu>
  2227. <productMenu id="quickGuide"
  2228. type="1"
  2229. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  2230. size="344KB" >
  2231. </productMenu>
  2232. <productMenu id="userGuide"
  2233. type="1"
  2234. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  2235. size="3.41MB" >
  2236. </productMenu>
  2237. <productMenu id="volume"
  2238. type="11" >
  2239. </productMenu>
  2240. <productMenu id="battery"
  2241. type="1" >
  2242. </productMenu>
  2243. <productID id="3221"
  2244. />
  2245. <productGroupable type="0"
  2246. />
  2247. </product>
  2248. <product id="Stryker"
  2249. name="Stryker"
  2250. series="Helmet"
  2251. latestVersion="1.4"
  2252. show = "1" >
  2253. <productMenu id="protocol"
  2254. type="2" >
  2255. </productMenu>
  2256. <productMenu id="alexa"
  2257. type="0" >
  2258. </productMenu>
  2259. <productMenu id="ota"
  2260. type="0" >
  2261. </productMenu>
  2262. <productMenu id="wa"
  2263. type="40" >
  2264. </productMenu>
  2265. <productMenu id="manager"
  2266. type="0" >
  2267. </productMenu>
  2268. <productMenu id="sip"
  2269. type="1" >
  2270. </productMenu>
  2271. <productMenu id="led"
  2272. type="1" >
  2273. <productMenuType version="1.0.1"
  2274. type="2"
  2275. />
  2276. <productMenuType version="1.0"
  2277. type="1"
  2278. />
  2279. </productMenu>
  2280. <productMenu id="meshIntercom"
  2281. type="30" >
  2282. <productMenuType version="1.1.1"
  2283. type="20"
  2284. />
  2285. </productMenu>
  2286. <productMenu id="meshIntercom+"
  2287. type="3"
  2288. url="2" >
  2289. <productMenuType version="1.3.9"
  2290. type="2"
  2291. />
  2292. <productMenuURL version="1.1.1"
  2293. url="0"
  2294. />
  2295. </productMenu>
  2296. <productMenu id="waveIntercom"
  2297. type="1" >
  2298. <productMenuType version="1.2.9"
  2299. type="0"
  2300. />
  2301. </productMenu>
  2302. <productMenu id="bluetoothIntercom"
  2303. type="1" >
  2304. </productMenu>
  2305. <productMenu id="phone"
  2306. type="1" >
  2307. </productMenu>
  2308. <productMenu id="music"
  2309. type="1" >
  2310. </productMenu>
  2311. <productMenu id="fmradio"
  2312. type="1" >
  2313. </productMenu>
  2314. <productMenu id="deviceSetting"
  2315. type="1"
  2316. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  2317. <productMenuURL version="1.3.9"
  2318. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  2319. />
  2320. <productMenuURL version="1.1.1"
  2321. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  2322. />
  2323. <productMenuURL version="1.0.4"
  2324. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  2325. />
  2326. </productMenu>
  2327. <productMenu id="quickGuide"
  2328. type="0"
  2329. url=""
  2330. size="344KB" >
  2331. </productMenu>
  2332. <productMenu id="userGuide"
  2333. type="1"
  2334. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  2335. size="3.41MB" >
  2336. </productMenu>
  2337. <productMenu id="volume"
  2338. type="11" >
  2339. </productMenu>
  2340. <productMenu id="battery"
  2341. type="1" >
  2342. </productMenu>
  2343. <productID id="3154"
  2344. />
  2345. <productGroupable type="0"
  2346. />
  2347. </product>
  2348. <product id="SRL3"
  2349. name="SRL3"
  2350. series="SRL"
  2351. latestVersion="1.4.1"
  2352. show = "1" >
  2353. <productMenu id="protocol"
  2354. type="2" >
  2355. </productMenu>
  2356. <productMenu id="alexa"
  2357. type="0" >
  2358. </productMenu>
  2359. <productMenu id="ota"
  2360. type="0" >
  2361. </productMenu>
  2362. <productMenu id="wa"
  2363. type="1" >
  2364. </productMenu>
  2365. <productMenu id="sip"
  2366. type="1" >
  2367. </productMenu>
  2368. <productMenu id="meshIntercom"
  2369. type="30" >
  2370. </productMenu>
  2371. <productMenu id="meshIntercom+"
  2372. type="3"
  2373. url="2" >
  2374. <productMenuType version="1.3.9"
  2375. type="2"
  2376. />
  2377. </productMenu>
  2378. <productMenu id="waveIntercom"
  2379. type="1" >
  2380. <productMenuType version="1.4.9"
  2381. type="0"
  2382. />
  2383. </productMenu>
  2384. <productMenu id="bluetoothIntercom"
  2385. type="1" >
  2386. </productMenu>
  2387. <productMenu id="phone"
  2388. type="1" >
  2389. </productMenu>
  2390. <productMenu id="music"
  2391. type="1" >
  2392. </productMenu>
  2393. <productMenu id="fmradio"
  2394. type="1" >
  2395. </productMenu>
  2396. <productMenu id="deviceSetting"
  2397. type="1"
  2398. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2399. <productMenuURL version="1.3"
  2400. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  2401. />
  2402. </productMenu>
  2403. <productMenu id="quickGuide"
  2404. type="0"
  2405. url=""
  2406. size="344KB" >
  2407. </productMenu>
  2408. <productMenu id="userGuide"
  2409. type="1"
  2410. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.2.2_en_250319.pdf"
  2411. size="3.41MB" >
  2412. </productMenu>
  2413. <productMenu id="volume"
  2414. type="11" >
  2415. </productMenu>
  2416. <productMenu id="battery"
  2417. type="1" >
  2418. </productMenu>
  2419. <productID id="3219"
  2420. />
  2421. <productGroupable type="0"
  2422. />
  2423. </product>
  2424. <product id="SRL_Mesh"
  2425. name="SRL-Mesh"
  2426. series="SRL"
  2427. latestVersion="1.6.1"
  2428. show = "1" >
  2429. <productMenu id="protocol"
  2430. type="2" >
  2431. </productMenu>
  2432. <productMenu id="alexa"
  2433. type="0" >
  2434. </productMenu>
  2435. <productMenu id="ota"
  2436. type="0" >
  2437. </productMenu>
  2438. <productMenu id="wa"
  2439. type="1" >
  2440. </productMenu>
  2441. <productMenu id="sip"
  2442. type="1" >
  2443. </productMenu>
  2444. <productMenu id="meshIntercom"
  2445. type="30" >
  2446. <productMenuType version="1.1.1"
  2447. type="20"
  2448. />
  2449. </productMenu>
  2450. <productMenu id="meshIntercom+"
  2451. type="3"
  2452. url="2" >
  2453. <productMenuType version="1.5.9"
  2454. type="2"
  2455. />
  2456. <productMenuURL version="1.1.1"
  2457. url="0"
  2458. />
  2459. </productMenu>
  2460. <productMenu id="waveIntercom"
  2461. type="1" >
  2462. <productMenuType version="1.6.9"
  2463. type="0"
  2464. />
  2465. </productMenu>
  2466. <productMenu id="bluetoothIntercom"
  2467. type="1" >
  2468. </productMenu>
  2469. <productMenu id="phone"
  2470. type="1" >
  2471. </productMenu>
  2472. <productMenu id="music"
  2473. type="1" >
  2474. </productMenu>
  2475. <productMenu id="fmradio"
  2476. type="1" >
  2477. </productMenu>
  2478. <productMenu id="deviceSetting"
  2479. type="1"
  2480. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2481. <productMenuURL version="1.5"
  2482. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  2483. />
  2484. <productMenuURL version="1.1.1"
  2485. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2486. />
  2487. <productMenuURL version="1.0.3"
  2488. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2489. />
  2490. </productMenu>
  2491. <productMenu id="quickGuide"
  2492. type="0"
  2493. url=""
  2494. size="344KB" >
  2495. </productMenu>
  2496. <productMenu id="userGuide"
  2497. type="1"
  2498. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.5.1_en_250213.pdf"
  2499. size="3.41MB" >
  2500. </productMenu>
  2501. <productMenu id="volume"
  2502. type="11" >
  2503. </productMenu>
  2504. <productMenu id="battery"
  2505. type="1" >
  2506. </productMenu>
  2507. <productID id="3216"
  2508. />
  2509. <productGroupable type="0"
  2510. />
  2511. </product>
  2512. <product id="SRL_EXT"
  2513. name="SRL-EXT"
  2514. series="SRL"
  2515. latestVersion="1.6.1"
  2516. show = "1" >
  2517. <productMenu id="protocol"
  2518. type="2" >
  2519. </productMenu>
  2520. <productMenu id="alexa"
  2521. type="0" >
  2522. </productMenu>
  2523. <productMenu id="ota"
  2524. type="0" >
  2525. </productMenu>
  2526. <productMenu id="wa"
  2527. type="0" >
  2528. </productMenu>
  2529. <productMenu id="sip"
  2530. type="1" >
  2531. </productMenu>
  2532. <productMenu id="meshIntercom"
  2533. type="30" >
  2534. <productMenuType version="1.1.1"
  2535. type="20"
  2536. />
  2537. </productMenu>
  2538. <productMenu id="meshIntercom+"
  2539. type="3"
  2540. url="2" >
  2541. <productMenuType version="1.5.9"
  2542. type="2"
  2543. />
  2544. <productMenuURL version="1.1.1"
  2545. url="0"
  2546. />
  2547. </productMenu>
  2548. <productMenu id="waveIntercom"
  2549. type="1" >
  2550. <productMenuType version="1.6.9"
  2551. type="0"
  2552. />
  2553. </productMenu>
  2554. <productMenu id="bluetoothIntercom"
  2555. type="1" >
  2556. </productMenu>
  2557. <productMenu id="phone"
  2558. type="1" >
  2559. </productMenu>
  2560. <productMenu id="music"
  2561. type="1" >
  2562. </productMenu>
  2563. <productMenu id="fmradio"
  2564. type="1" >
  2565. </productMenu>
  2566. <productMenu id="deviceSetting"
  2567. type="1"
  2568. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2569. <productMenuURL version="1.5"
  2570. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  2571. />
  2572. <productMenuURL version="1.1.1"
  2573. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2574. />
  2575. <productMenuURL version="1.0.3"
  2576. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2577. />
  2578. </productMenu>
  2579. <productMenu id="quickGuide"
  2580. type="0"
  2581. url=""
  2582. size="344KB" >
  2583. </productMenu>
  2584. <productMenu id="userGuide"
  2585. type="1"
  2586. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.5.1_en_250226.pdf"
  2587. size="3.41MB" >
  2588. </productMenu>
  2589. <productMenu id="volume"
  2590. type="11" >
  2591. </productMenu>
  2592. <productMenu id="battery"
  2593. type="1" >
  2594. </productMenu>
  2595. <productID id="3212"
  2596. />
  2597. <productGroupable type="0"
  2598. />
  2599. </product>
  2600. <product id="SRL2"
  2601. name="SRL2"
  2602. series="SRL"
  2603. latestVersion="1.0.9"
  2604. show = "1" >
  2605. <productMenu id="protocol"
  2606. type="0">
  2607. </productMenu>
  2608. <productMenu id="sip"
  2609. type="1" >
  2610. </productMenu>
  2611. <productMenu id="bluetoothIntercom"
  2612. type="1" >
  2613. </productMenu>
  2614. <productMenu id="intercomSetting"
  2615. type="1" >
  2616. </productMenu>
  2617. <productMenu id="phone"
  2618. type="2" >
  2619. </productMenu>
  2620. <productMenu id="fmradio"
  2621. type="3" >
  2622. </productMenu>
  2623. <productMenu id="deviceSetting"
  2624. type="1"
  2625. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  2626. </productMenu>
  2627. <productMenu id="quickGuide"
  2628. type="1"
  2629. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  2630. size="846KB" >
  2631. </productMenu>
  2632. <productMenu id="userGuide"
  2633. type="1"
  2634. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  2635. size="1.18MB" >
  2636. </productMenu>
  2637. <productID id="4530"
  2638. />
  2639. <productGroupable type="1"
  2640. />
  2641. </product>
  2642. <product id="Neotec2"
  2643. name="SRL Neotec2"
  2644. series="SRL"
  2645. latestVersion="1.1.5"
  2646. show = "1" >
  2647. <productMenu id="protocol"
  2648. type="0">
  2649. </productMenu>
  2650. <productMenu id="sip"
  2651. type="1" >
  2652. </productMenu>
  2653. <productMenu id="bluetoothIntercom"
  2654. type="1" >
  2655. </productMenu>
  2656. <productMenu id="intercomSetting"
  2657. type="1" >
  2658. </productMenu>
  2659. <productMenu id="phone"
  2660. type="2" >
  2661. </productMenu>
  2662. <productMenu id="fmradio"
  2663. type="3" >
  2664. </productMenu>
  2665. <productMenu id="deviceSetting"
  2666. type="1"
  2667. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  2668. </productMenu>
  2669. <productMenu id="quickGuide"
  2670. type="0"
  2671. url=""
  2672. size="796KB" >
  2673. </productMenu>
  2674. <productMenu id="userGuide"
  2675. type="1"
  2676. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  2677. size="1.90MB" >
  2678. </productMenu>
  2679. <productID id="4510"
  2680. />
  2681. <productGroupable type="1"
  2682. />
  2683. </product>
  2684. <product id="SPIDERST2ANC"
  2685. name="SPIDER ST2 ANC"
  2686. series="SPIDER"
  2687. latestVersion="0.5.1"
  2688. latestVersionVoicePrompt="0.2"
  2689. latestVersionMesh="0.8"
  2690. show = "-1" >
  2691. <productMenu id="protocol"
  2692. type="2" >
  2693. </productMenu>
  2694. <productMenu id="ota"
  2695. type="0" >
  2696. <otaPackages>
  2697. <package
  2698. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  2699. size="2945812"
  2700. />
  2701. </otaPackages>
  2702. </productMenu>
  2703. <productMenu id="wa"
  2704. type="0" >
  2705. </productMenu>
  2706. <productMenu id="led"
  2707. type="1" >
  2708. </productMenu>
  2709. <productMenu id="meshIntercom"
  2710. type="30" >
  2711. </productMenu>
  2712. <productMenu id="fmradio"
  2713. type="1" >
  2714. </productMenu>
  2715. <productMenu id="phone"
  2716. type="1" >
  2717. </productMenu>
  2718. <productMenu id="music"
  2719. type="1" >
  2720. </productMenu>
  2721. <productMenu id="musicSharing"
  2722. type="0" >
  2723. </productMenu>
  2724. <productMenu id="deviceSetting"
  2725. type="1"
  2726. url="https://api.sena.com/support/test/xml/NS_60R_OTATest_02.xml" >
  2727. </productMenu>
  2728. <productMenu id="quickGuide"
  2729. type="1"
  2730. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  2731. size="1.12MB" >
  2732. </productMenu>
  2733. <productMenu id="userGuide"
  2734. type="1"
  2735. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  2736. size="2.0MB" >
  2737. </productMenu>
  2738. <productMenu id="videoGuide"
  2739. type="1"
  2740. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2741. size="3.41MB" >
  2742. </productMenu>
  2743. <productMenu id="volume"
  2744. type="12" >
  2745. </productMenu>
  2746. <productMenu id="battery"
  2747. type="1" >
  2748. </productMenu>
  2749. <productID id="6A00"
  2750. />
  2751. <productGroupable type="0"
  2752. />
  2753. </product>
  2754. <product id="SPIDER_ST1"
  2755. name="SPIDER ST1"
  2756. series="SPIDER"
  2757. latestVersion="2.5"
  2758. latestVersionVoicePrompt="1.1"
  2759. show = "1" >
  2760. <productMenu id="protocol"
  2761. type="2" >
  2762. </productMenu>
  2763. <productMenu id="alexa"
  2764. type="0" >
  2765. </productMenu>
  2766. <productMenu id="ota"
  2767. type="2" >
  2768. <productMenuType version="2.1.9"
  2769. type="0"
  2770. />
  2771. <otaPackages>
  2772. <package
  2773. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_ST1-v2.5-build1.img"
  2774. size="2945812"
  2775. />
  2776. </otaPackages>
  2777. </productMenu>
  2778. <productMenu id="wa"
  2779. type="0" >
  2780. </productMenu>
  2781. <productMenu id="meshIntercom"
  2782. type="30" >
  2783. <productMenuType version="2.1.1"
  2784. type="20"
  2785. />
  2786. </productMenu>
  2787. <productMenu id="meshIntercom+"
  2788. type="3"
  2789. url="2" >
  2790. <productMenuType version="2.2.9"
  2791. type="2"
  2792. />
  2793. <productMenuURL version="2.1.1"
  2794. url="0"
  2795. />
  2796. </productMenu>
  2797. <productMenu id="waveIntercom"
  2798. type="1" >
  2799. <productMenuType version="2.3.9"
  2800. type="0"
  2801. />
  2802. </productMenu>
  2803. <productMenu id="phone"
  2804. type="1" >
  2805. </productMenu>
  2806. <productMenu id="music"
  2807. type="1" >
  2808. </productMenu>
  2809. <productMenu id="musicSharing"
  2810. type="0" >
  2811. </productMenu>
  2812. <productMenu id="deviceSetting"
  2813. type="1"
  2814. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  2815. <productMenuURL version="2.4.9"
  2816. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  2817. />
  2818. <productMenuURL version="2.2.2"
  2819. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  2820. />
  2821. <productMenuURL version="2.1.1"
  2822. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  2823. />
  2824. </productMenu>
  2825. <productMenu id="quickGuide"
  2826. type="0"
  2827. url=""
  2828. size="1.12MB" >
  2829. </productMenu>
  2830. <productMenu id="userGuide"
  2831. type="1"
  2832. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  2833. size="2.0MB" >
  2834. </productMenu>
  2835. <productMenu id="videoGuide"
  2836. type="1"
  2837. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2838. size="3.41MB" >
  2839. </productMenu>
  2840. <productMenu id="volume"
  2841. type="12" >
  2842. </productMenu>
  2843. <productMenu id="battery"
  2844. type="1" >
  2845. </productMenu>
  2846. <productID id="6800"
  2847. />
  2848. <productGroupable type="0"
  2849. />
  2850. </product>
  2851. <product id="SPIDER_ST1"
  2852. name="SPIDER ST1"
  2853. series="SPIDER"
  2854. latestVersion="1.2.2"
  2855. show = "-1" >
  2856. <productMenu id="protocol"
  2857. type="2" >
  2858. </productMenu>
  2859. <productMenu id="alexa"
  2860. type="0" >
  2861. </productMenu>
  2862. <productMenu id="ota"
  2863. type="0" >
  2864. </productMenu>
  2865. <productMenu id="wa"
  2866. type="0" >
  2867. </productMenu>
  2868. <productMenu id="meshIntercom"
  2869. type="20" >
  2870. </productMenu>
  2871. <productMenu id="phone"
  2872. type="1" >
  2873. </productMenu>
  2874. <productMenu id="music"
  2875. type="1" >
  2876. </productMenu>
  2877. <productMenu id="deviceSetting"
  2878. type="1"
  2879. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  2880. </productMenu>
  2881. <productMenu id="quickGuide"
  2882. type="0"
  2883. url=""
  2884. size="1.12MB" >
  2885. </productMenu>
  2886. <productMenu id="userGuide"
  2887. type="1"
  2888. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  2889. size="2.0MB" >
  2890. </productMenu>
  2891. <productMenu id="videoGuide"
  2892. type="1"
  2893. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2894. size="3.41MB" >
  2895. </productMenu>
  2896. <productMenu id="volume"
  2897. type="13" >
  2898. <productMenuType version="1.1.6"
  2899. type="14"/>
  2900. </productMenu>
  2901. <productMenu id="battery"
  2902. type="1" >
  2903. </productMenu>
  2904. <productID id="6510"
  2905. />
  2906. <productGroupable type="0"
  2907. />
  2908. </product>
  2909. <product id="SPIDER_RT1"
  2910. name="SPIDER RT1"
  2911. series="SPIDER"
  2912. latestVersion="2.5"
  2913. latestVersionVoicePrompt="1.1"
  2914. show = "1" >
  2915. <productMenu id="protocol"
  2916. type="2" >
  2917. </productMenu>
  2918. <productMenu id="alexa"
  2919. type="0" >
  2920. </productMenu>
  2921. <productMenu id="ota"
  2922. type="2" >
  2923. <productMenuType version="2.1.9"
  2924. type="0"
  2925. />
  2926. <otaPackages>
  2927. <package
  2928. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_RT1-v2.5-build1.img"
  2929. size="2945812"
  2930. />
  2931. </otaPackages>
  2932. </productMenu>
  2933. <productMenu id="wa"
  2934. type="0" >
  2935. </productMenu>
  2936. <productMenu id="meshIntercom"
  2937. type="30" >
  2938. <productMenuType version="2.1.1"
  2939. type="20"
  2940. />
  2941. </productMenu>
  2942. <productMenu id="meshIntercom+"
  2943. type="3"
  2944. url="2" >
  2945. <productMenuType version="2.2.9"
  2946. type="2"
  2947. />
  2948. <productMenuURL version="2.1.1"
  2949. url="0"
  2950. />
  2951. </productMenu>
  2952. <productMenu id="waveIntercom"
  2953. type="1" >
  2954. <productMenuType version="2.3.9"
  2955. type="0"
  2956. />
  2957. </productMenu>
  2958. <productMenu id="phone"
  2959. type="1" >
  2960. </productMenu>
  2961. <productMenu id="music"
  2962. type="1" >
  2963. </productMenu>
  2964. <productMenu id="musicSharing"
  2965. type="0" >
  2966. </productMenu>
  2967. <productMenu id="deviceSetting"
  2968. type="1"
  2969. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  2970. <productMenuURL version="2.4.9"
  2971. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  2972. />
  2973. <productMenuURL version="2.2.2"
  2974. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  2975. />
  2976. <productMenuURL version="2.1.1"
  2977. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  2978. />
  2979. </productMenu>
  2980. <productMenu id="quickGuide"
  2981. type="0"
  2982. url=""
  2983. size="1.12MB" >
  2984. </productMenu>
  2985. <productMenu id="userGuide"
  2986. type="1"
  2987. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  2988. size="2.0MB" >
  2989. </productMenu>
  2990. <productMenu id="videoGuide"
  2991. type="1"
  2992. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2993. size="3.41MB" >
  2994. </productMenu>
  2995. <productMenu id="connectGuide"
  2996. type="1"
  2997. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  2998. size="1.12MB" >
  2999. </productMenu>
  3000. <productMenu id="volume"
  3001. type="12" >
  3002. </productMenu>
  3003. <productMenu id="battery"
  3004. type="1" >
  3005. </productMenu>
  3006. <productID id="6810"
  3007. />
  3008. <productGroupable type="0"
  3009. />
  3010. </product>
  3011. <product id="SPIDER_RT1"
  3012. name="SPIDER RT1"
  3013. series="SPIDER"
  3014. latestVersion="1.2.2"
  3015. show = "-1" >
  3016. <productMenu id="protocol"
  3017. type="2" >
  3018. </productMenu>
  3019. <productMenu id="alexa"
  3020. type="0" >
  3021. </productMenu>
  3022. <productMenu id="ota"
  3023. type="0" >
  3024. </productMenu>
  3025. <productMenu id="wa"
  3026. type="0" >
  3027. </productMenu>
  3028. <productMenu id="meshIntercom"
  3029. type="20" >
  3030. </productMenu>
  3031. <productMenu id="phone"
  3032. type="1" >
  3033. </productMenu>
  3034. <productMenu id="music"
  3035. type="1" >
  3036. </productMenu>
  3037. <productMenu id="deviceSetting"
  3038. type="1"
  3039. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  3040. </productMenu>
  3041. <productMenu id="quickGuide"
  3042. type="0"
  3043. url=""
  3044. size="1.32MB" >
  3045. </productMenu>
  3046. <productMenu id="userGuide"
  3047. type="1"
  3048. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  3049. size="1.79MB" >
  3050. </productMenu>
  3051. <productMenu id="videoGuide"
  3052. type="1"
  3053. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  3054. size="3.41MB" >
  3055. </productMenu>
  3056. <productMenu id="volume"
  3057. type="13" >
  3058. <productMenuType version="1.1.6"
  3059. type="14"/>
  3060. </productMenu>
  3061. <productMenu id="battery"
  3062. type="1" >
  3063. </productMenu>
  3064. <productID id="6500"
  3065. />
  3066. <productGroupable type="0"
  3067. />
  3068. </product>
  3069. <product id="30K"
  3070. name="30K"
  3071. series="30"
  3072. latestVersion="4.5"
  3073. show = "1" >
  3074. <productMenu id="protocol"
  3075. type="2" >
  3076. </productMenu>
  3077. <productMenu id="alexa"
  3078. type="0" >
  3079. </productMenu>
  3080. <productMenu id="wa"
  3081. type="1" >
  3082. </productMenu>
  3083. <productMenu id="sip"
  3084. type="1" >
  3085. </productMenu>
  3086. <productMenu id="meshIntercom"
  3087. type="30" >
  3088. <productMenuType version="4.0.4"
  3089. type="20"
  3090. />
  3091. </productMenu>
  3092. <productMenu id="meshIntercom+"
  3093. type="3"
  3094. url="2" >
  3095. <productMenuType version="4.3.9"
  3096. type="2"
  3097. />
  3098. <productMenuURL version="4.0.4"
  3099. url="0"
  3100. />
  3101. </productMenu>
  3102. <productMenu id="waveIntercom"
  3103. type="1" >
  3104. <productMenuType version="4.4.9"
  3105. type="0"
  3106. />
  3107. </productMenu>
  3108. <productMenu id="bluetoothIntercom"
  3109. type="1" >
  3110. </productMenu>
  3111. <productMenu id="phone"
  3112. type="1" >
  3113. </productMenu>
  3114. <productMenu id="music"
  3115. type="1" >
  3116. </productMenu>
  3117. <productMenu id="fmradio"
  3118. type="1" >
  3119. </productMenu>
  3120. <productMenu id="deviceSetting"
  3121. type="1"
  3122. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  3123. <productMenuURL version="4.3"
  3124. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  3125. />
  3126. <productMenuURL version="4.2"
  3127. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  3128. />
  3129. <productMenuURL version="4.0.4"
  3130. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  3131. />
  3132. </productMenu>
  3133. <productMenu id="quickGuide"
  3134. type="0"
  3135. url=""
  3136. size="934KB" >
  3137. </productMenu>
  3138. <productMenu id="userGuide"
  3139. type="1"
  3140. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  3141. size="1.14MB" >
  3142. </productMenu>
  3143. <productMenu id="volume"
  3144. type="11" >
  3145. </productMenu>
  3146. <productMenu id="battery"
  3147. type="1" >
  3148. </productMenu>
  3149. <productID id="3211"
  3150. />
  3151. <productGroupable type="0"
  3152. />
  3153. </product>
  3154. <product id="30K"
  3155. name="30K"
  3156. series="30"
  3157. latestVersion="3.5"
  3158. show = "-1" >
  3159. <productMenu id="protocol"
  3160. type="1"
  3161. url="0">
  3162. </productMenu>
  3163. <productMenu id="wa"
  3164. type="7" >
  3165. </productMenu>
  3166. <productMenu id="sip"
  3167. type="1" >
  3168. </productMenu>
  3169. <productMenu id="meshIntercom"
  3170. type="20" >
  3171. <productMenuType version="2.9.9"
  3172. type="10"
  3173. />
  3174. </productMenu>
  3175. <productMenu id="meshIntercom+"
  3176. type="3"
  3177. url="2" >
  3178. <productMenuType version="3.4.9"
  3179. type="2"
  3180. />
  3181. <productMenuType version="2.9.9"
  3182. type="1"
  3183. />
  3184. <productMenuURL version="3.3.1"
  3185. url="0"
  3186. />
  3187. </productMenu>
  3188. <productMenu id="bluetoothIntercom"
  3189. type="1" >
  3190. </productMenu>
  3191. <productMenu id="phone"
  3192. type="1" >
  3193. </productMenu>
  3194. <productMenu id="music"
  3195. type="1" >
  3196. </productMenu>
  3197. <productMenu id="fmradio"
  3198. type="1" >
  3199. </productMenu>
  3200. <productMenu id="deviceSetting"
  3201. type="1"
  3202. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  3203. <productMenuURL version="3.4.9"
  3204. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  3205. />
  3206. <productMenuURL version="3.3.1"
  3207. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  3208. />
  3209. <productMenuURL version="3.0.1"
  3210. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  3211. />
  3212. <productMenuURL version="2.3.1"
  3213. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  3214. />
  3215. <productMenuURL version="2.0"
  3216. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  3217. />
  3218. <productMenuURL version="1.0.3"
  3219. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  3220. />
  3221. </productMenu>
  3222. <productMenu id="quickGuide"
  3223. type="0"
  3224. url=""
  3225. size="1.06MB" >
  3226. </productMenu>
  3227. <productMenu id="userGuide"
  3228. type="1"
  3229. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  3230. size="3.15MB" >
  3231. </productMenu>
  3232. <productMenu id="volume"
  3233. type="1" >
  3234. </productMenu>
  3235. <productID id="3110"
  3236. />
  3237. <productGroupable type="0"
  3238. />
  3239. </product>
  3240. <product id="FURY"
  3241. name="FURY"
  3242. series="Helmet"
  3243. latestVersion="1.0"
  3244. show = "-1" >
  3245. <productMenu id="protocol"
  3246. type="2" >
  3247. </productMenu>
  3248. <productMenu id="alexa"
  3249. type="0" >
  3250. </productMenu>
  3251. <productMenu id="ota"
  3252. type="0" >
  3253. </productMenu>
  3254. <productMenu id="wa"
  3255. type="0" >
  3256. </productMenu>
  3257. <productMenu id="meshIntercom"
  3258. type="20" >
  3259. </productMenu>
  3260. <productMenu id="phone"
  3261. type="1" >
  3262. </productMenu>
  3263. <productMenu id="music"
  3264. type="1" >
  3265. </productMenu>
  3266. <productMenu id="fmradio"
  3267. type="1" >
  3268. </productMenu>
  3269. <productMenu id="deviceSetting"
  3270. type="1"
  3271. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  3272. </productMenu>
  3273. <productMenu id="quickGuide"
  3274. type="1"
  3275. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  3276. size="1.12MB" >
  3277. </productMenu>
  3278. <productMenu id="userGuide"
  3279. type="1"
  3280. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  3281. size="2.0MB" >
  3282. </productMenu>
  3283. <productMenu id="volume"
  3284. type="13" >
  3285. </productMenu>
  3286. <productMenu id="battery"
  3287. type="1" >
  3288. </productMenu>
  3289. <productID id="5552"
  3290. />
  3291. <productGroupable type="0"
  3292. />
  3293. </product>
  3294. <product id="MomentumM"
  3295. name="Momentum EVO"
  3296. series="Helmet"
  3297. latestVersion="2.1.2"
  3298. show = "1" >
  3299. <productMenu id="protocol"
  3300. type="1"
  3301. url="0">
  3302. </productMenu>
  3303. <productMenu id="wa"
  3304. type="3" >
  3305. </productMenu>
  3306. <productMenu id="sip"
  3307. type="1" >
  3308. </productMenu>
  3309. <productMenu id="meshIntercom"
  3310. type="20" >
  3311. <productMenuType version="1.9.9"
  3312. type="10"
  3313. />
  3314. </productMenu>
  3315. <productMenu id="bluetoothIntercom"
  3316. type="1" >
  3317. </productMenu>
  3318. <productMenu id="phone"
  3319. type="1" >
  3320. </productMenu>
  3321. <productMenu id="music"
  3322. type="1" >
  3323. </productMenu>
  3324. <productMenu id="fmradio"
  3325. type="1" >
  3326. </productMenu>
  3327. <productMenu id="deviceSetting"
  3328. type="1"
  3329. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  3330. <productMenuURL version="1.0.1"
  3331. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  3332. />
  3333. </productMenu>
  3334. <productMenu id="quickGuide"
  3335. type="1"
  3336. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  3337. size="1.06MB" >
  3338. </productMenu>
  3339. <productMenu id="userGuide"
  3340. type="1"
  3341. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  3342. size="3.15MB" >
  3343. </productMenu>
  3344. <productMenu id="volume"
  3345. type="2" >
  3346. </productMenu>
  3347. <productID id="3116"
  3348. />
  3349. <productGroupable type="0"
  3350. />
  3351. </product>
  3352. <product id="Momentum"
  3353. name="Momentum"
  3354. series="Helmet"
  3355. latestVersion="1.0.9"
  3356. show = "1" >
  3357. <productMenu id="protocol"
  3358. type="0">
  3359. </productMenu>
  3360. <productMenu id="sip"
  3361. type="1" >
  3362. </productMenu>
  3363. <productMenu id="bluetoothIntercom"
  3364. type="1" >
  3365. </productMenu>
  3366. <productMenu id="intercomSetting"
  3367. type="1" >
  3368. </productMenu>
  3369. <productMenu id="phone"
  3370. type="2" >
  3371. </productMenu>
  3372. <productMenu id="fmradio"
  3373. type="3" >
  3374. </productMenu>
  3375. <productMenu id="deviceSetting"
  3376. type="1"
  3377. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  3378. </productMenu>
  3379. <productMenu id="quickGuide"
  3380. type="1"
  3381. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  3382. size="796KB" >
  3383. </productMenu>
  3384. <productMenu id="userGuide"
  3385. type="1"
  3386. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  3387. size="1.90MB" >
  3388. </productMenu>
  3389. <productID id="4310"
  3390. />
  3391. <productGroupable type="1"
  3392. />
  3393. </product>
  3394. <product id="Momentum_Pro"
  3395. name="Momentum Pro"
  3396. series="Helmet"
  3397. latestVersion="1.0.6"
  3398. show = "1" >
  3399. <productMenu id="protocol"
  3400. type="0">
  3401. </productMenu>
  3402. <productMenu id="sip"
  3403. type="1" >
  3404. </productMenu>
  3405. <productMenu id="bluetoothIntercom"
  3406. type="1" >
  3407. </productMenu>
  3408. <productMenu id="intercomSetting"
  3409. type="1" >
  3410. </productMenu>
  3411. <productMenu id="phone"
  3412. type="2" >
  3413. </productMenu>
  3414. <productMenu id="fmradio"
  3415. type="3" >
  3416. </productMenu>
  3417. <productMenu id="deviceSetting"
  3418. type="1"
  3419. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  3420. </productMenu>
  3421. <productMenu id="quickGuide"
  3422. type="1"
  3423. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  3424. size="796KB" >
  3425. </productMenu>
  3426. <productMenu id="userGuide"
  3427. type="1"
  3428. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  3429. size="1.90MB" >
  3430. </productMenu>
  3431. <productID id="4330"
  3432. />
  3433. <productGroupable type="1"
  3434. />
  3435. </product>
  3436. <product id="Momentum_INC"
  3437. name="Momentum INC"
  3438. series="Helmet"
  3439. latestVersion="1.0.7"
  3440. show = "1" >
  3441. <productMenu id="protocol"
  3442. type="0">
  3443. </productMenu>
  3444. <productMenu id="sip"
  3445. type="1" >
  3446. </productMenu>
  3447. <productMenu id="bluetoothIntercom"
  3448. type="1" >
  3449. </productMenu>
  3450. <productMenu id="intercomSetting"
  3451. type="1" >
  3452. </productMenu>
  3453. <productMenu id="phone"
  3454. type="2" >
  3455. </productMenu>
  3456. <productMenu id="fmradio"
  3457. type="3" >
  3458. </productMenu>
  3459. <productMenu id="deviceSetting"
  3460. type="1"
  3461. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  3462. </productMenu>
  3463. <productMenu id="quickGuide"
  3464. type="1"
  3465. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  3466. size="794KB" >
  3467. </productMenu>
  3468. <productMenu id="userGuide"
  3469. type="1"
  3470. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  3471. size="1.53MB" >
  3472. </productMenu>
  3473. <productID id="4410"
  3474. />
  3475. <productGroupable type="1"
  3476. />
  3477. </product>
  3478. <product id="Momentum_INCP"
  3479. name="Momentum INC Pro"
  3480. series="Helmet"
  3481. latestVersion="1.0.4"
  3482. show = "1" >
  3483. <productMenu id="protocol"
  3484. type="0">
  3485. </productMenu>
  3486. <productMenu id="sip"
  3487. type="1" >
  3488. </productMenu>
  3489. <productMenu id="bluetoothIntercom"
  3490. type="1" >
  3491. </productMenu>
  3492. <productMenu id="intercomSetting"
  3493. type="1" >
  3494. </productMenu>
  3495. <productMenu id="phone"
  3496. type="2" >
  3497. </productMenu>
  3498. <productMenu id="fmradio"
  3499. type="3" >
  3500. </productMenu>
  3501. <productMenu id="deviceSetting"
  3502. type="1"
  3503. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  3504. </productMenu>
  3505. <productMenu id="quickGuide"
  3506. type="1"
  3507. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  3508. size="794KB" >
  3509. </productMenu>
  3510. <productMenu id="userGuide"
  3511. type="1"
  3512. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  3513. size="1.53MB" >
  3514. </productMenu>
  3515. <productID id="4430"
  3516. />
  3517. <productGroupable type="1"
  3518. />
  3519. </product>
  3520. <product id="Momentum_Lite"
  3521. name="Momentum Lite"
  3522. series="Helmet"
  3523. latestVersion="2.0.3"
  3524. show = "1" >
  3525. <productMenu id="protocol"
  3526. type="0">
  3527. </productMenu>
  3528. <productMenu id="sip"
  3529. type="1" >
  3530. </productMenu>
  3531. <productMenu id="bluetoothIntercom"
  3532. type="1" >
  3533. </productMenu>
  3534. <productMenu id="phone"
  3535. type="2" >
  3536. </productMenu>
  3537. <productMenu id="fmradio"
  3538. type="3" >
  3539. </productMenu>
  3540. <productMenu id="deviceSetting"
  3541. type="1"
  3542. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  3543. <productMenuURL version="1.1"
  3544. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  3545. />
  3546. </productMenu>
  3547. <productMenu id="quickGuide"
  3548. type="1"
  3549. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  3550. size="790KB" >
  3551. </productMenu>
  3552. <productMenu id="userGuide"
  3553. type="1"
  3554. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  3555. size="1.42MB" >
  3556. </productMenu>
  3557. <productID id="5526"
  3558. />
  3559. <productGroupable type="0"
  3560. />
  3561. </product>
  3562. <product id="OUTRUSHM"
  3563. name="OUTRUSH M"
  3564. series="Helmet"
  3565. latestVersion="1.0"
  3566. show = "-1" >
  3567. <productMenu id="protocol"
  3568. type="2" >
  3569. </productMenu>
  3570. <productMenu id="alexa"
  3571. type="0" >
  3572. </productMenu>
  3573. <productMenu id="ota"
  3574. type="0" >
  3575. </productMenu>
  3576. <productMenu id="wa"
  3577. type="0" >
  3578. </productMenu>
  3579. <productMenu id="meshIntercom"
  3580. type="30" >
  3581. </productMenu>
  3582. <productMenu id="phone"
  3583. type="1" >
  3584. </productMenu>
  3585. <productMenu id="music"
  3586. type="1" >
  3587. </productMenu>
  3588. <productMenu id="fmradio"
  3589. type="1" >
  3590. </productMenu>
  3591. <productMenu id="deviceSetting"
  3592. type="1"
  3593. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  3594. </productMenu>
  3595. <productMenu id="quickGuide"
  3596. type="1"
  3597. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  3598. size="1.12MB" >
  3599. </productMenu>
  3600. <productMenu id="userGuide"
  3601. type="1"
  3602. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  3603. size="2.0MB" >
  3604. </productMenu>
  3605. <productMenu id="volume"
  3606. type="13" >
  3607. </productMenu>
  3608. <productMenu id="battery"
  3609. type="1" >
  3610. </productMenu>
  3611. <productID id="5600"
  3612. />
  3613. <productGroupable type="0"
  3614. />
  3615. </product>
  3616. <product id="ProRideEVO"
  3617. name="ProRide EVO"
  3618. series="Helmet"
  3619. latestVersion="1.1.2"
  3620. show = "1" >
  3621. <productMenu id="protocol"
  3622. type="0">
  3623. </productMenu>
  3624. <productMenu id="sip"
  3625. type="1" >
  3626. </productMenu>
  3627. <productMenu id="bluetoothIntercom"
  3628. type="1" >
  3629. </productMenu>
  3630. <productMenu id="phone"
  3631. type="2" >
  3632. </productMenu>
  3633. <productMenu id="fmradio"
  3634. type="3" >
  3635. </productMenu>
  3636. <productMenu id="deviceSetting"
  3637. type="1"
  3638. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  3639. </productMenu>
  3640. <productMenu id="userGuide"
  3641. type="1"
  3642. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  3643. size="778KB" >
  3644. </productMenu>
  3645. <productID id="5426"
  3646. />
  3647. <productGroupable type="0"
  3648. />
  3649. </product>
  3650. <product id="OUTRUSHR"
  3651. name="OUTRUSH R"
  3652. series="Helmet"
  3653. latestVersion="2.1"
  3654. show = "1" >
  3655. <productMenu id="protocol"
  3656. type="3" >
  3657. </productMenu>
  3658. <productMenu id="sip"
  3659. type="1" >
  3660. </productMenu>
  3661. <productMenu id="bluetoothIntercom"
  3662. type="1" >
  3663. </productMenu>
  3664. <productMenu id="phone"
  3665. type="1" >
  3666. </productMenu>
  3667. <productMenu id="fmradio"
  3668. type="0" >
  3669. </productMenu>
  3670. <productMenu id="deviceSetting"
  3671. type="1"
  3672. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  3673. </productMenu>
  3674. <productMenu id="userGuide"
  3675. type="1"
  3676. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  3677. size="1.14MB" >
  3678. </productMenu>
  3679. <productID id="5440"
  3680. />
  3681. <productGroupable type="0"
  3682. />
  3683. </product>
  3684. <product id="OUTRUSHR"
  3685. name="OUTRUSH R"
  3686. series="Helmet"
  3687. latestVersion="1.1.3"
  3688. show = "-1" >
  3689. <productMenu id="protocol"
  3690. type="0">
  3691. </productMenu>
  3692. <productMenu id="sip"
  3693. type="1" >
  3694. </productMenu>
  3695. <productMenu id="bluetoothIntercom"
  3696. type="1" >
  3697. </productMenu>
  3698. <productMenu id="phone"
  3699. type="2" >
  3700. </productMenu>
  3701. <productMenu id="fmradio"
  3702. type="3" >
  3703. </productMenu>
  3704. <productMenu id="deviceSetting"
  3705. type="1"
  3706. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  3707. </productMenu>
  3708. <productMenu id="userGuide"
  3709. type="1"
  3710. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  3711. size="660KB" >
  3712. </productMenu>
  3713. <productID id="5424"
  3714. />
  3715. <productGroupable type="0"
  3716. />
  3717. </product>
  3718. <product id="OUTSTARS"
  3719. name="OUTSTAR S"
  3720. series="Helmet"
  3721. latestVersion="2.0.1"
  3722. show = "-1" >
  3723. <productMenu id="protocol"
  3724. type="3" >
  3725. </productMenu>
  3726. <productMenu id="sip"
  3727. type="1" >
  3728. </productMenu>
  3729. <productMenu id="bluetoothIntercom"
  3730. type="1" >
  3731. </productMenu>
  3732. <productMenu id="phone"
  3733. type="1" >
  3734. </productMenu>
  3735. <productMenu id="fmradio"
  3736. type="0" >
  3737. </productMenu>
  3738. <productMenu id="deviceSetting"
  3739. type="1"
  3740. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  3741. </productMenu>
  3742. <productMenu id="userGuide"
  3743. type="0"
  3744. url=""
  3745. size="1.14MB" >
  3746. </productMenu>
  3747. <productID id="5443"
  3748. />
  3749. <productGroupable type="0"
  3750. />
  3751. </product>
  3752. <product id="OUTSTARS"
  3753. name="OUTSTAR S"
  3754. series="Helmet"
  3755. latestVersion="1.1.3"
  3756. show = "1" >
  3757. <productMenu id="protocol"
  3758. type="0">
  3759. </productMenu>
  3760. <productMenu id="sip"
  3761. type="1" >
  3762. </productMenu>
  3763. <productMenu id="bluetoothIntercom"
  3764. type="1" >
  3765. </productMenu>
  3766. <productMenu id="phone"
  3767. type="2" >
  3768. </productMenu>
  3769. <productMenu id="fmradio"
  3770. type="3" >
  3771. </productMenu>
  3772. <productMenu id="deviceSetting"
  3773. type="1"
  3774. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  3775. </productMenu>
  3776. <productMenu id="quickGuide"
  3777. type="1"
  3778. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  3779. size="643KB" >
  3780. </productMenu>
  3781. <productMenu id="userGuide"
  3782. type="1"
  3783. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  3784. size="1.15MB" >
  3785. </productMenu>
  3786. <productID id="5428"
  3787. />
  3788. <productGroupable type="0"
  3789. />
  3790. </product>
  3791. <product id="OUTRIDE"
  3792. name="OUTRIDE"
  3793. series="Helmet"
  3794. latestVersion="1.0.1"
  3795. show = "1" >
  3796. <productMenu id="protocol"
  3797. type="0">
  3798. </productMenu>
  3799. <productMenu id="sip"
  3800. type="1" >
  3801. </productMenu>
  3802. <productMenu id="bluetoothIntercom"
  3803. type="1" >
  3804. </productMenu>
  3805. <productMenu id="phone"
  3806. type="2" >
  3807. </productMenu>
  3808. <productMenu id="fmradio"
  3809. type="3" >
  3810. </productMenu>
  3811. <productMenu id="deviceSetting"
  3812. type="1"
  3813. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  3814. </productMenu>
  3815. <productMenu id="quickGuide"
  3816. type="1"
  3817. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  3818. size="643KB" >
  3819. </productMenu>
  3820. <productMenu id="userGuide"
  3821. type="1"
  3822. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  3823. size="660KB" >
  3824. </productMenu>
  3825. <productID id="5432"
  3826. />
  3827. <productGroupable type="0"
  3828. />
  3829. </product>
  3830. <product id="OUTFORCE"
  3831. name="OUTFORCE"
  3832. series="Helmet"
  3833. latestVersion="1.0.1"
  3834. show = "1" >
  3835. <productMenu id="protocol"
  3836. type="0">
  3837. </productMenu>
  3838. <productMenu id="sip"
  3839. type="1" >
  3840. </productMenu>
  3841. <productMenu id="bluetoothIntercom"
  3842. type="1" >
  3843. </productMenu>
  3844. <productMenu id="phone"
  3845. type="2" >
  3846. </productMenu>
  3847. <productMenu id="fmradio"
  3848. type="3" >
  3849. </productMenu>
  3850. <productMenu id="deviceSetting"
  3851. type="1"
  3852. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  3853. </productMenu>
  3854. <productMenu id="quickGuide"
  3855. type="1"
  3856. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  3857. size="643KB" >
  3858. </productMenu>
  3859. <productMenu id="userGuide"
  3860. type="1"
  3861. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  3862. size="660KB" >
  3863. </productMenu>
  3864. <productID id="5430"
  3865. />
  3866. <productGroupable type="0"
  3867. />
  3868. </product>
  3869. <product id="Rumba"
  3870. name="Rumba"
  3871. series="30"
  3872. latestVersion="2.0"
  3873. show = "-1" >
  3874. <productMenu id="protocol"
  3875. type="3" >
  3876. </productMenu>
  3877. <productMenu id="sip"
  3878. type="1" >
  3879. </productMenu>
  3880. <productMenu id="bluetoothIntercom"
  3881. type="1" >
  3882. </productMenu>
  3883. <productMenu id="deviceSetting"
  3884. type="1"
  3885. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  3886. </productMenu>
  3887. <productMenu id="quickGuide"
  3888. type="1"
  3889. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  3890. size="344KB" >
  3891. </productMenu>
  3892. <productMenu id="userGuide"
  3893. type="1"
  3894. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  3895. size="1.14MB" >
  3896. </productMenu>
  3897. <productID id="6322"
  3898. />
  3899. <productGroupable type="0"
  3900. />
  3901. </product>
  3902. <product id="Savage"
  3903. name="Savage"
  3904. series="Helmet"
  3905. latestVersion="1.2.2"
  3906. show = "1" >
  3907. <productMenu id="protocol"
  3908. type="0">
  3909. </productMenu>
  3910. <productMenu id="sip"
  3911. type="1" >
  3912. </productMenu>
  3913. <productMenu id="bluetoothIntercom"
  3914. type="1" >
  3915. </productMenu>
  3916. <productMenu id="phone"
  3917. type="2" >
  3918. </productMenu>
  3919. <productMenu id="fmradio"
  3920. type="3" >
  3921. </productMenu>
  3922. <productMenu id="deviceSetting"
  3923. type="1"
  3924. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  3925. <productMenuURL version="1.9"
  3926. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  3927. />
  3928. <productMenuURL version="1.1"
  3929. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  3930. />
  3931. </productMenu>
  3932. <productMenu id="quickGuide"
  3933. type="1"
  3934. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  3935. size="796KB" >
  3936. </productMenu>
  3937. <productMenu id="userGuide"
  3938. type="1"
  3939. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  3940. size="910KB" >
  3941. </productMenu>
  3942. <productID id="5550"
  3943. />
  3944. <productGroupable type="0"
  3945. />
  3946. </product>
  3947. <product id="SPECTOR"
  3948. name="SPECTOR"
  3949. series="Helmet"
  3950. latestVersion="1.0"
  3951. latestVersionVoicePrompt="1.1"
  3952. show = "-1" >
  3953. <productMenu id="protocol"
  3954. type="2" >
  3955. </productMenu>
  3956. <productMenu id="ota"
  3957. type="2" >
  3958. <otaLanguages>
  3959. <otaLanguage
  3960. id="0"
  3961. name="English"
  3962. package="0"
  3963. />
  3964. <otaLanguage
  3965. id="0"
  3966. name="French"
  3967. package="1"
  3968. />
  3969. <otaLanguage
  3970. id="0"
  3971. name="Spanish"
  3972. package="2"
  3973. />
  3974. <otaLanguage
  3975. id="0"
  3976. name="Italian"
  3977. package="3"
  3978. />
  3979. <otaLanguage
  3980. id="0"
  3981. name="German"
  3982. package="4"
  3983. />
  3984. <otaLanguage
  3985. id="0"
  3986. name="Dutch"
  3987. package="5"
  3988. />
  3989. <otaLanguage
  3990. id="0"
  3991. name="Russian"
  3992. package="6"
  3993. />
  3994. <otaLanguage
  3995. id="0"
  3996. name="Chinese"
  3997. package="7"
  3998. />
  3999. <otaLanguage
  4000. id="0"
  4001. name="Korean"
  4002. package="8"
  4003. />
  4004. <otaLanguage
  4005. id="0"
  4006. name="Japanese"
  4007. package="9"
  4008. />
  4009. <otaLanguage
  4010. id="0"
  4011. name="Finnish"
  4012. package="10"
  4013. />
  4014. <otaLanguage
  4015. id="0"
  4016. name="Polish"
  4017. package="11"
  4018. />
  4019. </otaLanguages>
  4020. <otaPackages>
  4021. <package
  4022. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2.img"
  4023. size="5183988"
  4024. />
  4025. <package
  4026. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-fr-FR.img"
  4027. size="5183988"
  4028. />
  4029. <package
  4030. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-es-ES.img"
  4031. size="5183988"
  4032. />
  4033. <package
  4034. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-it-IT.img"
  4035. size="5183988"
  4036. />
  4037. <package
  4038. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-de-DE.img"
  4039. size="5183988"
  4040. />
  4041. <package
  4042. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-nl-NL.img"
  4043. size="5183988"
  4044. />
  4045. <package
  4046. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-ru-RU.img"
  4047. size="5183988"
  4048. />
  4049. <package
  4050. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-cmn-CN.img"
  4051. size="5183988"
  4052. />
  4053. <package
  4054. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-ko-KR.img"
  4055. size="5183988"
  4056. />
  4057. <package
  4058. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-ja-JP.img"
  4059. size="5183988"
  4060. />
  4061. <package
  4062. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-fi-FI.img"
  4063. size="5183988"
  4064. />
  4065. <package
  4066. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0-build2-pl-PL.img"
  4067. size="5183988"
  4068. />
  4069. </otaPackages>
  4070. </productMenu>
  4071. <productMenu id="wa"
  4072. type="0" >
  4073. </productMenu>
  4074. <productMenu id="led"
  4075. type="5" >
  4076. </productMenu>
  4077. <productMenu id="led+"
  4078. type="2"
  4079. url="1" >
  4080. </productMenu>
  4081. <productMenu id="meshIntercom+"
  4082. type="3"
  4083. url="2" >
  4084. </productMenu>
  4085. <productMenu id="waveIntercom"
  4086. type="1" >
  4087. </productMenu>
  4088. <productMenu id="fmradio"
  4089. type="0" >
  4090. </productMenu>
  4091. <productMenu id="phone"
  4092. type="1" >
  4093. </productMenu>
  4094. <productMenu id="music"
  4095. type="1" >
  4096. </productMenu>
  4097. <productMenu id="musicSharing"
  4098. type="0" >
  4099. </productMenu>
  4100. <productMenu id="deviceSetting"
  4101. type="1"
  4102. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  4103. </productMenu>
  4104. <productMenu id="quickGuide"
  4105. type="0"
  4106. url=""
  4107. size="1.12MB" >
  4108. </productMenu>
  4109. <productMenu id="userGuide"
  4110. type="0"
  4111. url=""
  4112. size="2.0MB" >
  4113. </productMenu>
  4114. <productMenu id="videoGuide"
  4115. type="0"
  4116. url=""
  4117. size="3.41MB" >
  4118. </productMenu>
  4119. <productMenu id="volume"
  4120. type="16" >
  4121. </productMenu>
  4122. <productMenu id="battery"
  4123. type="1" >
  4124. </productMenu>
  4125. <productID id="6A0A"
  4126. />
  4127. <productGroupable type="0"
  4128. />
  4129. </product>
  4130. <product id="OUTLANDER"
  4131. name="OUTLANDER"
  4132. series="Helmet"
  4133. latestVersion="1.0"
  4134. latestVersionVoicePrompt="1.0"
  4135. show = "-1" >
  4136. <productMenu id="protocol"
  4137. type="2" >
  4138. </productMenu>
  4139. <productMenu id="ota"
  4140. type="2" >
  4141. <otaLanguages>
  4142. <otaLanguage
  4143. id="0"
  4144. name="English"
  4145. package="0"
  4146. />
  4147. <otaLanguage
  4148. id="0"
  4149. name="French"
  4150. package="1"
  4151. />
  4152. <otaLanguage
  4153. id="0"
  4154. name="Spanish"
  4155. package="2"
  4156. />
  4157. <otaLanguage
  4158. id="0"
  4159. name="Italian"
  4160. package="3"
  4161. />
  4162. <otaLanguage
  4163. id="0"
  4164. name="German"
  4165. package="4"
  4166. />
  4167. <otaLanguage
  4168. id="0"
  4169. name="Dutch"
  4170. package="5"
  4171. />
  4172. <otaLanguage
  4173. id="0"
  4174. name="Russian"
  4175. package="6"
  4176. />
  4177. <otaLanguage
  4178. id="0"
  4179. name="Chinese"
  4180. package="7"
  4181. />
  4182. <otaLanguage
  4183. id="0"
  4184. name="Korean"
  4185. package="8"
  4186. />
  4187. <otaLanguage
  4188. id="0"
  4189. name="Japanese"
  4190. package="9"
  4191. />
  4192. <otaLanguage
  4193. id="0"
  4194. name="Finnish"
  4195. package="10"
  4196. />
  4197. <otaLanguage
  4198. id="0"
  4199. name="Polish"
  4200. package="11"
  4201. />
  4202. </otaLanguages>
  4203. <otaPackages>
  4204. <package
  4205. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1.img"
  4206. size="5183988"
  4207. />
  4208. <package
  4209. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-fr-FR.img"
  4210. size="5183988"
  4211. />
  4212. <package
  4213. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-es-ES.img"
  4214. size="5183988"
  4215. />
  4216. <package
  4217. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-it-IT.img"
  4218. size="5183988"
  4219. />
  4220. <package
  4221. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-de-DE.img"
  4222. size="5183988"
  4223. />
  4224. <package
  4225. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-nl-NL.img"
  4226. size="5183988"
  4227. />
  4228. <package
  4229. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-ru-RU.img"
  4230. size="5183988"
  4231. />
  4232. <package
  4233. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-cmn-CN.img"
  4234. size="5183988"
  4235. />
  4236. <package
  4237. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-ko-KR.img"
  4238. size="5183988"
  4239. />
  4240. <package
  4241. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-ja-JP.img"
  4242. size="5183988"
  4243. />
  4244. <package
  4245. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-fi-FI.img"
  4246. size="5183988"
  4247. />
  4248. <package
  4249. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-pl-PL.img"
  4250. size="5183988"
  4251. />
  4252. </otaPackages>
  4253. </productMenu>
  4254. <productMenu id="wa"
  4255. type="0" >
  4256. </productMenu>
  4257. <productMenu id="led"
  4258. type="5" >
  4259. </productMenu>
  4260. <productMenu id="led+"
  4261. type="2"
  4262. url="1" >
  4263. </productMenu>
  4264. <productMenu id="meshIntercom+"
  4265. type="3"
  4266. url="2" >
  4267. </productMenu>
  4268. <productMenu id="waveIntercom"
  4269. type="1" >
  4270. </productMenu>
  4271. <productMenu id="fmradio"
  4272. type="0" >
  4273. </productMenu>
  4274. <productMenu id="phone"
  4275. type="1" >
  4276. </productMenu>
  4277. <productMenu id="music"
  4278. type="1" >
  4279. </productMenu>
  4280. <productMenu id="musicSharing"
  4281. type="0" >
  4282. </productMenu>
  4283. <productMenu id="deviceSetting"
  4284. type="1"
  4285. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4286. </productMenu>
  4287. <productMenu id="quickGuide"
  4288. type="0"
  4289. url=""
  4290. size="1.12MB" >
  4291. </productMenu>
  4292. <productMenu id="userGuide"
  4293. type="0"
  4294. url=""
  4295. size="2.0MB" >
  4296. </productMenu>
  4297. <productMenu id="videoGuide"
  4298. type="0"
  4299. url=""
  4300. size="3.41MB" >
  4301. </productMenu>
  4302. <productMenu id="volume"
  4303. type="16" >
  4304. </productMenu>
  4305. <productMenu id="battery"
  4306. type="1" >
  4307. </productMenu>
  4308. <productID id="6A05"
  4309. />
  4310. <productGroupable type="0"
  4311. />
  4312. </product>
  4313. <product id="OUTRUSH2"
  4314. name="OUTRUSH 2"
  4315. series="Helmet"
  4316. latestVersion="1.0.2"
  4317. latestVersionVoicePrompt="1.1"
  4318. show = "-1" >
  4319. <productMenu id="protocol"
  4320. type="2" >
  4321. </productMenu>
  4322. <productMenu id="alexa"
  4323. type="0" >
  4324. </productMenu>
  4325. <productMenu id="ota"
  4326. type="2" >
  4327. <otaPackages>
  4328. <package
  4329. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  4330. size="2945812"
  4331. />
  4332. </otaPackages>
  4333. </productMenu>
  4334. <productMenu id="meshIntercom+"
  4335. type="3"
  4336. url="2" >
  4337. </productMenu>
  4338. <productMenu id="waveIntercom"
  4339. type="1" >
  4340. </productMenu>
  4341. <productMenu id="phone"
  4342. type="1" >
  4343. </productMenu>
  4344. <productMenu id="music"
  4345. type="1" >
  4346. </productMenu>
  4347. <productMenu id="musicSharing"
  4348. type="0" >
  4349. </productMenu>
  4350. <productMenu id="deviceSetting"
  4351. type="1"
  4352. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  4353. <productMenuURL version="1.0"
  4354. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  4355. />
  4356. </productMenu>
  4357. <productMenu id="quickGuide"
  4358. type="0"
  4359. url=""
  4360. size="1.12MB" >
  4361. </productMenu>
  4362. <productMenu id="userGuide"
  4363. type="1"
  4364. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.0_en_250730.pdf"
  4365. size="2.0MB" >
  4366. </productMenu>
  4367. <productMenu id="volume"
  4368. type="12" >
  4369. </productMenu>
  4370. <productMenu id="battery"
  4371. type="1" >
  4372. </productMenu>
  4373. <productID id="684A"
  4374. />
  4375. <productGroupable type="0"
  4376. />
  4377. </product>
  4378. <product id="OUTSTAR2"
  4379. name="OUTSTAR 2"
  4380. series="Helmet"
  4381. latestVersion="1.0.1"
  4382. latestVersionVoicePrompt="1.1"
  4383. show = "-1" >
  4384. <productMenu id="protocol"
  4385. type="2" >
  4386. </productMenu>
  4387. <productMenu id="alexa"
  4388. type="0" >
  4389. </productMenu>
  4390. <productMenu id="ota"
  4391. type="2" >
  4392. <otaPackages>
  4393. <package
  4394. url="https://api.sena.com/support/test/OUTSTAR_2-v1.0.1-build0.img"
  4395. size="2945812"
  4396. />
  4397. </otaPackages>
  4398. </productMenu>
  4399. <productMenu id="meshIntercom+"
  4400. type="3"
  4401. url="2" >
  4402. </productMenu>
  4403. <productMenu id="waveIntercom"
  4404. type="1" >
  4405. </productMenu>
  4406. <productMenu id="phone"
  4407. type="1" >
  4408. </productMenu>
  4409. <productMenu id="music"
  4410. type="1" >
  4411. </productMenu>
  4412. <productMenu id="musicSharing"
  4413. type="0" >
  4414. </productMenu>
  4415. <productMenu id="deviceSetting"
  4416. type="1"
  4417. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  4418. </productMenu>
  4419. <productMenu id="quickGuide"
  4420. type="0"
  4421. url=""
  4422. size="1.12MB" >
  4423. </productMenu>
  4424. <productMenu id="userGuide"
  4425. type="1"
  4426. url=""
  4427. size="2.0MB" >
  4428. </productMenu>
  4429. <productMenu id="volume"
  4430. type="12" >
  4431. </productMenu>
  4432. <productMenu id="battery"
  4433. type="1" >
  4434. </productMenu>
  4435. <productID id="684B"
  4436. />
  4437. <productGroupable type="0"
  4438. />
  4439. </product>
  4440. <product id="SURGE"
  4441. name="SURGE"
  4442. series="Helmet"
  4443. latestVersion="1.1.1"
  4444. latestVersionVoicePrompt="0.9"
  4445. show = "1" >
  4446. <productMenu id="protocol"
  4447. type="2" >
  4448. </productMenu>
  4449. <productMenu id="alexa"
  4450. type="0" >
  4451. </productMenu>
  4452. <productMenu id="ota"
  4453. type="2" >
  4454. <otaPackages>
  4455. <package
  4456. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.1.1-build0.img"
  4457. size="2945812"
  4458. />
  4459. </otaPackages>
  4460. </productMenu>
  4461. <productMenu id="meshIntercom"
  4462. type="30" >
  4463. </productMenu>
  4464. <productMenu id="meshIntercom+"
  4465. type="3"
  4466. url="2" >
  4467. <productMenuType version="1.0.1"
  4468. type="2"
  4469. />
  4470. </productMenu>
  4471. <productMenu id="waveIntercom"
  4472. type="1" >
  4473. <productMenuType version="1.0.9"
  4474. type="0"
  4475. />
  4476. </productMenu>
  4477. <productMenu id="phone"
  4478. type="1" >
  4479. </productMenu>
  4480. <productMenu id="music"
  4481. type="1" >
  4482. </productMenu>
  4483. <productMenu id="musicSharing"
  4484. type="0" >
  4485. </productMenu>
  4486. <productMenu id="deviceSetting"
  4487. type="1"
  4488. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml" >
  4489. <productMenuURL version="1.0.1"
  4490. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  4491. />
  4492. </productMenu>
  4493. <productMenu id="quickGuide"
  4494. type="0"
  4495. url=""
  4496. size="1.12MB" >
  4497. </productMenu>
  4498. <productMenu id="userGuide"
  4499. type="1"
  4500. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.0_en_250408.pdf"
  4501. size="2.0MB" >
  4502. </productMenu>
  4503. <productMenu id="volume"
  4504. type="12" >
  4505. </productMenu>
  4506. <productMenu id="battery"
  4507. type="1" >
  4508. </productMenu>
  4509. <productID id="6840"
  4510. />
  4511. <productGroupable type="0"
  4512. />
  4513. </product>
  4514. <product id="Cavalry2"
  4515. name="Cavalry 2"
  4516. series="Helmet"
  4517. latestVersion="1.1.1"
  4518. latestVersionVoicePrompt="0.9"
  4519. show = "1" >
  4520. <productMenu id="protocol"
  4521. type="2" >
  4522. </productMenu>
  4523. <productMenu id="alexa"
  4524. type="0" >
  4525. </productMenu>
  4526. <productMenu id="ota"
  4527. type="2" >
  4528. <otaPackages>
  4529. <package
  4530. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.1.1-build0.img"
  4531. size="3144148"
  4532. />
  4533. </otaPackages>
  4534. </productMenu>
  4535. <productMenu id="wa"
  4536. type="0" >
  4537. </productMenu>
  4538. <productMenu id="meshIntercom"
  4539. type="30" >
  4540. </productMenu>
  4541. <productMenu id="meshIntercom+"
  4542. type="3"
  4543. url="2" >
  4544. <productMenuType version="1.0"
  4545. type="2"
  4546. />
  4547. </productMenu>
  4548. <productMenu id="waveIntercom"
  4549. type="1" >
  4550. <productMenuType version="1.0.9"
  4551. type="0"
  4552. />
  4553. </productMenu>
  4554. <productMenu id="phone"
  4555. type="1" >
  4556. </productMenu>
  4557. <productMenu id="music"
  4558. type="1" >
  4559. </productMenu>
  4560. <productMenu id="musicSharing"
  4561. type="0" >
  4562. </productMenu>
  4563. <productMenu id="deviceSetting"
  4564. type="1"
  4565. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_02.xml" >
  4566. <productMenuURL version="1.0"
  4567. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_01.xml"
  4568. />
  4569. </productMenu>
  4570. <productMenu id="quickGuide"
  4571. type="0"
  4572. url=""
  4573. size="1.12MB" >
  4574. </productMenu>
  4575. <productMenu id="userGuide"
  4576. type="1"
  4577. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.0_en_250415.pdf"
  4578. size="2.0MB" >
  4579. </productMenu>
  4580. <productMenu id="connectGuide"
  4581. type="1"
  4582. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  4583. size="1.12MB" >
  4584. </productMenu>
  4585. <productMenu id="volume"
  4586. type="12" >
  4587. </productMenu>
  4588. <productMenu id="battery"
  4589. type="1" >
  4590. </productMenu>
  4591. <productID id="6839"
  4592. />
  4593. <productGroupable type="0"
  4594. />
  4595. </product>
  4596. <product id="Cavalry"
  4597. name="Cavalry"
  4598. series="Helmet"
  4599. latestVersion="1.2.2"
  4600. show = "1" >
  4601. <productMenu id="protocol"
  4602. type="0">
  4603. </productMenu>
  4604. <productMenu id="sip"
  4605. type="1" >
  4606. </productMenu>
  4607. <productMenu id="bluetoothIntercom"
  4608. type="1" >
  4609. </productMenu>
  4610. <productMenu id="phone"
  4611. type="2" >
  4612. </productMenu>
  4613. <productMenu id="fmradio"
  4614. type="3" >
  4615. </productMenu>
  4616. <productMenu id="deviceSetting"
  4617. type="1"
  4618. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  4619. <productMenuURL version="1.9"
  4620. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  4621. />
  4622. <productMenuURL version="1.0.1"
  4623. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  4624. />
  4625. </productMenu>
  4626. <productMenu id="quickGuide"
  4627. type="1"
  4628. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  4629. size="795KB" >
  4630. </productMenu>
  4631. <productMenu id="userGuide"
  4632. type="1"
  4633. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  4634. size="1.87MB" >
  4635. </productMenu>
  4636. <productID id="5524"
  4637. />
  4638. <productGroupable type="0"
  4639. />
  4640. </product>
  4641. <product id="Cavalry_Lite"
  4642. name="Cavalry Lite"
  4643. series="Helmet"
  4644. latestVersion="1.0.2"
  4645. show = "1" >
  4646. <productMenu id="protocol"
  4647. type="0">
  4648. </productMenu>
  4649. <productMenu id="sip"
  4650. type="1" >
  4651. </productMenu>
  4652. <productMenu id="bluetoothIntercom"
  4653. type="1" >
  4654. </productMenu>
  4655. <productMenu id="phone"
  4656. type="2" >
  4657. </productMenu>
  4658. <productMenu id="fmradio"
  4659. type="3" >
  4660. </productMenu>
  4661. <productMenu id="deviceSetting"
  4662. type="1"
  4663. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  4664. </productMenu>
  4665. <productMenu id="userGuide"
  4666. type="1"
  4667. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  4668. size="1.74MB" >
  4669. </productMenu>
  4670. <productID id="5536"
  4671. />
  4672. <productGroupable type="0"
  4673. />
  4674. </product>
  4675. <product id="SF4"
  4676. name="SF4"
  4677. series="SF"
  4678. latestVersion="1.1.5"
  4679. show = "-1" >
  4680. <productMenu id="protocol"
  4681. type="1"
  4682. url="3">
  4683. </productMenu>
  4684. <productMenu id="sip"
  4685. type="1" >
  4686. </productMenu>
  4687. <productMenu id="bluetoothIntercom"
  4688. type="1" >
  4689. </productMenu>
  4690. <productMenu id="phone"
  4691. type="1" >
  4692. </productMenu>
  4693. <productMenu id="music"
  4694. type="1" >
  4695. </productMenu>
  4696. <productMenu id="fmradio"
  4697. type="1" >
  4698. </productMenu>
  4699. <productMenu id="deviceSetting"
  4700. type="1"
  4701. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4702. <productMenuURL version="1.0.1"
  4703. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  4704. />
  4705. </productMenu>
  4706. <productMenu id="quickGuide"
  4707. type="1"
  4708. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  4709. size="607KB" >
  4710. </productMenu>
  4711. <productMenu id="userGuide"
  4712. type="1"
  4713. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  4714. size="1.91MB" >
  4715. </productMenu>
  4716. <productMenu id="volume"
  4717. type="4" >
  4718. </productMenu>
  4719. <productID id="5414"
  4720. />
  4721. <productGroupable type="0"
  4722. />
  4723. </product>
  4724. <product id="SF4"
  4725. name="SF4"
  4726. series="SF"
  4727. latestVersion="3.4.2"
  4728. show = "1" >
  4729. <productMenu id="protocol"
  4730. type="2" >
  4731. </productMenu>
  4732. <productMenu id="sip"
  4733. type="1" >
  4734. </productMenu>
  4735. <productMenu id="bluetoothIntercom"
  4736. type="1" >
  4737. </productMenu>
  4738. <productMenu id="phone"
  4739. type="1" >
  4740. </productMenu>
  4741. <productMenu id="music"
  4742. type="1" >
  4743. </productMenu>
  4744. <productMenu id="fmradio"
  4745. type="1" >
  4746. </productMenu>
  4747. <productMenu id="deviceSetting"
  4748. type="1"
  4749. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  4750. <productMenuURL version="3.0"
  4751. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  4752. />
  4753. </productMenu>
  4754. <productMenu id="quickGuide"
  4755. type="0"
  4756. url=""
  4757. size="934KB" >
  4758. </productMenu>
  4759. <productMenu id="userGuide"
  4760. type="1"
  4761. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  4762. size="1.14MB" >
  4763. </productMenu>
  4764. <productMenu id="volume"
  4765. type="15" >
  4766. </productMenu>
  4767. <productID id="3370"
  4768. />
  4769. <productGroupable type="0"
  4770. />
  4771. </product>
  4772. <product id="SF2"
  4773. name="SF2"
  4774. series="SF"
  4775. latestVersion="1.2.1"
  4776. show = "-1" >
  4777. <productMenu id="protocol"
  4778. type="1"
  4779. url="2">
  4780. </productMenu>
  4781. <productMenu id="sip"
  4782. type="1" >
  4783. </productMenu>
  4784. <productMenu id="bluetoothIntercom"
  4785. type="1" >
  4786. </productMenu>
  4787. <productMenu id="phone"
  4788. type="1" >
  4789. </productMenu>
  4790. <productMenu id="music"
  4791. type="1" >
  4792. </productMenu>
  4793. <productMenu id="fmradio"
  4794. type="1" >
  4795. </productMenu>
  4796. <productMenu id="deviceSetting"
  4797. type="1"
  4798. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4799. <productMenuURL version="1.0.1"
  4800. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  4801. />
  4802. </productMenu>
  4803. <productMenu id="quickGuide"
  4804. type="1"
  4805. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  4806. size="607KB" >
  4807. </productMenu>
  4808. <productMenu id="userGuide"
  4809. type="1"
  4810. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  4811. size="1.91MB" >
  4812. </productMenu>
  4813. <productMenu id="volume"
  4814. type="4" >
  4815. </productMenu>
  4816. <productID id="5412"
  4817. />
  4818. <productGroupable type="0"
  4819. />
  4820. </product>
  4821. <product id="SF2"
  4822. name="SF2"
  4823. series="SF"
  4824. latestVersion="3.3.2"
  4825. show = "1" >
  4826. <productMenu id="protocol"
  4827. type="2" >
  4828. </productMenu>
  4829. <productMenu id="sip"
  4830. type="1" >
  4831. </productMenu>
  4832. <productMenu id="bluetoothIntercom"
  4833. type="1" >
  4834. </productMenu>
  4835. <productMenu id="phone"
  4836. type="1" >
  4837. </productMenu>
  4838. <productMenu id="music"
  4839. type="1" >
  4840. </productMenu>
  4841. <productMenu id="fmradio"
  4842. type="0" >
  4843. </productMenu>
  4844. <productMenu id="deviceSetting"
  4845. type="1"
  4846. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  4847. <productMenuURL version="3.0"
  4848. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  4849. />
  4850. </productMenu>
  4851. <productMenu id="quickGuide"
  4852. type="0"
  4853. url=""
  4854. size="934KB" >
  4855. </productMenu>
  4856. <productMenu id="userGuide"
  4857. type="1"
  4858. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  4859. size="1.14MB" >
  4860. </productMenu>
  4861. <productMenu id="volume"
  4862. type="15" >
  4863. </productMenu>
  4864. <productID id="3360"
  4865. />
  4866. <productGroupable type="0"
  4867. />
  4868. </product>
  4869. <product id="SF1"
  4870. name="SF1"
  4871. series="SF"
  4872. latestVersion="2.0.5"
  4873. show = "-1" >
  4874. <productMenu id="protocol"
  4875. type="1"
  4876. url="1">
  4877. </productMenu>
  4878. <productMenu id="sip"
  4879. type="1" >
  4880. </productMenu>
  4881. <productMenu id="bluetoothIntercom"
  4882. type="1" >
  4883. <productMenuType version="1.1"
  4884. type="0"
  4885. />
  4886. </productMenu>
  4887. <productMenu id="phone"
  4888. type="1" >
  4889. </productMenu>
  4890. <productMenu id="music"
  4891. type="1" >
  4892. </productMenu>
  4893. <productMenu id="deviceSetting"
  4894. type="1"
  4895. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  4896. <productMenuURL version="1.1"
  4897. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  4898. />
  4899. <productMenuURL version="1.0"
  4900. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  4901. />
  4902. </productMenu>
  4903. <productMenu id="quickGuide"
  4904. type="1"
  4905. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  4906. size="401KB" >
  4907. </productMenu>
  4908. <productMenu id="userGuide"
  4909. type="1"
  4910. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  4911. size="1.91MB" >
  4912. </productMenu>
  4913. <productMenu id="volume"
  4914. type="3" >
  4915. </productMenu>
  4916. <productID id="5410"
  4917. />
  4918. <productGroupable type="0"
  4919. />
  4920. </product>
  4921. <product id="SF1"
  4922. name="SF1"
  4923. series="SF"
  4924. latestVersion="3.3.2"
  4925. show = "1" >
  4926. <productMenu id="protocol"
  4927. type="2" >
  4928. </productMenu>
  4929. <productMenu id="sip"
  4930. type="1" >
  4931. </productMenu>
  4932. <productMenu id="bluetoothIntercom"
  4933. type="1" >
  4934. </productMenu>
  4935. <productMenu id="phone"
  4936. type="1" >
  4937. </productMenu>
  4938. <productMenu id="music"
  4939. type="1" >
  4940. </productMenu>
  4941. <productMenu id="fmradio"
  4942. type="0" >
  4943. </productMenu>
  4944. <productMenu id="deviceSetting"
  4945. type="1"
  4946. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  4947. <productMenuURL version="3.0"
  4948. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  4949. />
  4950. </productMenu>
  4951. <productMenu id="quickGuide"
  4952. type="0"
  4953. url=""
  4954. size="934KB" >
  4955. </productMenu>
  4956. <productMenu id="userGuide"
  4957. type="1"
  4958. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  4959. size="1.14MB" >
  4960. </productMenu>
  4961. <productMenu id="volume"
  4962. type="15" >
  4963. </productMenu>
  4964. <productID id="3350"
  4965. />
  4966. <productGroupable type="0"
  4967. />
  4968. </product>
  4969. <product id="SFR"
  4970. name="SFR"
  4971. series="SF"
  4972. latestVersion="1.1.1"
  4973. show = "1" >
  4974. <productMenu id="protocol"
  4975. type="1"
  4976. url="3">
  4977. </productMenu>
  4978. <productMenu id="sip"
  4979. type="1" >
  4980. </productMenu>
  4981. <productMenu id="bluetoothIntercom"
  4982. type="1" >
  4983. </productMenu>
  4984. <productMenu id="phone"
  4985. type="1" >
  4986. </productMenu>
  4987. <productMenu id="music"
  4988. type="1" >
  4989. </productMenu>
  4990. <productMenu id="fmradio"
  4991. type="1" >
  4992. </productMenu>
  4993. <productMenu id="deviceSetting"
  4994. type="1"
  4995. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4996. </productMenu>
  4997. <productMenu id="quickGuide"
  4998. type="1"
  4999. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  5000. size="607KB" >
  5001. </productMenu>
  5002. <productMenu id="userGuide"
  5003. type="1"
  5004. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  5005. size="1.91MB" >
  5006. </productMenu>
  5007. <productMenu id="volume"
  5008. type="4" >
  5009. </productMenu>
  5010. <productID id="5418"
  5011. />
  5012. <productGroupable type="0"
  5013. />
  5014. </product>
  5015. <product id="20S"
  5016. name="20S"
  5017. series="20"
  5018. latestVersion="2.2.3"
  5019. show = "1" >
  5020. <productMenu id="protocol"
  5021. type="0">
  5022. </productMenu>
  5023. <productMenu id="wa"
  5024. type="5" >
  5025. </productMenu>
  5026. <productMenu id="sip"
  5027. type="1" >
  5028. <productMenuType version="1.0"
  5029. type="0"
  5030. />
  5031. </productMenu>
  5032. <productMenu id="bluetoothIntercom"
  5033. type="1" >
  5034. <productMenuType version="1.0"
  5035. type="0"
  5036. />
  5037. </productMenu>
  5038. <productMenu id="intercomSetting"
  5039. type="1" >
  5040. </productMenu>
  5041. <productMenu id="phone"
  5042. type="2" >
  5043. </productMenu>
  5044. <productMenu id="fmradio"
  5045. type="3" >
  5046. </productMenu>
  5047. <productMenu id="deviceSetting"
  5048. type="1"
  5049. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  5050. <productMenuURL version="2.0.2"
  5051. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  5052. />
  5053. <productMenuURL version="1.5"
  5054. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  5055. />
  5056. <productMenuURL version="1.4.1"
  5057. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  5058. />
  5059. <productMenuURL version="1.1"
  5060. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  5061. />
  5062. <productMenuURL version="1.0"
  5063. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  5064. />
  5065. </productMenu>
  5066. <productMenu id="quickGuide"
  5067. type="0"
  5068. url=""
  5069. size="264KB" >
  5070. </productMenu>
  5071. <productMenu id="userGuide"
  5072. type="1"
  5073. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  5074. size="3.09MB" >
  5075. </productMenu>
  5076. <productID id="4210"
  5077. />
  5078. <productGroupable type="1"
  5079. />
  5080. </product>
  5081. <product id="20S_EVO"
  5082. name="20S EVO"
  5083. series="20"
  5084. latestVersion="2.2.3"
  5085. show = "1" >
  5086. <productMenu id="protocol"
  5087. type="0">
  5088. </productMenu>
  5089. <productMenu id="wa"
  5090. type="5" >
  5091. </productMenu>
  5092. <productMenu id="sip"
  5093. type="1" >
  5094. <productMenuType version="1.0"
  5095. type="0"
  5096. />
  5097. </productMenu>
  5098. <productMenu id="bluetoothIntercom"
  5099. type="1" >
  5100. <productMenuType version="1.0"
  5101. type="0"
  5102. />
  5103. </productMenu>
  5104. <productMenu id="intercomSetting"
  5105. type="1" >
  5106. </productMenu>
  5107. <productMenu id="phone"
  5108. type="2" >
  5109. </productMenu>
  5110. <productMenu id="fmradio"
  5111. type="3" >
  5112. </productMenu>
  5113. <productMenu id="deviceSetting"
  5114. type="1"
  5115. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  5116. <productMenuURL version="2.0.2"
  5117. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  5118. />
  5119. <productMenuURL version="1.5"
  5120. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  5121. />
  5122. <productMenuURL version="1.4.1"
  5123. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  5124. />
  5125. <productMenuURL version="1.1"
  5126. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  5127. />
  5128. <productMenuURL version="1.0"
  5129. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  5130. />
  5131. </productMenu>
  5132. <productMenu id="quickGuide"
  5133. type="0"
  5134. url=""
  5135. size="264KB" >
  5136. </productMenu>
  5137. <productMenu id="userGuide"
  5138. type="1"
  5139. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  5140. size="3.09MB" >
  5141. </productMenu>
  5142. <productID id="4210"
  5143. />
  5144. <productProductKey key="16"
  5145. />
  5146. <productGroupable type="1"
  5147. />
  5148. </product>
  5149. <product id="10S"
  5150. name="10S"
  5151. series="10"
  5152. latestVersion="3.0.1"
  5153. show = "1" >
  5154. <productMenu id="protocol"
  5155. type="3" >
  5156. </productMenu>
  5157. <productMenu id="sip"
  5158. type="1" >
  5159. </productMenu>
  5160. <productMenu id="bluetoothIntercom"
  5161. type="1" >
  5162. </productMenu>
  5163. <productMenu id="phone"
  5164. type="1" >
  5165. </productMenu>
  5166. <productMenu id="deviceSetting"
  5167. type="1"
  5168. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  5169. </productMenu>
  5170. <productMenu id="quickGuide"
  5171. type="1"
  5172. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  5173. size="934KB" >
  5174. </productMenu>
  5175. <productMenu id="userGuide"
  5176. type="1"
  5177. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  5178. size="1.14MB" >
  5179. </productMenu>
  5180. <productID id="3380"
  5181. />
  5182. <productGroupable type="0"
  5183. />
  5184. </product>
  5185. <product id="10S"
  5186. name="10S"
  5187. series="10"
  5188. latestVersion="2.1.1"
  5189. show = "-1" >
  5190. <productMenu id="protocol"
  5191. type="0">
  5192. </productMenu>
  5193. <productMenu id="sip"
  5194. type="1" >
  5195. </productMenu>
  5196. <productMenu id="bluetoothIntercom"
  5197. type="1" >
  5198. </productMenu>
  5199. <productMenu id="phone"
  5200. type="2" >
  5201. </productMenu>
  5202. <productMenu id="fmradio"
  5203. type="3" >
  5204. </productMenu>
  5205. <productMenu id="deviceSetting"
  5206. type="1"
  5207. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  5208. <productMenuURL version="1.5"
  5209. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  5210. />
  5211. <productMenuURL version="1.3.1"
  5212. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  5213. />
  5214. </productMenu>
  5215. <productMenu id="quickGuide"
  5216. type="1"
  5217. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  5218. size="310KB" >
  5219. </productMenu>
  5220. <productMenu id="userGuide"
  5221. type="1"
  5222. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  5223. size="1.57MB" >
  5224. </productMenu>
  5225. <productID id="5530"
  5226. />
  5227. <productGroupable type="0"
  5228. />
  5229. </product>
  5230. <product id="10R"
  5231. name="10R"
  5232. series="10"
  5233. latestVersion="2.1.1"
  5234. show = "1" >
  5235. <productMenu id="protocol"
  5236. type="0">
  5237. </productMenu>
  5238. <productMenu id="sip"
  5239. type="1" >
  5240. <productMenuType version="1.0.2"
  5241. type="0"
  5242. />
  5243. </productMenu>
  5244. <productMenu id="bluetoothIntercom"
  5245. type="1" >
  5246. <productMenuType version="1.0.2"
  5247. type="0"
  5248. />
  5249. </productMenu>
  5250. <productMenu id="phone"
  5251. type="2" >
  5252. </productMenu>
  5253. <productMenu id="fmradio"
  5254. type="3" >
  5255. </productMenu>
  5256. <productMenu id="deviceSetting"
  5257. type="1"
  5258. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  5259. <productMenuURL version="1.4"
  5260. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  5261. />
  5262. <productMenuURL version="1.2.1"
  5263. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  5264. />
  5265. <productMenuURL version="1.0.2"
  5266. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  5267. />
  5268. <productMenuURL version="1.0"
  5269. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  5270. />
  5271. </productMenu>
  5272. <productMenu id="quickGuide"
  5273. type="1"
  5274. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  5275. size="400KB" >
  5276. </productMenu>
  5277. <productMenu id="userGuide"
  5278. type="1"
  5279. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  5280. size="2.75MB" >
  5281. </productMenu>
  5282. <productID id="5520"
  5283. />
  5284. <productGroupable type="0"
  5285. />
  5286. </product>
  5287. <product id="10C_EVO"
  5288. name="10C EVO"
  5289. series="10"
  5290. latestVersion="1.7"
  5291. show = "1" >
  5292. <productMenu id="protocol"
  5293. type="0">
  5294. </productMenu>
  5295. <productMenu id="sip"
  5296. type="1" >
  5297. </productMenu>
  5298. <productMenu id="bluetoothIntercom"
  5299. type="1" >
  5300. </productMenu>
  5301. <productMenu id="phone"
  5302. type="2" >
  5303. </productMenu>
  5304. <productMenu id="fmradio"
  5305. type="3" >
  5306. </productMenu>
  5307. <productMenu id="deviceSetting"
  5308. type="1"
  5309. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  5310. <productMenuURL version="1.3.1"
  5311. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  5312. />
  5313. </productMenu>
  5314. <productMenu id="quickGuide"
  5315. type="1"
  5316. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  5317. size="1.32MB" >
  5318. </productMenu>
  5319. <productMenu id="userGuide"
  5320. type="1"
  5321. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  5322. size="1.68MB" >
  5323. </productMenu>
  5324. <productID id="5570"
  5325. />
  5326. <productGroupable type="0"
  5327. />
  5328. </product>
  5329. <product id="10C_Pro"
  5330. name="10C Pro"
  5331. series="10"
  5332. latestVersion="2.7.1"
  5333. show = "1" >
  5334. <productMenu id="protocol"
  5335. type="0">
  5336. </productMenu>
  5337. <productMenu id="sip"
  5338. type="1" >
  5339. </productMenu>
  5340. <productMenu id="bluetoothIntercom"
  5341. type="1" >
  5342. </productMenu>
  5343. <productMenu id="phone"
  5344. type="2" >
  5345. </productMenu>
  5346. <productMenu id="fmradio"
  5347. type="3" >
  5348. </productMenu>
  5349. <productMenu id="deviceSetting"
  5350. type="1"
  5351. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  5352. <productMenuURL version="2.5.1"
  5353. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  5354. />
  5355. <productMenuURL version="1.0"
  5356. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  5357. />
  5358. </productMenu>
  5359. <productMenu id="quickGuide"
  5360. type="1"
  5361. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  5362. size="651KB" >
  5363. </productMenu>
  5364. <productMenu id="userGuide"
  5365. type="1"
  5366. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  5367. size="2.34MB" >
  5368. </productMenu>
  5369. <productID id="5580"
  5370. />
  5371. <productGroupable type="0"
  5372. />
  5373. </product>
  5374. <product id="10C"
  5375. name="10C"
  5376. series="10"
  5377. latestVersion="3.0.4"
  5378. show = "1" >
  5379. <productMenu id="protocol"
  5380. type="0">
  5381. </productMenu>
  5382. <productMenu id="sip"
  5383. type="1" >
  5384. <productMenuType version="1.0.4"
  5385. type="0"
  5386. />
  5387. </productMenu>
  5388. <productMenu id="bluetoothIntercom"
  5389. type="1" >
  5390. <productMenuType version="1.0.4"
  5391. type="0"
  5392. />
  5393. </productMenu>
  5394. <productMenu id="phone"
  5395. type="2" >
  5396. </productMenu>
  5397. <productMenu id="fmradio"
  5398. type="3" >
  5399. </productMenu>
  5400. <productMenu id="deviceSetting"
  5401. type="1"
  5402. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  5403. <productMenuURL version="2.3"
  5404. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  5405. />
  5406. <productMenuURL version="2.1.1"
  5407. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  5408. />
  5409. <productMenuURL version="1.0.4"
  5410. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  5411. />
  5412. <productMenuURL version="1.0.2"
  5413. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  5414. />
  5415. </productMenu>
  5416. <productMenu id="quickGuide"
  5417. type="1"
  5418. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  5419. size="935KB" >
  5420. </productMenu>
  5421. <productMenu id="userGuide"
  5422. type="1"
  5423. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  5424. size="2.82MB" >
  5425. </productMenu>
  5426. <productID id="5510"
  5427. />
  5428. <productGroupable type="0"
  5429. />
  5430. </product>
  5431. <product id="10U_GT_AIR"
  5432. name="10U GT-Air"
  5433. series="10"
  5434. latestVersion="2.0.4"
  5435. show = "1" >
  5436. <productMenu id="protocol"
  5437. type="0">
  5438. </productMenu>
  5439. <productMenu id="sip"
  5440. type="1" >
  5441. <productMenuType version="1.0.2"
  5442. type="0"
  5443. />
  5444. </productMenu>
  5445. <productMenu id="bluetoothIntercom"
  5446. type="1" >
  5447. <productMenuType version="1.0.2"
  5448. type="0"
  5449. />
  5450. </productMenu>
  5451. <productMenu id="phone"
  5452. type="2" >
  5453. </productMenu>
  5454. <productMenu id="fmradio"
  5455. type="3" >
  5456. </productMenu>
  5457. <productMenu id="deviceSetting"
  5458. type="1"
  5459. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5460. <productMenuURL version="1.3.2"
  5461. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5462. />
  5463. <productMenuURL version="1.0.2"
  5464. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5465. />
  5466. </productMenu>
  5467. <productMenu id="quickGuide"
  5468. type="1"
  5469. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  5470. size="685KB" >
  5471. </productMenu>
  5472. <productMenu id="userGuide"
  5473. type="1"
  5474. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5475. size="684KB" >
  5476. </productMenu>
  5477. <productMenu id="connectGuide"
  5478. type="1"
  5479. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5480. size="1.12MB" >
  5481. </productMenu>
  5482. <productID id="5610"
  5483. />
  5484. <productGroupable type="0"
  5485. />
  5486. </product>
  5487. <product id="10U_NEOTEC"
  5488. name="10U Neotec"
  5489. series="10"
  5490. latestVersion="2.0.4"
  5491. show = "1" >
  5492. <productMenu id="protocol"
  5493. type="0">
  5494. </productMenu>
  5495. <productMenu id="sip"
  5496. type="1" >
  5497. <productMenuType version="1.0.2"
  5498. type="0"
  5499. />
  5500. </productMenu>
  5501. <productMenu id="bluetoothIntercom"
  5502. type="1" >
  5503. <productMenuType version="1.0.2"
  5504. type="0"
  5505. />
  5506. </productMenu>
  5507. <productMenu id="phone"
  5508. type="2" >
  5509. </productMenu>
  5510. <productMenu id="fmradio"
  5511. type="3" >
  5512. </productMenu>
  5513. <productMenu id="deviceSetting"
  5514. type="1"
  5515. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5516. <productMenuURL version="1.3.2"
  5517. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5518. />
  5519. <productMenuURL version="1.0.2"
  5520. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5521. />
  5522. </productMenu>
  5523. <productMenu id="quickGuide"
  5524. type="1"
  5525. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  5526. size="689KB" >
  5527. </productMenu>
  5528. <productMenu id="userGuide"
  5529. type="1"
  5530. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5531. size="684KB" >
  5532. </productMenu>
  5533. <productMenu id="connectGuide"
  5534. type="1"
  5535. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5536. size="1.12MB" >
  5537. </productMenu>
  5538. <productID id="5611"
  5539. />
  5540. <productGroupable type="0"
  5541. />
  5542. </product>
  5543. <product id="10U_J_CRUISE"
  5544. name="10U J-Cruise"
  5545. series="10"
  5546. latestVersion="2.0.4"
  5547. show = "1" >
  5548. <productMenu id="protocol"
  5549. type="0">
  5550. </productMenu>
  5551. <productMenu id="sip"
  5552. type="1" >
  5553. <productMenuType version="1.0.2"
  5554. type="0"
  5555. />
  5556. </productMenu>
  5557. <productMenu id="bluetoothIntercom"
  5558. type="1" >
  5559. <productMenuType version="1.0.2"
  5560. type="0"
  5561. />
  5562. </productMenu>
  5563. <productMenu id="phone"
  5564. type="2" >
  5565. </productMenu>
  5566. <productMenu id="fmradio"
  5567. type="3" >
  5568. </productMenu>
  5569. <productMenu id="deviceSetting"
  5570. type="1"
  5571. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5572. <productMenuURL version="1.3.2"
  5573. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5574. />
  5575. <productMenuURL version="1.0.2"
  5576. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5577. />
  5578. </productMenu>
  5579. <productMenu id="quickGuide"
  5580. type="1"
  5581. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  5582. size="686KB" >
  5583. </productMenu>
  5584. <productMenu id="userGuide"
  5585. type="1"
  5586. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5587. size="684KB" >
  5588. </productMenu>
  5589. <productMenu id="connectGuide"
  5590. type="1"
  5591. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5592. size="1.12MB" >
  5593. </productMenu>
  5594. <productID id="5612"
  5595. />
  5596. <productGroupable type="0"
  5597. />
  5598. </product>
  5599. <product id="10U_C3"
  5600. name="10U C3/C3Pro"
  5601. series="10"
  5602. latestVersion="2.0.4"
  5603. show = "1" >
  5604. <productMenu id="protocol"
  5605. type="0">
  5606. </productMenu>
  5607. <productMenu id="sip"
  5608. type="1" >
  5609. <productMenuType version="1.0.2"
  5610. type="0"
  5611. />
  5612. </productMenu>
  5613. <productMenu id="bluetoothIntercom"
  5614. type="1" >
  5615. <productMenuType version="1.0.2"
  5616. type="0"
  5617. />
  5618. </productMenu>
  5619. <productMenu id="phone"
  5620. type="2" >
  5621. </productMenu>
  5622. <productMenu id="fmradio"
  5623. type="3" >
  5624. </productMenu>
  5625. <productMenu id="deviceSetting"
  5626. type="1"
  5627. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5628. <productMenuURL version="1.3.2"
  5629. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5630. />
  5631. <productMenuURL version="1.0.2"
  5632. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5633. />
  5634. </productMenu>
  5635. <productMenu id="quickGuide"
  5636. type="1"
  5637. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  5638. size="199KB" >
  5639. </productMenu>
  5640. <productMenu id="userGuide"
  5641. type="1"
  5642. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5643. size="684KB" >
  5644. </productMenu>
  5645. <productMenu id="connectGuide"
  5646. type="1"
  5647. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5648. size="1.12MB" >
  5649. </productMenu>
  5650. <productID id="5620"
  5651. />
  5652. <productGroupable type="0"
  5653. />
  5654. </product>
  5655. <product id="10U_ARAI"
  5656. name="10U Arai"
  5657. series="10"
  5658. latestVersion="2.0.4"
  5659. show = "1" >
  5660. <productMenu id="protocol"
  5661. type="0">
  5662. </productMenu>
  5663. <productMenu id="sip"
  5664. type="1" >
  5665. <productMenuType version="1.0.2"
  5666. type="0"
  5667. />
  5668. </productMenu>
  5669. <productMenu id="bluetoothIntercom"
  5670. type="1" >
  5671. <productMenuType version="1.0.2"
  5672. type="0"
  5673. />
  5674. </productMenu>
  5675. <productMenu id="phone"
  5676. type="2" >
  5677. </productMenu>
  5678. <productMenu id="fmradio"
  5679. type="3" >
  5680. </productMenu>
  5681. <productMenu id="deviceSetting"
  5682. type="1"
  5683. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5684. <productMenuURL version="1.3.2"
  5685. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5686. />
  5687. <productMenuURL version="1.0.2"
  5688. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5689. />
  5690. </productMenu>
  5691. <productMenu id="quickGuide"
  5692. type="1"
  5693. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  5694. size="689KB" >
  5695. </productMenu>
  5696. <productMenu id="userGuide"
  5697. type="1"
  5698. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5699. size="684KB" >
  5700. </productMenu>
  5701. <productMenu id="connectGuide"
  5702. type="1"
  5703. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5704. size="1.12MB" >
  5705. </productMenu>
  5706. <productID id="5621"
  5707. />
  5708. <productGroupable type="0"
  5709. />
  5710. </product>
  5711. <product id="10Upad"
  5712. name="10Upad"
  5713. series="10"
  5714. latestVersion="2.0.3"
  5715. show = "1" >
  5716. <productMenu id="protocol"
  5717. type="0">
  5718. </productMenu>
  5719. <productMenu id="sip"
  5720. type="1" >
  5721. </productMenu>
  5722. <productMenu id="bluetoothIntercom"
  5723. type="1" >
  5724. </productMenu>
  5725. <productMenu id="phone"
  5726. type="2" >
  5727. </productMenu>
  5728. <productMenu id="fmradio"
  5729. type="3" >
  5730. </productMenu>
  5731. <productMenu id="deviceSetting"
  5732. type="1"
  5733. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  5734. <productMenuURL version="1.0.3"
  5735. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  5736. />
  5737. </productMenu>
  5738. <productMenu id="quickGuide"
  5739. type="1"
  5740. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  5741. size="615KB" >
  5742. </productMenu>
  5743. <productMenu id="userGuide"
  5744. type="1"
  5745. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  5746. size="0.99MB" >
  5747. </productMenu>
  5748. <productID id="6210"
  5749. />
  5750. <productGroupable type="0"
  5751. />
  5752. </product>
  5753. <product id="5S"
  5754. name="5S"
  5755. series="5"
  5756. latestVersion="2.2.1"
  5757. show = "1" >
  5758. <productMenu id="protocol"
  5759. type="3" >
  5760. </productMenu>
  5761. <productMenu id="sip"
  5762. type="1" >
  5763. </productMenu>
  5764. <productMenu id="bluetoothIntercom"
  5765. type="1" >
  5766. </productMenu>
  5767. <productMenu id="phone"
  5768. type="1" >
  5769. </productMenu>
  5770. <productMenu id="fmradio"
  5771. type="0" >
  5772. </productMenu>
  5773. <productMenu id="deviceSetting"
  5774. type="1"
  5775. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  5776. </productMenu>
  5777. <productMenu id="quickGuide"
  5778. type="0"
  5779. url=""
  5780. size="934KB" >
  5781. </productMenu>
  5782. <productMenu id="userGuide"
  5783. type="1"
  5784. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  5785. size="1.14MB" >
  5786. </productMenu>
  5787. <productID id="5590"
  5788. />
  5789. <productGroupable type="0"
  5790. />
  5791. </product>
  5792. <product id="5S"
  5793. name="5S"
  5794. series="5"
  5795. latestVersion="1.2"
  5796. show = "-1" >
  5797. <productMenu id="protocol"
  5798. type="0">
  5799. </productMenu>
  5800. <productMenu id="sip"
  5801. type="1" >
  5802. </productMenu>
  5803. <productMenu id="bluetoothIntercom"
  5804. type="1" >
  5805. </productMenu>
  5806. <productMenu id="phone"
  5807. type="2" >
  5808. </productMenu>
  5809. <productMenu id="fmradio"
  5810. type="0" >
  5811. </productMenu>
  5812. <productMenu id="deviceSetting"
  5813. type="1"
  5814. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  5815. </productMenu>
  5816. <productMenu id="quickGuide"
  5817. type="0"
  5818. url=""
  5819. size="970KB" >
  5820. </productMenu>
  5821. <productMenu id="userGuide"
  5822. type="1"
  5823. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  5824. size="1.26MB" >
  5825. </productMenu>
  5826. <productID id="5534"
  5827. />
  5828. <productGroupable type="0"
  5829. />
  5830. </product>
  5831. <product id="5S"
  5832. name="5S"
  5833. series="5"
  5834. latestVersion="3.0.1"
  5835. show = "-1" >
  5836. <productMenu id="protocol"
  5837. type="0">
  5838. </productMenu>
  5839. <productMenu id="sip"
  5840. type="1" >
  5841. </productMenu>
  5842. <productMenu id="bluetoothIntercom"
  5843. type="1" >
  5844. </productMenu>
  5845. <productMenu id="phone"
  5846. type="2" >
  5847. </productMenu>
  5848. <productMenu id="fmradio"
  5849. type="0" >
  5850. </productMenu>
  5851. <productMenu id="deviceSetting"
  5852. type="1"
  5853. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  5854. </productMenu>
  5855. <productMenu id="quickGuide"
  5856. type="0"
  5857. url=""
  5858. size="970KB" >
  5859. </productMenu>
  5860. <productMenu id="userGuide"
  5861. type="1"
  5862. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  5863. size="1.26MB" >
  5864. </productMenu>
  5865. <productID id="5538"
  5866. />
  5867. <productGroupable type="0"
  5868. />
  5869. </product>
  5870. <product id="3SPLUS"
  5871. name="3S PLUS"
  5872. series="3"
  5873. latestVersion="2.2"
  5874. show = "1" >
  5875. <productMenu id="protocol"
  5876. type="3" >
  5877. </productMenu>
  5878. <productMenu id="sip"
  5879. type="1" >
  5880. </productMenu>
  5881. <productMenu id="bluetoothIntercom"
  5882. type="1" >
  5883. </productMenu>
  5884. <productMenu id="deviceSetting"
  5885. type="1"
  5886. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  5887. <productMenuURL version="2.2.1"
  5888. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  5889. />
  5890. </productMenu>
  5891. <productMenu id="quickGuide"
  5892. type="1"
  5893. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  5894. size="344KB" >
  5895. </productMenu>
  5896. <productMenu id="userGuide"
  5897. type="1"
  5898. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  5899. size="1.14MB" >
  5900. </productMenu>
  5901. <productMenu id="connectGuide"
  5902. type="1"
  5903. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  5904. size="1.12MB" >
  5905. </productMenu>
  5906. <productID id="4023"
  5907. />
  5908. <productGroupable type="0"
  5909. />
  5910. </product>
  5911. <product id="3SPLUS"
  5912. name="3S PLUS"
  5913. series="3"
  5914. latestVersion="1.1"
  5915. show = "-1" >
  5916. <productMenu id="protocol"
  5917. type="0">
  5918. </productMenu>
  5919. <productMenu id="sip"
  5920. type="1" >
  5921. </productMenu>
  5922. <productMenu id="bluetoothIntercom"
  5923. type="1" >
  5924. </productMenu>
  5925. <productMenu id="deviceSetting"
  5926. type="1"
  5927. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  5928. </productMenu>
  5929. <productMenu id="quickGuide"
  5930. type="1"
  5931. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  5932. size="842KB" >
  5933. </productMenu>
  5934. <productMenu id="userGuide"
  5935. type="1"
  5936. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  5937. size="1.02MB" >
  5938. </productMenu>
  5939. <productID id="6320"
  5940. />
  5941. <productGroupable type="0"
  5942. />
  5943. </product>
  5944. <product id="iCon"
  5945. name="iCon"
  5946. series="50"
  5947. latestVersion="1.0.1"
  5948. show = "0" >
  5949. <productMenu id="protocol"
  5950. type="2" >
  5951. </productMenu>
  5952. <productMenu id="alexa"
  5953. type="0" >
  5954. </productMenu>
  5955. <productMenu id="wa"
  5956. type="0" >
  5957. </productMenu>
  5958. <productMenu id="sip"
  5959. type="1" >
  5960. </productMenu>
  5961. <productMenu id="led"
  5962. type="3" >
  5963. </productMenu>
  5964. <productMenu id="meshIntercom"
  5965. type="20" >
  5966. </productMenu>
  5967. <productMenu id="meshIntercom+"
  5968. type="3"
  5969. url="0" >
  5970. <productMenuType version="1.0.9"
  5971. type="2"
  5972. />
  5973. </productMenu>
  5974. <productMenu id="bluetoothIntercom"
  5975. type="1" >
  5976. </productMenu>
  5977. <productMenu id="phone"
  5978. type="1" >
  5979. </productMenu>
  5980. <productMenu id="music"
  5981. type="1" >
  5982. </productMenu>
  5983. <productMenu id="fmradio"
  5984. type="1" >
  5985. </productMenu>
  5986. <productMenu id="deviceSetting"
  5987. type="1"
  5988. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  5989. <productMenuURL version="1.0.9"
  5990. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5991. />
  5992. </productMenu>
  5993. <productMenu id="quickGuide"
  5994. type="1"
  5995. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  5996. size="344KB" >
  5997. </productMenu>
  5998. <productMenu id="userGuide"
  5999. type="1"
  6000. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.0.0_en_220830.pdf"
  6001. size="3.41MB" >
  6002. </productMenu>
  6003. <productMenu id="volume"
  6004. type="11" >
  6005. </productMenu>
  6006. <productMenu id="battery"
  6007. type="1" >
  6008. </productMenu>
  6009. <productID id="3900"
  6010. />
  6011. <productGroupable type="0"
  6012. />
  6013. </product>
  6014. <product id="HD50S"
  6015. name="H-D Audio 50S"
  6016. series="50"
  6017. latestVersion="1.0.1"
  6018. show = "-1" >
  6019. <productMenu id="protocol"
  6020. type="2" >
  6021. </productMenu>
  6022. <productMenu id="alexa"
  6023. type="0" >
  6024. </productMenu>
  6025. <productMenu id="ota"
  6026. type="0"
  6027. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  6028. size="1150234" >
  6029. </productMenu>
  6030. <productMenu id="wa"
  6031. type="1" >
  6032. </productMenu>
  6033. <productMenu id="sip"
  6034. type="1" >
  6035. </productMenu>
  6036. <productMenu id="meshIntercom"
  6037. type="20" >
  6038. </productMenu>
  6039. <productMenu id="bluetoothIntercom"
  6040. type="1" >
  6041. </productMenu>
  6042. <productMenu id="phone"
  6043. type="1" >
  6044. </productMenu>
  6045. <productMenu id="music"
  6046. type="1" >
  6047. </productMenu>
  6048. <productMenu id="fmradio"
  6049. type="1" >
  6050. </productMenu>
  6051. <productMenu id="deviceSetting"
  6052. type="1"
  6053. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  6054. </productMenu>
  6055. <productMenu id="quickGuide"
  6056. type="1"
  6057. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  6058. size="934KB" >
  6059. </productMenu>
  6060. <productMenu id="userGuide"
  6061. type="1"
  6062. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  6063. size="1.14MB" >
  6064. </productMenu>
  6065. <productMenu id="volume"
  6066. type="11" >
  6067. </productMenu>
  6068. <productMenu id="battery"
  6069. type="1" >
  6070. </productMenu>
  6071. <productID id="3156"
  6072. />
  6073. <productGroupable type="0"
  6074. />
  6075. </product>
  6076. <product id="HD50S"
  6077. name="H-D Audio 50S"
  6078. series="50"
  6079. latestVersion="2.0.2"
  6080. show = "0" >
  6081. <productMenu id="protocol"
  6082. type="2" >
  6083. </productMenu>
  6084. <productMenu id="alexa"
  6085. type="0" >
  6086. </productMenu>
  6087. <productMenu id="ota"
  6088. type="0"
  6089. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  6090. size="1150234" >
  6091. </productMenu>
  6092. <productMenu id="wa"
  6093. type="1" >
  6094. </productMenu>
  6095. <productMenu id="sip"
  6096. type="1" >
  6097. </productMenu>
  6098. <productMenu id="meshIntercom"
  6099. type="20" >
  6100. </productMenu>
  6101. <productMenu id="bluetoothIntercom"
  6102. type="1" >
  6103. </productMenu>
  6104. <productMenu id="phone"
  6105. type="1" >
  6106. </productMenu>
  6107. <productMenu id="music"
  6108. type="1" >
  6109. </productMenu>
  6110. <productMenu id="fmradio"
  6111. type="1" >
  6112. </productMenu>
  6113. <productMenu id="deviceSetting"
  6114. type="1"
  6115. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  6116. </productMenu>
  6117. <productMenu id="quickGuide"
  6118. type="1"
  6119. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  6120. size="934KB" >
  6121. </productMenu>
  6122. <productMenu id="userGuide"
  6123. type="1"
  6124. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  6125. size="1.14MB" >
  6126. </productMenu>
  6127. <productMenu id="volume"
  6128. type="11" >
  6129. </productMenu>
  6130. <productMenu id="battery"
  6131. type="1" >
  6132. </productMenu>
  6133. <productID id="3213"
  6134. />
  6135. <productGroupable type="0"
  6136. />
  6137. </product>
  6138. <product id="HD50C"
  6139. name="H-D Audio 50C"
  6140. series="50"
  6141. latestVersion="1.0.1"
  6142. show = "0" >
  6143. <productMenu id="protocol"
  6144. type="2" >
  6145. </productMenu>
  6146. <productMenu id="ota"
  6147. type="0" >
  6148. </productMenu>
  6149. <productMenu id="wa"
  6150. type="1" >
  6151. </productMenu>
  6152. <productMenu id="sip"
  6153. type="1" >
  6154. </productMenu>
  6155. <productMenu id="meshIntercom"
  6156. type="20" >
  6157. </productMenu>
  6158. <productMenu id="bluetoothIntercom"
  6159. type="1" >
  6160. </productMenu>
  6161. <productMenu id="phone"
  6162. type="1" >
  6163. </productMenu>
  6164. <productMenu id="music"
  6165. type="1" >
  6166. </productMenu>
  6167. <productMenu id="fmradio"
  6168. type="1" >
  6169. </productMenu>
  6170. <productMenu id="deviceSetting"
  6171. type="1"
  6172. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  6173. </productMenu>
  6174. <productMenu id="quickGuide"
  6175. type="1"
  6176. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  6177. size="344KB" >
  6178. </productMenu>
  6179. <productMenu id="userGuide"
  6180. type="1"
  6181. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  6182. size="3.41MB" >
  6183. </productMenu>
  6184. <productMenu id="volume"
  6185. type="11" >
  6186. </productMenu>
  6187. <productMenu id="battery"
  6188. type="1" >
  6189. </productMenu>
  6190. <productID id="3240"
  6191. />
  6192. <productGroupable type="0"
  6193. />
  6194. </product>
  6195. <product id="HD50S"
  6196. name="FURY N04"
  6197. series="Helmet"
  6198. latestVersion="1.0"
  6199. show = "0" >
  6200. <productMenu id="protocol"
  6201. type="2" >
  6202. </productMenu>
  6203. <productMenu id="alexa"
  6204. type="0" >
  6205. </productMenu>
  6206. <productMenu id="ota"
  6207. type="0" >
  6208. </productMenu>
  6209. <productMenu id="wa"
  6210. type="0" >
  6211. </productMenu>
  6212. <productMenu id="meshIntercom"
  6213. type="20" >
  6214. </productMenu>
  6215. <productMenu id="meshIntercom+"
  6216. type="3"
  6217. url="0" >
  6218. <productMenuType version="1.0.9"
  6219. type="2"
  6220. />
  6221. </productMenu>
  6222. <productMenu id="phone"
  6223. type="1" >
  6224. </productMenu>
  6225. <productMenu id="music"
  6226. type="1" >
  6227. </productMenu>
  6228. <productMenu id="fmradio"
  6229. type="1" >
  6230. </productMenu>
  6231. <productMenu id="deviceSetting"
  6232. type="1"
  6233. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  6234. <productMenuURL version="1.0.9"
  6235. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  6236. />
  6237. </productMenu>
  6238. <productMenu id="quickGuide"
  6239. type="1"
  6240. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  6241. size="1.12MB" >
  6242. </productMenu>
  6243. <productMenu id="userGuide"
  6244. type="1"
  6245. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  6246. size="2.0MB" >
  6247. </productMenu>
  6248. <productMenu id="volume"
  6249. type="13" >
  6250. </productMenu>
  6251. <productMenu id="battery"
  6252. type="1" >
  6253. </productMenu>
  6254. <productID id="5553"
  6255. />
  6256. <productGroupable type="0"
  6257. />
  6258. </product>
  6259. <product id="XCOM3Pro"
  6260. name="X-COM3 Pro"
  6261. series="50"
  6262. latestVersion="1.1"
  6263. show = "0" >
  6264. <productMenu id="protocol"
  6265. type="2" >
  6266. </productMenu>
  6267. <productMenu id="alexa"
  6268. type="0" >
  6269. </productMenu>
  6270. <productMenu id="ota"
  6271. type="0" >
  6272. </productMenu>
  6273. <productMenu id="wa"
  6274. type="0" >
  6275. </productMenu>
  6276. <productMenu id="sip"
  6277. type="1" >
  6278. </productMenu>
  6279. <productMenu id="meshIntercom"
  6280. type="30" >
  6281. </productMenu>
  6282. <productMenu id="meshIntercom+"
  6283. type="3"
  6284. url="2" >
  6285. <productMenuType version="1.1"
  6286. type="2"
  6287. />
  6288. </productMenu>
  6289. <productMenu id="waveIntercom"
  6290. type="1" >
  6291. <productMenuType version="1.1"
  6292. type="0"
  6293. />
  6294. </productMenu>
  6295. <productMenu id="bluetoothIntercom"
  6296. type="1" >
  6297. </productMenu>
  6298. <productMenu id="phone"
  6299. type="1" >
  6300. </productMenu>
  6301. <productMenu id="music"
  6302. type="1" >
  6303. </productMenu>
  6304. <productMenu id="fmradio"
  6305. type="1" >
  6306. </productMenu>
  6307. <productMenu id="deviceSetting"
  6308. type="1"
  6309. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  6310. <productMenuURL version="1.1"
  6311. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  6312. />
  6313. </productMenu>
  6314. <productMenu id="quickGuide"
  6315. type="0"
  6316. url=""
  6317. size="344KB" >
  6318. </productMenu>
  6319. <productMenu id="userGuide"
  6320. type="1"
  6321. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  6322. size="3.41MB" >
  6323. </productMenu>
  6324. <productMenu id="volume"
  6325. type="11" >
  6326. </productMenu>
  6327. <productMenu id="battery"
  6328. type="1" >
  6329. </productMenu>
  6330. <productID id="321A"
  6331. />
  6332. <productGroupable type="0"
  6333. />
  6334. </product>
  6335. <product id="XCOM3"
  6336. name="X-COM3"
  6337. series="20"
  6338. latestVersion="1.0"
  6339. show = "0" >
  6340. <productMenu id="protocol"
  6341. type="2" >
  6342. </productMenu>
  6343. <productMenu id="sip"
  6344. type="1" >
  6345. </productMenu>
  6346. <productMenu id="bluetoothIntercom"
  6347. type="1" >
  6348. </productMenu>
  6349. <productMenu id="phone"
  6350. type="1" >
  6351. </productMenu>
  6352. <productMenu id="music"
  6353. type="1" >
  6354. </productMenu>
  6355. <productMenu id="fmradio"
  6356. type="1" >
  6357. </productMenu>
  6358. <productMenu id="deviceSetting"
  6359. type="1"
  6360. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  6361. </productMenu>
  6362. <productMenu id="quickGuide"
  6363. type="0"
  6364. url=""
  6365. size="934KB" >
  6366. </productMenu>
  6367. <productMenu id="userGuide"
  6368. type="1"
  6369. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  6370. size="1.14MB" >
  6371. </productMenu>
  6372. <productMenu id="volume"
  6373. type="15" >
  6374. </productMenu>
  6375. <productID id="3410"
  6376. />
  6377. <productGroupable type="0"
  6378. />
  6379. </product>
  6380. <product id="X-COM2"
  6381. name="X-COM2"
  6382. series="20"
  6383. latestVersion="1.0.5"
  6384. show = "0" >
  6385. <productMenu id="protocol"
  6386. type="0">
  6387. </productMenu>
  6388. <productMenu id="sip"
  6389. type="1" >
  6390. </productMenu>
  6391. <productMenu id="bluetoothIntercom"
  6392. type="1" >
  6393. </productMenu>
  6394. <productMenu id="intercomSetting"
  6395. type="1" >
  6396. </productMenu>
  6397. <productMenu id="phone"
  6398. type="2" >
  6399. </productMenu>
  6400. <productMenu id="fmradio"
  6401. type="3" >
  6402. </productMenu>
  6403. <productMenu id="deviceSetting"
  6404. type="1"
  6405. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6406. </productMenu>
  6407. <productMenu id="quickGuide"
  6408. type="1"
  6409. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  6410. size="796KB" >
  6411. </productMenu>
  6412. <productMenu id="userGuide"
  6413. type="1"
  6414. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  6415. size="1.90MB" >
  6416. </productMenu>
  6417. <productID id="2030"
  6418. />
  6419. <productGroupable type="1"
  6420. />
  6421. </product>
  6422. <product id="AVAABC"
  6423. name="AVA ABC"
  6424. series="SPIDER"
  6425. latestVersion="1.0"
  6426. show = "0" >
  6427. <productMenu id="protocol"
  6428. type="2" >
  6429. </productMenu>
  6430. <productMenu id="alexa"
  6431. type="0" >
  6432. </productMenu>
  6433. <productMenu id="ota"
  6434. type="0" >
  6435. </productMenu>
  6436. <productMenu id="wa"
  6437. type="0" >
  6438. </productMenu>
  6439. <productMenu id="meshIntercom"
  6440. type="20" >
  6441. </productMenu>
  6442. <productMenu id="phone"
  6443. type="1" >
  6444. </productMenu>
  6445. <productMenu id="music"
  6446. type="1" >
  6447. </productMenu>
  6448. <productMenu id="musicSharing"
  6449. type="0" >
  6450. </productMenu>
  6451. <productMenu id="deviceSetting"
  6452. type="1"
  6453. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml" >
  6454. </productMenu>
  6455. <productMenu id="quickGuide"
  6456. type="1"
  6457. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  6458. size="1.12MB" >
  6459. </productMenu>
  6460. <productMenu id="userGuide"
  6461. type="1"
  6462. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  6463. size="2.0MB" >
  6464. </productMenu>
  6465. <productMenu id="volume"
  6466. type="12" >
  6467. </productMenu>
  6468. <productMenu id="battery"
  6469. type="1" >
  6470. </productMenu>
  6471. <productID id="6808"
  6472. />
  6473. <productGroupable type="0"
  6474. />
  6475. </product>
  6476. <product id="Triumph_50S"
  6477. name="Triumph 50S"
  6478. series="50"
  6479. latestVersion="1.5"
  6480. show = "0" >
  6481. <productMenu id="protocol"
  6482. type="2" >
  6483. </productMenu>
  6484. <productMenu id="alexa"
  6485. type="0" >
  6486. </productMenu>
  6487. <productMenu id="ota"
  6488. type="0"
  6489. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  6490. size="1150234" >
  6491. </productMenu>
  6492. <productMenu id="wa"
  6493. type="1" >
  6494. </productMenu>
  6495. <productMenu id="sip"
  6496. type="1" >
  6497. </productMenu>
  6498. <productMenu id="meshIntercom"
  6499. type="20" >
  6500. </productMenu>
  6501. <productMenu id="bluetoothIntercom"
  6502. type="1" >
  6503. </productMenu>
  6504. <productMenu id="meshIntercom+"
  6505. type="3"
  6506. url="2" >
  6507. <productMenuType version="1.2.9"
  6508. type="2"
  6509. />
  6510. <productMenuURL version="1.2.9"
  6511. url="0"
  6512. />
  6513. </productMenu>
  6514. <productMenu id="waveIntercom"
  6515. type="1" >
  6516. <productMenuType version="1.2.9"
  6517. type="0"
  6518. />
  6519. </productMenu>
  6520. <productMenu id="phone"
  6521. type="1" >
  6522. </productMenu>
  6523. <productMenu id="music"
  6524. type="1" >
  6525. </productMenu>
  6526. <productMenu id="fmradio"
  6527. type="1" >
  6528. </productMenu>
  6529. <productMenu id="deviceSetting"
  6530. type="1"
  6531. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  6532. <productMenuURL version="1.2.9"
  6533. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  6534. />
  6535. <productMenuURL version="1.0"
  6536. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  6537. />
  6538. </productMenu>
  6539. <productMenu id="quickGuide"
  6540. type="1"
  6541. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  6542. size="934KB" >
  6543. </productMenu>
  6544. <productMenu id="userGuide"
  6545. type="1"
  6546. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  6547. size="1.14MB" >
  6548. </productMenu>
  6549. <productMenu id="volume"
  6550. type="11" >
  6551. </productMenu>
  6552. <productMenu id="battery"
  6553. type="1" >
  6554. </productMenu>
  6555. <productID id="3264"
  6556. />
  6557. <productGroupable type="0"
  6558. />
  6559. </product>
  6560. <product id="RE50S"
  6561. name="RE 50S"
  6562. series="50"
  6563. latestVersion="2.7"
  6564. show = "0" >
  6565. <productMenu id="protocol"
  6566. type="2" >
  6567. </productMenu>
  6568. <productMenu id="alexa"
  6569. type="0" >
  6570. </productMenu>
  6571. <productMenu id="ota"
  6572. type="0"
  6573. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  6574. size="1150234" >
  6575. </productMenu>
  6576. <productMenu id="wa"
  6577. type="1" >
  6578. </productMenu>
  6579. <productMenu id="sip"
  6580. type="1" >
  6581. </productMenu>
  6582. <productMenu id="meshIntercom"
  6583. type="30" >
  6584. </productMenu>
  6585. <productMenu id="meshIntercom+"
  6586. type="3"
  6587. url="2" >
  6588. <productMenuType version="2.5"
  6589. type="2"
  6590. />
  6591. </productMenu>
  6592. <productMenu id="waveIntercom"
  6593. type="1" >
  6594. <productMenuType version="2.5"
  6595. type="0"
  6596. />
  6597. </productMenu>
  6598. <productMenu id="bluetoothIntercom"
  6599. type="1" >
  6600. </productMenu>
  6601. <productMenu id="phone"
  6602. type="1" >
  6603. </productMenu>
  6604. <productMenu id="music"
  6605. type="1" >
  6606. </productMenu>
  6607. <productMenu id="fmradio"
  6608. type="1" >
  6609. </productMenu>
  6610. <productMenu id="deviceSetting"
  6611. type="1"
  6612. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  6613. <productMenuURL version="2.5"
  6614. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  6615. />
  6616. </productMenu>
  6617. <productMenu id="quickGuide"
  6618. type="1"
  6619. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  6620. size="934KB" >
  6621. </productMenu>
  6622. <productMenu id="userGuide"
  6623. type="1"
  6624. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  6625. size="1.14MB" >
  6626. </productMenu>
  6627. <productMenu id="videoGuide"
  6628. type="0"
  6629. url=""
  6630. size="3.41MB" >
  6631. </productMenu>
  6632. <productMenu id="volume"
  6633. type="11" >
  6634. </productMenu>
  6635. <productMenu id="battery"
  6636. type="1" >
  6637. </productMenu>
  6638. <productID id="321C"
  6639. />
  6640. <productGroupable type="0"
  6641. />
  6642. </product>
  6643. <product id="BMW_HELMET_II_U1"
  6644. name="BMW HELMET II U1"
  6645. series="50"
  6646. latestVersion="1.0"
  6647. show = "0" >
  6648. <productMenu id="protocol"
  6649. type="2" >
  6650. </productMenu>
  6651. <productMenu id="alexa"
  6652. type="0" >
  6653. </productMenu>
  6654. <productMenu id="sip"
  6655. type="1" >
  6656. </productMenu>
  6657. <productMenu id="meshIntercom"
  6658. type="20" >
  6659. </productMenu>
  6660. <productMenu id="bluetoothIntercom"
  6661. type="1" >
  6662. </productMenu>
  6663. <productMenu id="bluetoothIntercom2"
  6664. type="1" >
  6665. </productMenu>
  6666. <productMenu id="phone"
  6667. type="1" >
  6668. </productMenu>
  6669. <productMenu id="music"
  6670. type="1" >
  6671. </productMenu>
  6672. <productMenu id="fmradio"
  6673. type="1" >
  6674. </productMenu>
  6675. <productMenu id="deviceSetting"
  6676. type="1"
  6677. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  6678. </productMenu>
  6679. <productMenu id="quickGuide"
  6680. type="1"
  6681. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  6682. size="934KB" >
  6683. </productMenu>
  6684. <productMenu id="userGuide"
  6685. type="1"
  6686. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  6687. size="1.14MB" >
  6688. </productMenu>
  6689. <productMenu id="volume"
  6690. type="11" >
  6691. </productMenu>
  6692. <productMenu id="battery"
  6693. type="1" >
  6694. </productMenu>
  6695. <productID id="3260"
  6696. />
  6697. <productGroupable type="0"
  6698. />
  6699. </product>
  6700. <product id="OUTRUSHR"
  6701. name="CX935"
  6702. series="Helmet"
  6703. latestVersion="1.1.3"
  6704. show = "-1" >
  6705. <productMenu id="protocol"
  6706. type="0">
  6707. </productMenu>
  6708. <productMenu id="sip"
  6709. type="1" >
  6710. </productMenu>
  6711. <productMenu id="bluetoothIntercom"
  6712. type="1" >
  6713. </productMenu>
  6714. <productMenu id="phone"
  6715. type="2" >
  6716. </productMenu>
  6717. <productMenu id="fmradio"
  6718. type="3" >
  6719. </productMenu>
  6720. <productMenu id="deviceSetting"
  6721. type="1"
  6722. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6723. </productMenu>
  6724. <productMenu id="userGuide"
  6725. type="1"
  6726. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6727. size="660KB" >
  6728. </productMenu>
  6729. <productID id="5436"
  6730. />
  6731. <productGroupable type="0"
  6732. />
  6733. </product>
  6734. <product id="LSE_01"
  6735. name="LSE-01"
  6736. series="SF"
  6737. latestVersion="1.2.3"
  6738. show = "0" >
  6739. <productMenu id="protocol"
  6740. type="1"
  6741. url="3">
  6742. </productMenu>
  6743. <productMenu id="sip"
  6744. type="1" >
  6745. </productMenu>
  6746. <productMenu id="bluetoothIntercom"
  6747. type="1" >
  6748. </productMenu>
  6749. <productMenu id="phone"
  6750. type="1" >
  6751. </productMenu>
  6752. <productMenu id="music"
  6753. type="1" >
  6754. </productMenu>
  6755. <productMenu id="fmradio"
  6756. type="1" >
  6757. </productMenu>
  6758. <productMenu id="deviceSetting"
  6759. type="1"
  6760. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  6761. <productMenuURL version="1.1"
  6762. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  6763. />
  6764. <productMenuURL version="1.0"
  6765. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  6766. />
  6767. </productMenu>
  6768. <productMenu id="quickGuide"
  6769. type="1"
  6770. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  6771. size="607KB" >
  6772. </productMenu>
  6773. <productMenu id="userGuide"
  6774. type="1"
  6775. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  6776. size="1.91MB" >
  6777. </productMenu>
  6778. <productMenu id="volume"
  6779. type="4" >
  6780. </productMenu>
  6781. <productID id="5416"
  6782. />
  6783. <productGroupable type="0"
  6784. />
  6785. </product>
  6786. <product id="AGV_ARK"
  6787. name="AGV ARK"
  6788. series="SF"
  6789. latestVersion="1.0.3"
  6790. show = "0" >
  6791. <productMenu id="protocol"
  6792. type="1"
  6793. url="3">
  6794. </productMenu>
  6795. <productMenu id="sip"
  6796. type="1" >
  6797. </productMenu>
  6798. <productMenu id="bluetoothIntercom"
  6799. type="1" >
  6800. </productMenu>
  6801. <productMenu id="phone"
  6802. type="1" >
  6803. </productMenu>
  6804. <productMenu id="music"
  6805. type="1" >
  6806. </productMenu>
  6807. <productMenu id="fmradio"
  6808. type="1" >
  6809. </productMenu>
  6810. <productMenu id="deviceSetting"
  6811. type="1"
  6812. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  6813. </productMenu>
  6814. <productMenu id="quickGuide"
  6815. type="1"
  6816. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  6817. size="607KB" >
  6818. </productMenu>
  6819. <productMenu id="userGuide"
  6820. type="1"
  6821. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  6822. size="1.91MB" >
  6823. </productMenu>
  6824. <productMenu id="volume"
  6825. type="4" >
  6826. </productMenu>
  6827. <productID id="5420"
  6828. />
  6829. <productGroupable type="0"
  6830. />
  6831. </product>
  6832. <product id="KLIM_KRIOS"
  6833. name="KLIM Krios"
  6834. series="10"
  6835. latestVersion="1.1.2"
  6836. show = "0" >
  6837. <productMenu id="protocol"
  6838. type="0">
  6839. </productMenu>
  6840. <productMenu id="sip"
  6841. type="1" >
  6842. </productMenu>
  6843. <productMenu id="bluetoothIntercom"
  6844. type="1" >
  6845. </productMenu>
  6846. <productMenu id="phone"
  6847. type="2" >
  6848. </productMenu>
  6849. <productMenu id="fmradio"
  6850. type="3" >
  6851. </productMenu>
  6852. <productMenu id="deviceSetting"
  6853. type="1"
  6854. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  6855. <productMenuURL version="1.0"
  6856. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  6857. />
  6858. </productMenu>
  6859. <productMenu id="quickGuide"
  6860. type="1"
  6861. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  6862. size="649KB" >
  6863. </productMenu>
  6864. <productMenu id="userGuide"
  6865. type="1"
  6866. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  6867. size="1.43MB" >
  6868. </productMenu>
  6869. <productID id="5910"
  6870. />
  6871. <productGroupable type="0"
  6872. />
  6873. </product>
  6874. <product id="POLARIS_SLINGSHOT"
  6875. name="Polaris Slingshot"
  6876. series="10"
  6877. latestVersion="1.1.2"
  6878. show = "0" >
  6879. <productMenu id="protocol"
  6880. type="0">
  6881. </productMenu>
  6882. <productMenu id="sip"
  6883. type="1" >
  6884. </productMenu>
  6885. <productMenu id="bluetoothIntercom"
  6886. type="1" >
  6887. </productMenu>
  6888. <productMenu id="phone"
  6889. type="2" >
  6890. </productMenu>
  6891. <productMenu id="fmradio"
  6892. type="3" >
  6893. </productMenu>
  6894. <productMenu id="deviceSetting"
  6895. type="1"
  6896. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  6897. <productMenuURL version="1.0"
  6898. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  6899. />
  6900. </productMenu>
  6901. <productMenu id="quickGuide"
  6902. type="1"
  6903. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  6904. size="689KB" >
  6905. </productMenu>
  6906. <productMenu id="userGuide"
  6907. type="1"
  6908. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  6909. size="1.43MB" >
  6910. </productMenu>
  6911. <productID id="5920"
  6912. />
  6913. <productGroupable type="0"
  6914. />
  6915. </product>
  6916. <product id="DWO6"
  6917. name="SEDICI DWO6-PRO"
  6918. series="10"
  6919. latestVersion="1.0.2"
  6920. show = "0" >
  6921. <productMenu id="protocol"
  6922. type="0">
  6923. </productMenu>
  6924. <productMenu id="sip"
  6925. type="1" >
  6926. </productMenu>
  6927. <productMenu id="bluetoothIntercom"
  6928. type="1" >
  6929. </productMenu>
  6930. <productMenu id="phone"
  6931. type="2" >
  6932. </productMenu>
  6933. <productMenu id="fmradio"
  6934. type="3" >
  6935. </productMenu>
  6936. <productMenu id="deviceSetting"
  6937. type="1"
  6938. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6939. </productMenu>
  6940. <productMenu id="quickGuide"
  6941. type="1"
  6942. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  6943. size="529KB" >
  6944. </productMenu>
  6945. <productMenu id="userGuide"
  6946. type="1"
  6947. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  6948. size="4.09MB" >
  6949. </productMenu>
  6950. <productID id="6112"
  6951. />
  6952. <productGroupable type="0"
  6953. />
  6954. </product>
  6955. <product id="DWO6A"
  6956. name="SEDICI DWO-6"
  6957. series="10"
  6958. latestVersion="1.0.2"
  6959. show = "0" >
  6960. <productMenu id="protocol"
  6961. type="0">
  6962. </productMenu>
  6963. <productMenu id="sip"
  6964. type="1" >
  6965. </productMenu>
  6966. <productMenu id="bluetoothIntercom"
  6967. type="1" >
  6968. </productMenu>
  6969. <productMenu id="phone"
  6970. type="2" >
  6971. </productMenu>
  6972. <productMenu id="fmradio"
  6973. type="3" >
  6974. </productMenu>
  6975. <productMenu id="deviceSetting"
  6976. type="1"
  6977. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  6978. </productMenu>
  6979. <productMenu id="quickGuide"
  6980. type="1"
  6981. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  6982. size="522KB" >
  6983. </productMenu>
  6984. <productMenu id="userGuide"
  6985. type="1"
  6986. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  6987. size="2.71MB" >
  6988. </productMenu>
  6989. <productID id="6114"
  6990. />
  6991. <productGroupable type="0"
  6992. />
  6993. </product>
  6994. <product id="3SPLUS"
  6995. name="ZILL"
  6996. series="3"
  6997. latestVersion="1.0.4"
  6998. show = "0" >
  6999. <productMenu id="protocol"
  7000. type="0">
  7001. </productMenu>
  7002. <productMenu id="sip"
  7003. type="1" >
  7004. </productMenu>
  7005. <productMenu id="bluetoothIntercom"
  7006. type="1" >
  7007. </productMenu>
  7008. <productMenu id="deviceSetting"
  7009. type="1"
  7010. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  7011. </productMenu>
  7012. <productMenu id="quickGuide"
  7013. type="1"
  7014. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  7015. size="842KB" >
  7016. </productMenu>
  7017. <productMenu id="userGuide"
  7018. type="1"
  7019. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  7020. size="1.02MB" >
  7021. </productMenu>
  7022. <productID id="6335"
  7023. />
  7024. <productGroupable type="0"
  7025. />
  7026. </product>
  7027. <product id="HD50S"
  7028. name="Boom! Audio 30K"
  7029. series="30"
  7030. latestVersion="3.4"
  7031. show = "0" >
  7032. <productMenu id="protocol"
  7033. type="1"
  7034. url="0">
  7035. </productMenu>
  7036. <productMenu id="wa"
  7037. type="0" >
  7038. </productMenu>
  7039. <productMenu id="sip"
  7040. type="1" >
  7041. </productMenu>
  7042. <productMenu id="meshIntercom"
  7043. type="20" >
  7044. <productMenuType version="2.9.9"
  7045. type="10"
  7046. />
  7047. </productMenu>
  7048. <productMenu id="bluetoothIntercom"
  7049. type="1" >
  7050. </productMenu>
  7051. <productMenu id="phone"
  7052. type="1" >
  7053. </productMenu>
  7054. <productMenu id="music"
  7055. type="1" >
  7056. </productMenu>
  7057. <productMenu id="fmradio"
  7058. type="1" >
  7059. </productMenu>
  7060. <productMenu id="deviceSetting"
  7061. type="1"
  7062. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  7063. <productMenuURL version="3.2"
  7064. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  7065. />
  7066. <productMenuURL version="3.0"
  7067. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  7068. />
  7069. <productMenuURL version="2.2"
  7070. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  7071. />
  7072. </productMenu>
  7073. <productMenu id="quickGuide"
  7074. type="1"
  7075. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  7076. size="1.06MB" >
  7077. </productMenu>
  7078. <productMenu id="userGuide"
  7079. type="1"
  7080. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  7081. size="3.15MB" >
  7082. </productMenu>
  7083. <productMenu id="volume"
  7084. type="1" >
  7085. </productMenu>
  7086. <productID id="3112"
  7087. />
  7088. <productGroupable type="0"
  7089. />
  7090. </product>
  7091. <product id="HD50S"
  7092. name="Boom! Audio N02"
  7093. series="30"
  7094. latestVersion="3.1"
  7095. show = "0" >
  7096. <productMenu id="protocol"
  7097. type="1"
  7098. url="0">
  7099. </productMenu>
  7100. <productMenu id="wa"
  7101. type="2" >
  7102. </productMenu>
  7103. <productMenu id="sip"
  7104. type="1" >
  7105. </productMenu>
  7106. <productMenu id="meshIntercom"
  7107. type="20" >
  7108. <productMenuType version="2.9.9"
  7109. type="10"
  7110. />
  7111. </productMenu>
  7112. <productMenu id="bluetoothIntercom"
  7113. type="1" >
  7114. </productMenu>
  7115. <productMenu id="phone"
  7116. type="1" >
  7117. </productMenu>
  7118. <productMenu id="music"
  7119. type="1" >
  7120. </productMenu>
  7121. <productMenu id="fmradio"
  7122. type="1" >
  7123. </productMenu>
  7124. <productMenu id="deviceSetting"
  7125. type="1"
  7126. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  7127. <productMenuURL version="2.2"
  7128. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  7129. />
  7130. </productMenu>
  7131. <productMenu id="quickGuide"
  7132. type="1"
  7133. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  7134. size="1.06MB" >
  7135. </productMenu>
  7136. <productMenu id="userGuide"
  7137. type="1"
  7138. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  7139. size="3.15MB" >
  7140. </productMenu>
  7141. <productMenu id="volume"
  7142. type="2" >
  7143. </productMenu>
  7144. <productID id="3114"
  7145. />
  7146. <productGroupable type="0"
  7147. />
  7148. </product>
  7149. <product id="HD50S"
  7150. name="Boom Audio 20S"
  7151. series="50"
  7152. latestVersion="2.5.2"
  7153. show = "0" >
  7154. <productMenu id="protocol"
  7155. type="0">
  7156. </productMenu>
  7157. <productMenu id="sip"
  7158. type="1" >
  7159. <productMenuType version="1.0"
  7160. type="0"
  7161. />
  7162. </productMenu>
  7163. <productMenu id="bluetoothIntercom"
  7164. type="1" >
  7165. <productMenuType version="1.0"
  7166. type="0"
  7167. />
  7168. </productMenu>
  7169. <productMenu id="intercomSetting"
  7170. type="1" >
  7171. </productMenu>
  7172. <productMenu id="phone"
  7173. type="2" >
  7174. </productMenu>
  7175. <productMenu id="fmradio"
  7176. type="3" >
  7177. </productMenu>
  7178. <productMenu id="deviceSetting"
  7179. type="1"
  7180. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  7181. <productMenuURL version="2.4"
  7182. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  7183. />
  7184. <productMenuURL version="1.5"
  7185. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  7186. />
  7187. <productMenuURL version="1.4.1"
  7188. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  7189. />
  7190. <productMenuURL version="1.1"
  7191. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  7192. />
  7193. <productMenuURL version="1.0"
  7194. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  7195. />
  7196. </productMenu>
  7197. <productMenu id="quickGuide"
  7198. type="1"
  7199. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  7200. size="264KB" >
  7201. </productMenu>
  7202. <productMenu id="userGuide"
  7203. type="1"
  7204. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  7205. size="3.09MB" >
  7206. </productMenu>
  7207. <productID id="4210"
  7208. />
  7209. <productProductKey key="11"
  7210. />
  7211. <productID id="4230"
  7212. />
  7213. <productProductKey key="11"
  7214. />
  7215. <productGroupable type="1"
  7216. />
  7217. </product>
  7218. <product id="HD50S"
  7219. name="Boom Audio 20S EVO"
  7220. series="50"
  7221. latestVersion="2.5.2"
  7222. show = "0" >
  7223. <productMenu id="protocol"
  7224. type="0">
  7225. </productMenu>
  7226. <productMenu id="sip"
  7227. type="1" >
  7228. <productMenuType version="1.0"
  7229. type="0"
  7230. />
  7231. </productMenu>
  7232. <productMenu id="bluetoothIntercom"
  7233. type="1" >
  7234. <productMenuType version="1.0"
  7235. type="0"
  7236. />
  7237. </productMenu>
  7238. <productMenu id="intercomSetting"
  7239. type="1" >
  7240. </productMenu>
  7241. <productMenu id="phone"
  7242. type="2" >
  7243. </productMenu>
  7244. <productMenu id="fmradio"
  7245. type="3" >
  7246. </productMenu>
  7247. <productMenu id="deviceSetting"
  7248. type="1"
  7249. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  7250. <productMenuURL version="2.4"
  7251. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  7252. />
  7253. <productMenuURL version="1.5"
  7254. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  7255. />
  7256. <productMenuURL version="1.4.1"
  7257. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  7258. />
  7259. <productMenuURL version="1.1"
  7260. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  7261. />
  7262. <productMenuURL version="1.0"
  7263. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  7264. />
  7265. </productMenu>
  7266. <productMenu id="quickGuide"
  7267. type="1"
  7268. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  7269. size="321KB" >
  7270. </productMenu>
  7271. <productMenu id="userGuide"
  7272. type="1"
  7273. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  7274. size="2.46MB" >
  7275. </productMenu>
  7276. <productID id="4230"
  7277. />
  7278. <productProductKey key="27"
  7279. />
  7280. <productGroupable type="1"
  7281. />
  7282. </product>
  7283. <product id="HD50S"
  7284. name="Boom! Audio 10S"
  7285. series="50"
  7286. latestVersion="1.1.3"
  7287. show = "0" >
  7288. <productMenu id="protocol"
  7289. type="0">
  7290. </productMenu>
  7291. <productMenu id="sip"
  7292. type="1" >
  7293. </productMenu>
  7294. <productMenu id="bluetoothIntercom"
  7295. type="1" >
  7296. </productMenu>
  7297. <productMenu id="phone"
  7298. type="2" >
  7299. </productMenu>
  7300. <productMenu id="fmradio"
  7301. type="3" >
  7302. </productMenu>
  7303. <productMenu id="deviceSetting"
  7304. type="1"
  7305. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  7306. </productMenu>
  7307. <productMenu id="quickGuide"
  7308. type="1"
  7309. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  7310. size="538KB" >
  7311. </productMenu>
  7312. <productMenu id="userGuide"
  7313. type="1"
  7314. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  7315. size="1.55MB" >
  7316. </productMenu>
  7317. <productID id="5532"
  7318. />
  7319. <productGroupable type="0"
  7320. />
  7321. </product>
  7322. <product id="HD50S"
  7323. name="Boom! Audio N01 10R"
  7324. series="50"
  7325. latestVersion="1.1.3"
  7326. show = "0" >
  7327. <productMenu id="protocol"
  7328. type="0">
  7329. </productMenu>
  7330. <productMenu id="sip"
  7331. type="1" >
  7332. </productMenu>
  7333. <productMenu id="bluetoothIntercom"
  7334. type="1" >
  7335. </productMenu>
  7336. <productMenu id="phone"
  7337. type="2" >
  7338. </productMenu>
  7339. <productMenu id="fmradio"
  7340. type="3" >
  7341. </productMenu>
  7342. <productMenu id="deviceSetting"
  7343. type="1"
  7344. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7345. </productMenu>
  7346. <productMenu id="quickGuide"
  7347. type="1"
  7348. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  7349. size="766KB" >
  7350. </productMenu>
  7351. <productMenu id="userGuide"
  7352. type="1"
  7353. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  7354. size="1.45MB" >
  7355. </productMenu>
  7356. <productID id="5522"
  7357. />
  7358. <productGroupable type="0"
  7359. />
  7360. </product>
  7361. <product id="HD50S"
  7362. name="OUTRUSH-R N03"
  7363. series="50"
  7364. latestVersion="1.2.1"
  7365. show = "-1" >
  7366. <productMenu id="protocol"
  7367. type="0">
  7368. </productMenu>
  7369. <productMenu id="sip"
  7370. type="1" >
  7371. </productMenu>
  7372. <productMenu id="bluetoothIntercom"
  7373. type="1" >
  7374. </productMenu>
  7375. <productMenu id="phone"
  7376. type="2" >
  7377. </productMenu>
  7378. <productMenu id="fmradio"
  7379. type="3" >
  7380. </productMenu>
  7381. <productMenu id="deviceSetting"
  7382. type="1"
  7383. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  7384. </productMenu>
  7385. <productMenu id="userGuide"
  7386. type="1"
  7387. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  7388. size="660KB" >
  7389. </productMenu>
  7390. <productID id="5434"
  7391. />
  7392. <productGroupable type="0"
  7393. />
  7394. </product>
  7395. <product id="HD50S"
  7396. name="OUTRUSH-R N03"
  7397. series="50"
  7398. latestVersion="2.0"
  7399. show = "0" >
  7400. <productMenu id="protocol"
  7401. type="3" >
  7402. </productMenu>
  7403. <productMenu id="sip"
  7404. type="1" >
  7405. </productMenu>
  7406. <productMenu id="bluetoothIntercom"
  7407. type="1" >
  7408. </productMenu>
  7409. <productMenu id="phone"
  7410. type="1" >
  7411. </productMenu>
  7412. <productMenu id="fmradio"
  7413. type="1" >
  7414. </productMenu>
  7415. <productMenu id="deviceSetting"
  7416. type="1"
  7417. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  7418. </productMenu>
  7419. <productMenu id="userGuide"
  7420. type="1"
  7421. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  7422. size="1.14MB" >
  7423. </productMenu>
  7424. <productID id="5441"
  7425. />
  7426. <productGroupable type="0"
  7427. />
  7428. </product>
  7429. <product id="5R"
  7430. name="5R"
  7431. series="5"
  7432. latestVersion="1.0.1"
  7433. show = "1" >
  7434. <productMenu id="protocol"
  7435. type="3" >
  7436. </productMenu>
  7437. <productMenu id="sip"
  7438. type="1" >
  7439. </productMenu>
  7440. <productMenu id="bluetoothIntercom"
  7441. type="1" >
  7442. </productMenu>
  7443. <productMenu id="phone"
  7444. type="1" >
  7445. </productMenu>
  7446. <productMenu id="fmradio"
  7447. type="1" >
  7448. </productMenu>
  7449. <productMenu id="deviceSetting"
  7450. type="1"
  7451. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  7452. </productMenu>
  7453. <productMenu id="quickGuide"
  7454. type="0"
  7455. url=""
  7456. size="934KB" >
  7457. </productMenu>
  7458. <productMenu id="userGuide"
  7459. type="1"
  7460. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  7461. size="1.14MB" >
  7462. </productMenu>
  7463. <productMenu id="connectGuide"
  7464. type="1"
  7465. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  7466. size="1.12MB" >
  7467. </productMenu>
  7468. <productID id="5591"
  7469. />
  7470. <productGroupable type="0"
  7471. />
  7472. </product>
  7473. <product id="5R"
  7474. name="5R LITE"
  7475. series="5"
  7476. latestVersion="1.0.1"
  7477. show = "1" >
  7478. <productMenu id="protocol"
  7479. type="3" >
  7480. </productMenu>
  7481. <productMenu id="sip"
  7482. type="1" >
  7483. </productMenu>
  7484. <productMenu id="bluetoothIntercom"
  7485. type="1" >
  7486. </productMenu>
  7487. <productMenu id="phone"
  7488. type="1" >
  7489. </productMenu>
  7490. <productMenu id="fmradio"
  7491. type="1" >
  7492. </productMenu>
  7493. <productMenu id="deviceSetting"
  7494. type="1"
  7495. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  7496. </productMenu>
  7497. <productMenu id="quickGuide"
  7498. type="0"
  7499. url=""
  7500. size="934KB" >
  7501. </productMenu>
  7502. <productMenu id="userGuide"
  7503. type="1"
  7504. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  7505. size="1.14MB" >
  7506. </productMenu>
  7507. <productMenu id="connectGuide"
  7508. type="1"
  7509. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  7510. size="1.12MB" >
  7511. </productMenu>
  7512. <productID id="5592"
  7513. />
  7514. <productGroupable type="0"
  7515. />
  7516. </product>
  7517. <product id="50RLE"
  7518. name="50R LE"
  7519. series="50"
  7520. latestVersion="1.1"
  7521. show = "0" >
  7522. <productMenu id="protocol"
  7523. type="2" >
  7524. </productMenu>
  7525. <productMenu id="alexa"
  7526. type="0" >
  7527. </productMenu>
  7528. <productMenu id="sip"
  7529. type="1" >
  7530. </productMenu>
  7531. <productMenu id="meshIntercom"
  7532. type="30" >
  7533. </productMenu>
  7534. <productMenu id="meshIntercom+"
  7535. type="3"
  7536. url="2" >
  7537. <productMenuType version="1.0.9"
  7538. type="2"
  7539. />
  7540. </productMenu>
  7541. <productMenu id="waveIntercom"
  7542. type="1" >
  7543. <productMenuType version="1.0.9"
  7544. type="0"
  7545. />
  7546. </productMenu>
  7547. <productMenu id="bluetoothIntercom"
  7548. type="1" >
  7549. </productMenu>
  7550. <productMenu id="phone"
  7551. type="1" >
  7552. </productMenu>
  7553. <productMenu id="music"
  7554. type="1" >
  7555. </productMenu>
  7556. <productMenu id="fmradio"
  7557. type="0" >
  7558. </productMenu>
  7559. <productMenu id="deviceSetting"
  7560. type="1"
  7561. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  7562. <productMenuURL version="1.0.9"
  7563. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  7564. />
  7565. </productMenu>
  7566. <productMenu id="quickGuide"
  7567. type="0"
  7568. url=""
  7569. size="344KB" >
  7570. </productMenu>
  7571. <productMenu id="userGuide"
  7572. type="0"
  7573. url=""
  7574. size="3.41MB" >
  7575. </productMenu>
  7576. <productMenu id="volume"
  7577. type="11" >
  7578. </productMenu>
  7579. <productMenu id="battery"
  7580. type="1" >
  7581. </productMenu>
  7582. <productID id="3223"
  7583. />
  7584. <productGroupable type="0"
  7585. />
  7586. </product>
  7587. <product id="5RLOUIS"
  7588. name="5R LOUIS EDITION"
  7589. series="5"
  7590. latestVersion="1.0"
  7591. show = "-1" >
  7592. <productMenu id="protocol"
  7593. type="3" >
  7594. </productMenu>
  7595. <productMenu id="sip"
  7596. type="1" >
  7597. </productMenu>
  7598. <productMenu id="bluetoothIntercom"
  7599. type="1" >
  7600. </productMenu>
  7601. <productMenu id="phone"
  7602. type="1" >
  7603. </productMenu>
  7604. <productMenu id="fmradio"
  7605. type="1" >
  7606. </productMenu>
  7607. <productMenu id="deviceSetting"
  7608. type="1"
  7609. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  7610. </productMenu>
  7611. <productMenu id="quickGuide"
  7612. type="0"
  7613. url=""
  7614. size="934KB" >
  7615. </productMenu>
  7616. <productMenu id="userGuide"
  7617. type="0"
  7618. url=""
  7619. size="1.14MB" >
  7620. </productMenu>
  7621. <productID id="5597"
  7622. />
  7623. <productGroupable type="0"
  7624. />
  7625. </product>
  7626. <product id="5S"
  7627. name="Ridekont 5S"
  7628. series="5"
  7629. latestVersion="2.3"
  7630. show = "-1" >
  7631. <productMenu id="protocol"
  7632. type="3" >
  7633. </productMenu>
  7634. <productMenu id="sip"
  7635. type="1" >
  7636. </productMenu>
  7637. <productMenu id="bluetoothIntercom"
  7638. type="1" >
  7639. </productMenu>
  7640. <productMenu id="phone"
  7641. type="1" >
  7642. </productMenu>
  7643. <productMenu id="fmradio"
  7644. type="0" >
  7645. </productMenu>
  7646. <productMenu id="deviceSetting"
  7647. type="1"
  7648. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  7649. </productMenu>
  7650. <productMenu id="quickGuide"
  7651. type="0"
  7652. url=""
  7653. size="934KB" >
  7654. </productMenu>
  7655. <productMenu id="userGuide"
  7656. type="1"
  7657. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  7658. size="1.14MB" >
  7659. </productMenu>
  7660. <productID id="5589"
  7661. />
  7662. <productGroupable type="0"
  7663. />
  7664. </product>
  7665. <product id="5R"
  7666. name="Ridekont 5R"
  7667. series="5"
  7668. latestVersion="1.0"
  7669. show = "0" >
  7670. <productMenu id="protocol"
  7671. type="3" >
  7672. </productMenu>
  7673. <productMenu id="sip"
  7674. type="1" >
  7675. </productMenu>
  7676. <productMenu id="bluetoothIntercom"
  7677. type="1" >
  7678. </productMenu>
  7679. <productMenu id="phone"
  7680. type="1" >
  7681. </productMenu>
  7682. <productMenu id="fmradio"
  7683. type="1" >
  7684. </productMenu>
  7685. <productMenu id="deviceSetting"
  7686. type="1"
  7687. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  7688. </productMenu>
  7689. <productMenu id="quickGuide"
  7690. type="1"
  7691. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  7692. size="934KB" >
  7693. </productMenu>
  7694. <productMenu id="userGuide"
  7695. type="1"
  7696. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  7697. size="1.14MB" >
  7698. </productMenu>
  7699. <productID id="5593"
  7700. />
  7701. <productGroupable type="0"
  7702. />
  7703. </product>
  7704. <product id="5R"
  7705. name="Ridekont 5R LITE"
  7706. series="5"
  7707. latestVersion="1.0"
  7708. show = "0" >
  7709. <productMenu id="protocol"
  7710. type="3" >
  7711. </productMenu>
  7712. <productMenu id="sip"
  7713. type="1" >
  7714. </productMenu>
  7715. <productMenu id="bluetoothIntercom"
  7716. type="1" >
  7717. </productMenu>
  7718. <productMenu id="phone"
  7719. type="1" >
  7720. </productMenu>
  7721. <productMenu id="fmradio"
  7722. type="1" >
  7723. </productMenu>
  7724. <productMenu id="deviceSetting"
  7725. type="1"
  7726. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  7727. </productMenu>
  7728. <productMenu id="quickGuide"
  7729. type="0"
  7730. url=""
  7731. size="934KB" >
  7732. </productMenu>
  7733. <productMenu id="userGuide"
  7734. type="1"
  7735. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  7736. size="1.14MB" >
  7737. </productMenu>
  7738. <productID id="5594"
  7739. />
  7740. <productGroupable type="0"
  7741. />
  7742. </product>
  7743. <product id="C30"
  7744. name="SENA C30"
  7745. series="C"
  7746. latestVersion="1.1.3"
  7747. latestVersionVoicePrompt="0.11"
  7748. show = "1" >
  7749. <productMenu id="protocol"
  7750. type="2" >
  7751. </productMenu>
  7752. <productMenu id="alexa"
  7753. type="0" >
  7754. </productMenu>
  7755. <productMenu id="ota"
  7756. type="2" >
  7757. <otaPackages>
  7758. <package
  7759. url="https://api.sena.com/support/OTA/C30/SENA_C30-v1.1.3-build2.img"
  7760. size="3144148"
  7761. />
  7762. </otaPackages>
  7763. </productMenu>
  7764. <productMenu id="wa"
  7765. type="0" >
  7766. </productMenu>
  7767. <productMenu id="meshIntercom"
  7768. type="30" >
  7769. </productMenu>
  7770. <productMenu id="meshIntercom+"
  7771. type="3"
  7772. url="2" >
  7773. <productMenuType version="1.0.9"
  7774. type="2"
  7775. />
  7776. </productMenu>
  7777. <productMenu id="phone"
  7778. type="1" >
  7779. </productMenu>
  7780. <productMenu id="music"
  7781. type="1" >
  7782. </productMenu>
  7783. <productMenu id="musicSharing"
  7784. type="0" >
  7785. </productMenu>
  7786. <productMenu id="deviceSetting"
  7787. type="1"
  7788. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_06_zh_rCN.xml" >
  7789. <productMenuURL version="1.0.9"
  7790. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  7791. />
  7792. </productMenu>
  7793. <productMenu id="quickGuide"
  7794. type="1"
  7795. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  7796. size="1.12MB" >
  7797. </productMenu>
  7798. <productMenu id="userGuide"
  7799. type="0"
  7800. url=""
  7801. size="2.0MB" >
  7802. </productMenu>
  7803. <productMenu id="videoGuide"
  7804. type="0"
  7805. url=""
  7806. size="3.41MB" >
  7807. </productMenu>
  7808. <productMenu id="volume"
  7809. type="12" >
  7810. </productMenu>
  7811. <productMenu id="battery"
  7812. type="1" >
  7813. </productMenu>
  7814. <productID id="683A"
  7815. />
  7816. <productGroupable type="0"
  7817. />
  7818. </product>
  7819. <product id="C20"
  7820. name="C20"
  7821. series="5"
  7822. latestVersion="1.0"
  7823. show = "0" >
  7824. <productMenu id="protocol"
  7825. type="3" >
  7826. </productMenu>
  7827. <productMenu id="sip"
  7828. type="1" >
  7829. </productMenu>
  7830. <productMenu id="bluetoothIntercom"
  7831. type="1" >
  7832. </productMenu>
  7833. <productMenu id="phone"
  7834. type="1" >
  7835. </productMenu>
  7836. <productMenu id="deviceSetting"
  7837. type="1"
  7838. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  7839. </productMenu>
  7840. <productMenu id="quickGuide"
  7841. type="1"
  7842. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  7843. size="934KB" >
  7844. </productMenu>
  7845. <productMenu id="userGuide"
  7846. type="1"
  7847. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  7848. size="1.14MB" >
  7849. </productMenu>
  7850. <productID id="3701"
  7851. />
  7852. <productGroupable type="0"
  7853. />
  7854. </product>
  7855. <product id="C10"
  7856. name="C10"
  7857. series="5"
  7858. latestVersion="1.4.1"
  7859. show = "0" >
  7860. <productMenu id="protocol"
  7861. type="3" >
  7862. </productMenu>
  7863. <productMenu id="sip"
  7864. type="1" >
  7865. </productMenu>
  7866. <productMenu id="bluetoothIntercom"
  7867. type="1" >
  7868. </productMenu>
  7869. <productMenu id="phone"
  7870. type="1" >
  7871. </productMenu>
  7872. <productMenu id="fmradio"
  7873. type="0" >
  7874. </productMenu>
  7875. <productMenu id="deviceSetting"
  7876. type="1"
  7877. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  7878. </productMenu>
  7879. <productMenu id="userGuide"
  7880. type="1"
  7881. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  7882. size="1.14MB" >
  7883. </productMenu>
  7884. <productID id="5595"
  7885. />
  7886. <productGroupable type="0"
  7887. />
  7888. </product>
  7889. <product id="J30"
  7890. name="J30"
  7891. series="J"
  7892. latestVersion="1.2"
  7893. latestVersionVoicePrompt="0.13"
  7894. show = "0" >
  7895. <productMenu id="protocol"
  7896. type="2" >
  7897. </productMenu>
  7898. <productMenu id="alexa"
  7899. type="0" >
  7900. </productMenu>
  7901. <productMenu id="ota"
  7902. type="2" >
  7903. <otaPackages>
  7904. <package
  7905. url="https://api.sena.com/support/OTA/J30/SENA_J30-v1.2-build1.img"
  7906. size="3144148"
  7907. />
  7908. </otaPackages>
  7909. </productMenu>
  7910. <productMenu id="wa"
  7911. type="0" >
  7912. </productMenu>
  7913. <productMenu id="meshIntercom"
  7914. type="30" >
  7915. </productMenu>
  7916. <productMenu id="meshIntercom+"
  7917. type="3"
  7918. url="2" >
  7919. <productMenuType version="1.0.9"
  7920. type="2"
  7921. />
  7922. </productMenu>
  7923. <productMenu id="waveIntercom"
  7924. type="1" >
  7925. <productMenuType version="1.1.9"
  7926. type="0"
  7927. />
  7928. </productMenu>
  7929. <productMenu id="phone"
  7930. type="1" >
  7931. </productMenu>
  7932. <productMenu id="music"
  7933. type="1" >
  7934. </productMenu>
  7935. <productMenu id="musicSharing"
  7936. type="0" >
  7937. </productMenu>
  7938. <productMenu id="deviceSetting"
  7939. type="1"
  7940. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  7941. <productMenuURL version="1.0.9"
  7942. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  7943. />
  7944. </productMenu>
  7945. <productMenu id="quickGuide"
  7946. type="0"
  7947. url=""
  7948. size="1.12MB" >
  7949. </productMenu>
  7950. <productMenu id="userGuide"
  7951. type="1"
  7952. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  7953. size="2.0MB" >
  7954. </productMenu>
  7955. <productMenu id="videoGuide"
  7956. type="0"
  7957. url=""
  7958. size="3.41MB" >
  7959. </productMenu>
  7960. <productMenu id="volume"
  7961. type="12" >
  7962. </productMenu>
  7963. <productMenu id="battery"
  7964. type="1" >
  7965. </productMenu>
  7966. <productID id="6848"
  7967. />
  7968. <productGroupable type="0"
  7969. />
  7970. </product>
  7971. <product id="J10"
  7972. name="J10"
  7973. series="5"
  7974. latestVersion="1.1.1"
  7975. show = "0" >
  7976. <productMenu id="protocol"
  7977. type="3" >
  7978. </productMenu>
  7979. <productMenu id="sip"
  7980. type="1" >
  7981. </productMenu>
  7982. <productMenu id="bluetoothIntercom"
  7983. type="1" >
  7984. </productMenu>
  7985. <productMenu id="phone"
  7986. type="1" >
  7987. </productMenu>
  7988. <productMenu id="fmradio"
  7989. type="0" >
  7990. </productMenu>
  7991. <productMenu id="deviceSetting"
  7992. type="1"
  7993. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  7994. </productMenu>
  7995. <productMenu id="userGuide"
  7996. type="1"
  7997. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  7998. size="1.14MB" >
  7999. </productMenu>
  8000. <productID id="5598"
  8001. />
  8002. <productGroupable type="0"
  8003. />
  8004. </product>
  8005. <product id="B20"
  8006. name="B20"
  8007. series="B"
  8008. latestVersion="1.1"
  8009. latestVersionVoicePrompt="0.13"
  8010. show = "0" >
  8011. <productMenu id="protocol"
  8012. type="2" >
  8013. </productMenu>
  8014. <productMenu id="alexa"
  8015. type="0" >
  8016. </productMenu>
  8017. <productMenu id="ota"
  8018. type="2" >
  8019. <otaPackages>
  8020. <package
  8021. url="https://api.sena.com/support/OTA/B20/SENA_B20-v1.1-build0.img"
  8022. size="3144148"
  8023. />
  8024. </otaPackages>
  8025. </productMenu>
  8026. <productMenu id="wa"
  8027. type="0" >
  8028. </productMenu>
  8029. <productMenu id="meshIntercom"
  8030. type="30" >
  8031. </productMenu>
  8032. <productMenu id="phone"
  8033. type="1" >
  8034. </productMenu>
  8035. <productMenu id="music"
  8036. type="1" >
  8037. </productMenu>
  8038. <productMenu id="musicSharing"
  8039. type="0" >
  8040. </productMenu>
  8041. <productMenu id="deviceSetting"
  8042. type="1"
  8043. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  8044. <productMenuURL version="1.0.9"
  8045. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  8046. />
  8047. </productMenu>
  8048. <productMenu id="quickGuide"
  8049. type="0"
  8050. url=""
  8051. size="1.12MB" >
  8052. </productMenu>
  8053. <productMenu id="userGuide"
  8054. type="1"
  8055. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  8056. size="2.0MB" >
  8057. </productMenu>
  8058. <productMenu id="videoGuide"
  8059. type="0"
  8060. url=""
  8061. size="3.41MB" >
  8062. </productMenu>
  8063. <productMenu id="volume"
  8064. type="12" >
  8065. </productMenu>
  8066. <productMenu id="battery"
  8067. type="1" >
  8068. </productMenu>
  8069. <productID id="6847"
  8070. />
  8071. <productGroupable type="0"
  8072. />
  8073. </product>
  8074. <product id="B10"
  8075. name="B10"
  8076. series="5"
  8077. latestVersion="1.2.1"
  8078. show = "0" >
  8079. <productMenu id="protocol"
  8080. type="3" >
  8081. </productMenu>
  8082. <productMenu id="sip"
  8083. type="1" >
  8084. </productMenu>
  8085. <productMenu id="bluetoothIntercom"
  8086. type="1" >
  8087. </productMenu>
  8088. <productMenu id="phone"
  8089. type="1" >
  8090. </productMenu>
  8091. <productMenu id="fmradio"
  8092. type="0" >
  8093. </productMenu>
  8094. <productMenu id="deviceSetting"
  8095. type="1"
  8096. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  8097. </productMenu>
  8098. <productMenu id="userGuide"
  8099. type="1"
  8100. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  8101. size="1.14MB" >
  8102. </productMenu>
  8103. <productID id="5596"
  8104. />
  8105. <productGroupable type="0"
  8106. />
  8107. </product>
  8108. <product id="E30"
  8109. name="E30"
  8110. series="E"
  8111. latestVersion="1.1"
  8112. latestVersionVoicePrompt="0.13"
  8113. show = "0" >
  8114. <productMenu id="protocol"
  8115. type="2" >
  8116. </productMenu>
  8117. <productMenu id="alexa"
  8118. type="0" >
  8119. </productMenu>
  8120. <productMenu id="ota"
  8121. type="2" >
  8122. <otaPackages>
  8123. <package
  8124. url="https://api.sena.com/support/OTA/E30/SENA_E30-v1.1-build0.img"
  8125. size="3144148"
  8126. />
  8127. </otaPackages>
  8128. </productMenu>
  8129. <productMenu id="wa"
  8130. type="0" >
  8131. </productMenu>
  8132. <productMenu id="meshIntercom"
  8133. type="30" >
  8134. </productMenu>
  8135. <productMenu id="meshIntercom+"
  8136. type="3"
  8137. url="2" >
  8138. </productMenu>
  8139. <productMenu id="waveIntercom"
  8140. type="1" >
  8141. <productMenuType version="1.0.9"
  8142. type="0"
  8143. />
  8144. </productMenu>
  8145. <productMenu id="phone"
  8146. type="1" >
  8147. </productMenu>
  8148. <productMenu id="music"
  8149. type="1" >
  8150. </productMenu>
  8151. <productMenu id="musicSharing"
  8152. type="0" >
  8153. </productMenu>
  8154. <productMenu id="deviceSetting"
  8155. type="1"
  8156. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  8157. </productMenu>
  8158. <productMenu id="quickGuide"
  8159. type="0"
  8160. url=""
  8161. size="1.12MB" >
  8162. </productMenu>
  8163. <productMenu id="userGuide"
  8164. type="1"
  8165. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  8166. size="2.0MB" >
  8167. </productMenu>
  8168. <productMenu id="videoGuide"
  8169. type="0"
  8170. url=""
  8171. size="3.41MB" >
  8172. </productMenu>
  8173. <productMenu id="volume"
  8174. type="12" >
  8175. </productMenu>
  8176. <productMenu id="battery"
  8177. type="1" >
  8178. </productMenu>
  8179. <productID id="6846"
  8180. />
  8181. <productGroupable type="0"
  8182. />
  8183. </product>
  8184. <product id="ACSRAM"
  8185. name="ACS-RAM"
  8186. series="ACS"
  8187. latestVersion="1.0.5"
  8188. show = "1" >
  8189. <productMenu id="protocol"
  8190. type="3" >
  8191. </productMenu>
  8192. <productMenu id="sip"
  8193. type="1" >
  8194. </productMenu>
  8195. <productMenu id="bluetoothIntercom"
  8196. type="1" >
  8197. </productMenu>
  8198. <productMenu id="deviceSetting"
  8199. type="1"
  8200. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  8201. </productMenu>
  8202. <productMenu id="quickGuide"
  8203. type="1"
  8204. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  8205. size="344KB" >
  8206. </productMenu>
  8207. <productMenu id="userGuide"
  8208. type="1"
  8209. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  8210. size="1.14MB" >
  8211. </productMenu>
  8212. <productMenu id="connectGuide"
  8213. type="1"
  8214. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  8215. size="1.12MB" >
  8216. </productMenu>
  8217. <productID id="3400"
  8218. />
  8219. <productGroupable type="0"
  8220. />
  8221. </product>
  8222. <product id="ACS10"
  8223. name="ACS10"
  8224. series="ACS"
  8225. latestVersion="1.0.2"
  8226. show = "1" >
  8227. <productMenu id="protocol"
  8228. type="0">
  8229. </productMenu>
  8230. <productMenu id="sip"
  8231. type="1" >
  8232. </productMenu>
  8233. <productMenu id="bluetoothIntercom"
  8234. type="1" >
  8235. </productMenu>
  8236. <productMenu id="phone"
  8237. type="2" >
  8238. </productMenu>
  8239. <productMenu id="deviceSetting"
  8240. type="1"
  8241. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  8242. </productMenu>
  8243. <productMenu id="quickGuide"
  8244. type="1"
  8245. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  8246. size="970KB" >
  8247. </productMenu>
  8248. <productMenu id="userGuide"
  8249. type="1"
  8250. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  8251. size="1.26MB" >
  8252. </productMenu>
  8253. <productID id="3300"
  8254. />
  8255. <productGroupable type="0"
  8256. />
  8257. </product>
  8258. <product id="DWO7ProMesh"
  8259. name="DWO 7 Pro Mesh"
  8260. series="50"
  8261. latestVersion="1.1"
  8262. latestVersionVoicePrompt="0.9"
  8263. show = "0" >
  8264. <productMenu id="protocol"
  8265. type="2" >
  8266. </productMenu>
  8267. <productMenu id="alexa"
  8268. type="0" >
  8269. </productMenu>
  8270. <productMenu id="ota"
  8271. type="2" >
  8272. <otaPackages>
  8273. <package
  8274. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  8275. size="2945812"
  8276. />
  8277. </otaPackages>
  8278. </productMenu>
  8279. <productMenu id="wa"
  8280. type="0" >
  8281. </productMenu>
  8282. <productMenu id="meshIntercom"
  8283. type="20" >
  8284. </productMenu>
  8285. <productMenu id="meshIntercom+"
  8286. type="3"
  8287. url="2" >
  8288. <productMenuType version="1.0.9"
  8289. type="2"
  8290. />
  8291. <productMenuURL version="2.1.1"
  8292. url="0"
  8293. />
  8294. </productMenu>
  8295. <productMenu id="waveIntercom"
  8296. type="1" >
  8297. <productMenuType version="1.0.9"
  8298. type="0"
  8299. />
  8300. </productMenu>
  8301. <productMenu id="phone"
  8302. type="1" >
  8303. </productMenu>
  8304. <productMenu id="music"
  8305. type="1" >
  8306. </productMenu>
  8307. <productMenu id="fmradio"
  8308. type="1" >
  8309. </productMenu>
  8310. <productMenu id="musicSharing"
  8311. type="0" >
  8312. </productMenu>
  8313. <productMenu id="deviceSetting"
  8314. type="1"
  8315. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  8316. <productMenuURL version="1.0.9"
  8317. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  8318. />
  8319. </productMenu>
  8320. <productMenu id="quickGuide"
  8321. type="1"
  8322. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  8323. size="1.12MB" >
  8324. </productMenu>
  8325. <productMenu id="userGuide"
  8326. type="1"
  8327. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  8328. size="2.0MB" >
  8329. </productMenu>
  8330. <productMenu id="volume"
  8331. type="12" >
  8332. </productMenu>
  8333. <productMenu id="battery"
  8334. type="1" >
  8335. </productMenu>
  8336. <productID id="6806"
  8337. />
  8338. <productGroupable type="0"
  8339. />
  8340. </product>
  8341. <product id="UCOM16R"
  8342. name="U-COM 16R"
  8343. series="UCOM"
  8344. latestVersion="1.0"
  8345. latestVersionMesh="1.0"
  8346. latestVersionVoicePrompt="1.0"
  8347. show = "-1" >
  8348. <productMenu id="protocol"
  8349. type="2" >
  8350. </productMenu>
  8351. <productMenu id="ota"
  8352. type="0" >
  8353. <otaLanguages>
  8354. <otaLanguage
  8355. id="0"
  8356. name="English"
  8357. package="0"
  8358. />
  8359. <otaLanguage
  8360. id="0"
  8361. name="French"
  8362. package="1"
  8363. />
  8364. <otaLanguage
  8365. id="0"
  8366. name="Spanish"
  8367. package="2"
  8368. />
  8369. <otaLanguage
  8370. id="0"
  8371. name="Italian"
  8372. package="3"
  8373. />
  8374. <otaLanguage
  8375. id="0"
  8376. name="German"
  8377. package="4"
  8378. />
  8379. <otaLanguage
  8380. id="0"
  8381. name="Dutch"
  8382. package="5"
  8383. />
  8384. <otaLanguage
  8385. id="0"
  8386. name="Russian"
  8387. package="6"
  8388. />
  8389. <otaLanguage
  8390. id="0"
  8391. name="Chinese"
  8392. package="7"
  8393. />
  8394. <otaLanguage
  8395. id="0"
  8396. name="Korean"
  8397. package="8"
  8398. />
  8399. <otaLanguage
  8400. id="0"
  8401. name="Japanese"
  8402. package="9"
  8403. />
  8404. <otaLanguage
  8405. id="0"
  8406. name="Finnish"
  8407. package="10"
  8408. />
  8409. </otaLanguages>
  8410. <otaPackages>
  8411. <package
  8412. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2.img"
  8413. size="5183988"
  8414. />
  8415. <package
  8416. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fr-FR.img"
  8417. size="5183988"
  8418. />
  8419. <package
  8420. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-es-ES.img"
  8421. size="5183988"
  8422. />
  8423. <package
  8424. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-it-IT.img"
  8425. size="5183988"
  8426. />
  8427. <package
  8428. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-de-DE.img"
  8429. size="5183988"
  8430. />
  8431. <package
  8432. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-nl-NL.img"
  8433. size="5183988"
  8434. />
  8435. <package
  8436. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ru-RU.img"
  8437. size="5183988"
  8438. />
  8439. <package
  8440. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-cmn-CN.img"
  8441. size="5183988"
  8442. />
  8443. <package
  8444. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ko-KR.img"
  8445. size="5183988"
  8446. />
  8447. <package
  8448. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ja-JP.img"
  8449. size="5183988"
  8450. />
  8451. <package
  8452. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fi-FI.img"
  8453. size="5183988"
  8454. />
  8455. </otaPackages>
  8456. </productMenu>
  8457. <productMenu id="wa"
  8458. type="0" >
  8459. </productMenu>
  8460. <productMenu id="sip"
  8461. type="1" >
  8462. </productMenu>
  8463. <productMenu id="led"
  8464. type="0" >
  8465. </productMenu>
  8466. <productMenu id="illusion"
  8467. type="1" >
  8468. </productMenu>
  8469. <productMenu id="meshIntercom"
  8470. type="30" >
  8471. </productMenu>
  8472. <productMenu id="meshIntercom+"
  8473. type="3"
  8474. url="2" >
  8475. </productMenu>
  8476. <productMenu id="waveIntercom"
  8477. type="0" >
  8478. </productMenu>
  8479. <productMenu id="bluetoothIntercom"
  8480. type="1" >
  8481. </productMenu>
  8482. <productMenu id="bluetoothIntercomGrouping"
  8483. type="0" >
  8484. </productMenu>
  8485. <productMenu id="fmradio"
  8486. type="1"
  8487. url="1" >
  8488. </productMenu>
  8489. <productMenu id="phone"
  8490. type="1" >
  8491. </productMenu>
  8492. <productMenu id="music"
  8493. type="1" >
  8494. </productMenu>
  8495. <productMenu id="musicSharing"
  8496. type="0" >
  8497. </productMenu>
  8498. <productMenu id="deviceSetting"
  8499. type="1"
  8500. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  8501. </productMenu>
  8502. <productMenu id="quickGuide"
  8503. type="0"
  8504. url=""
  8505. size="1.12MB" >
  8506. </productMenu>
  8507. <productMenu id="userGuide"
  8508. type="1"
  8509. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  8510. size="2.0MB" >
  8511. </productMenu>
  8512. <productMenu id="videoGuide"
  8513. type="0"
  8514. url=""
  8515. size="3.41MB" >
  8516. </productMenu>
  8517. <productMenu id="volume"
  8518. type="16" >
  8519. </productMenu>
  8520. <productMenu id="soundMode"
  8521. type="1" >
  8522. </productMenu>
  8523. <productMenu id="battery"
  8524. type="1" >
  8525. </productMenu>
  8526. <productID id="6A83"
  8527. />
  8528. <productGroupable type="0"
  8529. />
  8530. </product>
  8531. <product id="MeshStation"
  8532. name="Mesh Station"
  8533. series="50"
  8534. latestVersion="0.9"
  8535. show = "-1" >
  8536. <productMenu id="protocol"
  8537. type="2" >
  8538. </productMenu>
  8539. <productMenu id="meshIntercom"
  8540. type="20"
  8541. url="99" >
  8542. </productMenu>
  8543. <productID id="3161"
  8544. />
  8545. <productGroupable type="0"
  8546. />
  8547. </product>
  8548. </products>
  8549. </sna>